*** Reading grammar in file C.grm ... 
***	... in 60 ms

RULES:

[0]	$START$ --> $ROOTS$
	[ precedence = 1 ]
[1]	$ROOTS$ --> translation_unit
	[ precedence = 1 ]
[2]	$ROOTS$ --> '$translation_unit_switch$' translation_unit
	[ precedence = 1 ]
[3]	primary_expression --> 'IDENTIFIER'
	[ precedence = 1 ]
[4]	primary_expression --> 'CONSTANT'
	[ precedence = 1 ]
[5]	primary_expression --> 'STRING_LITERAL'
	[ precedence = 1 ]
[6]	primary_expression --> '(' expression ')'
	[ precedence = 1 ]
[7]	postfix_expression --> primary_expression
	[ precedence = 1 ]
[8]	postfix_expression --> postfix_expression '[' expression ']'
	[ precedence = 1 ]
[9]	postfix_expression --> postfix_expression '(' ')'
	[ precedence = 1 ]
[10]	postfix_expression --> postfix_expression '(' argument_expression_list ')'
	[ precedence = 1 ]
[11]	postfix_expression --> postfix_expression '.' 'IDENTIFIER'
	[ precedence = 1 ]
[12]	postfix_expression --> postfix_expression 'PTR_OP' 'IDENTIFIER'
	[ precedence = 1 ]
[13]	postfix_expression --> postfix_expression 'INC_OP'
	[ precedence = 11 ]
[14]	postfix_expression --> postfix_expression 'DEC_OP'
	[ precedence = 11 ]
[15]	argument_expression_list --> assignment_expression
	[ precedence = 1 ]
[16]	argument_expression_list --> argument_expression_list ',' assignment_expression
	[ precedence = 1 ]
[17]	unary_expression --> postfix_expression
	[ precedence = 1 ]
[18]	unary_expression --> 'INC_OP' unary_expression
	[ precedence = 11 ]
[19]	unary_expression --> 'DEC_OP' unary_expression
	[ precedence = 11 ]
[20]	unary_expression --> unary_operator cast_expression
	[ precedence = 1 ]
[21]	unary_expression --> 'SIZEOF' unary_expression
	[ precedence = 1 ]
[22]	unary_expression --> 'SIZEOF' '(' type_name ')'
	[ precedence = 1 ]
[23]	unary_operator --> '&'
	[ precedence = 1 ]
[24]	unary_operator --> '*'
	[ precedence = 1 ]
[25]	unary_operator --> '+'
	[ precedence = 1 ]
[26]	unary_operator --> '-'
	[ precedence = 1 ]
[27]	unary_operator --> '~'
	[ precedence = 1 ]
[28]	unary_operator --> '!'
	[ precedence = 1 ]
[29]	cast_expression --> unary_expression
	[ precedence = 1 ]
[30]	cast_expression --> '(' type_name ')' cast_expression
	[ precedence = 1 ]
[31]	multiplicative_expression --> cast_expression
	[ precedence = 1 ]
[32]	multiplicative_expression --> multiplicative_expression '*' cast_expression
	[ precedence = 1 ]
[33]	multiplicative_expression --> multiplicative_expression '/' cast_expression
	[ precedence = 1 ]
[34]	multiplicative_expression --> multiplicative_expression '%' cast_expression
	[ precedence = 1 ]
[35]	additive_expression --> multiplicative_expression
	[ precedence = 1 ]
[36]	additive_expression --> additive_expression '+' multiplicative_expression
	[ precedence = 1 ]
[37]	additive_expression --> additive_expression '-' multiplicative_expression
	[ precedence = 1 ]
[38]	shift_expression --> additive_expression
	[ precedence = 1 ]
[39]	shift_expression --> shift_expression 'LEFT_OP' additive_expression
	[ precedence = 11 ]
[40]	shift_expression --> shift_expression 'RIGHT_OP' additive_expression
	[ precedence = 11 ]
[41]	relational_expression --> shift_expression
	[ precedence = 1 ]
[42]	relational_expression --> relational_expression '<' shift_expression
	[ precedence = 1 ]
[43]	relational_expression --> relational_expression '>' shift_expression
	[ precedence = 1 ]
[44]	relational_expression --> relational_expression 'LE_OP' shift_expression
	[ precedence = 11 ]
[45]	relational_expression --> relational_expression 'GE_OP' shift_expression
	[ precedence = 11 ]
[46]	equality_expression --> relational_expression
	[ precedence = 1 ]
[47]	equality_expression --> equality_expression 'EQ_OP' relational_expression
	[ precedence = 11 ]
[48]	equality_expression --> equality_expression 'NE_OP' relational_expression
	[ precedence = 11 ]
[49]	and_expression --> equality_expression
	[ precedence = 1 ]
[50]	and_expression --> and_expression '&' equality_expression
	[ precedence = 1 ]
[51]	exclusive_or_expression --> and_expression
	[ precedence = 1 ]
[52]	exclusive_or_expression --> exclusive_or_expression '^' and_expression
	[ precedence = 1 ]
[53]	inclusive_or_expression --> exclusive_or_expression
	[ precedence = 1 ]
[54]	inclusive_or_expression --> inclusive_or_expression '|' exclusive_or_expression
	[ precedence = 1 ]
[55]	logical_and_expression --> inclusive_or_expression
	[ precedence = 1 ]
[56]	logical_and_expression --> logical_and_expression 'AND_OP' inclusive_or_expression
	[ precedence = 21 ]
[57]	logical_or_expression --> logical_and_expression
	[ precedence = 1 ]
[58]	logical_or_expression --> logical_or_expression 'OR_OP' logical_and_expression
	[ precedence = 21 ]
[59]	conditional_expression --> logical_or_expression
	[ precedence = 1 ]
[60]	conditional_expression --> logical_or_expression '?' expression ':' conditional_expression
	[ precedence = 1 ]
[61]	assignment_expression --> conditional_expression
	[ precedence = 1 ]
[62]	assignment_expression --> unary_expression assignment_operator assignment_expression
	[ precedence = 1 ]
[63]	assignment_operator --> '='
	[ precedence = 1 ]
[64]	assignment_operator --> 'MUL_ASSIGN'
	[ precedence = 21 ]
[65]	assignment_operator --> 'DIV_ASSIGN'
	[ precedence = 21 ]
[66]	assignment_operator --> 'MOD_ASSIGN'
	[ precedence = 21 ]
[67]	assignment_operator --> 'ADD_ASSIGN'
	[ precedence = 21 ]
[68]	assignment_operator --> 'SUB_ASSIGN'
	[ precedence = 31 ]
[69]	assignment_operator --> 'LEFT_ASSIGN'
	[ precedence = 31 ]
[70]	assignment_operator --> 'RIGHT_ASSIGN'
	[ precedence = 31 ]
[71]	assignment_operator --> 'AND_ASSIGN'
	[ precedence = 31 ]
[72]	assignment_operator --> 'XOR_ASSIGN'
	[ precedence = 41 ]
[73]	assignment_operator --> 'OR_ASSIGN'
	[ precedence = 41 ]
[74]	expression --> assignment_expression
	[ precedence = 1 ]
[75]	expression --> expression ',' assignment_expression
	[ precedence = 1 ]
[76]	constant_expression --> conditional_expression
	[ precedence = 1 ]
[77]	declaration --> declaration_specifiers ';'
	[ precedence = 1 ]
[78]	declaration --> declaration_specifiers init_declarator_list ';'
	[ precedence = 1 ]
[79]	declaration_specifiers --> storage_class_specifier
	[ precedence = 1 ]
[80]	declaration_specifiers --> storage_class_specifier declaration_specifiers
	[ precedence = 1 ]
[81]	declaration_specifiers --> type_specifier
	[ precedence = 1 ]
[82]	declaration_specifiers --> type_specifier declaration_specifiers
	[ precedence = 1 ]
[83]	declaration_specifiers --> type_qualifier
	[ precedence = 1 ]
[84]	declaration_specifiers --> type_qualifier declaration_specifiers
	[ precedence = 1 ]
[85]	init_declarator_list --> init_declarator
	[ precedence = 1 ]
[86]	init_declarator_list --> init_declarator_list ',' init_declarator
	[ precedence = 1 ]
[87]	init_declarator --> declarator
	[ precedence = 1 ]
[88]	init_declarator --> declarator '=' initializer
	[ precedence = 1 ]
[89]	storage_class_specifier --> 'TYPEDEF'
	[ precedence = 51 ]
[90]	storage_class_specifier --> 'EXTERN'
	[ precedence = 51 ]
[91]	storage_class_specifier --> 'STATIC'
	[ precedence = 51 ]
[92]	storage_class_specifier --> 'AUTO'
	[ precedence = 51 ]
[93]	storage_class_specifier --> 'REGISTER'
	[ precedence = 51 ]
[94]	type_specifier --> 'VOID'
	[ precedence = 61 ]
[95]	type_specifier --> 'CHAR'
	[ precedence = 61 ]
[96]	type_specifier --> 'SHORT'
	[ precedence = 61 ]
[97]	type_specifier --> 'INT'
	[ precedence = 61 ]
[98]	type_specifier --> 'LONG'
	[ precedence = 61 ]
[99]	type_specifier --> 'FLOAT'
	[ precedence = 61 ]
[100]	type_specifier --> 'DOUBLE'
	[ precedence = 61 ]
[101]	type_specifier --> 'SIGNED'
	[ precedence = 61 ]
[102]	type_specifier --> 'UNSIGNED'
	[ precedence = 61 ]
[103]	type_specifier --> struct_or_union_specifier
	[ precedence = 1 ]
[104]	type_specifier --> enum_specifier
	[ precedence = 1 ]
[105]	type_specifier --> 'TYPE_NAME'
	[ precedence = 41 ]
[106]	struct_or_union_specifier --> struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	[ precedence = 1 ]
[107]	struct_or_union_specifier --> struct_or_union '{' struct_declaration_list '}'
	[ precedence = 1 ]
[108]	struct_or_union_specifier --> struct_or_union 'IDENTIFIER'
	[ precedence = 1 ]
[109]	struct_or_union --> 'STRUCT'
	[ precedence = 71 ]
[110]	struct_or_union --> 'UNION'
	[ precedence = 71 ]
[111]	struct_declaration_list --> struct_declaration
	[ precedence = 1 ]
[112]	struct_declaration_list --> struct_declaration_list struct_declaration
	[ precedence = 1 ]
[113]	struct_declaration --> specifier_qualifier_list struct_declarator_list ';'
	[ precedence = 1 ]
[114]	specifier_qualifier_list --> type_specifier specifier_qualifier_list
	[ precedence = 1 ]
[115]	specifier_qualifier_list --> type_specifier
	[ precedence = 1 ]
[116]	specifier_qualifier_list --> type_qualifier specifier_qualifier_list
	[ precedence = 1 ]
[117]	specifier_qualifier_list --> type_qualifier
	[ precedence = 1 ]
[118]	struct_declarator_list --> struct_declarator
	[ precedence = 1 ]
[119]	struct_declarator_list --> struct_declarator_list ',' struct_declarator
	[ precedence = 1 ]
[120]	struct_declarator --> declarator
	[ precedence = 1 ]
[121]	struct_declarator --> ':' constant_expression
	[ precedence = 1 ]
[122]	struct_declarator --> declarator ':' constant_expression
	[ precedence = 1 ]
[123]	enum_specifier --> 'ENUM' '{' enumerator_list '}'
	[ precedence = 1 ]
[124]	enum_specifier --> 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	[ precedence = 1 ]
[125]	enum_specifier --> 'ENUM' 'IDENTIFIER'
	[ precedence = 1 ]
[126]	enumerator_list --> enumerator
	[ precedence = 1 ]
[127]	enumerator_list --> enumerator_list ',' enumerator
	[ precedence = 1 ]
[128]	enumerator --> 'IDENTIFIER'
	[ precedence = 1 ]
[129]	enumerator --> 'IDENTIFIER' '=' constant_expression
	[ precedence = 1 ]
[130]	type_qualifier --> 'CONST'
	[ precedence = 61 ]
[131]	type_qualifier --> 'VOLATILE'
	[ precedence = 61 ]
[132]	declarator --> pointer direct_declarator
	[ precedence = 1 ]
[133]	declarator --> direct_declarator
	[ precedence = 1 ]
[134]	direct_declarator --> 'IDENTIFIER'
	[ precedence = 1 ]
[135]	direct_declarator --> '(' declarator ')'
	[ precedence = 1 ]
[136]	direct_declarator --> direct_declarator '[' constant_expression ']'
	[ precedence = 1 ]
[137]	direct_declarator --> direct_declarator '[' ']'
	[ precedence = 1 ]
[138]	direct_declarator --> direct_declarator '(' parameter_type_list ')'
	[ precedence = 1 ]
[139]	direct_declarator --> direct_declarator '(' identifier_list ')'
	[ precedence = 1 ]
[140]	direct_declarator --> direct_declarator '(' ')'
	[ precedence = 1 ]
[141]	pointer --> '*'
	[ precedence = 1 ]
[142]	pointer --> '*' type_qualifier_list
	[ precedence = 1 ]
[143]	pointer --> '*' pointer
	[ precedence = 1 ]
[144]	pointer --> '*' type_qualifier_list pointer
	[ precedence = 1 ]
[145]	type_qualifier_list --> type_qualifier
	[ precedence = 1 ]
[146]	type_qualifier_list --> type_qualifier_list type_qualifier
	[ precedence = 1 ]
[147]	parameter_type_list --> parameter_list
	[ precedence = 1 ]
[148]	parameter_type_list --> parameter_list ',' 'ELLIPSIS'
	[ precedence = 71 ]
[149]	parameter_list --> parameter_declaration
	[ precedence = 1 ]
[150]	parameter_list --> parameter_list ',' parameter_declaration
	[ precedence = 1 ]
[151]	parameter_declaration --> declaration_specifiers declarator
	[ precedence = 1 ]
[152]	parameter_declaration --> declaration_specifiers abstract_declarator
	[ precedence = 1 ]
[153]	parameter_declaration --> declaration_specifiers
	[ precedence = 1 ]
[154]	identifier_list --> 'IDENTIFIER'
	[ precedence = 1 ]
[155]	identifier_list --> identifier_list ',' 'IDENTIFIER'
	[ precedence = 1 ]
[156]	type_name --> specifier_qualifier_list
	[ precedence = 1 ]
[157]	type_name --> specifier_qualifier_list abstract_declarator
	[ precedence = 1 ]
[158]	abstract_declarator --> pointer
	[ precedence = 1 ]
[159]	abstract_declarator --> direct_abstract_declarator
	[ precedence = 1 ]
[160]	abstract_declarator --> pointer direct_abstract_declarator
	[ precedence = 1 ]
[161]	direct_abstract_declarator --> '(' abstract_declarator ')'
	[ precedence = 1 ]
[162]	direct_abstract_declarator --> '[' ']'
	[ precedence = 1 ]
[163]	direct_abstract_declarator --> '[' constant_expression ']'
	[ precedence = 1 ]
[164]	direct_abstract_declarator --> direct_abstract_declarator '[' ']'
	[ precedence = 1 ]
[165]	direct_abstract_declarator --> direct_abstract_declarator '[' constant_expression ']'
	[ precedence = 1 ]
[166]	direct_abstract_declarator --> '(' ')'
	[ precedence = 1 ]
[167]	direct_abstract_declarator --> '(' parameter_type_list ')'
	[ precedence = 1 ]
[168]	direct_abstract_declarator --> direct_abstract_declarator '(' ')'
	[ precedence = 1 ]
[169]	direct_abstract_declarator --> direct_abstract_declarator '(' parameter_type_list ')'
	[ precedence = 1 ]
[170]	initializer --> assignment_expression
	[ precedence = 1 ]
[171]	initializer --> '{' initializer_list '}'
	[ precedence = 1 ]
[172]	initializer --> '{' initializer_list ',' '}'
	[ precedence = 1 ]
[173]	initializer_list --> initializer
	[ precedence = 1 ]
[174]	initializer_list --> initializer_list ',' initializer
	[ precedence = 1 ]
[175]	statement --> labeled_statement
	[ precedence = 1 ]
[176]	statement --> compound_statement
	[ precedence = 1 ]
[177]	statement --> expression_statement
	[ precedence = 1 ]
[178]	statement --> selection_statement
	[ precedence = 1 ]
[179]	statement --> iteration_statement
	[ precedence = 1 ]
[180]	statement --> jump_statement
	[ precedence = 1 ]
[181]	labeled_statement --> 'IDENTIFIER' ':' statement
	[ precedence = 1 ]
[182]	labeled_statement --> 'CASE' constant_expression ':' statement
	[ precedence = 1 ]
[183]	labeled_statement --> 'DEFAULT' ':' statement
	[ precedence = 1 ]
[184]	compound_statement --> '{' '}'
	[ precedence = 1 ]
[185]	compound_statement --> '{' statement_list '}'
	[ precedence = 1 ]
[186]	compound_statement --> '{' declaration_list '}'
	[ precedence = 1 ]
[187]	compound_statement --> '{' declaration_list statement_list '}'
	[ precedence = 1 ]
[188]	declaration_list --> declaration
	[ precedence = 1 ]
[189]	declaration_list --> declaration_list declaration
	[ precedence = 1 ]
[190]	statement_list --> statement
	[ precedence = 1 ]
[191]	statement_list --> statement_list statement
	[ precedence = 1 ]
[192]	expression_statement --> ';'
	[ precedence = 1 ]
[193]	expression_statement --> expression ';'
	[ precedence = 1 ]
[194]	selection_statement --> 'IF' '(' expression ')' statement
	[ precedence = 1 ]
[195]	selection_statement --> 'IF' '(' expression ')' statement 'ELSE' statement
	[ precedence = 81 ]
[196]	selection_statement --> 'SWITCH' '(' expression ')' statement
	[ precedence = 1 ]
[197]	iteration_statement --> 'WHILE' '(' expression ')' statement
	[ precedence = 1 ]
[198]	iteration_statement --> 'DO' statement 'WHILE' '(' expression ')' ';'
	[ precedence = 1 ]
[199]	iteration_statement --> 'FOR' '(' expression_statement expression_statement ')' statement
	[ precedence = 1 ]
[200]	iteration_statement --> 'FOR' '(' expression_statement expression_statement expression ')' statement
	[ precedence = 1 ]
[201]	jump_statement --> 'GOTO' 'IDENTIFIER' ';'
	[ precedence = 1 ]
[202]	jump_statement --> 'CONTINUE' ';'
	[ precedence = 1 ]
[203]	jump_statement --> 'BREAK' ';'
	[ precedence = 1 ]
[204]	jump_statement --> 'RETURN' ';'
	[ precedence = 1 ]
[205]	jump_statement --> 'RETURN' expression ';'
	[ precedence = 1 ]
[206]	translation_unit --> external_declaration
	[ precedence = 1 ]
[207]	translation_unit --> translation_unit external_declaration
	[ precedence = 1 ]
[208]	external_declaration --> function_definition
	[ precedence = 1 ]
[209]	external_declaration --> declaration
	[ precedence = 1 ]
[210]	function_definition --> declaration_specifiers declarator declaration_list compound_statement
	[ precedence = 1 ]
[211]	function_definition --> declaration_specifiers declarator compound_statement
	[ precedence = 1 ]
[212]	function_definition --> declarator declaration_list compound_statement
	[ precedence = 1 ]
[213]	function_definition --> declarator compound_statement
	[ precedence = 1 ]

*** Starting grammar analysis ... 
***	Preprocessing the grammar ... 
***	... in 231 ms

TERMINALS:

	----------	-------------	--------
	PRECEDENCE	ASSOCIATIVITY	TERMINAL
	----------	-------------	--------
[0]	1		none		'$EMPTY$'
[1]	1		none		'$E_O_I$'
[2]	1		none		'error'
[3]	1		none		'IDENTIFIER'
[4]	1		none		'CONSTANT'
[5]	1		none		'STRING_LITERAL'
[6]	1		none		'SIZEOF'
[7]	11		none		'PTR_OP'
[8]	11		none		'INC_OP'
[9]	11		none		'DEC_OP'
[10]	11		none		'LEFT_OP'
[11]	11		none		'RIGHT_OP'
[12]	11		none		'LE_OP'
[13]	11		none		'GE_OP'
[14]	11		none		'EQ_OP'
[15]	11		none		'NE_OP'
[16]	21		none		'AND_OP'
[17]	21		none		'OR_OP'
[18]	21		none		'MUL_ASSIGN'
[19]	21		none		'DIV_ASSIGN'
[20]	21		none		'MOD_ASSIGN'
[21]	21		none		'ADD_ASSIGN'
[22]	31		none		'SUB_ASSIGN'
[23]	31		none		'LEFT_ASSIGN'
[24]	31		none		'RIGHT_ASSIGN'
[25]	31		none		'AND_ASSIGN'
[26]	41		none		'XOR_ASSIGN'
[27]	41		none		'OR_ASSIGN'
[28]	41		none		'TYPE_NAME'
[29]	51		none		'TYPEDEF'
[30]	51		none		'EXTERN'
[31]	51		none		'STATIC'
[32]	51		none		'AUTO'
[33]	51		none		'REGISTER'
[34]	61		none		'CHAR'
[35]	61		none		'SHORT'
[36]	61		none		'INT'
[37]	61		none		'LONG'
[38]	61		none		'SIGNED'
[39]	61		none		'UNSIGNED'
[40]	61		none		'FLOAT'
[41]	61		none		'DOUBLE'
[42]	61		none		'CONST'
[43]	61		none		'VOLATILE'
[44]	61		none		'VOID'
[45]	71		none		'STRUCT'
[46]	71		none		'UNION'
[47]	71		none		'ENUM'
[48]	71		none		'ELLIPSIS'
[49]	81		none		'CASE'
[50]	81		none		'DEFAULT'
[51]	81		none		'IF'
[52]	81		none		'ELSE'
[53]	81		none		'SWITCH'
[54]	81		none		'WHILE'
[55]	81		none		'DO'
[56]	81		none		'FOR'
[57]	81		none		'GOTO'
[58]	81		none		'CONTINUE'
[59]	81		none		'BREAK'
[60]	81		none		'RETURN'
[61]	1		none		'$translation_unit_switch$'
[62]	1		none		'('
[63]	1		none		')'
[64]	1		none		'['
[65]	1		none		']'
[66]	1		none		'.'
[67]	1		none		','
[68]	1		none		'&'
[69]	1		none		'*'
[70]	1		none		'+'
[71]	1		none		'-'
[72]	1		none		'~'
[73]	1		none		'!'
[74]	1		none		'/'
[75]	1		none		'%'
[76]	1		none		'<'
[77]	1		none		'>'
[78]	1		none		'^'
[79]	1		none		'|'
[80]	1		none		'?'
[81]	1		none		':'
[82]	1		none		'='
[83]	1		none		';'
[84]	1		none		'{'
[85]	1		none		'}'
	----------------------------------------

NON TERMINALS:

  [0]	$START$
	FIRST:	 {'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '$translation_unit_switch$', '(', '*'}
	LSet:	 {$START$, $ROOTS$, translation_unit, declaration, declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, declarator, struct_or_union_specifier, enum_specifier, struct_or_union, pointer, direct_declarator, external_declaration, function_definition}

  [1]	$ROOTS$
	FIRST:	 {'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '$translation_unit_switch$', '(', '*'}
	LSet:	 {$ROOTS$, translation_unit, declaration, declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, declarator, struct_or_union_specifier, enum_specifier, struct_or_union, pointer, direct_declarator, external_declaration, function_definition}

  [2]	translation_unit
	FIRST:	 {'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
	LSet:	 {translation_unit, declaration, declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, declarator, struct_or_union_specifier, enum_specifier, struct_or_union, pointer, direct_declarator, external_declaration, function_definition}

  [3]	primary_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', '('}
	LSet:	 {primary_expression}

  [4]	expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, expression, postfix_expression, assignment_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression, conditional_expression}

  [5]	postfix_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', '('}
	LSet:	 {primary_expression, postfix_expression}

  [6]	argument_expression_list
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, argument_expression_list, assignment_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression, conditional_expression}

  [7]	assignment_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, assignment_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression, conditional_expression}

  [8]	unary_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator}

  [9]	unary_operator
	FIRST:	 {'&', '*', '+', '-', '~', '!'}
	LSet:	 {unary_operator}

  [10]	cast_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression}

  [11]	type_name
	FIRST:	 {'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {type_name, type_specifier, type_qualifier, struct_or_union_specifier, enum_specifier, struct_or_union, specifier_qualifier_list}

  [12]	multiplicative_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression}

  [13]	additive_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression}

  [14]	shift_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression}

  [15]	relational_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression}

  [16]	equality_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression}

  [17]	and_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression}

  [18]	exclusive_or_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression}

  [19]	inclusive_or_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression}

  [20]	logical_and_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression}

  [21]	logical_or_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression}

  [22]	conditional_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression, conditional_expression}

  [23]	assignment_operator
	FIRST:	 {'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', '='}
	LSet:	 {assignment_operator}

  [24]	constant_expression
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
	LSet:	 {primary_expression, postfix_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression, conditional_expression, constant_expression}

  [25]	declaration
	FIRST:	 {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {declaration, declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, struct_or_union_specifier, enum_specifier, struct_or_union}

  [26]	declaration_specifiers
	FIRST:	 {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, struct_or_union_specifier, enum_specifier, struct_or_union}

  [27]	init_declarator_list
	FIRST:	 {'IDENTIFIER', '(', '*'}
	LSet:	 {init_declarator_list, init_declarator, declarator, pointer, direct_declarator}

  [28]	storage_class_specifier
	FIRST:	 {'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER'}
	LSet:	 {storage_class_specifier}

  [29]	type_specifier
	FIRST:	 {'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {type_specifier, struct_or_union_specifier, enum_specifier, struct_or_union}

  [30]	type_qualifier
	FIRST:	 {'CONST', 'VOLATILE'}
	LSet:	 {type_qualifier}

  [31]	init_declarator
	FIRST:	 {'IDENTIFIER', '(', '*'}
	LSet:	 {init_declarator, declarator, pointer, direct_declarator}

  [32]	declarator
	FIRST:	 {'IDENTIFIER', '(', '*'}
	LSet:	 {declarator, pointer, direct_declarator}

  [33]	initializer
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!', '{'}
	LSet:	 {primary_expression, postfix_expression, assignment_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression, conditional_expression, initializer}

  [34]	struct_or_union_specifier
	FIRST:	 {'STRUCT', 'UNION'}
	LSet:	 {struct_or_union_specifier, struct_or_union}

  [35]	enum_specifier
	FIRST:	 {'ENUM'}
	LSet:	 {enum_specifier}

  [36]	struct_or_union
	FIRST:	 {'STRUCT', 'UNION'}
	LSet:	 {struct_or_union}

  [37]	struct_declaration_list
	FIRST:	 {'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {type_specifier, type_qualifier, struct_or_union_specifier, enum_specifier, struct_or_union, struct_declaration_list, struct_declaration, specifier_qualifier_list}

  [38]	struct_declaration
	FIRST:	 {'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {type_specifier, type_qualifier, struct_or_union_specifier, enum_specifier, struct_or_union, struct_declaration, specifier_qualifier_list}

  [39]	specifier_qualifier_list
	FIRST:	 {'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {type_specifier, type_qualifier, struct_or_union_specifier, enum_specifier, struct_or_union, specifier_qualifier_list}

  [40]	struct_declarator_list
	FIRST:	 {'IDENTIFIER', '(', '*', ':'}
	LSet:	 {declarator, struct_declarator_list, struct_declarator, pointer, direct_declarator}

  [41]	struct_declarator
	FIRST:	 {'IDENTIFIER', '(', '*', ':'}
	LSet:	 {declarator, struct_declarator, pointer, direct_declarator}

  [42]	enumerator_list
	FIRST:	 {'IDENTIFIER'}
	LSet:	 {enumerator_list, enumerator}

  [43]	enumerator
	FIRST:	 {'IDENTIFIER'}
	LSet:	 {enumerator}

  [44]	pointer
	FIRST:	 {'*'}
	LSet:	 {pointer}

  [45]	direct_declarator
	FIRST:	 {'IDENTIFIER', '('}
	LSet:	 {direct_declarator}

  [46]	parameter_type_list
	FIRST:	 {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, struct_or_union_specifier, enum_specifier, struct_or_union, parameter_type_list, parameter_list, parameter_declaration}

  [47]	identifier_list
	FIRST:	 {'IDENTIFIER'}
	LSet:	 {identifier_list}

  [48]	type_qualifier_list
	FIRST:	 {'CONST', 'VOLATILE'}
	LSet:	 {type_qualifier, type_qualifier_list}

  [49]	parameter_list
	FIRST:	 {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, struct_or_union_specifier, enum_specifier, struct_or_union, parameter_list, parameter_declaration}

  [50]	parameter_declaration
	FIRST:	 {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, struct_or_union_specifier, enum_specifier, struct_or_union, parameter_declaration}

  [51]	abstract_declarator
	FIRST:	 {'(', '[', '*'}
	LSet:	 {pointer, abstract_declarator, direct_abstract_declarator}

  [52]	direct_abstract_declarator
	FIRST:	 {'(', '['}
	LSet:	 {direct_abstract_declarator}

  [53]	initializer_list
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!', '{'}
	LSet:	 {primary_expression, postfix_expression, assignment_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression, conditional_expression, initializer, initializer_list}

  [54]	statement
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{'}
	LSet:	 {primary_expression, expression, postfix_expression, assignment_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression, conditional_expression, statement, labeled_statement, compound_statement, expression_statement, selection_statement, iteration_statement, jump_statement}

  [55]	labeled_statement
	FIRST:	 {'IDENTIFIER', 'CASE', 'DEFAULT'}
	LSet:	 {labeled_statement}

  [56]	compound_statement
	FIRST:	 {'{'}
	LSet:	 {compound_statement}

  [57]	expression_statement
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!', ';'}
	LSet:	 {primary_expression, expression, postfix_expression, assignment_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression, conditional_expression, expression_statement}

  [58]	selection_statement
	FIRST:	 {'IF', 'SWITCH'}
	LSet:	 {selection_statement}

  [59]	iteration_statement
	FIRST:	 {'WHILE', 'DO', 'FOR'}
	LSet:	 {iteration_statement}

  [60]	jump_statement
	FIRST:	 {'GOTO', 'CONTINUE', 'BREAK', 'RETURN'}
	LSet:	 {jump_statement}

  [61]	statement_list
	FIRST:	 {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{'}
	LSet:	 {primary_expression, expression, postfix_expression, assignment_expression, unary_expression, unary_operator, cast_expression, multiplicative_expression, additive_expression, shift_expression, relational_expression, equality_expression, and_expression, exclusive_or_expression, inclusive_or_expression, logical_and_expression, logical_or_expression, conditional_expression, statement, labeled_statement, compound_statement, expression_statement, selection_statement, iteration_statement, jump_statement, statement_list}

  [62]	declaration_list
	FIRST:	 {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM'}
	LSet:	 {declaration, declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, struct_or_union_specifier, enum_specifier, struct_or_union, declaration_list}

  [63]	external_declaration
	FIRST:	 {'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
	LSet:	 {declaration, declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, declarator, struct_or_union_specifier, enum_specifier, struct_or_union, pointer, direct_declarator, external_declaration, function_definition}

  [64]	function_definition
	FIRST:	 {'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
	LSet:	 {declaration_specifiers, storage_class_specifier, type_specifier, type_qualifier, declarator, struct_or_union_specifier, enum_specifier, struct_or_union, pointer, direct_declarator, function_definition}


***	Building canonical LR states ... 
***	 ... in 934 ms
***	Propagating lookahead symbols ... 
***	 ... in 90 ms


=============================
STATE NUMBER: 0
=============================
[0] $START$ --> . $ROOTS$
	Preceding states: {0}
	Follow set: {'$E_O_I$'}
	Preceding states: {0}
[1] $ROOTS$ --> . translation_unit
	Preceding states: {0}
[2] $ROOTS$ --> . '$translation_unit_switch$' translation_unit
	Preceding states: {0}
[77] declaration --> . declaration_specifiers ';'
	Preceding states: {0}
[78] declaration --> . declaration_specifiers init_declarator_list ';'
	Preceding states: {0}
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {0}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {0}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {0}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {0}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {0}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {0}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {0}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {0}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {0}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {0}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {0}
[94] type_specifier --> . 'VOID'
	Preceding states: {0}
[95] type_specifier --> . 'CHAR'
	Preceding states: {0}
[96] type_specifier --> . 'SHORT'
	Preceding states: {0}
[97] type_specifier --> . 'INT'
	Preceding states: {0}
[98] type_specifier --> . 'LONG'
	Preceding states: {0}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {0}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {0}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {0}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {0}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {0}
[104] type_specifier --> . enum_specifier
	Preceding states: {0}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {0}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {0}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {0}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {0}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {0}
[110] struct_or_union --> . 'UNION'
	Preceding states: {0}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {0}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {0}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {0}
[130] type_qualifier --> . 'CONST'
	Preceding states: {0}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {0}
[132] declarator --> . pointer direct_declarator
	Preceding states: {0}
[133] declarator --> . direct_declarator
	Preceding states: {0}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {0}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {0}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {0}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {0}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {0}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {0}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {0}
[141] pointer --> . '*'
	Preceding states: {0}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {0}
[143] pointer --> . '*' pointer
	Preceding states: {0}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {0}
[206] translation_unit --> . external_declaration
	Preceding states: {0}
[207] translation_unit --> . translation_unit external_declaration
	Preceding states: {0}
[208] external_declaration --> . function_definition
	Preceding states: {0}
[209] external_declaration --> . declaration
	Preceding states: {0}
[210] function_definition --> . declaration_specifiers declarator declaration_list compound_statement
	Preceding states: {0}
[211] function_definition --> . declaration_specifiers declarator compound_statement
	Preceding states: {0}
[212] function_definition --> . declarator declaration_list compound_statement
	Preceding states: {0}
[213] function_definition --> . declarator compound_statement
	Preceding states: {0}
-----------------------------
With '(', go to state 1
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With declarator, go to state 9
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With '$translation_unit_switch$', go to state 15
With $ROOTS$, go to state 16
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With struct_or_union, go to state 21
With 'INT', go to state 22
With declaration_specifiers, go to state 23
With external_declaration, go to state 24
With 'IDENTIFIER', go to state 25
With 'UNSIGNED', go to state 26
With pointer, go to state 27
With 'VOID', go to state 28
With function_definition, go to state 29
With 'STRUCT', go to state 30
With direct_declarator, go to state 31
With translation_unit, go to state 32
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'UNION', go to state 36
With declaration, go to state 37
With 'LONG', go to state 38
With '*', go to state 39
=============================
STATE NUMBER: 1
=============================
[132] declarator --> . pointer direct_declarator
	Preceding states: {1}
[133] declarator --> . direct_declarator
	Preceding states: {1}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {1}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {1}
[135] direct_declarator --> '(' . declarator ')'
	Preceding states: {0, 1, 15, 23, 27, 32, 221, 235, 316, 327, 347}
	Follow set: {')'}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {1}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {1}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {1}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {1}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {1}
[141] pointer --> . '*'
	Preceding states: {1}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {1}
[143] pointer --> . '*' pointer
	Preceding states: {1}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {1}
-----------------------------
With direct_declarator, go to state 31
With declarator, go to state 202
With '(', go to state 1
With 'IDENTIFIER', go to state 25
With '*', go to state 39
With pointer, go to state 27
=============================
STATE NUMBER: 2
=============================
[90] storage_class_specifier --> 'EXTERN' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 3
=============================
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {3}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {3}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {3}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {3}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {3}
[83] declaration_specifiers --> type_qualifier .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {3}
[84] declaration_specifiers --> type_qualifier . declaration_specifiers
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {3}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {3}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {3}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {3}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {3}
[94] type_specifier --> . 'VOID'
	Preceding states: {3}
[95] type_specifier --> . 'CHAR'
	Preceding states: {3}
[96] type_specifier --> . 'SHORT'
	Preceding states: {3}
[97] type_specifier --> . 'INT'
	Preceding states: {3}
[98] type_specifier --> . 'LONG'
	Preceding states: {3}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {3}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {3}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {3}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {3}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {3}
[104] type_specifier --> . enum_specifier
	Preceding states: {3}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {3}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {3}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {3}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {3}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {3}
[110] struct_or_union --> . 'UNION'
	Preceding states: {3}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {3}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {3}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {3}
[130] type_qualifier --> . 'CONST'
	Preceding states: {3}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {3}
-----------------------------
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With 'INT', go to state 22
With struct_or_union, go to state 21
With declaration_specifiers, go to state 351
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'UNION', go to state 36
With 'LONG', go to state 38
=============================
STATE NUMBER: 4
=============================
[99] type_specifier --> 'FLOAT' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 5
=============================
[131] type_qualifier --> 'VOLATILE' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 39, 41, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 6
=============================
[91] storage_class_specifier --> 'STATIC' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 7
=============================
[96] type_specifier --> 'SHORT' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 8
=============================
[104] type_specifier --> enum_specifier .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 9
=============================
[77] declaration --> . declaration_specifiers ';'
	Preceding states: {9}
[78] declaration --> . declaration_specifiers init_declarator_list ';'
	Preceding states: {9}
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {9}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {9}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {9}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {9}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {9}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {9}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {9}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {9}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {9}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {9}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {9}
[94] type_specifier --> . 'VOID'
	Preceding states: {9}
[95] type_specifier --> . 'CHAR'
	Preceding states: {9}
[96] type_specifier --> . 'SHORT'
	Preceding states: {9}
[97] type_specifier --> . 'INT'
	Preceding states: {9}
[98] type_specifier --> . 'LONG'
	Preceding states: {9}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {9}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {9}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {9}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {9}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {9}
[104] type_specifier --> . enum_specifier
	Preceding states: {9}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {9}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {9}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {9}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {9}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {9}
[110] struct_or_union --> . 'UNION'
	Preceding states: {9}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {9}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {9}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {9}
[130] type_qualifier --> . 'CONST'
	Preceding states: {9}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {9}
[184] compound_statement --> . '{' '}'
	Preceding states: {9}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {9}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {9}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {9}
[188] declaration_list --> . declaration
	Preceding states: {9}
[189] declaration_list --> . declaration_list declaration
	Preceding states: {9}
[212] function_definition --> declarator . declaration_list compound_statement
	Preceding states: {0, 15, 32, 347}
	Follow set: {'{'}
[213] function_definition --> declarator . compound_statement
	Preceding states: {0, 15, 32, 347}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
With declaration_list, go to state 348
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With struct_or_union, go to state 21
With 'INT', go to state 22
With declaration_specifiers, go to state 235
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With '{', go to state 236
With 'UNION', go to state 36
With declaration, go to state 237
With 'LONG', go to state 38
With compound_statement, go to state 349
=============================
STATE NUMBER: 10
=============================
[95] type_specifier --> 'CHAR' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 11
=============================
[92] storage_class_specifier --> 'AUTO' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 12
=============================
[103] type_specifier --> struct_or_union_specifier .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 13
=============================
[100] type_specifier --> 'DOUBLE' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 14
=============================
[93] storage_class_specifier --> 'REGISTER' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 15
=============================
[2] $ROOTS$ --> '$translation_unit_switch$' . translation_unit
	Preceding states: {0}
	Follow set: {'$E_O_I$'}
[77] declaration --> . declaration_specifiers ';'
	Preceding states: {15}
[78] declaration --> . declaration_specifiers init_declarator_list ';'
	Preceding states: {15}
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {15}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {15}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {15}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {15}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {15}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {15}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {15}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {15}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {15}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {15}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {15}
[94] type_specifier --> . 'VOID'
	Preceding states: {15}
[95] type_specifier --> . 'CHAR'
	Preceding states: {15}
[96] type_specifier --> . 'SHORT'
	Preceding states: {15}
[97] type_specifier --> . 'INT'
	Preceding states: {15}
[98] type_specifier --> . 'LONG'
	Preceding states: {15}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {15}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {15}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {15}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {15}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {15}
[104] type_specifier --> . enum_specifier
	Preceding states: {15}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {15}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {15}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {15}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {15}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {15}
[110] struct_or_union --> . 'UNION'
	Preceding states: {15}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {15}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {15}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {15}
[130] type_qualifier --> . 'CONST'
	Preceding states: {15}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {15}
[132] declarator --> . pointer direct_declarator
	Preceding states: {15}
[133] declarator --> . direct_declarator
	Preceding states: {15}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {15}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {15}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {15}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {15}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {15}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {15}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {15}
[141] pointer --> . '*'
	Preceding states: {15}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {15}
[143] pointer --> . '*' pointer
	Preceding states: {15}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {15}
[206] translation_unit --> . external_declaration
	Preceding states: {15}
[207] translation_unit --> . translation_unit external_declaration
	Preceding states: {15}
[208] external_declaration --> . function_definition
	Preceding states: {15}
[209] external_declaration --> . declaration
	Preceding states: {15}
[210] function_definition --> . declaration_specifiers declarator declaration_list compound_statement
	Preceding states: {15}
[211] function_definition --> . declaration_specifiers declarator compound_statement
	Preceding states: {15}
[212] function_definition --> . declarator declaration_list compound_statement
	Preceding states: {15}
[213] function_definition --> . declarator compound_statement
	Preceding states: {15}
-----------------------------
With '(', go to state 1
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With declarator, go to state 9
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With struct_or_union, go to state 21
With 'INT', go to state 22
With declaration_specifiers, go to state 23
With external_declaration, go to state 24
With 'IDENTIFIER', go to state 25
With 'UNSIGNED', go to state 26
With pointer, go to state 27
With 'VOID', go to state 28
With function_definition, go to state 29
With 'STRUCT', go to state 30
With direct_declarator, go to state 31
With translation_unit, go to state 347
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'UNION', go to state 36
With declaration, go to state 37
With 'LONG', go to state 38
With '*', go to state 39
=============================
STATE NUMBER: 16
=============================
[0] $START$ --> $ROOTS$ .
	Preceding states: {0}
	Lookahead set: {}
-----------------------------
=============================
STATE NUMBER: 17
=============================
[89] storage_class_specifier --> 'TYPEDEF' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 18
=============================
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {18}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {18}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {18}
[81] declaration_specifiers --> type_specifier .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {18}
[82] declaration_specifiers --> type_specifier . declaration_specifiers
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {18}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {18}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {18}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {18}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {18}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {18}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {18}
[94] type_specifier --> . 'VOID'
	Preceding states: {18}
[95] type_specifier --> . 'CHAR'
	Preceding states: {18}
[96] type_specifier --> . 'SHORT'
	Preceding states: {18}
[97] type_specifier --> . 'INT'
	Preceding states: {18}
[98] type_specifier --> . 'LONG'
	Preceding states: {18}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {18}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {18}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {18}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {18}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {18}
[104] type_specifier --> . enum_specifier
	Preceding states: {18}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {18}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {18}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {18}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {18}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {18}
[110] struct_or_union --> . 'UNION'
	Preceding states: {18}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {18}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {18}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {18}
[130] type_qualifier --> . 'CONST'
	Preceding states: {18}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {18}
-----------------------------
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With 'INT', go to state 22
With struct_or_union, go to state 21
With declaration_specifiers, go to state 346
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'UNION', go to state 36
With 'LONG', go to state 38
=============================
STATE NUMBER: 19
=============================
[130] type_qualifier --> 'CONST' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 39, 41, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 20
=============================
[123] enum_specifier --> 'ENUM' . '{' enumerator_list '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
[124] enum_specifier --> 'ENUM' . 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
[125] enum_specifier --> 'ENUM' . 'IDENTIFIER'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
-----------------------------
With '{', go to state 333
With 'IDENTIFIER', go to state 334
=============================
STATE NUMBER: 21
=============================
[106] struct_or_union_specifier --> struct_or_union . 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
[107] struct_or_union_specifier --> struct_or_union . '{' struct_declaration_list '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
[108] struct_or_union_specifier --> struct_or_union . 'IDENTIFIER'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
-----------------------------
With '{', go to state 313
With 'IDENTIFIER', go to state 314
=============================
STATE NUMBER: 22
=============================
[97] type_specifier --> 'INT' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 23
=============================
[77] declaration --> declaration_specifiers . ';'
	Preceding states: {0, 15, 32, 347}
[78] declaration --> declaration_specifiers . init_declarator_list ';'
	Preceding states: {0, 15, 32, 347}
	Follow set: {';'}
[85] init_declarator_list --> . init_declarator
	Preceding states: {23}
[86] init_declarator_list --> . init_declarator_list ',' init_declarator
	Preceding states: {23}
[87] init_declarator --> . declarator
	Preceding states: {23}
[88] init_declarator --> . declarator '=' initializer
	Preceding states: {23}
[132] declarator --> . pointer direct_declarator
	Preceding states: {23}
[133] declarator --> . direct_declarator
	Preceding states: {23}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {23}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {23}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {23}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {23}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {23}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {23}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {23}
[141] pointer --> . '*'
	Preceding states: {23}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {23}
[143] pointer --> . '*' pointer
	Preceding states: {23}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {23}
[210] function_definition --> declaration_specifiers . declarator declaration_list compound_statement
	Preceding states: {0, 15, 32, 347}
	Follow set: {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '{'}
[211] function_definition --> declaration_specifiers . declarator compound_statement
	Preceding states: {0, 15, 32, 347}
	Follow set: {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '{'}
-----------------------------
With direct_declarator, go to state 31
With declarator, go to state 216
With ';', go to state 217
With '(', go to state 1
With init_declarator, go to state 218
With 'IDENTIFIER', go to state 25
With '*', go to state 39
With pointer, go to state 27
With init_declarator_list, go to state 219
=============================
STATE NUMBER: 24
=============================
[206] translation_unit --> external_declaration .
	Preceding states: {0, 15}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
=============================
STATE NUMBER: 25
=============================
[134] direct_declarator --> 'IDENTIFIER' .
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ':', '=', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 26
=============================
[102] type_specifier --> 'UNSIGNED' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 27
=============================
[132] declarator --> pointer . direct_declarator
	Preceding states: {0, 1, 15, 23, 32, 221, 235, 316, 327, 347}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', ',', '*', ':', '=', ';', '{'}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {27}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {27}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {27}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {27}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {27}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {27}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {27}
-----------------------------
With direct_declarator, go to state 63
With '(', go to state 1
With 'IDENTIFIER', go to state 25
=============================
STATE NUMBER: 28
=============================
[94] type_specifier --> 'VOID' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 29
=============================
[208] external_declaration --> function_definition .
	Preceding states: {0, 15, 32, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
=============================
STATE NUMBER: 30
=============================
[109] struct_or_union --> 'STRUCT' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'IDENTIFIER', '{'}
-----------------------------
=============================
STATE NUMBER: 31
=============================
[133] declarator --> direct_declarator .
	Preceding states: {0, 1, 15, 23, 32, 51, 59, 221, 235, 316, 327, 347}
	Lookahead set: {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', ')', ',', ':', '=', ';', '{'}
[136] direct_declarator --> direct_declarator . '[' constant_expression ']'
	Preceding states: {0, 1, 15, 23, 32, 51, 59, 221, 235, 316, 327, 347}
[137] direct_declarator --> direct_declarator . '[' ']'
	Preceding states: {0, 1, 15, 23, 32, 51, 59, 221, 235, 316, 327, 347}
[138] direct_declarator --> direct_declarator . '(' parameter_type_list ')'
	Preceding states: {0, 1, 15, 23, 32, 51, 59, 221, 235, 316, 327, 347}
[139] direct_declarator --> direct_declarator . '(' identifier_list ')'
	Preceding states: {0, 1, 15, 23, 32, 51, 59, 221, 235, 316, 327, 347}
[140] direct_declarator --> direct_declarator . '(' ')'
	Preceding states: {0, 1, 15, 23, 32, 51, 59, 221, 235, 316, 327, 347}
-----------------------------
With '[', go to state 47
With '(', go to state 48
=============================
STATE NUMBER: 32
=============================
[1] $ROOTS$ --> translation_unit .
	Preceding states: {0}
	Lookahead set: {'$E_O_I$'}
[77] declaration --> . declaration_specifiers ';'
	Preceding states: {32}
[78] declaration --> . declaration_specifiers init_declarator_list ';'
	Preceding states: {32}
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {32}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {32}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {32}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {32}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {32}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {32}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {32}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {32}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {32}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {32}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {32}
[94] type_specifier --> . 'VOID'
	Preceding states: {32}
[95] type_specifier --> . 'CHAR'
	Preceding states: {32}
[96] type_specifier --> . 'SHORT'
	Preceding states: {32}
[97] type_specifier --> . 'INT'
	Preceding states: {32}
[98] type_specifier --> . 'LONG'
	Preceding states: {32}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {32}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {32}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {32}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {32}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {32}
[104] type_specifier --> . enum_specifier
	Preceding states: {32}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {32}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {32}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {32}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {32}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {32}
[110] struct_or_union --> . 'UNION'
	Preceding states: {32}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {32}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {32}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {32}
[130] type_qualifier --> . 'CONST'
	Preceding states: {32}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {32}
[132] declarator --> . pointer direct_declarator
	Preceding states: {32}
[133] declarator --> . direct_declarator
	Preceding states: {32}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {32}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {32}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {32}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {32}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {32}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {32}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {32}
[141] pointer --> . '*'
	Preceding states: {32}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {32}
[143] pointer --> . '*' pointer
	Preceding states: {32}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {32}
[207] translation_unit --> translation_unit . external_declaration
	Preceding states: {0}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
[208] external_declaration --> . function_definition
	Preceding states: {32}
[209] external_declaration --> . declaration
	Preceding states: {32}
[210] function_definition --> . declaration_specifiers declarator declaration_list compound_statement
	Preceding states: {32}
[211] function_definition --> . declaration_specifiers declarator compound_statement
	Preceding states: {32}
[212] function_definition --> . declarator declaration_list compound_statement
	Preceding states: {32}
[213] function_definition --> . declarator compound_statement
	Preceding states: {32}
-----------------------------
With '(', go to state 1
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With declarator, go to state 9
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With struct_or_union, go to state 21
With 'INT', go to state 22
With declaration_specifiers, go to state 23
With external_declaration, go to state 46
With 'IDENTIFIER', go to state 25
With 'UNSIGNED', go to state 26
With pointer, go to state 27
With 'VOID', go to state 28
With function_definition, go to state 29
With 'STRUCT', go to state 30
With direct_declarator, go to state 31
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'UNION', go to state 36
With declaration, go to state 37
With 'LONG', go to state 38
With '*', go to state 39
=============================
STATE NUMBER: 33
=============================
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {33}
[79] declaration_specifiers --> storage_class_specifier .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {33}
[80] declaration_specifiers --> storage_class_specifier . declaration_specifiers
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {33}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {33}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {33}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {33}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {33}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {33}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {33}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {33}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {33}
[94] type_specifier --> . 'VOID'
	Preceding states: {33}
[95] type_specifier --> . 'CHAR'
	Preceding states: {33}
[96] type_specifier --> . 'SHORT'
	Preceding states: {33}
[97] type_specifier --> . 'INT'
	Preceding states: {33}
[98] type_specifier --> . 'LONG'
	Preceding states: {33}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {33}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {33}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {33}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {33}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {33}
[104] type_specifier --> . enum_specifier
	Preceding states: {33}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {33}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {33}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {33}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {33}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {33}
[110] struct_or_union --> . 'UNION'
	Preceding states: {33}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {33}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {33}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {33}
[130] type_qualifier --> . 'CONST'
	Preceding states: {33}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {33}
-----------------------------
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With 'INT', go to state 22
With struct_or_union, go to state 21
With declaration_specifiers, go to state 45
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'UNION', go to state 36
With 'LONG', go to state 38
=============================
STATE NUMBER: 34
=============================
[101] type_specifier --> 'SIGNED' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 35
=============================
[105] type_specifier --> 'TYPE_NAME' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 36
=============================
[110] struct_or_union --> 'UNION' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'IDENTIFIER', '{'}
-----------------------------
=============================
STATE NUMBER: 37
=============================
[209] external_declaration --> declaration .
	Preceding states: {0, 15, 32, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
=============================
STATE NUMBER: 38
=============================
[98] type_specifier --> 'LONG' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 39
=============================
[130] type_qualifier --> . 'CONST'
	Preceding states: {39}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {39}
[141] pointer --> . '*'
	Preceding states: {39}
[141] pointer --> '*' .
	Preceding states: {0, 1, 15, 23, 32, 39, 41, 51, 59, 176, 177, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {39}
[142] pointer --> '*' . type_qualifier_list
	Preceding states: {0, 1, 15, 23, 32, 39, 41, 51, 59, 176, 177, 221, 235, 316, 327, 347}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
[143] pointer --> . '*' pointer
	Preceding states: {39}
[143] pointer --> '*' . pointer
	Preceding states: {0, 1, 15, 23, 32, 39, 41, 51, 59, 176, 177, 221, 235, 316, 327, 347}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {39}
[144] pointer --> '*' . type_qualifier_list pointer
	Preceding states: {0, 1, 15, 23, 32, 39, 41, 51, 59, 176, 177, 221, 235, 316, 327, 347}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
[145] type_qualifier_list --> . type_qualifier
	Preceding states: {39}
[146] type_qualifier_list --> . type_qualifier_list type_qualifier
	Preceding states: {39}
-----------------------------
With type_qualifier, go to state 40
With 'VOLATILE', go to state 5
With type_qualifier_list, go to state 41
With 'CONST', go to state 19
With '*', go to state 39
With pointer, go to state 42
=============================
STATE NUMBER: 40
=============================
[145] type_qualifier_list --> type_qualifier .
	Preceding states: {39}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 41
=============================
[130] type_qualifier --> . 'CONST'
	Preceding states: {41}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {41}
[141] pointer --> . '*'
	Preceding states: {41}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {41}
[142] pointer --> '*' type_qualifier_list .
	Preceding states: {0, 1, 15, 23, 32, 39, 41, 51, 59, 176, 177, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
[143] pointer --> . '*' pointer
	Preceding states: {41}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {41}
[144] pointer --> '*' type_qualifier_list . pointer
	Preceding states: {0, 1, 15, 23, 32, 39, 41, 51, 59, 176, 177, 221, 235, 316, 327, 347}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
[146] type_qualifier_list --> type_qualifier_list . type_qualifier
	Preceding states: {39}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
-----------------------------
With type_qualifier, go to state 43
With 'VOLATILE', go to state 5
With 'CONST', go to state 19
With '*', go to state 39
With pointer, go to state 44
=============================
STATE NUMBER: 42
=============================
[143] pointer --> '*' pointer .
	Preceding states: {0, 1, 15, 23, 32, 39, 41, 51, 59, 176, 177, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 43
=============================
[146] type_qualifier_list --> type_qualifier_list type_qualifier .
	Preceding states: {39}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 44
=============================
[144] pointer --> '*' type_qualifier_list pointer .
	Preceding states: {0, 1, 15, 23, 32, 39, 41, 51, 59, 176, 177, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 45
=============================
[80] declaration_specifiers --> storage_class_specifier declaration_specifiers .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 46
=============================
[207] translation_unit --> translation_unit external_declaration .
	Preceding states: {0, 15}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
=============================
STATE NUMBER: 47
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {47}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {47}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {47}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {47}
[7] postfix_expression --> . primary_expression
	Preceding states: {47}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {47}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {47}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {47}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {47}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {47}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {47}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {47}
[17] unary_expression --> . postfix_expression
	Preceding states: {47}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {47}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {47}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {47}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {47}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {47}
[23] unary_operator --> . '&'
	Preceding states: {47}
[24] unary_operator --> . '*'
	Preceding states: {47}
[25] unary_operator --> . '+'
	Preceding states: {47}
[26] unary_operator --> . '-'
	Preceding states: {47}
[27] unary_operator --> . '~'
	Preceding states: {47}
[28] unary_operator --> . '!'
	Preceding states: {47}
[29] cast_expression --> . unary_expression
	Preceding states: {47}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {47}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {47}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {47}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {47}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {47}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {47}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {47}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {47}
[38] shift_expression --> . additive_expression
	Preceding states: {47}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {47}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {47}
[41] relational_expression --> . shift_expression
	Preceding states: {47}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {47}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {47}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {47}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {47}
[46] equality_expression --> . relational_expression
	Preceding states: {47}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {47}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {47}
[49] and_expression --> . equality_expression
	Preceding states: {47}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {47}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {47}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {47}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {47}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {47}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {47}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {47}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {47}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {47}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {47}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {47}
[76] constant_expression --> . conditional_expression
	Preceding states: {47}
[136] direct_declarator --> direct_declarator '[' . constant_expression ']'
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
	Follow set: {']'}
[137] direct_declarator --> direct_declarator '[' . ']'
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With conditional_expression, go to state 77
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With ']', go to state 213
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With constant_expression, go to state 214
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 48
=============================
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {48}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {48}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {48}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {48}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {48}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {48}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {48}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {48}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {48}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {48}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {48}
[94] type_specifier --> . 'VOID'
	Preceding states: {48}
[95] type_specifier --> . 'CHAR'
	Preceding states: {48}
[96] type_specifier --> . 'SHORT'
	Preceding states: {48}
[97] type_specifier --> . 'INT'
	Preceding states: {48}
[98] type_specifier --> . 'LONG'
	Preceding states: {48}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {48}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {48}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {48}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {48}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {48}
[104] type_specifier --> . enum_specifier
	Preceding states: {48}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {48}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {48}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {48}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {48}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {48}
[110] struct_or_union --> . 'UNION'
	Preceding states: {48}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {48}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {48}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {48}
[130] type_qualifier --> . 'CONST'
	Preceding states: {48}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {48}
[138] direct_declarator --> direct_declarator '(' . parameter_type_list ')'
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
	Follow set: {')'}
[139] direct_declarator --> direct_declarator '(' . identifier_list ')'
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
	Follow set: {')'}
[140] direct_declarator --> direct_declarator '(' . ')'
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
[147] parameter_type_list --> . parameter_list
	Preceding states: {48}
[148] parameter_type_list --> . parameter_list ',' 'ELLIPSIS'
	Preceding states: {48}
[149] parameter_list --> . parameter_declaration
	Preceding states: {48}
[150] parameter_list --> . parameter_list ',' parameter_declaration
	Preceding states: {48}
[151] parameter_declaration --> . declaration_specifiers declarator
	Preceding states: {48}
[152] parameter_declaration --> . declaration_specifiers abstract_declarator
	Preceding states: {48}
[153] parameter_declaration --> . declaration_specifiers
	Preceding states: {48}
[154] identifier_list --> . 'IDENTIFIER'
	Preceding states: {48}
[155] identifier_list --> . identifier_list ',' 'IDENTIFIER'
	Preceding states: {48}
-----------------------------
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With parameter_list, go to state 49
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With identifier_list, go to state 50
With struct_or_union, go to state 21
With 'INT', go to state 22
With declaration_specifiers, go to state 51
With parameter_declaration, go to state 52
With ')', go to state 53
With 'IDENTIFIER', go to state 54
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'UNION', go to state 36
With parameter_type_list, go to state 55
With 'LONG', go to state 38
=============================
STATE NUMBER: 49
=============================
[147] parameter_type_list --> parameter_list .
	Preceding states: {48, 59, 66, 177}
	Lookahead set: {')'}
[148] parameter_type_list --> parameter_list . ',' 'ELLIPSIS'
	Preceding states: {48, 59, 66, 177}
[150] parameter_list --> parameter_list . ',' parameter_declaration
	Preceding states: {48, 59, 66, 177}
-----------------------------
With ',', go to state 210
=============================
STATE NUMBER: 50
=============================
[139] direct_declarator --> direct_declarator '(' identifier_list . ')'
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
[155] identifier_list --> identifier_list . ',' 'IDENTIFIER'
	Preceding states: {48}
-----------------------------
With ',', go to state 207
With ')', go to state 208
=============================
STATE NUMBER: 51
=============================
[132] declarator --> . pointer direct_declarator
	Preceding states: {51}
[133] declarator --> . direct_declarator
	Preceding states: {51}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {51}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {51}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {51}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {51}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {51}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {51}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {51}
[141] pointer --> . '*'
	Preceding states: {51}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {51}
[143] pointer --> . '*' pointer
	Preceding states: {51}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {51}
[151] parameter_declaration --> declaration_specifiers . declarator
	Preceding states: {48, 59, 66, 177, 210}
	Follow set: {')', ','}
[152] parameter_declaration --> declaration_specifiers . abstract_declarator
	Preceding states: {48, 59, 66, 177, 210}
	Follow set: {')', ','}
[153] parameter_declaration --> declaration_specifiers .
	Preceding states: {48, 59, 66, 177, 210}
	Lookahead set: {')', ','}
[158] abstract_declarator --> . pointer
	Preceding states: {51}
[159] abstract_declarator --> . direct_abstract_declarator
	Preceding states: {51}
[160] abstract_declarator --> . pointer direct_abstract_declarator
	Preceding states: {51}
[161] direct_abstract_declarator --> . '(' abstract_declarator ')'
	Preceding states: {51}
[162] direct_abstract_declarator --> . '[' ']'
	Preceding states: {51}
[163] direct_abstract_declarator --> . '[' constant_expression ']'
	Preceding states: {51}
[164] direct_abstract_declarator --> . direct_abstract_declarator '[' ']'
	Preceding states: {51}
[165] direct_abstract_declarator --> . direct_abstract_declarator '[' constant_expression ']'
	Preceding states: {51}
[166] direct_abstract_declarator --> . '(' ')'
	Preceding states: {51}
[167] direct_abstract_declarator --> . '(' parameter_type_list ')'
	Preceding states: {51}
[168] direct_abstract_declarator --> . direct_abstract_declarator '(' ')'
	Preceding states: {51}
[169] direct_abstract_declarator --> . direct_abstract_declarator '(' parameter_type_list ')'
	Preceding states: {51}
-----------------------------
With '[', go to state 57
With direct_declarator, go to state 31
With declarator, go to state 58
With '(', go to state 59
With abstract_declarator, go to state 60
With direct_abstract_declarator, go to state 61
With 'IDENTIFIER', go to state 25
With '*', go to state 39
With pointer, go to state 62
=============================
STATE NUMBER: 52
=============================
[149] parameter_list --> parameter_declaration .
	Preceding states: {48, 59, 66, 177}
	Lookahead set: {')', ','}
-----------------------------
=============================
STATE NUMBER: 53
=============================
[140] direct_declarator --> direct_declarator '(' ')' .
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ':', '=', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 54
=============================
[154] identifier_list --> 'IDENTIFIER' .
	Preceding states: {48}
	Lookahead set: {')', ','}
-----------------------------
=============================
STATE NUMBER: 55
=============================
[138] direct_declarator --> direct_declarator '(' parameter_type_list . ')'
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
-----------------------------
With ')', go to state 56
=============================
STATE NUMBER: 56
=============================
[138] direct_declarator --> direct_declarator '(' parameter_type_list ')' .
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ':', '=', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 57
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {57}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {57}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {57}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {57}
[7] postfix_expression --> . primary_expression
	Preceding states: {57}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {57}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {57}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {57}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {57}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {57}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {57}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {57}
[17] unary_expression --> . postfix_expression
	Preceding states: {57}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {57}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {57}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {57}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {57}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {57}
[23] unary_operator --> . '&'
	Preceding states: {57}
[24] unary_operator --> . '*'
	Preceding states: {57}
[25] unary_operator --> . '+'
	Preceding states: {57}
[26] unary_operator --> . '-'
	Preceding states: {57}
[27] unary_operator --> . '~'
	Preceding states: {57}
[28] unary_operator --> . '!'
	Preceding states: {57}
[29] cast_expression --> . unary_expression
	Preceding states: {57}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {57}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {57}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {57}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {57}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {57}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {57}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {57}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {57}
[38] shift_expression --> . additive_expression
	Preceding states: {57}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {57}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {57}
[41] relational_expression --> . shift_expression
	Preceding states: {57}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {57}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {57}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {57}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {57}
[46] equality_expression --> . relational_expression
	Preceding states: {57}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {57}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {57}
[49] and_expression --> . equality_expression
	Preceding states: {57}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {57}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {57}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {57}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {57}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {57}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {57}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {57}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {57}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {57}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {57}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {57}
[76] constant_expression --> . conditional_expression
	Preceding states: {57}
[162] direct_abstract_declarator --> '[' . ']'
	Preceding states: {51, 59, 62, 176, 177, 179}
[163] direct_abstract_declarator --> '[' . constant_expression ']'
	Preceding states: {51, 59, 62, 176, 177, 179}
	Follow set: {']'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With conditional_expression, go to state 77
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With ']', go to state 204
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With constant_expression, go to state 205
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 58
=============================
[151] parameter_declaration --> declaration_specifiers declarator .
	Preceding states: {48, 59, 66, 177, 210}
	Lookahead set: {')', ','}
-----------------------------
=============================
STATE NUMBER: 59
=============================
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {59}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {59}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {59}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {59}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {59}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {59}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {59}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {59}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {59}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {59}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {59}
[94] type_specifier --> . 'VOID'
	Preceding states: {59}
[95] type_specifier --> . 'CHAR'
	Preceding states: {59}
[96] type_specifier --> . 'SHORT'
	Preceding states: {59}
[97] type_specifier --> . 'INT'
	Preceding states: {59}
[98] type_specifier --> . 'LONG'
	Preceding states: {59}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {59}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {59}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {59}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {59}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {59}
[104] type_specifier --> . enum_specifier
	Preceding states: {59}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {59}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {59}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {59}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {59}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {59}
[110] struct_or_union --> . 'UNION'
	Preceding states: {59}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {59}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {59}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {59}
[130] type_qualifier --> . 'CONST'
	Preceding states: {59}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {59}
[132] declarator --> . pointer direct_declarator
	Preceding states: {59}
[133] declarator --> . direct_declarator
	Preceding states: {59}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {59}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {59}
[135] direct_declarator --> '(' . declarator ')'
	Preceding states: {51, 59, 62}
	Follow set: {')'}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {59}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {59}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {59}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {59}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {59}
[141] pointer --> . '*'
	Preceding states: {59}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {59}
[143] pointer --> . '*' pointer
	Preceding states: {59}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {59}
[147] parameter_type_list --> . parameter_list
	Preceding states: {59}
[148] parameter_type_list --> . parameter_list ',' 'ELLIPSIS'
	Preceding states: {59}
[149] parameter_list --> . parameter_declaration
	Preceding states: {59}
[150] parameter_list --> . parameter_list ',' parameter_declaration
	Preceding states: {59}
[151] parameter_declaration --> . declaration_specifiers declarator
	Preceding states: {59}
[152] parameter_declaration --> . declaration_specifiers abstract_declarator
	Preceding states: {59}
[153] parameter_declaration --> . declaration_specifiers
	Preceding states: {59}
[158] abstract_declarator --> . pointer
	Preceding states: {59}
[159] abstract_declarator --> . direct_abstract_declarator
	Preceding states: {59}
[160] abstract_declarator --> . pointer direct_abstract_declarator
	Preceding states: {59}
[161] direct_abstract_declarator --> . '(' abstract_declarator ')'
	Preceding states: {59}
[161] direct_abstract_declarator --> '(' . abstract_declarator ')'
	Preceding states: {51, 59, 62}
	Follow set: {')'}
[162] direct_abstract_declarator --> . '[' ']'
	Preceding states: {59}
[163] direct_abstract_declarator --> . '[' constant_expression ']'
	Preceding states: {59}
[164] direct_abstract_declarator --> . direct_abstract_declarator '[' ']'
	Preceding states: {59}
[165] direct_abstract_declarator --> . direct_abstract_declarator '[' constant_expression ']'
	Preceding states: {59}
[166] direct_abstract_declarator --> . '(' ')'
	Preceding states: {59}
[166] direct_abstract_declarator --> '(' . ')'
	Preceding states: {51, 59, 62}
[167] direct_abstract_declarator --> . '(' parameter_type_list ')'
	Preceding states: {59}
[167] direct_abstract_declarator --> '(' . parameter_type_list ')'
	Preceding states: {51, 59, 62}
	Follow set: {')'}
[168] direct_abstract_declarator --> . direct_abstract_declarator '(' ')'
	Preceding states: {59}
[169] direct_abstract_declarator --> . direct_abstract_declarator '(' parameter_type_list ')'
	Preceding states: {59}
-----------------------------
With '(', go to state 59
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With abstract_declarator, go to state 180
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With enum_specifier, go to state 8
With 'SHORT', go to state 7
With parameter_list, go to state 49
With struct_or_union_specifier, go to state 12
With declarator, go to state 202
With 'AUTO', go to state 11
With 'CHAR', go to state 10
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With direct_abstract_declarator, go to state 61
With 'CONST', go to state 19
With 'ENUM', go to state 20
With struct_or_union, go to state 21
With 'INT', go to state 22
With declaration_specifiers, go to state 51
With parameter_declaration, go to state 52
With ')', go to state 181
With 'IDENTIFIER', go to state 25
With 'UNSIGNED', go to state 26
With pointer, go to state 62
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With '[', go to state 57
With direct_declarator, go to state 31
With 'TYPE_NAME', go to state 35
With 'SIGNED', go to state 34
With storage_class_specifier, go to state 33
With 'UNION', go to state 36
With parameter_type_list, go to state 182
With 'LONG', go to state 38
With '*', go to state 39
=============================
STATE NUMBER: 60
=============================
[152] parameter_declaration --> declaration_specifiers abstract_declarator .
	Preceding states: {48, 59, 66, 177, 210}
	Lookahead set: {')', ','}
-----------------------------
=============================
STATE NUMBER: 61
=============================
[159] abstract_declarator --> direct_abstract_declarator .
	Preceding states: {51, 59, 176, 177}
	Lookahead set: {')', ','}
[164] direct_abstract_declarator --> direct_abstract_declarator . '[' ']'
	Preceding states: {51, 59, 176, 177}
[165] direct_abstract_declarator --> direct_abstract_declarator . '[' constant_expression ']'
	Preceding states: {51, 59, 176, 177}
[168] direct_abstract_declarator --> direct_abstract_declarator . '(' ')'
	Preceding states: {51, 59, 176, 177}
[169] direct_abstract_declarator --> direct_abstract_declarator . '(' parameter_type_list ')'
	Preceding states: {51, 59, 176, 177}
-----------------------------
With '[', go to state 65
With '(', go to state 66
=============================
STATE NUMBER: 62
=============================
[132] declarator --> pointer . direct_declarator
	Preceding states: {51, 59}
	Follow set: {')', ','}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {62}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {62}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {62}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {62}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {62}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {62}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {62}
[158] abstract_declarator --> pointer .
	Preceding states: {51, 59}
	Lookahead set: {')', ','}
[160] abstract_declarator --> pointer . direct_abstract_declarator
	Preceding states: {51, 59}
	Follow set: {')', ','}
[161] direct_abstract_declarator --> . '(' abstract_declarator ')'
	Preceding states: {62}
[162] direct_abstract_declarator --> . '[' ']'
	Preceding states: {62}
[163] direct_abstract_declarator --> . '[' constant_expression ']'
	Preceding states: {62}
[164] direct_abstract_declarator --> . direct_abstract_declarator '[' ']'
	Preceding states: {62}
[165] direct_abstract_declarator --> . direct_abstract_declarator '[' constant_expression ']'
	Preceding states: {62}
[166] direct_abstract_declarator --> . '(' ')'
	Preceding states: {62}
[167] direct_abstract_declarator --> . '(' parameter_type_list ')'
	Preceding states: {62}
[168] direct_abstract_declarator --> . direct_abstract_declarator '(' ')'
	Preceding states: {62}
[169] direct_abstract_declarator --> . direct_abstract_declarator '(' parameter_type_list ')'
	Preceding states: {62}
-----------------------------
With '[', go to state 57
With direct_declarator, go to state 63
With '(', go to state 59
With 'IDENTIFIER', go to state 25
With direct_abstract_declarator, go to state 64
=============================
STATE NUMBER: 63
=============================
[132] declarator --> pointer direct_declarator .
	Preceding states: {0, 1, 15, 23, 32, 51, 59, 221, 235, 316, 327, 347}
	Lookahead set: {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', ')', ',', ':', '=', ';', '{'}
[136] direct_declarator --> direct_declarator . '[' constant_expression ']'
	Preceding states: {27, 62}
[137] direct_declarator --> direct_declarator . '[' ']'
	Preceding states: {27, 62}
[138] direct_declarator --> direct_declarator . '(' parameter_type_list ')'
	Preceding states: {27, 62}
[139] direct_declarator --> direct_declarator . '(' identifier_list ')'
	Preceding states: {27, 62}
[140] direct_declarator --> direct_declarator . '(' ')'
	Preceding states: {27, 62}
-----------------------------
With '[', go to state 47
With '(', go to state 48
=============================
STATE NUMBER: 64
=============================
[160] abstract_declarator --> pointer direct_abstract_declarator .
	Preceding states: {51, 59, 176, 177}
	Lookahead set: {')', ','}
[164] direct_abstract_declarator --> direct_abstract_declarator . '[' ']'
	Preceding states: {62, 179}
[165] direct_abstract_declarator --> direct_abstract_declarator . '[' constant_expression ']'
	Preceding states: {62, 179}
[168] direct_abstract_declarator --> direct_abstract_declarator . '(' ')'
	Preceding states: {62, 179}
[169] direct_abstract_declarator --> direct_abstract_declarator . '(' parameter_type_list ')'
	Preceding states: {62, 179}
-----------------------------
With '[', go to state 65
With '(', go to state 66
=============================
STATE NUMBER: 65
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {65}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {65}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {65}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {65}
[7] postfix_expression --> . primary_expression
	Preceding states: {65}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {65}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {65}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {65}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {65}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {65}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {65}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {65}
[17] unary_expression --> . postfix_expression
	Preceding states: {65}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {65}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {65}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {65}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {65}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {65}
[23] unary_operator --> . '&'
	Preceding states: {65}
[24] unary_operator --> . '*'
	Preceding states: {65}
[25] unary_operator --> . '+'
	Preceding states: {65}
[26] unary_operator --> . '-'
	Preceding states: {65}
[27] unary_operator --> . '~'
	Preceding states: {65}
[28] unary_operator --> . '!'
	Preceding states: {65}
[29] cast_expression --> . unary_expression
	Preceding states: {65}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {65}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {65}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {65}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {65}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {65}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {65}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {65}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {65}
[38] shift_expression --> . additive_expression
	Preceding states: {65}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {65}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {65}
[41] relational_expression --> . shift_expression
	Preceding states: {65}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {65}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {65}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {65}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {65}
[46] equality_expression --> . relational_expression
	Preceding states: {65}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {65}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {65}
[49] and_expression --> . equality_expression
	Preceding states: {65}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {65}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {65}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {65}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {65}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {65}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {65}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {65}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {65}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {65}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {65}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {65}
[76] constant_expression --> . conditional_expression
	Preceding states: {65}
[164] direct_abstract_declarator --> direct_abstract_declarator '[' . ']'
	Preceding states: {51, 59, 62, 176, 177, 179}
[165] direct_abstract_declarator --> direct_abstract_declarator '[' . constant_expression ']'
	Preceding states: {51, 59, 62, 176, 177, 179}
	Follow set: {']'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With conditional_expression, go to state 77
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With ']', go to state 81
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With constant_expression, go to state 86
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 66
=============================
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {66}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {66}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {66}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {66}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {66}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {66}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {66}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {66}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {66}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {66}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {66}
[94] type_specifier --> . 'VOID'
	Preceding states: {66}
[95] type_specifier --> . 'CHAR'
	Preceding states: {66}
[96] type_specifier --> . 'SHORT'
	Preceding states: {66}
[97] type_specifier --> . 'INT'
	Preceding states: {66}
[98] type_specifier --> . 'LONG'
	Preceding states: {66}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {66}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {66}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {66}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {66}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {66}
[104] type_specifier --> . enum_specifier
	Preceding states: {66}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {66}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {66}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {66}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {66}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {66}
[110] struct_or_union --> . 'UNION'
	Preceding states: {66}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {66}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {66}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {66}
[130] type_qualifier --> . 'CONST'
	Preceding states: {66}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {66}
[147] parameter_type_list --> . parameter_list
	Preceding states: {66}
[148] parameter_type_list --> . parameter_list ',' 'ELLIPSIS'
	Preceding states: {66}
[149] parameter_list --> . parameter_declaration
	Preceding states: {66}
[150] parameter_list --> . parameter_list ',' parameter_declaration
	Preceding states: {66}
[151] parameter_declaration --> . declaration_specifiers declarator
	Preceding states: {66}
[152] parameter_declaration --> . declaration_specifiers abstract_declarator
	Preceding states: {66}
[153] parameter_declaration --> . declaration_specifiers
	Preceding states: {66}
[168] direct_abstract_declarator --> direct_abstract_declarator '(' . ')'
	Preceding states: {51, 59, 62, 176, 177, 179}
[169] direct_abstract_declarator --> direct_abstract_declarator '(' . parameter_type_list ')'
	Preceding states: {51, 59, 62, 176, 177, 179}
	Follow set: {')'}
-----------------------------
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With parameter_list, go to state 49
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With 'INT', go to state 22
With struct_or_union, go to state 21
With declaration_specifiers, go to state 51
With parameter_declaration, go to state 52
With ')', go to state 67
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'UNION', go to state 36
With parameter_type_list, go to state 68
With 'LONG', go to state 38
=============================
STATE NUMBER: 67
=============================
[168] direct_abstract_declarator --> direct_abstract_declarator '(' ')' .
	Preceding states: {51, 59, 62, 176, 177, 179}
	Lookahead set: {'(', ')', '[', ','}
-----------------------------
=============================
STATE NUMBER: 68
=============================
[169] direct_abstract_declarator --> direct_abstract_declarator '(' parameter_type_list . ')'
	Preceding states: {51, 59, 62, 176, 177, 179}
-----------------------------
With ')', go to state 69
=============================
STATE NUMBER: 69
=============================
[169] direct_abstract_declarator --> direct_abstract_declarator '(' parameter_type_list ')' .
	Preceding states: {51, 59, 62, 176, 177, 179}
	Lookahead set: {'(', ')', '[', ','}
-----------------------------
=============================
STATE NUMBER: 70
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {70}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {70}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {70}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {70}
[6] primary_expression --> '(' . expression ')'
	Preceding states: {47, 57, 65, 70, 79, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {')'}
[7] postfix_expression --> . primary_expression
	Preceding states: {70}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {70}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {70}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {70}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {70}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {70}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {70}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {70}
[17] unary_expression --> . postfix_expression
	Preceding states: {70}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {70}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {70}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {70}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {70}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {70}
[23] unary_operator --> . '&'
	Preceding states: {70}
[24] unary_operator --> . '*'
	Preceding states: {70}
[25] unary_operator --> . '+'
	Preceding states: {70}
[26] unary_operator --> . '-'
	Preceding states: {70}
[27] unary_operator --> . '~'
	Preceding states: {70}
[28] unary_operator --> . '!'
	Preceding states: {70}
[29] cast_expression --> . unary_expression
	Preceding states: {70}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {70}
[30] cast_expression --> '(' . type_name ')' cast_expression
	Preceding states: {47, 57, 65, 70, 79, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {')'}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {70}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {70}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {70}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {70}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {70}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {70}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {70}
[38] shift_expression --> . additive_expression
	Preceding states: {70}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {70}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {70}
[41] relational_expression --> . shift_expression
	Preceding states: {70}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {70}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {70}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {70}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {70}
[46] equality_expression --> . relational_expression
	Preceding states: {70}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {70}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {70}
[49] and_expression --> . equality_expression
	Preceding states: {70}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {70}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {70}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {70}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {70}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {70}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {70}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {70}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {70}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {70}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {70}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {70}
[61] assignment_expression --> . conditional_expression
	Preceding states: {70}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {70}
[74] expression --> . assignment_expression
	Preceding states: {70}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {70}
[94] type_specifier --> . 'VOID'
	Preceding states: {70}
[95] type_specifier --> . 'CHAR'
	Preceding states: {70}
[96] type_specifier --> . 'SHORT'
	Preceding states: {70}
[97] type_specifier --> . 'INT'
	Preceding states: {70}
[98] type_specifier --> . 'LONG'
	Preceding states: {70}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {70}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {70}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {70}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {70}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {70}
[104] type_specifier --> . enum_specifier
	Preceding states: {70}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {70}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {70}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {70}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {70}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {70}
[110] struct_or_union --> . 'UNION'
	Preceding states: {70}
[114] specifier_qualifier_list --> . type_specifier specifier_qualifier_list
	Preceding states: {70}
[115] specifier_qualifier_list --> . type_specifier
	Preceding states: {70}
[116] specifier_qualifier_list --> . type_qualifier specifier_qualifier_list
	Preceding states: {70}
[117] specifier_qualifier_list --> . type_qualifier
	Preceding states: {70}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {70}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {70}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {70}
[130] type_qualifier --> . 'CONST'
	Preceding states: {70}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {70}
[156] type_name --> . specifier_qualifier_list
	Preceding states: {70}
[157] type_name --> . specifier_qualifier_list abstract_declarator
	Preceding states: {70}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With type_qualifier, go to state 172
With 'VOLATILE', go to state 5
With equality_expression, go to state 75
With 'CHAR', go to state 10
With struct_or_union_specifier, go to state 12
With '!', go to state 78
With 'DOUBLE', go to state 13
With '+', go to state 83
With type_specifier, go to state 173
With shift_expression, go to state 85
With '&', go to state 87
With 'ENUM', go to state 20
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With 'VOID', go to state 28
With and_expression, go to state 94
With additive_expression, go to state 95
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'LONG', go to state 38
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With 'FLOAT', go to state 4
With '~', go to state 74
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONST', go to state 19
With expression, go to state 174
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With 'INT', go to state 22
With struct_or_union, go to state 21
With type_name, go to state 199
With specifier_qualifier_list, go to state 176
With 'UNSIGNED', go to state 26
With 'STRUCT', go to state 30
With 'UNION', go to state 36
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 71
=============================
[42] relational_expression --> relational_expression . '<' shift_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[43] relational_expression --> relational_expression . '>' shift_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[44] relational_expression --> relational_expression . 'LE_OP' shift_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[45] relational_expression --> relational_expression . 'GE_OP' shift_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[46] equality_expression --> relational_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With 'GE_OP', go to state 146
With '>', go to state 147
With '<', go to state 148
With 'LE_OP', go to state 149
=============================
STATE NUMBER: 72
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {72}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {72}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {72}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {72}
[7] postfix_expression --> . primary_expression
	Preceding states: {72}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {72}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {72}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {72}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {72}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {72}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {72}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {72}
[17] unary_expression --> . postfix_expression
	Preceding states: {72}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {72}
[18] unary_expression --> 'INC_OP' . unary_expression
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {72}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {72}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {72}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {72}
[23] unary_operator --> . '&'
	Preceding states: {72}
[24] unary_operator --> . '*'
	Preceding states: {72}
[25] unary_operator --> . '+'
	Preceding states: {72}
[26] unary_operator --> . '-'
	Preceding states: {72}
[27] unary_operator --> . '~'
	Preceding states: {72}
[28] unary_operator --> . '!'
	Preceding states: {72}
-----------------------------
With '(', go to state 195
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 198
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With '-', go to state 76
With '!', go to state 78
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 73
=============================
[29] cast_expression --> unary_expression .
	Preceding states: {47, 57, 65, 79, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 189, 192, 200, 254, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 74
=============================
[27] unary_operator --> '~' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 75
=============================
[47] equality_expression --> equality_expression . 'EQ_OP' relational_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[48] equality_expression --> equality_expression . 'NE_OP' relational_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[49] and_expression --> equality_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With 'NE_OP', go to state 143
With 'EQ_OP', go to state 144
=============================
STATE NUMBER: 76
=============================
[26] unary_operator --> '-' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 77
=============================
[76] constant_expression --> conditional_expression .
	Preceding states: {47, 57, 65, 254, 324, 329, 342}
	Lookahead set: {']', ',', ':', ';', '}'}
-----------------------------
=============================
STATE NUMBER: 78
=============================
[28] unary_operator --> '!' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 79
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {79}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {79}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {79}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {79}
[7] postfix_expression --> . primary_expression
	Preceding states: {79}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {79}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {79}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {79}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {79}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {79}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {79}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {79}
[17] unary_expression --> . postfix_expression
	Preceding states: {79}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {79}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {79}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {79}
[20] unary_expression --> unary_operator . cast_expression
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {79}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {79}
[23] unary_operator --> . '&'
	Preceding states: {79}
[24] unary_operator --> . '*'
	Preceding states: {79}
[25] unary_operator --> . '+'
	Preceding states: {79}
[26] unary_operator --> . '-'
	Preceding states: {79}
[27] unary_operator --> . '~'
	Preceding states: {79}
[28] unary_operator --> . '!'
	Preceding states: {79}
[29] cast_expression --> . unary_expression
	Preceding states: {79}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {79}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With '-', go to state 76
With '!', go to state 78
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With cast_expression, go to state 197
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 80
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {80}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {80}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {80}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {80}
[7] postfix_expression --> . primary_expression
	Preceding states: {80}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {80}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {80}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {80}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {80}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {80}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {80}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {80}
[17] unary_expression --> . postfix_expression
	Preceding states: {80}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {80}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {80}
[19] unary_expression --> 'DEC_OP' . unary_expression
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {80}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {80}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {80}
[23] unary_operator --> . '&'
	Preceding states: {80}
[24] unary_operator --> . '*'
	Preceding states: {80}
[25] unary_operator --> . '+'
	Preceding states: {80}
[26] unary_operator --> . '-'
	Preceding states: {80}
[27] unary_operator --> . '~'
	Preceding states: {80}
[28] unary_operator --> . '!'
	Preceding states: {80}
-----------------------------
With '(', go to state 195
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 196
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With '-', go to state 76
With '!', go to state 78
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 81
=============================
[164] direct_abstract_declarator --> direct_abstract_declarator '[' ']' .
	Preceding states: {51, 59, 62, 176, 177, 179}
	Lookahead set: {'(', ')', '[', ','}
-----------------------------
=============================
STATE NUMBER: 82
=============================
[58] logical_or_expression --> logical_or_expression . 'OR_OP' logical_and_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[59] conditional_expression --> logical_or_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
[60] conditional_expression --> logical_or_expression . '?' expression ':' conditional_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
-----------------------------
With 'OR_OP', go to state 189
With '?', go to state 190
=============================
STATE NUMBER: 83
=============================
[25] unary_operator --> '+' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 84
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {84}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {84}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {84}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {84}
[7] postfix_expression --> . primary_expression
	Preceding states: {84}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {84}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {84}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {84}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {84}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {84}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {84}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {84}
[17] unary_expression --> . postfix_expression
	Preceding states: {84}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {84}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {84}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {84}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {84}
[21] unary_expression --> 'SIZEOF' . unary_expression
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {84}
[22] unary_expression --> 'SIZEOF' . '(' type_name ')'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[23] unary_operator --> . '&'
	Preceding states: {84}
[24] unary_operator --> . '*'
	Preceding states: {84}
[25] unary_operator --> . '+'
	Preceding states: {84}
[26] unary_operator --> . '-'
	Preceding states: {84}
[27] unary_operator --> . '~'
	Preceding states: {84}
[28] unary_operator --> . '!'
	Preceding states: {84}
-----------------------------
With '(', go to state 170
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 171
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With '-', go to state 76
With '!', go to state 78
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 85
=============================
[39] shift_expression --> shift_expression . 'LEFT_OP' additive_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[40] shift_expression --> shift_expression . 'RIGHT_OP' additive_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[41] relational_expression --> shift_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With 'RIGHT_OP', go to state 151
With 'LEFT_OP', go to state 152
=============================
STATE NUMBER: 86
=============================
[165] direct_abstract_declarator --> direct_abstract_declarator '[' constant_expression . ']'
	Preceding states: {51, 59, 62, 176, 177, 179}
-----------------------------
With ']', go to state 169
=============================
STATE NUMBER: 87
=============================
[23] unary_operator --> '&' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 88
=============================
[4] primary_expression --> 'CONSTANT' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 89
=============================
[54] inclusive_or_expression --> inclusive_or_expression . '|' exclusive_or_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[55] logical_and_expression --> inclusive_or_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '?', ':', ';', '{', '}'}
-----------------------------
With '|', go to state 137
=============================
STATE NUMBER: 90
=============================
[52] exclusive_or_expression --> exclusive_or_expression . '^' and_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[53] inclusive_or_expression --> exclusive_or_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '^', go to state 139
=============================
STATE NUMBER: 91
=============================
[7] postfix_expression --> primary_expression .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 92
=============================
[3] primary_expression --> 'IDENTIFIER' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 242, 254, 263, 264, 265, 275, 280, 284, 291, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 93
=============================
[32] multiplicative_expression --> multiplicative_expression . '*' cast_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[33] multiplicative_expression --> multiplicative_expression . '/' cast_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[34] multiplicative_expression --> multiplicative_expression . '%' cast_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[35] additive_expression --> multiplicative_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '%', go to state 157
With '/', go to state 158
With '*', go to state 159
=============================
STATE NUMBER: 94
=============================
[50] and_expression --> and_expression . '&' equality_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[51] exclusive_or_expression --> and_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '&', go to state 141
=============================
STATE NUMBER: 95
=============================
[36] additive_expression --> additive_expression . '+' multiplicative_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[37] additive_expression --> additive_expression . '-' multiplicative_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[38] shift_expression --> additive_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '+', go to state 154
With '-', go to state 155
=============================
STATE NUMBER: 96
=============================
[56] logical_and_expression --> logical_and_expression . 'AND_OP' inclusive_or_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[57] logical_or_expression --> logical_and_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '?', ':', ';', '{', '}'}
-----------------------------
With 'AND_OP', go to state 135
=============================
STATE NUMBER: 97
=============================
[31] multiplicative_expression --> cast_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 98
=============================
[8] postfix_expression --> postfix_expression . '[' expression ']'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[9] postfix_expression --> postfix_expression . '(' ')'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[10] postfix_expression --> postfix_expression . '(' argument_expression_list ')'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[11] postfix_expression --> postfix_expression . '.' 'IDENTIFIER'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[12] postfix_expression --> postfix_expression . 'PTR_OP' 'IDENTIFIER'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[13] postfix_expression --> postfix_expression . 'INC_OP'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[14] postfix_expression --> postfix_expression . 'DEC_OP'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[17] unary_expression --> postfix_expression .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
With '[', go to state 101
With '(', go to state 102
With 'DEC_OP', go to state 103
With 'INC_OP', go to state 104
With '.', go to state 105
With 'PTR_OP', go to state 106
=============================
STATE NUMBER: 99
=============================
[5] primary_expression --> 'STRING_LITERAL' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 100
=============================
[24] unary_operator --> '*' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 101
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {101}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {101}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {101}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {101}
[7] postfix_expression --> . primary_expression
	Preceding states: {101}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {101}
[8] postfix_expression --> postfix_expression '[' . expression ']'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {']'}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {101}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {101}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {101}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {101}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {101}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {101}
[17] unary_expression --> . postfix_expression
	Preceding states: {101}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {101}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {101}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {101}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {101}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {101}
[23] unary_operator --> . '&'
	Preceding states: {101}
[24] unary_operator --> . '*'
	Preceding states: {101}
[25] unary_operator --> . '+'
	Preceding states: {101}
[26] unary_operator --> . '-'
	Preceding states: {101}
[27] unary_operator --> . '~'
	Preceding states: {101}
[28] unary_operator --> . '!'
	Preceding states: {101}
[29] cast_expression --> . unary_expression
	Preceding states: {101}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {101}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {101}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {101}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {101}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {101}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {101}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {101}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {101}
[38] shift_expression --> . additive_expression
	Preceding states: {101}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {101}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {101}
[41] relational_expression --> . shift_expression
	Preceding states: {101}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {101}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {101}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {101}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {101}
[46] equality_expression --> . relational_expression
	Preceding states: {101}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {101}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {101}
[49] and_expression --> . equality_expression
	Preceding states: {101}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {101}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {101}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {101}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {101}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {101}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {101}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {101}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {101}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {101}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {101}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {101}
[61] assignment_expression --> . conditional_expression
	Preceding states: {101}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {101}
[74] expression --> . assignment_expression
	Preceding states: {101}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {101}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With expression, go to state 131
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 102
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {102}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {102}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {102}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {102}
[7] postfix_expression --> . primary_expression
	Preceding states: {102}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {102}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {102}
[9] postfix_expression --> postfix_expression '(' . ')'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {102}
[10] postfix_expression --> postfix_expression '(' . argument_expression_list ')'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {')'}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {102}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {102}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {102}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {102}
[15] argument_expression_list --> . assignment_expression
	Preceding states: {102}
[16] argument_expression_list --> . argument_expression_list ',' assignment_expression
	Preceding states: {102}
[17] unary_expression --> . postfix_expression
	Preceding states: {102}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {102}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {102}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {102}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {102}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {102}
[23] unary_operator --> . '&'
	Preceding states: {102}
[24] unary_operator --> . '*'
	Preceding states: {102}
[25] unary_operator --> . '+'
	Preceding states: {102}
[26] unary_operator --> . '-'
	Preceding states: {102}
[27] unary_operator --> . '~'
	Preceding states: {102}
[28] unary_operator --> . '!'
	Preceding states: {102}
[29] cast_expression --> . unary_expression
	Preceding states: {102}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {102}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {102}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {102}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {102}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {102}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {102}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {102}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {102}
[38] shift_expression --> . additive_expression
	Preceding states: {102}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {102}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {102}
[41] relational_expression --> . shift_expression
	Preceding states: {102}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {102}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {102}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {102}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {102}
[46] equality_expression --> . relational_expression
	Preceding states: {102}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {102}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {102}
[49] and_expression --> . equality_expression
	Preceding states: {102}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {102}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {102}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {102}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {102}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {102}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {102}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {102}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {102}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {102}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {102}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {102}
[61] assignment_expression --> . conditional_expression
	Preceding states: {102}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {102}
-----------------------------
With relational_expression, go to state 71
With '(', go to state 70
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 110
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With argument_expression_list, go to state 112
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With ')', go to state 113
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 103
=============================
[14] postfix_expression --> postfix_expression 'DEC_OP' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 104
=============================
[13] postfix_expression --> postfix_expression 'INC_OP' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 105
=============================
[11] postfix_expression --> postfix_expression '.' . 'IDENTIFIER'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
-----------------------------
With 'IDENTIFIER', go to state 108
=============================
STATE NUMBER: 106
=============================
[12] postfix_expression --> postfix_expression 'PTR_OP' . 'IDENTIFIER'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
-----------------------------
With 'IDENTIFIER', go to state 107
=============================
STATE NUMBER: 107
=============================
[12] postfix_expression --> postfix_expression 'PTR_OP' 'IDENTIFIER' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 108
=============================
[11] postfix_expression --> postfix_expression '.' 'IDENTIFIER' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 109
=============================
[29] cast_expression --> unary_expression .
	Preceding states: {70, 101, 102, 114, 121, 133, 170, 190, 195, 224, 227, 231, 236, 239, 242, 245, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
[62] assignment_expression --> unary_expression . assignment_operator assignment_expression
	Preceding states: {70, 101, 102, 114, 121, 133, 170, 190, 195, 224, 227, 231, 236, 239, 242, 245, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
[63] assignment_operator --> . '='
	Preceding states: {109}
[64] assignment_operator --> . 'MUL_ASSIGN'
	Preceding states: {109}
[65] assignment_operator --> . 'DIV_ASSIGN'
	Preceding states: {109}
[66] assignment_operator --> . 'MOD_ASSIGN'
	Preceding states: {109}
[67] assignment_operator --> . 'ADD_ASSIGN'
	Preceding states: {109}
[68] assignment_operator --> . 'SUB_ASSIGN'
	Preceding states: {109}
[69] assignment_operator --> . 'LEFT_ASSIGN'
	Preceding states: {109}
[70] assignment_operator --> . 'RIGHT_ASSIGN'
	Preceding states: {109}
[71] assignment_operator --> . 'AND_ASSIGN'
	Preceding states: {109}
[72] assignment_operator --> . 'XOR_ASSIGN'
	Preceding states: {109}
[73] assignment_operator --> . 'OR_ASSIGN'
	Preceding states: {109}
-----------------------------
With 'DIV_ASSIGN', go to state 117
With '=', go to state 118
With 'XOR_ASSIGN', go to state 119
With 'LEFT_ASSIGN', go to state 120
With assignment_operator, go to state 121
With 'ADD_ASSIGN', go to state 122
With 'MUL_ASSIGN', go to state 123
With 'MOD_ASSIGN', go to state 124
With 'AND_ASSIGN', go to state 125
With 'RIGHT_ASSIGN', go to state 126
With 'OR_ASSIGN', go to state 127
With 'SUB_ASSIGN', go to state 128
=============================
STATE NUMBER: 110
=============================
[15] argument_expression_list --> assignment_expression .
	Preceding states: {102}
	Lookahead set: {')', ','}
-----------------------------
=============================
STATE NUMBER: 111
=============================
[61] assignment_expression --> conditional_expression .
	Preceding states: {70, 101, 102, 114, 121, 133, 170, 190, 195, 224, 227, 231, 236, 239, 242, 245, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 112
=============================
[10] postfix_expression --> postfix_expression '(' argument_expression_list . ')'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[16] argument_expression_list --> argument_expression_list . ',' assignment_expression
	Preceding states: {102}
-----------------------------
With ',', go to state 114
With ')', go to state 115
=============================
STATE NUMBER: 113
=============================
[9] postfix_expression --> postfix_expression '(' ')' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 114
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {114}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {114}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {114}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {114}
[7] postfix_expression --> . primary_expression
	Preceding states: {114}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {114}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {114}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {114}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {114}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {114}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {114}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {114}
[16] argument_expression_list --> argument_expression_list ',' . assignment_expression
	Preceding states: {102}
	Follow set: {')', ','}
[17] unary_expression --> . postfix_expression
	Preceding states: {114}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {114}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {114}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {114}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {114}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {114}
[23] unary_operator --> . '&'
	Preceding states: {114}
[24] unary_operator --> . '*'
	Preceding states: {114}
[25] unary_operator --> . '+'
	Preceding states: {114}
[26] unary_operator --> . '-'
	Preceding states: {114}
[27] unary_operator --> . '~'
	Preceding states: {114}
[28] unary_operator --> . '!'
	Preceding states: {114}
[29] cast_expression --> . unary_expression
	Preceding states: {114}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {114}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {114}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {114}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {114}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {114}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {114}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {114}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {114}
[38] shift_expression --> . additive_expression
	Preceding states: {114}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {114}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {114}
[41] relational_expression --> . shift_expression
	Preceding states: {114}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {114}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {114}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {114}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {114}
[46] equality_expression --> . relational_expression
	Preceding states: {114}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {114}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {114}
[49] and_expression --> . equality_expression
	Preceding states: {114}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {114}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {114}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {114}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {114}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {114}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {114}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {114}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {114}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {114}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {114}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {114}
[61] assignment_expression --> . conditional_expression
	Preceding states: {114}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {114}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 116
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 115
=============================
[10] postfix_expression --> postfix_expression '(' argument_expression_list ')' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 116
=============================
[16] argument_expression_list --> argument_expression_list ',' assignment_expression .
	Preceding states: {102}
	Lookahead set: {')', ','}
-----------------------------
=============================
STATE NUMBER: 117
=============================
[65] assignment_operator --> 'DIV_ASSIGN' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 118
=============================
[63] assignment_operator --> '=' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 119
=============================
[72] assignment_operator --> 'XOR_ASSIGN' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 120
=============================
[69] assignment_operator --> 'LEFT_ASSIGN' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 121
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {121}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {121}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {121}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {121}
[7] postfix_expression --> . primary_expression
	Preceding states: {121}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {121}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {121}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {121}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {121}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {121}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {121}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {121}
[17] unary_expression --> . postfix_expression
	Preceding states: {121}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {121}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {121}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {121}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {121}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {121}
[23] unary_operator --> . '&'
	Preceding states: {121}
[24] unary_operator --> . '*'
	Preceding states: {121}
[25] unary_operator --> . '+'
	Preceding states: {121}
[26] unary_operator --> . '-'
	Preceding states: {121}
[27] unary_operator --> . '~'
	Preceding states: {121}
[28] unary_operator --> . '!'
	Preceding states: {121}
[29] cast_expression --> . unary_expression
	Preceding states: {121}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {121}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {121}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {121}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {121}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {121}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {121}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {121}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {121}
[38] shift_expression --> . additive_expression
	Preceding states: {121}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {121}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {121}
[41] relational_expression --> . shift_expression
	Preceding states: {121}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {121}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {121}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {121}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {121}
[46] equality_expression --> . relational_expression
	Preceding states: {121}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {121}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {121}
[49] and_expression --> . equality_expression
	Preceding states: {121}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {121}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {121}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {121}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {121}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {121}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {121}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {121}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {121}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {121}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {121}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {121}
[61] assignment_expression --> . conditional_expression
	Preceding states: {121}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {121}
[62] assignment_expression --> unary_expression assignment_operator . assignment_expression
	Preceding states: {70, 101, 102, 114, 121, 133, 170, 190, 195, 224, 227, 231, 236, 239, 242, 245, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 129
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 122
=============================
[67] assignment_operator --> 'ADD_ASSIGN' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 123
=============================
[64] assignment_operator --> 'MUL_ASSIGN' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 124
=============================
[66] assignment_operator --> 'MOD_ASSIGN' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 125
=============================
[71] assignment_operator --> 'AND_ASSIGN' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 126
=============================
[70] assignment_operator --> 'RIGHT_ASSIGN' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 127
=============================
[73] assignment_operator --> 'OR_ASSIGN' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 128
=============================
[68] assignment_operator --> 'SUB_ASSIGN' .
	Preceding states: {109}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!'}
-----------------------------
=============================
STATE NUMBER: 129
=============================
[62] assignment_expression --> unary_expression assignment_operator assignment_expression .
	Preceding states: {70, 101, 102, 114, 121, 133, 170, 190, 195, 224, 227, 231, 236, 239, 242, 245, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 130
=============================
[74] expression --> assignment_expression .
	Preceding states: {70, 101, 170, 190, 195, 236, 239, 242, 245, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309}
	Lookahead set: {')', ']', ',', ':', ';'}
-----------------------------
=============================
STATE NUMBER: 131
=============================
[8] postfix_expression --> postfix_expression '[' expression . ']'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[75] expression --> expression . ',' assignment_expression
	Preceding states: {101}
-----------------------------
With ']', go to state 132
With ',', go to state 133
=============================
STATE NUMBER: 132
=============================
[8] postfix_expression --> postfix_expression '[' expression ']' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 133
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {133}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {133}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {133}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {133}
[7] postfix_expression --> . primary_expression
	Preceding states: {133}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {133}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {133}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {133}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {133}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {133}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {133}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {133}
[17] unary_expression --> . postfix_expression
	Preceding states: {133}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {133}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {133}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {133}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {133}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {133}
[23] unary_operator --> . '&'
	Preceding states: {133}
[24] unary_operator --> . '*'
	Preceding states: {133}
[25] unary_operator --> . '+'
	Preceding states: {133}
[26] unary_operator --> . '-'
	Preceding states: {133}
[27] unary_operator --> . '~'
	Preceding states: {133}
[28] unary_operator --> . '!'
	Preceding states: {133}
[29] cast_expression --> . unary_expression
	Preceding states: {133}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {133}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {133}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {133}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {133}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {133}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {133}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {133}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {133}
[38] shift_expression --> . additive_expression
	Preceding states: {133}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {133}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {133}
[41] relational_expression --> . shift_expression
	Preceding states: {133}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {133}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {133}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {133}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {133}
[46] equality_expression --> . relational_expression
	Preceding states: {133}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {133}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {133}
[49] and_expression --> . equality_expression
	Preceding states: {133}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {133}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {133}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {133}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {133}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {133}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {133}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {133}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {133}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {133}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {133}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {133}
[61] assignment_expression --> . conditional_expression
	Preceding states: {133}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {133}
[75] expression --> expression ',' . assignment_expression
	Preceding states: {70, 101, 170, 190, 195, 236, 239, 242, 245, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 134
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 134
=============================
[75] expression --> expression ',' assignment_expression .
	Preceding states: {70, 101, 170, 190, 195, 236, 239, 242, 245, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309}
	Lookahead set: {')', ']', ',', ':', ';'}
-----------------------------
=============================
STATE NUMBER: 135
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {135}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {135}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {135}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {135}
[7] postfix_expression --> . primary_expression
	Preceding states: {135}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {135}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {135}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {135}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {135}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {135}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {135}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {135}
[17] unary_expression --> . postfix_expression
	Preceding states: {135}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {135}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {135}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {135}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {135}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {135}
[23] unary_operator --> . '&'
	Preceding states: {135}
[24] unary_operator --> . '*'
	Preceding states: {135}
[25] unary_operator --> . '+'
	Preceding states: {135}
[26] unary_operator --> . '-'
	Preceding states: {135}
[27] unary_operator --> . '~'
	Preceding states: {135}
[28] unary_operator --> . '!'
	Preceding states: {135}
[29] cast_expression --> . unary_expression
	Preceding states: {135}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {135}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {135}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {135}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {135}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {135}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {135}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {135}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {135}
[38] shift_expression --> . additive_expression
	Preceding states: {135}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {135}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {135}
[41] relational_expression --> . shift_expression
	Preceding states: {135}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {135}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {135}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {135}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {135}
[46] equality_expression --> . relational_expression
	Preceding states: {135}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {135}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {135}
[49] and_expression --> . equality_expression
	Preceding states: {135}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {135}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {135}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {135}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {135}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {135}
[56] logical_and_expression --> logical_and_expression 'AND_OP' . inclusive_or_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 136
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 136
=============================
[54] inclusive_or_expression --> inclusive_or_expression . '|' exclusive_or_expression
	Preceding states: {135}
[56] logical_and_expression --> logical_and_expression 'AND_OP' inclusive_or_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '?', ':', ';', '{', '}'}
-----------------------------
With '|', go to state 137
=============================
STATE NUMBER: 137
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {137}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {137}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {137}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {137}
[7] postfix_expression --> . primary_expression
	Preceding states: {137}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {137}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {137}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {137}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {137}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {137}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {137}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {137}
[17] unary_expression --> . postfix_expression
	Preceding states: {137}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {137}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {137}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {137}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {137}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {137}
[23] unary_operator --> . '&'
	Preceding states: {137}
[24] unary_operator --> . '*'
	Preceding states: {137}
[25] unary_operator --> . '+'
	Preceding states: {137}
[26] unary_operator --> . '-'
	Preceding states: {137}
[27] unary_operator --> . '~'
	Preceding states: {137}
[28] unary_operator --> . '!'
	Preceding states: {137}
[29] cast_expression --> . unary_expression
	Preceding states: {137}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {137}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {137}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {137}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {137}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {137}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {137}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {137}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {137}
[38] shift_expression --> . additive_expression
	Preceding states: {137}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {137}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {137}
[41] relational_expression --> . shift_expression
	Preceding states: {137}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {137}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {137}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {137}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {137}
[46] equality_expression --> . relational_expression
	Preceding states: {137}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {137}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {137}
[49] and_expression --> . equality_expression
	Preceding states: {137}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {137}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {137}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {137}
[54] inclusive_or_expression --> inclusive_or_expression '|' . exclusive_or_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With exclusive_or_expression, go to state 138
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 138
=============================
[52] exclusive_or_expression --> exclusive_or_expression . '^' and_expression
	Preceding states: {137}
[54] inclusive_or_expression --> inclusive_or_expression '|' exclusive_or_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '^', go to state 139
=============================
STATE NUMBER: 139
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {139}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {139}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {139}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {139}
[7] postfix_expression --> . primary_expression
	Preceding states: {139}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {139}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {139}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {139}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {139}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {139}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {139}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {139}
[17] unary_expression --> . postfix_expression
	Preceding states: {139}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {139}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {139}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {139}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {139}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {139}
[23] unary_operator --> . '&'
	Preceding states: {139}
[24] unary_operator --> . '*'
	Preceding states: {139}
[25] unary_operator --> . '+'
	Preceding states: {139}
[26] unary_operator --> . '-'
	Preceding states: {139}
[27] unary_operator --> . '~'
	Preceding states: {139}
[28] unary_operator --> . '!'
	Preceding states: {139}
[29] cast_expression --> . unary_expression
	Preceding states: {139}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {139}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {139}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {139}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {139}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {139}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {139}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {139}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {139}
[38] shift_expression --> . additive_expression
	Preceding states: {139}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {139}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {139}
[41] relational_expression --> . shift_expression
	Preceding states: {139}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {139}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {139}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {139}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {139}
[46] equality_expression --> . relational_expression
	Preceding states: {139}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {139}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {139}
[49] and_expression --> . equality_expression
	Preceding states: {139}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {139}
[52] exclusive_or_expression --> exclusive_or_expression '^' . and_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With relational_expression, go to state 71
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With equality_expression, go to state 75
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With '-', go to state 76
With and_expression, go to state 140
With '!', go to state 78
With additive_expression, go to state 95
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 140
=============================
[50] and_expression --> and_expression . '&' equality_expression
	Preceding states: {139}
[52] exclusive_or_expression --> exclusive_or_expression '^' and_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '&', go to state 141
=============================
STATE NUMBER: 141
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {141}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {141}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {141}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {141}
[7] postfix_expression --> . primary_expression
	Preceding states: {141}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {141}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {141}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {141}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {141}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {141}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {141}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {141}
[17] unary_expression --> . postfix_expression
	Preceding states: {141}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {141}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {141}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {141}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {141}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {141}
[23] unary_operator --> . '&'
	Preceding states: {141}
[24] unary_operator --> . '*'
	Preceding states: {141}
[25] unary_operator --> . '+'
	Preceding states: {141}
[26] unary_operator --> . '-'
	Preceding states: {141}
[27] unary_operator --> . '~'
	Preceding states: {141}
[28] unary_operator --> . '!'
	Preceding states: {141}
[29] cast_expression --> . unary_expression
	Preceding states: {141}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {141}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {141}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {141}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {141}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {141}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {141}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {141}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {141}
[38] shift_expression --> . additive_expression
	Preceding states: {141}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {141}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {141}
[41] relational_expression --> . shift_expression
	Preceding states: {141}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {141}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {141}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {141}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {141}
[46] equality_expression --> . relational_expression
	Preceding states: {141}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {141}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {141}
[50] and_expression --> and_expression '&' . equality_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With relational_expression, go to state 71
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With equality_expression, go to state 142
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With '-', go to state 76
With '!', go to state 78
With additive_expression, go to state 95
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 142
=============================
[47] equality_expression --> equality_expression . 'EQ_OP' relational_expression
	Preceding states: {141}
[48] equality_expression --> equality_expression . 'NE_OP' relational_expression
	Preceding states: {141}
[50] and_expression --> and_expression '&' equality_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With 'NE_OP', go to state 143
With 'EQ_OP', go to state 144
=============================
STATE NUMBER: 143
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {143}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {143}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {143}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {143}
[7] postfix_expression --> . primary_expression
	Preceding states: {143}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {143}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {143}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {143}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {143}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {143}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {143}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {143}
[17] unary_expression --> . postfix_expression
	Preceding states: {143}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {143}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {143}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {143}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {143}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {143}
[23] unary_operator --> . '&'
	Preceding states: {143}
[24] unary_operator --> . '*'
	Preceding states: {143}
[25] unary_operator --> . '+'
	Preceding states: {143}
[26] unary_operator --> . '-'
	Preceding states: {143}
[27] unary_operator --> . '~'
	Preceding states: {143}
[28] unary_operator --> . '!'
	Preceding states: {143}
[29] cast_expression --> . unary_expression
	Preceding states: {143}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {143}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {143}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {143}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {143}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {143}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {143}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {143}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {143}
[38] shift_expression --> . additive_expression
	Preceding states: {143}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {143}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {143}
[41] relational_expression --> . shift_expression
	Preceding states: {143}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {143}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {143}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {143}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {143}
[48] equality_expression --> equality_expression 'NE_OP' . relational_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With relational_expression, go to state 168
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With '-', go to state 76
With '!', go to state 78
With additive_expression, go to state 95
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 144
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {144}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {144}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {144}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {144}
[7] postfix_expression --> . primary_expression
	Preceding states: {144}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {144}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {144}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {144}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {144}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {144}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {144}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {144}
[17] unary_expression --> . postfix_expression
	Preceding states: {144}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {144}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {144}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {144}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {144}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {144}
[23] unary_operator --> . '&'
	Preceding states: {144}
[24] unary_operator --> . '*'
	Preceding states: {144}
[25] unary_operator --> . '+'
	Preceding states: {144}
[26] unary_operator --> . '-'
	Preceding states: {144}
[27] unary_operator --> . '~'
	Preceding states: {144}
[28] unary_operator --> . '!'
	Preceding states: {144}
[29] cast_expression --> . unary_expression
	Preceding states: {144}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {144}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {144}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {144}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {144}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {144}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {144}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {144}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {144}
[38] shift_expression --> . additive_expression
	Preceding states: {144}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {144}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {144}
[41] relational_expression --> . shift_expression
	Preceding states: {144}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {144}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {144}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {144}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {144}
[47] equality_expression --> equality_expression 'EQ_OP' . relational_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With relational_expression, go to state 145
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With '-', go to state 76
With '!', go to state 78
With additive_expression, go to state 95
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 145
=============================
[42] relational_expression --> relational_expression . '<' shift_expression
	Preceding states: {144}
[43] relational_expression --> relational_expression . '>' shift_expression
	Preceding states: {144}
[44] relational_expression --> relational_expression . 'LE_OP' shift_expression
	Preceding states: {144}
[45] relational_expression --> relational_expression . 'GE_OP' shift_expression
	Preceding states: {144}
[47] equality_expression --> equality_expression 'EQ_OP' relational_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With 'GE_OP', go to state 146
With '>', go to state 147
With '<', go to state 148
With 'LE_OP', go to state 149
=============================
STATE NUMBER: 146
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {146}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {146}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {146}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {146}
[7] postfix_expression --> . primary_expression
	Preceding states: {146}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {146}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {146}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {146}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {146}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {146}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {146}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {146}
[17] unary_expression --> . postfix_expression
	Preceding states: {146}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {146}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {146}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {146}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {146}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {146}
[23] unary_operator --> . '&'
	Preceding states: {146}
[24] unary_operator --> . '*'
	Preceding states: {146}
[25] unary_operator --> . '+'
	Preceding states: {146}
[26] unary_operator --> . '-'
	Preceding states: {146}
[27] unary_operator --> . '~'
	Preceding states: {146}
[28] unary_operator --> . '!'
	Preceding states: {146}
[29] cast_expression --> . unary_expression
	Preceding states: {146}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {146}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {146}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {146}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {146}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {146}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {146}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {146}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {146}
[38] shift_expression --> . additive_expression
	Preceding states: {146}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {146}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {146}
[45] relational_expression --> relational_expression 'GE_OP' . shift_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With '-', go to state 76
With '!', go to state 78
With additive_expression, go to state 95
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 167
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 147
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {147}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {147}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {147}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {147}
[7] postfix_expression --> . primary_expression
	Preceding states: {147}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {147}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {147}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {147}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {147}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {147}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {147}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {147}
[17] unary_expression --> . postfix_expression
	Preceding states: {147}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {147}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {147}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {147}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {147}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {147}
[23] unary_operator --> . '&'
	Preceding states: {147}
[24] unary_operator --> . '*'
	Preceding states: {147}
[25] unary_operator --> . '+'
	Preceding states: {147}
[26] unary_operator --> . '-'
	Preceding states: {147}
[27] unary_operator --> . '~'
	Preceding states: {147}
[28] unary_operator --> . '!'
	Preceding states: {147}
[29] cast_expression --> . unary_expression
	Preceding states: {147}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {147}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {147}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {147}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {147}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {147}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {147}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {147}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {147}
[38] shift_expression --> . additive_expression
	Preceding states: {147}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {147}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {147}
[43] relational_expression --> relational_expression '>' . shift_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With '-', go to state 76
With '!', go to state 78
With additive_expression, go to state 95
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 166
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 148
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {148}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {148}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {148}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {148}
[7] postfix_expression --> . primary_expression
	Preceding states: {148}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {148}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {148}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {148}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {148}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {148}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {148}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {148}
[17] unary_expression --> . postfix_expression
	Preceding states: {148}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {148}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {148}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {148}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {148}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {148}
[23] unary_operator --> . '&'
	Preceding states: {148}
[24] unary_operator --> . '*'
	Preceding states: {148}
[25] unary_operator --> . '+'
	Preceding states: {148}
[26] unary_operator --> . '-'
	Preceding states: {148}
[27] unary_operator --> . '~'
	Preceding states: {148}
[28] unary_operator --> . '!'
	Preceding states: {148}
[29] cast_expression --> . unary_expression
	Preceding states: {148}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {148}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {148}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {148}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {148}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {148}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {148}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {148}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {148}
[38] shift_expression --> . additive_expression
	Preceding states: {148}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {148}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {148}
[42] relational_expression --> relational_expression '<' . shift_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With '-', go to state 76
With '!', go to state 78
With additive_expression, go to state 95
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 165
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 149
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {149}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {149}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {149}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {149}
[7] postfix_expression --> . primary_expression
	Preceding states: {149}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {149}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {149}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {149}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {149}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {149}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {149}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {149}
[17] unary_expression --> . postfix_expression
	Preceding states: {149}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {149}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {149}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {149}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {149}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {149}
[23] unary_operator --> . '&'
	Preceding states: {149}
[24] unary_operator --> . '*'
	Preceding states: {149}
[25] unary_operator --> . '+'
	Preceding states: {149}
[26] unary_operator --> . '-'
	Preceding states: {149}
[27] unary_operator --> . '~'
	Preceding states: {149}
[28] unary_operator --> . '!'
	Preceding states: {149}
[29] cast_expression --> . unary_expression
	Preceding states: {149}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {149}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {149}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {149}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {149}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {149}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {149}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {149}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {149}
[38] shift_expression --> . additive_expression
	Preceding states: {149}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {149}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {149}
[44] relational_expression --> relational_expression 'LE_OP' . shift_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With '-', go to state 76
With '!', go to state 78
With additive_expression, go to state 95
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 150
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 150
=============================
[39] shift_expression --> shift_expression . 'LEFT_OP' additive_expression
	Preceding states: {149}
[40] shift_expression --> shift_expression . 'RIGHT_OP' additive_expression
	Preceding states: {149}
[44] relational_expression --> relational_expression 'LE_OP' shift_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With 'RIGHT_OP', go to state 151
With 'LEFT_OP', go to state 152
=============================
STATE NUMBER: 151
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {151}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {151}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {151}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {151}
[7] postfix_expression --> . primary_expression
	Preceding states: {151}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {151}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {151}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {151}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {151}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {151}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {151}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {151}
[17] unary_expression --> . postfix_expression
	Preceding states: {151}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {151}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {151}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {151}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {151}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {151}
[23] unary_operator --> . '&'
	Preceding states: {151}
[24] unary_operator --> . '*'
	Preceding states: {151}
[25] unary_operator --> . '+'
	Preceding states: {151}
[26] unary_operator --> . '-'
	Preceding states: {151}
[27] unary_operator --> . '~'
	Preceding states: {151}
[28] unary_operator --> . '!'
	Preceding states: {151}
[29] cast_expression --> . unary_expression
	Preceding states: {151}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {151}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {151}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {151}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {151}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {151}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {151}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {151}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {151}
[40] shift_expression --> shift_expression 'RIGHT_OP' . additive_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With '-', go to state 76
With '!', go to state 78
With additive_expression, go to state 164
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 152
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {152}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {152}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {152}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {152}
[7] postfix_expression --> . primary_expression
	Preceding states: {152}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {152}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {152}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {152}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {152}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {152}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {152}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {152}
[17] unary_expression --> . postfix_expression
	Preceding states: {152}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {152}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {152}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {152}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {152}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {152}
[23] unary_operator --> . '&'
	Preceding states: {152}
[24] unary_operator --> . '*'
	Preceding states: {152}
[25] unary_operator --> . '+'
	Preceding states: {152}
[26] unary_operator --> . '-'
	Preceding states: {152}
[27] unary_operator --> . '~'
	Preceding states: {152}
[28] unary_operator --> . '!'
	Preceding states: {152}
[29] cast_expression --> . unary_expression
	Preceding states: {152}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {152}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {152}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {152}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {152}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {152}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {152}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {152}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {152}
[39] shift_expression --> shift_expression 'LEFT_OP' . additive_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With '-', go to state 76
With '!', go to state 78
With additive_expression, go to state 153
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 153
=============================
[36] additive_expression --> additive_expression . '+' multiplicative_expression
	Preceding states: {152}
[37] additive_expression --> additive_expression . '-' multiplicative_expression
	Preceding states: {152}
[39] shift_expression --> shift_expression 'LEFT_OP' additive_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '+', go to state 154
With '-', go to state 155
=============================
STATE NUMBER: 154
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {154}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {154}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {154}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {154}
[7] postfix_expression --> . primary_expression
	Preceding states: {154}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {154}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {154}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {154}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {154}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {154}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {154}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {154}
[17] unary_expression --> . postfix_expression
	Preceding states: {154}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {154}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {154}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {154}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {154}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {154}
[23] unary_operator --> . '&'
	Preceding states: {154}
[24] unary_operator --> . '*'
	Preceding states: {154}
[25] unary_operator --> . '+'
	Preceding states: {154}
[26] unary_operator --> . '-'
	Preceding states: {154}
[27] unary_operator --> . '~'
	Preceding states: {154}
[28] unary_operator --> . '!'
	Preceding states: {154}
[29] cast_expression --> . unary_expression
	Preceding states: {154}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {154}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {154}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {154}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {154}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {154}
[36] additive_expression --> additive_expression '+' . multiplicative_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 163
With '-', go to state 76
With '!', go to state 78
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 155
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {155}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {155}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {155}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {155}
[7] postfix_expression --> . primary_expression
	Preceding states: {155}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {155}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {155}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {155}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {155}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {155}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {155}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {155}
[17] unary_expression --> . postfix_expression
	Preceding states: {155}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {155}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {155}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {155}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {155}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {155}
[23] unary_operator --> . '&'
	Preceding states: {155}
[24] unary_operator --> . '*'
	Preceding states: {155}
[25] unary_operator --> . '+'
	Preceding states: {155}
[26] unary_operator --> . '-'
	Preceding states: {155}
[27] unary_operator --> . '~'
	Preceding states: {155}
[28] unary_operator --> . '!'
	Preceding states: {155}
[29] cast_expression --> . unary_expression
	Preceding states: {155}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {155}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {155}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {155}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {155}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {155}
[37] additive_expression --> additive_expression '-' . multiplicative_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 156
With '-', go to state 76
With '!', go to state 78
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 156
=============================
[32] multiplicative_expression --> multiplicative_expression . '*' cast_expression
	Preceding states: {155}
[33] multiplicative_expression --> multiplicative_expression . '/' cast_expression
	Preceding states: {155}
[34] multiplicative_expression --> multiplicative_expression . '%' cast_expression
	Preceding states: {155}
[37] additive_expression --> additive_expression '-' multiplicative_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '%', go to state 157
With '/', go to state 158
With '*', go to state 159
=============================
STATE NUMBER: 157
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {157}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {157}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {157}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {157}
[7] postfix_expression --> . primary_expression
	Preceding states: {157}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {157}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {157}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {157}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {157}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {157}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {157}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {157}
[17] unary_expression --> . postfix_expression
	Preceding states: {157}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {157}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {157}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {157}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {157}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {157}
[23] unary_operator --> . '&'
	Preceding states: {157}
[24] unary_operator --> . '*'
	Preceding states: {157}
[25] unary_operator --> . '+'
	Preceding states: {157}
[26] unary_operator --> . '-'
	Preceding states: {157}
[27] unary_operator --> . '~'
	Preceding states: {157}
[28] unary_operator --> . '!'
	Preceding states: {157}
[29] cast_expression --> . unary_expression
	Preceding states: {157}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {157}
[34] multiplicative_expression --> multiplicative_expression '%' . cast_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With '-', go to state 76
With '!', go to state 78
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With cast_expression, go to state 162
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 158
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {158}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {158}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {158}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {158}
[7] postfix_expression --> . primary_expression
	Preceding states: {158}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {158}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {158}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {158}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {158}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {158}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {158}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {158}
[17] unary_expression --> . postfix_expression
	Preceding states: {158}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {158}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {158}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {158}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {158}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {158}
[23] unary_operator --> . '&'
	Preceding states: {158}
[24] unary_operator --> . '*'
	Preceding states: {158}
[25] unary_operator --> . '+'
	Preceding states: {158}
[26] unary_operator --> . '-'
	Preceding states: {158}
[27] unary_operator --> . '~'
	Preceding states: {158}
[28] unary_operator --> . '!'
	Preceding states: {158}
[29] cast_expression --> . unary_expression
	Preceding states: {158}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {158}
[33] multiplicative_expression --> multiplicative_expression '/' . cast_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With '-', go to state 76
With '!', go to state 78
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With cast_expression, go to state 161
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 159
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {159}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {159}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {159}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {159}
[7] postfix_expression --> . primary_expression
	Preceding states: {159}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {159}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {159}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {159}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {159}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {159}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {159}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {159}
[17] unary_expression --> . postfix_expression
	Preceding states: {159}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {159}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {159}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {159}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {159}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {159}
[23] unary_operator --> . '&'
	Preceding states: {159}
[24] unary_operator --> . '*'
	Preceding states: {159}
[25] unary_operator --> . '+'
	Preceding states: {159}
[26] unary_operator --> . '-'
	Preceding states: {159}
[27] unary_operator --> . '~'
	Preceding states: {159}
[28] unary_operator --> . '!'
	Preceding states: {159}
[29] cast_expression --> . unary_expression
	Preceding states: {159}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {159}
[32] multiplicative_expression --> multiplicative_expression '*' . cast_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With '-', go to state 76
With '!', go to state 78
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With cast_expression, go to state 160
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 160
=============================
[32] multiplicative_expression --> multiplicative_expression '*' cast_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 161
=============================
[33] multiplicative_expression --> multiplicative_expression '/' cast_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 162
=============================
[34] multiplicative_expression --> multiplicative_expression '%' cast_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 163
=============================
[32] multiplicative_expression --> multiplicative_expression . '*' cast_expression
	Preceding states: {154}
[33] multiplicative_expression --> multiplicative_expression . '/' cast_expression
	Preceding states: {154}
[34] multiplicative_expression --> multiplicative_expression . '%' cast_expression
	Preceding states: {154}
[36] additive_expression --> additive_expression '+' multiplicative_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '%', go to state 157
With '/', go to state 158
With '*', go to state 159
=============================
STATE NUMBER: 164
=============================
[36] additive_expression --> additive_expression . '+' multiplicative_expression
	Preceding states: {151}
[37] additive_expression --> additive_expression . '-' multiplicative_expression
	Preceding states: {151}
[40] shift_expression --> shift_expression 'RIGHT_OP' additive_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With '+', go to state 154
With '-', go to state 155
=============================
STATE NUMBER: 165
=============================
[39] shift_expression --> shift_expression . 'LEFT_OP' additive_expression
	Preceding states: {148}
[40] shift_expression --> shift_expression . 'RIGHT_OP' additive_expression
	Preceding states: {148}
[42] relational_expression --> relational_expression '<' shift_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With 'RIGHT_OP', go to state 151
With 'LEFT_OP', go to state 152
=============================
STATE NUMBER: 166
=============================
[39] shift_expression --> shift_expression . 'LEFT_OP' additive_expression
	Preceding states: {147}
[40] shift_expression --> shift_expression . 'RIGHT_OP' additive_expression
	Preceding states: {147}
[43] relational_expression --> relational_expression '>' shift_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With 'RIGHT_OP', go to state 151
With 'LEFT_OP', go to state 152
=============================
STATE NUMBER: 167
=============================
[39] shift_expression --> shift_expression . 'LEFT_OP' additive_expression
	Preceding states: {146}
[40] shift_expression --> shift_expression . 'RIGHT_OP' additive_expression
	Preceding states: {146}
[45] relational_expression --> relational_expression 'GE_OP' shift_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '<', '>', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With 'RIGHT_OP', go to state 151
With 'LEFT_OP', go to state 152
=============================
STATE NUMBER: 168
=============================
[42] relational_expression --> relational_expression . '<' shift_expression
	Preceding states: {143}
[43] relational_expression --> relational_expression . '>' shift_expression
	Preceding states: {143}
[44] relational_expression --> relational_expression . 'LE_OP' shift_expression
	Preceding states: {143}
[45] relational_expression --> relational_expression . 'GE_OP' shift_expression
	Preceding states: {143}
[48] equality_expression --> equality_expression 'NE_OP' relational_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 135, 137, 139, 141, 170, 189, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '^', '|', '?', ':', ';', '{', '}'}
-----------------------------
With 'GE_OP', go to state 146
With '>', go to state 147
With '<', go to state 148
With 'LE_OP', go to state 149
=============================
STATE NUMBER: 169
=============================
[165] direct_abstract_declarator --> direct_abstract_declarator '[' constant_expression ']' .
	Preceding states: {51, 59, 62, 176, 177, 179}
	Lookahead set: {'(', ')', '[', ','}
-----------------------------
=============================
STATE NUMBER: 170
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {170}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {170}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {170}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {170}
[6] primary_expression --> '(' . expression ')'
	Preceding states: {84}
	Follow set: {')'}
[7] postfix_expression --> . primary_expression
	Preceding states: {170}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {170}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {170}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {170}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {170}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {170}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {170}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {170}
[17] unary_expression --> . postfix_expression
	Preceding states: {170}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {170}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {170}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {170}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {170}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {170}
[22] unary_expression --> 'SIZEOF' '(' . type_name ')'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {')'}
[23] unary_operator --> . '&'
	Preceding states: {170}
[24] unary_operator --> . '*'
	Preceding states: {170}
[25] unary_operator --> . '+'
	Preceding states: {170}
[26] unary_operator --> . '-'
	Preceding states: {170}
[27] unary_operator --> . '~'
	Preceding states: {170}
[28] unary_operator --> . '!'
	Preceding states: {170}
[29] cast_expression --> . unary_expression
	Preceding states: {170}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {170}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {170}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {170}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {170}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {170}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {170}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {170}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {170}
[38] shift_expression --> . additive_expression
	Preceding states: {170}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {170}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {170}
[41] relational_expression --> . shift_expression
	Preceding states: {170}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {170}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {170}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {170}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {170}
[46] equality_expression --> . relational_expression
	Preceding states: {170}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {170}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {170}
[49] and_expression --> . equality_expression
	Preceding states: {170}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {170}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {170}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {170}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {170}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {170}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {170}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {170}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {170}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {170}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {170}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {170}
[61] assignment_expression --> . conditional_expression
	Preceding states: {170}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {170}
[74] expression --> . assignment_expression
	Preceding states: {170}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {170}
[94] type_specifier --> . 'VOID'
	Preceding states: {170}
[95] type_specifier --> . 'CHAR'
	Preceding states: {170}
[96] type_specifier --> . 'SHORT'
	Preceding states: {170}
[97] type_specifier --> . 'INT'
	Preceding states: {170}
[98] type_specifier --> . 'LONG'
	Preceding states: {170}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {170}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {170}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {170}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {170}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {170}
[104] type_specifier --> . enum_specifier
	Preceding states: {170}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {170}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {170}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {170}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {170}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {170}
[110] struct_or_union --> . 'UNION'
	Preceding states: {170}
[114] specifier_qualifier_list --> . type_specifier specifier_qualifier_list
	Preceding states: {170}
[115] specifier_qualifier_list --> . type_specifier
	Preceding states: {170}
[116] specifier_qualifier_list --> . type_qualifier specifier_qualifier_list
	Preceding states: {170}
[117] specifier_qualifier_list --> . type_qualifier
	Preceding states: {170}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {170}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {170}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {170}
[130] type_qualifier --> . 'CONST'
	Preceding states: {170}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {170}
[156] type_name --> . specifier_qualifier_list
	Preceding states: {170}
[157] type_name --> . specifier_qualifier_list abstract_declarator
	Preceding states: {170}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With type_qualifier, go to state 172
With 'VOLATILE', go to state 5
With equality_expression, go to state 75
With 'CHAR', go to state 10
With struct_or_union_specifier, go to state 12
With '!', go to state 78
With 'DOUBLE', go to state 13
With '+', go to state 83
With type_specifier, go to state 173
With shift_expression, go to state 85
With '&', go to state 87
With 'ENUM', go to state 20
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With 'VOID', go to state 28
With and_expression, go to state 94
With additive_expression, go to state 95
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'LONG', go to state 38
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With 'FLOAT', go to state 4
With '~', go to state 74
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONST', go to state 19
With expression, go to state 174
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With 'INT', go to state 22
With struct_or_union, go to state 21
With type_name, go to state 175
With specifier_qualifier_list, go to state 176
With 'UNSIGNED', go to state 26
With 'STRUCT', go to state 30
With 'UNION', go to state 36
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 171
=============================
[21] unary_expression --> 'SIZEOF' unary_expression .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 172
=============================
[94] type_specifier --> . 'VOID'
	Preceding states: {172}
[95] type_specifier --> . 'CHAR'
	Preceding states: {172}
[96] type_specifier --> . 'SHORT'
	Preceding states: {172}
[97] type_specifier --> . 'INT'
	Preceding states: {172}
[98] type_specifier --> . 'LONG'
	Preceding states: {172}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {172}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {172}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {172}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {172}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {172}
[104] type_specifier --> . enum_specifier
	Preceding states: {172}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {172}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {172}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {172}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {172}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {172}
[110] struct_or_union --> . 'UNION'
	Preceding states: {172}
[114] specifier_qualifier_list --> . type_specifier specifier_qualifier_list
	Preceding states: {172}
[115] specifier_qualifier_list --> . type_specifier
	Preceding states: {172}
[116] specifier_qualifier_list --> . type_qualifier specifier_qualifier_list
	Preceding states: {172}
[116] specifier_qualifier_list --> type_qualifier . specifier_qualifier_list
	Preceding states: {70, 170, 172, 173, 313, 315, 318, 331}
	Follow set: {'IDENTIFIER', 'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', '*', ':', '}'}
[117] specifier_qualifier_list --> . type_qualifier
	Preceding states: {172}
[117] specifier_qualifier_list --> type_qualifier .
	Preceding states: {70, 170, 172, 173, 313, 315, 318, 331}
	Lookahead set: {'IDENTIFIER', 'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', '*', ':', '}'}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {172}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {172}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {172}
[130] type_qualifier --> . 'CONST'
	Preceding states: {172}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {172}
-----------------------------
With 'ENUM', go to state 20
With type_qualifier, go to state 172
With 'INT', go to state 22
With struct_or_union, go to state 21
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With specifier_qualifier_list, go to state 188
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With 'CHAR', go to state 10
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With type_specifier, go to state 173
With 'UNION', go to state 36
With 'LONG', go to state 38
With 'CONST', go to state 19
=============================
STATE NUMBER: 173
=============================
[94] type_specifier --> . 'VOID'
	Preceding states: {173}
[95] type_specifier --> . 'CHAR'
	Preceding states: {173}
[96] type_specifier --> . 'SHORT'
	Preceding states: {173}
[97] type_specifier --> . 'INT'
	Preceding states: {173}
[98] type_specifier --> . 'LONG'
	Preceding states: {173}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {173}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {173}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {173}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {173}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {173}
[104] type_specifier --> . enum_specifier
	Preceding states: {173}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {173}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {173}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {173}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {173}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {173}
[110] struct_or_union --> . 'UNION'
	Preceding states: {173}
[114] specifier_qualifier_list --> . type_specifier specifier_qualifier_list
	Preceding states: {173}
[114] specifier_qualifier_list --> type_specifier . specifier_qualifier_list
	Preceding states: {70, 170, 172, 173, 313, 315, 318, 331}
	Follow set: {'IDENTIFIER', 'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', '*', ':', '}'}
[115] specifier_qualifier_list --> . type_specifier
	Preceding states: {173}
[115] specifier_qualifier_list --> type_specifier .
	Preceding states: {70, 170, 172, 173, 313, 315, 318, 331}
	Lookahead set: {'IDENTIFIER', 'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', '*', ':', '}'}
[116] specifier_qualifier_list --> . type_qualifier specifier_qualifier_list
	Preceding states: {173}
[117] specifier_qualifier_list --> . type_qualifier
	Preceding states: {173}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {173}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {173}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {173}
[130] type_qualifier --> . 'CONST'
	Preceding states: {173}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {173}
-----------------------------
With 'ENUM', go to state 20
With type_qualifier, go to state 172
With 'INT', go to state 22
With struct_or_union, go to state 21
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With specifier_qualifier_list, go to state 187
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With 'CHAR', go to state 10
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With type_specifier, go to state 173
With 'UNION', go to state 36
With 'LONG', go to state 38
With 'CONST', go to state 19
=============================
STATE NUMBER: 174
=============================
[6] primary_expression --> '(' expression . ')'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[75] expression --> expression . ',' assignment_expression
	Preceding states: {70, 170, 195}
-----------------------------
With ',', go to state 133
With ')', go to state 186
=============================
STATE NUMBER: 175
=============================
[22] unary_expression --> 'SIZEOF' '(' type_name . ')'
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
-----------------------------
With ')', go to state 185
=============================
STATE NUMBER: 176
=============================
[141] pointer --> . '*'
	Preceding states: {176}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {176}
[143] pointer --> . '*' pointer
	Preceding states: {176}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {176}
[156] type_name --> specifier_qualifier_list .
	Preceding states: {70, 170}
	Lookahead set: {')'}
[157] type_name --> specifier_qualifier_list . abstract_declarator
	Preceding states: {70, 170}
	Follow set: {')'}
[158] abstract_declarator --> . pointer
	Preceding states: {176}
[159] abstract_declarator --> . direct_abstract_declarator
	Preceding states: {176}
[160] abstract_declarator --> . pointer direct_abstract_declarator
	Preceding states: {176}
[161] direct_abstract_declarator --> . '(' abstract_declarator ')'
	Preceding states: {176}
[162] direct_abstract_declarator --> . '[' ']'
	Preceding states: {176}
[163] direct_abstract_declarator --> . '[' constant_expression ']'
	Preceding states: {176}
[164] direct_abstract_declarator --> . direct_abstract_declarator '[' ']'
	Preceding states: {176}
[165] direct_abstract_declarator --> . direct_abstract_declarator '[' constant_expression ']'
	Preceding states: {176}
[166] direct_abstract_declarator --> . '(' ')'
	Preceding states: {176}
[167] direct_abstract_declarator --> . '(' parameter_type_list ')'
	Preceding states: {176}
[168] direct_abstract_declarator --> . direct_abstract_declarator '(' ')'
	Preceding states: {176}
[169] direct_abstract_declarator --> . direct_abstract_declarator '(' parameter_type_list ')'
	Preceding states: {176}
-----------------------------
With '[', go to state 57
With '(', go to state 177
With abstract_declarator, go to state 178
With direct_abstract_declarator, go to state 61
With pointer, go to state 179
With '*', go to state 39
=============================
STATE NUMBER: 177
=============================
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {177}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {177}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {177}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {177}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {177}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {177}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {177}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {177}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {177}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {177}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {177}
[94] type_specifier --> . 'VOID'
	Preceding states: {177}
[95] type_specifier --> . 'CHAR'
	Preceding states: {177}
[96] type_specifier --> . 'SHORT'
	Preceding states: {177}
[97] type_specifier --> . 'INT'
	Preceding states: {177}
[98] type_specifier --> . 'LONG'
	Preceding states: {177}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {177}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {177}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {177}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {177}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {177}
[104] type_specifier --> . enum_specifier
	Preceding states: {177}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {177}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {177}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {177}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {177}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {177}
[110] struct_or_union --> . 'UNION'
	Preceding states: {177}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {177}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {177}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {177}
[130] type_qualifier --> . 'CONST'
	Preceding states: {177}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {177}
[141] pointer --> . '*'
	Preceding states: {177}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {177}
[143] pointer --> . '*' pointer
	Preceding states: {177}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {177}
[147] parameter_type_list --> . parameter_list
	Preceding states: {177}
[148] parameter_type_list --> . parameter_list ',' 'ELLIPSIS'
	Preceding states: {177}
[149] parameter_list --> . parameter_declaration
	Preceding states: {177}
[150] parameter_list --> . parameter_list ',' parameter_declaration
	Preceding states: {177}
[151] parameter_declaration --> . declaration_specifiers declarator
	Preceding states: {177}
[152] parameter_declaration --> . declaration_specifiers abstract_declarator
	Preceding states: {177}
[153] parameter_declaration --> . declaration_specifiers
	Preceding states: {177}
[158] abstract_declarator --> . pointer
	Preceding states: {177}
[159] abstract_declarator --> . direct_abstract_declarator
	Preceding states: {177}
[160] abstract_declarator --> . pointer direct_abstract_declarator
	Preceding states: {177}
[161] direct_abstract_declarator --> . '(' abstract_declarator ')'
	Preceding states: {177}
[161] direct_abstract_declarator --> '(' . abstract_declarator ')'
	Preceding states: {176, 177, 179}
	Follow set: {')'}
[162] direct_abstract_declarator --> . '[' ']'
	Preceding states: {177}
[163] direct_abstract_declarator --> . '[' constant_expression ']'
	Preceding states: {177}
[164] direct_abstract_declarator --> . direct_abstract_declarator '[' ']'
	Preceding states: {177}
[165] direct_abstract_declarator --> . direct_abstract_declarator '[' constant_expression ']'
	Preceding states: {177}
[166] direct_abstract_declarator --> . '(' ')'
	Preceding states: {177}
[166] direct_abstract_declarator --> '(' . ')'
	Preceding states: {176, 177, 179}
[167] direct_abstract_declarator --> . '(' parameter_type_list ')'
	Preceding states: {177}
[167] direct_abstract_declarator --> '(' . parameter_type_list ')'
	Preceding states: {176, 177, 179}
	Follow set: {')'}
[168] direct_abstract_declarator --> . direct_abstract_declarator '(' ')'
	Preceding states: {177}
[169] direct_abstract_declarator --> . direct_abstract_declarator '(' parameter_type_list ')'
	Preceding states: {177}
-----------------------------
With '(', go to state 177
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With abstract_declarator, go to state 180
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With enum_specifier, go to state 8
With 'SHORT', go to state 7
With parameter_list, go to state 49
With struct_or_union_specifier, go to state 12
With 'AUTO', go to state 11
With 'CHAR', go to state 10
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With direct_abstract_declarator, go to state 61
With 'CONST', go to state 19
With 'ENUM', go to state 20
With struct_or_union, go to state 21
With 'INT', go to state 22
With declaration_specifiers, go to state 51
With parameter_declaration, go to state 52
With ')', go to state 181
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With pointer, go to state 179
With 'STRUCT', go to state 30
With '[', go to state 57
With 'TYPE_NAME', go to state 35
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'UNION', go to state 36
With parameter_type_list, go to state 182
With 'LONG', go to state 38
With '*', go to state 39
=============================
STATE NUMBER: 178
=============================
[157] type_name --> specifier_qualifier_list abstract_declarator .
	Preceding states: {70, 170}
	Lookahead set: {')'}
-----------------------------
=============================
STATE NUMBER: 179
=============================
[158] abstract_declarator --> pointer .
	Preceding states: {176, 177}
	Lookahead set: {')'}
[160] abstract_declarator --> pointer . direct_abstract_declarator
	Preceding states: {176, 177}
	Follow set: {')'}
[161] direct_abstract_declarator --> . '(' abstract_declarator ')'
	Preceding states: {179}
[162] direct_abstract_declarator --> . '[' ']'
	Preceding states: {179}
[163] direct_abstract_declarator --> . '[' constant_expression ']'
	Preceding states: {179}
[164] direct_abstract_declarator --> . direct_abstract_declarator '[' ']'
	Preceding states: {179}
[165] direct_abstract_declarator --> . direct_abstract_declarator '[' constant_expression ']'
	Preceding states: {179}
[166] direct_abstract_declarator --> . '(' ')'
	Preceding states: {179}
[167] direct_abstract_declarator --> . '(' parameter_type_list ')'
	Preceding states: {179}
[168] direct_abstract_declarator --> . direct_abstract_declarator '(' ')'
	Preceding states: {179}
[169] direct_abstract_declarator --> . direct_abstract_declarator '(' parameter_type_list ')'
	Preceding states: {179}
-----------------------------
With '[', go to state 57
With '(', go to state 177
With direct_abstract_declarator, go to state 64
=============================
STATE NUMBER: 180
=============================
[161] direct_abstract_declarator --> '(' abstract_declarator . ')'
	Preceding states: {51, 59, 62, 176, 177, 179}
-----------------------------
With ')', go to state 184
=============================
STATE NUMBER: 181
=============================
[166] direct_abstract_declarator --> '(' ')' .
	Preceding states: {51, 59, 62, 176, 177, 179}
	Lookahead set: {'(', ')', '[', ','}
-----------------------------
=============================
STATE NUMBER: 182
=============================
[167] direct_abstract_declarator --> '(' parameter_type_list . ')'
	Preceding states: {51, 59, 62, 176, 177, 179}
-----------------------------
With ')', go to state 183
=============================
STATE NUMBER: 183
=============================
[167] direct_abstract_declarator --> '(' parameter_type_list ')' .
	Preceding states: {51, 59, 62, 176, 177, 179}
	Lookahead set: {'(', ')', '[', ','}
-----------------------------
=============================
STATE NUMBER: 184
=============================
[161] direct_abstract_declarator --> '(' abstract_declarator ')' .
	Preceding states: {51, 59, 62, 176, 177, 179}
	Lookahead set: {'(', ')', '[', ','}
-----------------------------
=============================
STATE NUMBER: 185
=============================
[22] unary_expression --> 'SIZEOF' '(' type_name ')' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 186
=============================
[6] primary_expression --> '(' expression ')' .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ']', '.', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 187
=============================
[114] specifier_qualifier_list --> type_specifier specifier_qualifier_list .
	Preceding states: {70, 170, 172, 173, 313, 315, 318, 331}
	Lookahead set: {'IDENTIFIER', 'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', '*', ':', '}'}
-----------------------------
=============================
STATE NUMBER: 188
=============================
[116] specifier_qualifier_list --> type_qualifier specifier_qualifier_list .
	Preceding states: {70, 170, 172, 173, 313, 315, 318, 331}
	Lookahead set: {'IDENTIFIER', 'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', '*', ':', '}'}
-----------------------------
=============================
STATE NUMBER: 189
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {189}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {189}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {189}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {189}
[7] postfix_expression --> . primary_expression
	Preceding states: {189}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {189}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {189}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {189}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {189}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {189}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {189}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {189}
[17] unary_expression --> . postfix_expression
	Preceding states: {189}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {189}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {189}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {189}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {189}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {189}
[23] unary_operator --> . '&'
	Preceding states: {189}
[24] unary_operator --> . '*'
	Preceding states: {189}
[25] unary_operator --> . '+'
	Preceding states: {189}
[26] unary_operator --> . '-'
	Preceding states: {189}
[27] unary_operator --> . '~'
	Preceding states: {189}
[28] unary_operator --> . '!'
	Preceding states: {189}
[29] cast_expression --> . unary_expression
	Preceding states: {189}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {189}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {189}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {189}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {189}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {189}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {189}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {189}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {189}
[38] shift_expression --> . additive_expression
	Preceding states: {189}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {189}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {189}
[41] relational_expression --> . shift_expression
	Preceding states: {189}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {189}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {189}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {189}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {189}
[46] equality_expression --> . relational_expression
	Preceding states: {189}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {189}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {189}
[49] and_expression --> . equality_expression
	Preceding states: {189}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {189}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {189}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {189}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {189}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {189}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {189}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {189}
[58] logical_or_expression --> logical_or_expression 'OR_OP' . logical_and_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '?', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 194
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 190
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {190}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {190}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {190}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {190}
[7] postfix_expression --> . primary_expression
	Preceding states: {190}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {190}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {190}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {190}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {190}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {190}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {190}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {190}
[17] unary_expression --> . postfix_expression
	Preceding states: {190}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {190}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {190}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {190}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {190}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {190}
[23] unary_operator --> . '&'
	Preceding states: {190}
[24] unary_operator --> . '*'
	Preceding states: {190}
[25] unary_operator --> . '+'
	Preceding states: {190}
[26] unary_operator --> . '-'
	Preceding states: {190}
[27] unary_operator --> . '~'
	Preceding states: {190}
[28] unary_operator --> . '!'
	Preceding states: {190}
[29] cast_expression --> . unary_expression
	Preceding states: {190}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {190}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {190}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {190}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {190}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {190}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {190}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {190}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {190}
[38] shift_expression --> . additive_expression
	Preceding states: {190}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {190}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {190}
[41] relational_expression --> . shift_expression
	Preceding states: {190}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {190}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {190}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {190}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {190}
[46] equality_expression --> . relational_expression
	Preceding states: {190}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {190}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {190}
[49] and_expression --> . equality_expression
	Preceding states: {190}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {190}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {190}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {190}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {190}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {190}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {190}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {190}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {190}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {190}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {190}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {190}
[60] conditional_expression --> logical_or_expression '?' . expression ':' conditional_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {':'}
[61] assignment_expression --> . conditional_expression
	Preceding states: {190}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {190}
[74] expression --> . assignment_expression
	Preceding states: {190}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {190}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With expression, go to state 191
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 191
=============================
[60] conditional_expression --> logical_or_expression '?' expression . ':' conditional_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
[75] expression --> expression . ',' assignment_expression
	Preceding states: {190}
-----------------------------
With ',', go to state 133
With ':', go to state 192
=============================
STATE NUMBER: 192
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {192}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {192}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {192}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {192}
[7] postfix_expression --> . primary_expression
	Preceding states: {192}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {192}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {192}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {192}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {192}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {192}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {192}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {192}
[17] unary_expression --> . postfix_expression
	Preceding states: {192}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {192}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {192}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {192}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {192}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {192}
[23] unary_operator --> . '&'
	Preceding states: {192}
[24] unary_operator --> . '*'
	Preceding states: {192}
[25] unary_operator --> . '+'
	Preceding states: {192}
[26] unary_operator --> . '-'
	Preceding states: {192}
[27] unary_operator --> . '~'
	Preceding states: {192}
[28] unary_operator --> . '!'
	Preceding states: {192}
[29] cast_expression --> . unary_expression
	Preceding states: {192}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {192}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {192}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {192}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {192}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {192}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {192}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {192}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {192}
[38] shift_expression --> . additive_expression
	Preceding states: {192}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {192}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {192}
[41] relational_expression --> . shift_expression
	Preceding states: {192}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {192}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {192}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {192}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {192}
[46] equality_expression --> . relational_expression
	Preceding states: {192}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {192}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {192}
[49] and_expression --> . equality_expression
	Preceding states: {192}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {192}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {192}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {192}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {192}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {192}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {192}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {192}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {192}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {192}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {192}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {192}
[60] conditional_expression --> logical_or_expression '?' expression ':' . conditional_expression
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With conditional_expression, go to state 193
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 193
=============================
[60] conditional_expression --> logical_or_expression '?' expression ':' conditional_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 194
=============================
[56] logical_and_expression --> logical_and_expression . 'AND_OP' inclusive_or_expression
	Preceding states: {189}
[58] logical_or_expression --> logical_or_expression 'OR_OP' logical_and_expression .
	Preceding states: {47, 57, 65, 70, 101, 102, 114, 121, 133, 170, 190, 192, 195, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'OR_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '?', ':', ';', '{', '}'}
-----------------------------
With 'AND_OP', go to state 135
=============================
STATE NUMBER: 195
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {195}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {195}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {195}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {195}
[6] primary_expression --> '(' . expression ')'
	Preceding states: {72, 80}
	Follow set: {')'}
[7] postfix_expression --> . primary_expression
	Preceding states: {195}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {195}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {195}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {195}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {195}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {195}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {195}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {195}
[17] unary_expression --> . postfix_expression
	Preceding states: {195}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {195}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {195}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {195}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {195}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {195}
[23] unary_operator --> . '&'
	Preceding states: {195}
[24] unary_operator --> . '*'
	Preceding states: {195}
[25] unary_operator --> . '+'
	Preceding states: {195}
[26] unary_operator --> . '-'
	Preceding states: {195}
[27] unary_operator --> . '~'
	Preceding states: {195}
[28] unary_operator --> . '!'
	Preceding states: {195}
[29] cast_expression --> . unary_expression
	Preceding states: {195}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {195}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {195}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {195}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {195}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {195}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {195}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {195}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {195}
[38] shift_expression --> . additive_expression
	Preceding states: {195}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {195}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {195}
[41] relational_expression --> . shift_expression
	Preceding states: {195}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {195}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {195}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {195}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {195}
[46] equality_expression --> . relational_expression
	Preceding states: {195}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {195}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {195}
[49] and_expression --> . equality_expression
	Preceding states: {195}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {195}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {195}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {195}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {195}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {195}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {195}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {195}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {195}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {195}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {195}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {195}
[61] assignment_expression --> . conditional_expression
	Preceding states: {195}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {195}
[74] expression --> . assignment_expression
	Preceding states: {195}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {195}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With expression, go to state 174
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 196
=============================
[19] unary_expression --> 'DEC_OP' unary_expression .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 197
=============================
[20] unary_expression --> unary_operator cast_expression .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 198
=============================
[18] unary_expression --> 'INC_OP' unary_expression .
	Preceding states: {47, 57, 65, 70, 72, 79, 80, 84, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 199
=============================
[30] cast_expression --> '(' type_name . ')' cast_expression
	Preceding states: {47, 57, 65, 70, 79, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
-----------------------------
With ')', go to state 200
=============================
STATE NUMBER: 200
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {200}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {200}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {200}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {200}
[7] postfix_expression --> . primary_expression
	Preceding states: {200}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {200}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {200}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {200}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {200}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {200}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {200}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {200}
[17] unary_expression --> . postfix_expression
	Preceding states: {200}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {200}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {200}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {200}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {200}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {200}
[23] unary_operator --> . '&'
	Preceding states: {200}
[24] unary_operator --> . '*'
	Preceding states: {200}
[25] unary_operator --> . '+'
	Preceding states: {200}
[26] unary_operator --> . '-'
	Preceding states: {200}
[27] unary_operator --> . '~'
	Preceding states: {200}
[28] unary_operator --> . '!'
	Preceding states: {200}
[29] cast_expression --> . unary_expression
	Preceding states: {200}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {200}
[30] cast_expression --> '(' type_name ')' . cast_expression
	Preceding states: {47, 57, 65, 70, 79, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
With '(', go to state 70
With '&', go to state 87
With 'CONSTANT', go to state 88
With unary_expression, go to state 73
With 'INC_OP', go to state 72
With '~', go to state 74
With 'IDENTIFIER', go to state 92
With primary_expression, go to state 91
With '-', go to state 76
With '!', go to state 78
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With '+', go to state 83
With 'SIZEOF', go to state 84
With cast_expression, go to state 201
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 201
=============================
[30] cast_expression --> '(' type_name ')' cast_expression .
	Preceding states: {47, 57, 65, 70, 79, 101, 102, 114, 121, 133, 135, 137, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 159, 170, 189, 190, 192, 195, 200, 224, 227, 231, 236, 239, 242, 245, 254, 259, 263, 264, 265, 267, 269, 271, 275, 280, 282, 284, 286, 289, 291, 293, 295, 299, 309, 324, 329, 342}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', ']', ',', '&', '*', '+', '-', '~', '!', '/', '%', '<', '>', '^', '|', '?', ':', '=', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 202
=============================
[135] direct_declarator --> '(' declarator . ')'
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
-----------------------------
With ')', go to state 203
=============================
STATE NUMBER: 203
=============================
[135] direct_declarator --> '(' declarator ')' .
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ':', '=', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 204
=============================
[162] direct_abstract_declarator --> '[' ']' .
	Preceding states: {51, 59, 62, 176, 177, 179}
	Lookahead set: {'(', ')', '[', ','}
-----------------------------
=============================
STATE NUMBER: 205
=============================
[163] direct_abstract_declarator --> '[' constant_expression . ']'
	Preceding states: {51, 59, 62, 176, 177, 179}
-----------------------------
With ']', go to state 206
=============================
STATE NUMBER: 206
=============================
[163] direct_abstract_declarator --> '[' constant_expression ']' .
	Preceding states: {51, 59, 62, 176, 177, 179}
	Lookahead set: {'(', ')', '[', ','}
-----------------------------
=============================
STATE NUMBER: 207
=============================
[155] identifier_list --> identifier_list ',' . 'IDENTIFIER'
	Preceding states: {48}
-----------------------------
With 'IDENTIFIER', go to state 209
=============================
STATE NUMBER: 208
=============================
[139] direct_declarator --> direct_declarator '(' identifier_list ')' .
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ':', '=', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 209
=============================
[155] identifier_list --> identifier_list ',' 'IDENTIFIER' .
	Preceding states: {48}
	Lookahead set: {')', ','}
-----------------------------
=============================
STATE NUMBER: 210
=============================
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {210}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {210}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {210}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {210}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {210}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {210}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {210}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {210}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {210}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {210}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {210}
[94] type_specifier --> . 'VOID'
	Preceding states: {210}
[95] type_specifier --> . 'CHAR'
	Preceding states: {210}
[96] type_specifier --> . 'SHORT'
	Preceding states: {210}
[97] type_specifier --> . 'INT'
	Preceding states: {210}
[98] type_specifier --> . 'LONG'
	Preceding states: {210}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {210}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {210}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {210}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {210}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {210}
[104] type_specifier --> . enum_specifier
	Preceding states: {210}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {210}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {210}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {210}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {210}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {210}
[110] struct_or_union --> . 'UNION'
	Preceding states: {210}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {210}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {210}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {210}
[130] type_qualifier --> . 'CONST'
	Preceding states: {210}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {210}
[148] parameter_type_list --> parameter_list ',' . 'ELLIPSIS'
	Preceding states: {48, 59, 66, 177}
[150] parameter_list --> parameter_list ',' . parameter_declaration
	Preceding states: {48, 59, 66, 177}
	Follow set: {')', ','}
[151] parameter_declaration --> . declaration_specifiers declarator
	Preceding states: {210}
[152] parameter_declaration --> . declaration_specifiers abstract_declarator
	Preceding states: {210}
[153] parameter_declaration --> . declaration_specifiers
	Preceding states: {210}
-----------------------------
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'ELLIPSIS', go to state 211
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With 'INT', go to state 22
With struct_or_union, go to state 21
With declaration_specifiers, go to state 51
With parameter_declaration, go to state 212
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'UNION', go to state 36
With 'LONG', go to state 38
=============================
STATE NUMBER: 211
=============================
[148] parameter_type_list --> parameter_list ',' 'ELLIPSIS' .
	Preceding states: {48, 59, 66, 177}
	Lookahead set: {')'}
-----------------------------
=============================
STATE NUMBER: 212
=============================
[150] parameter_list --> parameter_list ',' parameter_declaration .
	Preceding states: {48, 59, 66, 177}
	Lookahead set: {')', ','}
-----------------------------
=============================
STATE NUMBER: 213
=============================
[137] direct_declarator --> direct_declarator '[' ']' .
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ':', '=', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 214
=============================
[136] direct_declarator --> direct_declarator '[' constant_expression . ']'
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
-----------------------------
With ']', go to state 215
=============================
STATE NUMBER: 215
=============================
[136] direct_declarator --> direct_declarator '[' constant_expression ']' .
	Preceding states: {0, 1, 15, 23, 27, 32, 51, 59, 62, 221, 235, 316, 327, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', ')', '[', ',', '*', ':', '=', ';', '{'}
-----------------------------
=============================
STATE NUMBER: 216
=============================
[77] declaration --> . declaration_specifiers ';'
	Preceding states: {216}
[78] declaration --> . declaration_specifiers init_declarator_list ';'
	Preceding states: {216}
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {216}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {216}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {216}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {216}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {216}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {216}
[87] init_declarator --> declarator .
	Preceding states: {23}
	Lookahead set: {',', ';'}
[88] init_declarator --> declarator . '=' initializer
	Preceding states: {23}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {216}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {216}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {216}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {216}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {216}
[94] type_specifier --> . 'VOID'
	Preceding states: {216}
[95] type_specifier --> . 'CHAR'
	Preceding states: {216}
[96] type_specifier --> . 'SHORT'
	Preceding states: {216}
[97] type_specifier --> . 'INT'
	Preceding states: {216}
[98] type_specifier --> . 'LONG'
	Preceding states: {216}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {216}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {216}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {216}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {216}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {216}
[104] type_specifier --> . enum_specifier
	Preceding states: {216}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {216}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {216}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {216}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {216}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {216}
[110] struct_or_union --> . 'UNION'
	Preceding states: {216}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {216}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {216}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {216}
[130] type_qualifier --> . 'CONST'
	Preceding states: {216}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {216}
[184] compound_statement --> . '{' '}'
	Preceding states: {216}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {216}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {216}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {216}
[188] declaration_list --> . declaration
	Preceding states: {216}
[189] declaration_list --> . declaration_list declaration
	Preceding states: {216}
[210] function_definition --> declaration_specifiers declarator . declaration_list compound_statement
	Preceding states: {0, 15, 32, 347}
	Follow set: {'{'}
[211] function_definition --> declaration_specifiers declarator . compound_statement
	Preceding states: {0, 15, 32, 347}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
With declaration_list, go to state 234
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With struct_or_union, go to state 21
With 'INT', go to state 22
With '=', go to state 224
With declaration_specifiers, go to state 235
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With '{', go to state 236
With 'UNION', go to state 36
With declaration, go to state 237
With 'LONG', go to state 38
With compound_statement, go to state 238
=============================
STATE NUMBER: 217
=============================
[77] declaration --> declaration_specifiers ';' .
	Preceding states: {0, 9, 15, 32, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 218
=============================
[85] init_declarator_list --> init_declarator .
	Preceding states: {23, 235}
	Lookahead set: {',', ';'}
-----------------------------
=============================
STATE NUMBER: 219
=============================
[78] declaration --> declaration_specifiers init_declarator_list . ';'
	Preceding states: {0, 9, 15, 32, 216, 234, 236, 239, 347, 348}
[86] init_declarator_list --> init_declarator_list . ',' init_declarator
	Preceding states: {23, 235}
-----------------------------
With ';', go to state 220
With ',', go to state 221
=============================
STATE NUMBER: 220
=============================
[78] declaration --> declaration_specifiers init_declarator_list ';' .
	Preceding states: {0, 9, 15, 32, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 221
=============================
[86] init_declarator_list --> init_declarator_list ',' . init_declarator
	Preceding states: {23, 235}
	Follow set: {',', ';'}
[87] init_declarator --> . declarator
	Preceding states: {221}
[88] init_declarator --> . declarator '=' initializer
	Preceding states: {221}
[132] declarator --> . pointer direct_declarator
	Preceding states: {221}
[133] declarator --> . direct_declarator
	Preceding states: {221}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {221}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {221}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {221}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {221}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {221}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {221}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {221}
[141] pointer --> . '*'
	Preceding states: {221}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {221}
[143] pointer --> . '*' pointer
	Preceding states: {221}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {221}
-----------------------------
With direct_declarator, go to state 31
With declarator, go to state 222
With '(', go to state 1
With init_declarator, go to state 223
With 'IDENTIFIER', go to state 25
With '*', go to state 39
With pointer, go to state 27
=============================
STATE NUMBER: 222
=============================
[87] init_declarator --> declarator .
	Preceding states: {221, 235}
	Lookahead set: {',', ';'}
[88] init_declarator --> declarator . '=' initializer
	Preceding states: {221, 235}
-----------------------------
With '=', go to state 224
=============================
STATE NUMBER: 223
=============================
[86] init_declarator_list --> init_declarator_list ',' init_declarator .
	Preceding states: {23, 235}
	Lookahead set: {',', ';'}
-----------------------------
=============================
STATE NUMBER: 224
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {224}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {224}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {224}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {224}
[7] postfix_expression --> . primary_expression
	Preceding states: {224}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {224}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {224}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {224}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {224}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {224}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {224}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {224}
[17] unary_expression --> . postfix_expression
	Preceding states: {224}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {224}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {224}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {224}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {224}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {224}
[23] unary_operator --> . '&'
	Preceding states: {224}
[24] unary_operator --> . '*'
	Preceding states: {224}
[25] unary_operator --> . '+'
	Preceding states: {224}
[26] unary_operator --> . '-'
	Preceding states: {224}
[27] unary_operator --> . '~'
	Preceding states: {224}
[28] unary_operator --> . '!'
	Preceding states: {224}
[29] cast_expression --> . unary_expression
	Preceding states: {224}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {224}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {224}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {224}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {224}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {224}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {224}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {224}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {224}
[38] shift_expression --> . additive_expression
	Preceding states: {224}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {224}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {224}
[41] relational_expression --> . shift_expression
	Preceding states: {224}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {224}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {224}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {224}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {224}
[46] equality_expression --> . relational_expression
	Preceding states: {224}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {224}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {224}
[49] and_expression --> . equality_expression
	Preceding states: {224}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {224}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {224}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {224}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {224}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {224}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {224}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {224}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {224}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {224}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {224}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {224}
[61] assignment_expression --> . conditional_expression
	Preceding states: {224}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {224}
[88] init_declarator --> declarator '=' . initializer
	Preceding states: {23, 221, 235}
	Follow set: {',', ';'}
[170] initializer --> . assignment_expression
	Preceding states: {224}
[171] initializer --> . '{' initializer_list '}'
	Preceding states: {224}
[172] initializer --> . '{' initializer_list ',' '}'
	Preceding states: {224}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 225
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With initializer, go to state 226
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 227
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 225
=============================
[170] initializer --> assignment_expression .
	Preceding states: {224, 227, 231}
	Lookahead set: {',', ';', '}'}
-----------------------------
=============================
STATE NUMBER: 226
=============================
[88] init_declarator --> declarator '=' initializer .
	Preceding states: {23, 221, 235}
	Lookahead set: {',', ';'}
-----------------------------
=============================
STATE NUMBER: 227
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {227}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {227}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {227}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {227}
[7] postfix_expression --> . primary_expression
	Preceding states: {227}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {227}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {227}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {227}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {227}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {227}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {227}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {227}
[17] unary_expression --> . postfix_expression
	Preceding states: {227}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {227}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {227}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {227}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {227}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {227}
[23] unary_operator --> . '&'
	Preceding states: {227}
[24] unary_operator --> . '*'
	Preceding states: {227}
[25] unary_operator --> . '+'
	Preceding states: {227}
[26] unary_operator --> . '-'
	Preceding states: {227}
[27] unary_operator --> . '~'
	Preceding states: {227}
[28] unary_operator --> . '!'
	Preceding states: {227}
[29] cast_expression --> . unary_expression
	Preceding states: {227}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {227}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {227}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {227}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {227}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {227}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {227}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {227}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {227}
[38] shift_expression --> . additive_expression
	Preceding states: {227}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {227}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {227}
[41] relational_expression --> . shift_expression
	Preceding states: {227}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {227}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {227}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {227}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {227}
[46] equality_expression --> . relational_expression
	Preceding states: {227}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {227}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {227}
[49] and_expression --> . equality_expression
	Preceding states: {227}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {227}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {227}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {227}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {227}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {227}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {227}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {227}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {227}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {227}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {227}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {227}
[61] assignment_expression --> . conditional_expression
	Preceding states: {227}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {227}
[170] initializer --> . assignment_expression
	Preceding states: {227}
[171] initializer --> . '{' initializer_list '}'
	Preceding states: {227}
[171] initializer --> '{' . initializer_list '}'
	Preceding states: {224, 227, 231}
	Follow set: {',', '}'}
[172] initializer --> . '{' initializer_list ',' '}'
	Preceding states: {227}
[172] initializer --> '{' . initializer_list ',' '}'
	Preceding states: {224, 227, 231}
	Follow set: {',', '}'}
[173] initializer_list --> . initializer
	Preceding states: {227}
[174] initializer_list --> . initializer_list ',' initializer
	Preceding states: {227}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 225
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With initializer_list, go to state 228
With initializer, go to state 229
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 227
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 228
=============================
[171] initializer --> '{' initializer_list . '}'
	Preceding states: {224, 227, 231}
[172] initializer --> '{' initializer_list . ',' '}'
	Preceding states: {224, 227, 231}
[174] initializer_list --> initializer_list . ',' initializer
	Preceding states: {227}
-----------------------------
With '}', go to state 230
With ',', go to state 231
=============================
STATE NUMBER: 229
=============================
[173] initializer_list --> initializer .
	Preceding states: {227}
	Lookahead set: {',', '}'}
-----------------------------
=============================
STATE NUMBER: 230
=============================
[171] initializer --> '{' initializer_list '}' .
	Preceding states: {224, 227, 231}
	Lookahead set: {',', ';', '}'}
-----------------------------
=============================
STATE NUMBER: 231
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {231}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {231}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {231}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {231}
[7] postfix_expression --> . primary_expression
	Preceding states: {231}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {231}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {231}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {231}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {231}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {231}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {231}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {231}
[17] unary_expression --> . postfix_expression
	Preceding states: {231}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {231}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {231}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {231}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {231}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {231}
[23] unary_operator --> . '&'
	Preceding states: {231}
[24] unary_operator --> . '*'
	Preceding states: {231}
[25] unary_operator --> . '+'
	Preceding states: {231}
[26] unary_operator --> . '-'
	Preceding states: {231}
[27] unary_operator --> . '~'
	Preceding states: {231}
[28] unary_operator --> . '!'
	Preceding states: {231}
[29] cast_expression --> . unary_expression
	Preceding states: {231}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {231}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {231}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {231}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {231}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {231}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {231}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {231}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {231}
[38] shift_expression --> . additive_expression
	Preceding states: {231}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {231}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {231}
[41] relational_expression --> . shift_expression
	Preceding states: {231}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {231}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {231}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {231}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {231}
[46] equality_expression --> . relational_expression
	Preceding states: {231}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {231}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {231}
[49] and_expression --> . equality_expression
	Preceding states: {231}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {231}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {231}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {231}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {231}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {231}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {231}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {231}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {231}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {231}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {231}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {231}
[61] assignment_expression --> . conditional_expression
	Preceding states: {231}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {231}
[170] initializer --> . assignment_expression
	Preceding states: {231}
[171] initializer --> . '{' initializer_list '}'
	Preceding states: {231}
[172] initializer --> . '{' initializer_list ',' '}'
	Preceding states: {231}
[172] initializer --> '{' initializer_list ',' . '}'
	Preceding states: {224, 227, 231}
[174] initializer_list --> initializer_list ',' . initializer
	Preceding states: {227}
	Follow set: {',', '}'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 225
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With initializer, go to state 232
With 'SIZEOF', go to state 84
With '}', go to state 233
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 227
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 232
=============================
[174] initializer_list --> initializer_list ',' initializer .
	Preceding states: {227}
	Lookahead set: {',', '}'}
-----------------------------
=============================
STATE NUMBER: 233
=============================
[172] initializer --> '{' initializer_list ',' '}' .
	Preceding states: {224, 227, 231}
	Lookahead set: {',', ';', '}'}
-----------------------------
=============================
STATE NUMBER: 234
=============================
[77] declaration --> . declaration_specifiers ';'
	Preceding states: {234}
[78] declaration --> . declaration_specifiers init_declarator_list ';'
	Preceding states: {234}
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {234}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {234}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {234}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {234}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {234}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {234}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {234}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {234}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {234}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {234}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {234}
[94] type_specifier --> . 'VOID'
	Preceding states: {234}
[95] type_specifier --> . 'CHAR'
	Preceding states: {234}
[96] type_specifier --> . 'SHORT'
	Preceding states: {234}
[97] type_specifier --> . 'INT'
	Preceding states: {234}
[98] type_specifier --> . 'LONG'
	Preceding states: {234}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {234}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {234}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {234}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {234}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {234}
[104] type_specifier --> . enum_specifier
	Preceding states: {234}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {234}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {234}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {234}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {234}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {234}
[110] struct_or_union --> . 'UNION'
	Preceding states: {234}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {234}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {234}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {234}
[130] type_qualifier --> . 'CONST'
	Preceding states: {234}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {234}
[184] compound_statement --> . '{' '}'
	Preceding states: {234}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {234}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {234}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {234}
[189] declaration_list --> declaration_list . declaration
	Preceding states: {216}
	Follow set: {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '{'}
[210] function_definition --> declaration_specifiers declarator declaration_list . compound_statement
	Preceding states: {0, 15, 32, 347}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With struct_or_union, go to state 21
With 'INT', go to state 22
With declaration_specifiers, go to state 235
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With '{', go to state 236
With 'UNION', go to state 36
With 'LONG', go to state 38
With declaration, go to state 310
With compound_statement, go to state 312
=============================
STATE NUMBER: 235
=============================
[77] declaration --> declaration_specifiers . ';'
	Preceding states: {9, 216, 234, 236, 239, 348}
[78] declaration --> declaration_specifiers . init_declarator_list ';'
	Preceding states: {9, 216, 234, 236, 239, 348}
	Follow set: {';'}
[85] init_declarator_list --> . init_declarator
	Preceding states: {235}
[86] init_declarator_list --> . init_declarator_list ',' init_declarator
	Preceding states: {235}
[87] init_declarator --> . declarator
	Preceding states: {235}
[88] init_declarator --> . declarator '=' initializer
	Preceding states: {235}
[132] declarator --> . pointer direct_declarator
	Preceding states: {235}
[133] declarator --> . direct_declarator
	Preceding states: {235}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {235}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {235}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {235}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {235}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {235}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {235}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {235}
[141] pointer --> . '*'
	Preceding states: {235}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {235}
[143] pointer --> . '*' pointer
	Preceding states: {235}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {235}
-----------------------------
With direct_declarator, go to state 31
With declarator, go to state 222
With ';', go to state 217
With '(', go to state 1
With init_declarator, go to state 218
With 'IDENTIFIER', go to state 25
With '*', go to state 39
With pointer, go to state 27
With init_declarator_list, go to state 219
=============================
STATE NUMBER: 236
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {236}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {236}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {236}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {236}
[7] postfix_expression --> . primary_expression
	Preceding states: {236}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {236}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {236}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {236}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {236}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {236}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {236}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {236}
[17] unary_expression --> . postfix_expression
	Preceding states: {236}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {236}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {236}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {236}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {236}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {236}
[23] unary_operator --> . '&'
	Preceding states: {236}
[24] unary_operator --> . '*'
	Preceding states: {236}
[25] unary_operator --> . '+'
	Preceding states: {236}
[26] unary_operator --> . '-'
	Preceding states: {236}
[27] unary_operator --> . '~'
	Preceding states: {236}
[28] unary_operator --> . '!'
	Preceding states: {236}
[29] cast_expression --> . unary_expression
	Preceding states: {236}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {236}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {236}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {236}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {236}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {236}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {236}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {236}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {236}
[38] shift_expression --> . additive_expression
	Preceding states: {236}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {236}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {236}
[41] relational_expression --> . shift_expression
	Preceding states: {236}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {236}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {236}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {236}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {236}
[46] equality_expression --> . relational_expression
	Preceding states: {236}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {236}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {236}
[49] and_expression --> . equality_expression
	Preceding states: {236}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {236}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {236}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {236}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {236}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {236}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {236}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {236}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {236}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {236}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {236}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {236}
[61] assignment_expression --> . conditional_expression
	Preceding states: {236}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {236}
[74] expression --> . assignment_expression
	Preceding states: {236}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {236}
[77] declaration --> . declaration_specifiers ';'
	Preceding states: {236}
[78] declaration --> . declaration_specifiers init_declarator_list ';'
	Preceding states: {236}
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {236}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {236}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {236}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {236}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {236}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {236}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {236}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {236}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {236}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {236}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {236}
[94] type_specifier --> . 'VOID'
	Preceding states: {236}
[95] type_specifier --> . 'CHAR'
	Preceding states: {236}
[96] type_specifier --> . 'SHORT'
	Preceding states: {236}
[97] type_specifier --> . 'INT'
	Preceding states: {236}
[98] type_specifier --> . 'LONG'
	Preceding states: {236}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {236}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {236}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {236}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {236}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {236}
[104] type_specifier --> . enum_specifier
	Preceding states: {236}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {236}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {236}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {236}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {236}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {236}
[110] struct_or_union --> . 'UNION'
	Preceding states: {236}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {236}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {236}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {236}
[130] type_qualifier --> . 'CONST'
	Preceding states: {236}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {236}
[175] statement --> . labeled_statement
	Preceding states: {236}
[176] statement --> . compound_statement
	Preceding states: {236}
[177] statement --> . expression_statement
	Preceding states: {236}
[178] statement --> . selection_statement
	Preceding states: {236}
[179] statement --> . iteration_statement
	Preceding states: {236}
[180] statement --> . jump_statement
	Preceding states: {236}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {236}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {236}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {236}
[184] compound_statement --> . '{' '}'
	Preceding states: {236}
[184] compound_statement --> '{' . '}'
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {236}
[185] compound_statement --> '{' . statement_list '}'
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
	Follow set: {'}'}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {236}
[186] compound_statement --> '{' . declaration_list '}'
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {236}
[187] compound_statement --> '{' . declaration_list statement_list '}'
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[188] declaration_list --> . declaration
	Preceding states: {236}
[189] declaration_list --> . declaration_list declaration
	Preceding states: {236}
[190] statement_list --> . statement
	Preceding states: {236}
[191] statement_list --> . statement_list statement
	Preceding states: {236}
[192] expression_statement --> . ';'
	Preceding states: {236}
[193] expression_statement --> . expression ';'
	Preceding states: {236}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {236}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {236}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {236}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {236}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {236}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {236}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {236}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {236}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {236}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {236}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {236}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {236}
-----------------------------
With declaration_list, go to state 239
With '(', go to state 70
With relational_expression, go to state 71
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With struct_or_union_specifier, go to state 12
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With '!', go to state 78
With 'DOUBLE', go to state 13
With '+', go to state 83
With 'RETURN', go to state 242
With '}', go to state 243
With jump_statement, go to state 244
With statement_list, go to state 245
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With shift_expression, go to state 85
With ';', go to state 246
With 'ENUM', go to state 20
With '&', go to state 87
With 'CONTINUE', go to state 247
With selection_statement, go to state 248
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With 'VOID', go to state 28
With and_expression, go to state 94
With additive_expression, go to state 95
With 'TYPE_NAME', go to state 35
With 'SIGNED', go to state 34
With storage_class_specifier, go to state 33
With '{', go to state 236
With 'GOTO', go to state 250
With expression_statement, go to state 251
With 'LONG', go to state 38
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With 'FLOAT', go to state 4
With '~', go to state 74
With enum_specifier, go to state 8
With 'SHORT', go to state 7
With assignment_expression, go to state 130
With statement, go to state 253
With '-', go to state 76
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With 'REGISTER', go to state 14
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONST', go to state 19
With 'CONSTANT', go to state 88
With expression, go to state 257
With struct_or_union, go to state 21
With 'INT', go to state 22
With inclusive_or_expression, go to state 89
With declaration_specifiers, go to state 235
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With 'UNSIGNED', go to state 26
With 'STRUCT', go to state 30
With 'UNION', go to state 36
With logical_and_expression, go to state 96
With declaration, go to state 237
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 237
=============================
[188] declaration_list --> declaration .
	Preceding states: {9, 216, 236}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 238
=============================
[211] function_definition --> declaration_specifiers declarator compound_statement .
	Preceding states: {0, 15, 32, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
=============================
STATE NUMBER: 239
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {239}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {239}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {239}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {239}
[7] postfix_expression --> . primary_expression
	Preceding states: {239}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {239}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {239}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {239}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {239}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {239}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {239}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {239}
[17] unary_expression --> . postfix_expression
	Preceding states: {239}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {239}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {239}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {239}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {239}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {239}
[23] unary_operator --> . '&'
	Preceding states: {239}
[24] unary_operator --> . '*'
	Preceding states: {239}
[25] unary_operator --> . '+'
	Preceding states: {239}
[26] unary_operator --> . '-'
	Preceding states: {239}
[27] unary_operator --> . '~'
	Preceding states: {239}
[28] unary_operator --> . '!'
	Preceding states: {239}
[29] cast_expression --> . unary_expression
	Preceding states: {239}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {239}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {239}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {239}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {239}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {239}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {239}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {239}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {239}
[38] shift_expression --> . additive_expression
	Preceding states: {239}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {239}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {239}
[41] relational_expression --> . shift_expression
	Preceding states: {239}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {239}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {239}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {239}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {239}
[46] equality_expression --> . relational_expression
	Preceding states: {239}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {239}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {239}
[49] and_expression --> . equality_expression
	Preceding states: {239}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {239}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {239}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {239}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {239}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {239}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {239}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {239}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {239}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {239}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {239}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {239}
[61] assignment_expression --> . conditional_expression
	Preceding states: {239}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {239}
[74] expression --> . assignment_expression
	Preceding states: {239}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {239}
[77] declaration --> . declaration_specifiers ';'
	Preceding states: {239}
[78] declaration --> . declaration_specifiers init_declarator_list ';'
	Preceding states: {239}
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {239}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {239}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {239}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {239}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {239}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {239}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {239}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {239}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {239}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {239}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {239}
[94] type_specifier --> . 'VOID'
	Preceding states: {239}
[95] type_specifier --> . 'CHAR'
	Preceding states: {239}
[96] type_specifier --> . 'SHORT'
	Preceding states: {239}
[97] type_specifier --> . 'INT'
	Preceding states: {239}
[98] type_specifier --> . 'LONG'
	Preceding states: {239}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {239}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {239}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {239}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {239}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {239}
[104] type_specifier --> . enum_specifier
	Preceding states: {239}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {239}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {239}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {239}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {239}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {239}
[110] struct_or_union --> . 'UNION'
	Preceding states: {239}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {239}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {239}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {239}
[130] type_qualifier --> . 'CONST'
	Preceding states: {239}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {239}
[175] statement --> . labeled_statement
	Preceding states: {239}
[176] statement --> . compound_statement
	Preceding states: {239}
[177] statement --> . expression_statement
	Preceding states: {239}
[178] statement --> . selection_statement
	Preceding states: {239}
[179] statement --> . iteration_statement
	Preceding states: {239}
[180] statement --> . jump_statement
	Preceding states: {239}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {239}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {239}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {239}
[184] compound_statement --> . '{' '}'
	Preceding states: {239}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {239}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {239}
[186] compound_statement --> '{' declaration_list . '}'
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {239}
[187] compound_statement --> '{' declaration_list . statement_list '}'
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
	Follow set: {'}'}
[189] declaration_list --> declaration_list . declaration
	Preceding states: {236}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[190] statement_list --> . statement
	Preceding states: {239}
[191] statement_list --> . statement_list statement
	Preceding states: {239}
[192] expression_statement --> . ';'
	Preceding states: {239}
[193] expression_statement --> . expression ';'
	Preceding states: {239}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {239}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {239}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {239}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {239}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {239}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {239}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {239}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {239}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {239}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {239}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {239}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {239}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With struct_or_union_specifier, go to state 12
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With '!', go to state 78
With 'DOUBLE', go to state 13
With '+', go to state 83
With 'RETURN', go to state 242
With '}', go to state 308
With jump_statement, go to state 244
With statement_list, go to state 309
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With shift_expression, go to state 85
With ';', go to state 246
With 'ENUM', go to state 20
With '&', go to state 87
With 'CONTINUE', go to state 247
With selection_statement, go to state 248
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With 'VOID', go to state 28
With and_expression, go to state 94
With additive_expression, go to state 95
With 'TYPE_NAME', go to state 35
With 'SIGNED', go to state 34
With storage_class_specifier, go to state 33
With '{', go to state 236
With 'GOTO', go to state 250
With expression_statement, go to state 251
With 'LONG', go to state 38
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With 'FLOAT', go to state 4
With '~', go to state 74
With enum_specifier, go to state 8
With 'SHORT', go to state 7
With assignment_expression, go to state 130
With statement, go to state 253
With '-', go to state 76
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With 'REGISTER', go to state 14
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONST', go to state 19
With 'CONSTANT', go to state 88
With expression, go to state 257
With struct_or_union, go to state 21
With 'INT', go to state 22
With inclusive_or_expression, go to state 89
With declaration_specifiers, go to state 235
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With 'UNSIGNED', go to state 26
With 'STRUCT', go to state 30
With 'UNION', go to state 36
With logical_and_expression, go to state 96
With declaration, go to state 310
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 240
=============================
[203] jump_statement --> 'BREAK' . ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ';', go to state 307
=============================
STATE NUMBER: 241
=============================
[179] statement --> iteration_statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 242
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {242}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {242}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {242}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {242}
[7] postfix_expression --> . primary_expression
	Preceding states: {242}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {242}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {242}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {242}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {242}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {242}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {242}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {242}
[17] unary_expression --> . postfix_expression
	Preceding states: {242}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {242}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {242}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {242}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {242}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {242}
[23] unary_operator --> . '&'
	Preceding states: {242}
[24] unary_operator --> . '*'
	Preceding states: {242}
[25] unary_operator --> . '+'
	Preceding states: {242}
[26] unary_operator --> . '-'
	Preceding states: {242}
[27] unary_operator --> . '~'
	Preceding states: {242}
[28] unary_operator --> . '!'
	Preceding states: {242}
[29] cast_expression --> . unary_expression
	Preceding states: {242}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {242}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {242}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {242}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {242}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {242}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {242}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {242}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {242}
[38] shift_expression --> . additive_expression
	Preceding states: {242}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {242}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {242}
[41] relational_expression --> . shift_expression
	Preceding states: {242}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {242}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {242}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {242}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {242}
[46] equality_expression --> . relational_expression
	Preceding states: {242}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {242}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {242}
[49] and_expression --> . equality_expression
	Preceding states: {242}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {242}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {242}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {242}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {242}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {242}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {242}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {242}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {242}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {242}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {242}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {242}
[61] assignment_expression --> . conditional_expression
	Preceding states: {242}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {242}
[74] expression --> . assignment_expression
	Preceding states: {242}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {242}
[204] jump_statement --> 'RETURN' . ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
[205] jump_statement --> 'RETURN' . expression ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {';'}
-----------------------------
With relational_expression, go to state 71
With '(', go to state 70
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With ';', go to state 304
With '&', go to state 87
With 'CONSTANT', go to state 88
With expression, go to state 305
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 243
=============================
[184] compound_statement --> '{' '}' .
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 244
=============================
[180] statement --> jump_statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 245
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {245}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {245}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {245}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {245}
[7] postfix_expression --> . primary_expression
	Preceding states: {245}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {245}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {245}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {245}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {245}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {245}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {245}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {245}
[17] unary_expression --> . postfix_expression
	Preceding states: {245}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {245}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {245}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {245}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {245}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {245}
[23] unary_operator --> . '&'
	Preceding states: {245}
[24] unary_operator --> . '*'
	Preceding states: {245}
[25] unary_operator --> . '+'
	Preceding states: {245}
[26] unary_operator --> . '-'
	Preceding states: {245}
[27] unary_operator --> . '~'
	Preceding states: {245}
[28] unary_operator --> . '!'
	Preceding states: {245}
[29] cast_expression --> . unary_expression
	Preceding states: {245}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {245}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {245}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {245}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {245}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {245}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {245}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {245}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {245}
[38] shift_expression --> . additive_expression
	Preceding states: {245}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {245}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {245}
[41] relational_expression --> . shift_expression
	Preceding states: {245}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {245}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {245}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {245}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {245}
[46] equality_expression --> . relational_expression
	Preceding states: {245}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {245}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {245}
[49] and_expression --> . equality_expression
	Preceding states: {245}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {245}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {245}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {245}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {245}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {245}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {245}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {245}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {245}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {245}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {245}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {245}
[61] assignment_expression --> . conditional_expression
	Preceding states: {245}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {245}
[74] expression --> . assignment_expression
	Preceding states: {245}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {245}
[175] statement --> . labeled_statement
	Preceding states: {245}
[176] statement --> . compound_statement
	Preceding states: {245}
[177] statement --> . expression_statement
	Preceding states: {245}
[178] statement --> . selection_statement
	Preceding states: {245}
[179] statement --> . iteration_statement
	Preceding states: {245}
[180] statement --> . jump_statement
	Preceding states: {245}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {245}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {245}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {245}
[184] compound_statement --> . '{' '}'
	Preceding states: {245}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {245}
[185] compound_statement --> '{' statement_list . '}'
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {245}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {245}
[191] statement_list --> statement_list . statement
	Preceding states: {236}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[192] expression_statement --> . ';'
	Preceding states: {245}
[193] expression_statement --> . expression ';'
	Preceding states: {245}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {245}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {245}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {245}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {245}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {245}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {245}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {245}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {245}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {245}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {245}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {245}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {245}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With '}', go to state 302
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With 'CONTINUE', go to state 247
With selection_statement, go to state 248
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 303
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 246
=============================
[192] expression_statement --> ';' .
	Preceding states: {236, 239, 245, 259, 263, 264, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 247
=============================
[202] jump_statement --> 'CONTINUE' . ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ';', go to state 301
=============================
STATE NUMBER: 248
=============================
[178] statement --> selection_statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 249
=============================
[3] primary_expression --> 'IDENTIFIER' .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'PTR_OP', 'INC_OP', 'DEC_OP', 'LEFT_OP', 'RIGHT_OP', 'LE_OP', 'GE_OP', 'EQ_OP', 'NE_OP', 'AND_OP', 'OR_OP', 'MUL_ASSIGN', 'DIV_ASSIGN', 'MOD_ASSIGN', 'ADD_ASSIGN', 'SUB_ASSIGN', 'LEFT_ASSIGN', 'RIGHT_ASSIGN', 'AND_ASSIGN', 'XOR_ASSIGN', 'OR_ASSIGN', '(', '[', '.', ',', '&', '*', '+', '-', '/', '%', '<', '>', '^', '|', '?', '=', ';'}
[181] labeled_statement --> 'IDENTIFIER' . ':' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ':', go to state 299
=============================
STATE NUMBER: 250
=============================
[201] jump_statement --> 'GOTO' . 'IDENTIFIER' ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With 'IDENTIFIER', go to state 297
=============================
STATE NUMBER: 251
=============================
[177] statement --> expression_statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 252
=============================
[194] selection_statement --> 'IF' . '(' expression ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
[195] selection_statement --> 'IF' . '(' expression ')' statement 'ELSE' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With '(', go to state 291
=============================
STATE NUMBER: 253
=============================
[190] statement_list --> statement .
	Preceding states: {236, 239}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 254
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {254}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {254}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {254}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {254}
[7] postfix_expression --> . primary_expression
	Preceding states: {254}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {254}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {254}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {254}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {254}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {254}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {254}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {254}
[17] unary_expression --> . postfix_expression
	Preceding states: {254}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {254}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {254}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {254}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {254}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {254}
[23] unary_operator --> . '&'
	Preceding states: {254}
[24] unary_operator --> . '*'
	Preceding states: {254}
[25] unary_operator --> . '+'
	Preceding states: {254}
[26] unary_operator --> . '-'
	Preceding states: {254}
[27] unary_operator --> . '~'
	Preceding states: {254}
[28] unary_operator --> . '!'
	Preceding states: {254}
[29] cast_expression --> . unary_expression
	Preceding states: {254}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {254}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {254}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {254}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {254}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {254}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {254}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {254}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {254}
[38] shift_expression --> . additive_expression
	Preceding states: {254}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {254}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {254}
[41] relational_expression --> . shift_expression
	Preceding states: {254}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {254}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {254}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {254}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {254}
[46] equality_expression --> . relational_expression
	Preceding states: {254}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {254}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {254}
[49] and_expression --> . equality_expression
	Preceding states: {254}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {254}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {254}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {254}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {254}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {254}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {254}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {254}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {254}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {254}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {254}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {254}
[76] constant_expression --> . conditional_expression
	Preceding states: {254}
[182] labeled_statement --> 'CASE' . constant_expression ':' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {':'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With conditional_expression, go to state 77
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With constant_expression, go to state 288
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 255
=============================
[197] iteration_statement --> 'WHILE' . '(' expression ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With '(', go to state 284
=============================
STATE NUMBER: 256
=============================
[196] selection_statement --> 'SWITCH' . '(' expression ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With '(', go to state 280
=============================
STATE NUMBER: 257
=============================
[75] expression --> expression . ',' assignment_expression
	Preceding states: {236, 239, 245, 259, 263, 264, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
[193] expression_statement --> expression . ';'
	Preceding states: {236, 239, 245, 259, 263, 264, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ';', go to state 279
With ',', go to state 133
=============================
STATE NUMBER: 258
=============================
[175] statement --> labeled_statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 259
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {259}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {259}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {259}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {259}
[7] postfix_expression --> . primary_expression
	Preceding states: {259}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {259}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {259}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {259}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {259}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {259}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {259}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {259}
[17] unary_expression --> . postfix_expression
	Preceding states: {259}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {259}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {259}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {259}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {259}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {259}
[23] unary_operator --> . '&'
	Preceding states: {259}
[24] unary_operator --> . '*'
	Preceding states: {259}
[25] unary_operator --> . '+'
	Preceding states: {259}
[26] unary_operator --> . '-'
	Preceding states: {259}
[27] unary_operator --> . '~'
	Preceding states: {259}
[28] unary_operator --> . '!'
	Preceding states: {259}
[29] cast_expression --> . unary_expression
	Preceding states: {259}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {259}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {259}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {259}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {259}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {259}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {259}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {259}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {259}
[38] shift_expression --> . additive_expression
	Preceding states: {259}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {259}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {259}
[41] relational_expression --> . shift_expression
	Preceding states: {259}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {259}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {259}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {259}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {259}
[46] equality_expression --> . relational_expression
	Preceding states: {259}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {259}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {259}
[49] and_expression --> . equality_expression
	Preceding states: {259}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {259}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {259}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {259}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {259}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {259}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {259}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {259}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {259}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {259}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {259}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {259}
[61] assignment_expression --> . conditional_expression
	Preceding states: {259}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {259}
[74] expression --> . assignment_expression
	Preceding states: {259}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {259}
[175] statement --> . labeled_statement
	Preceding states: {259}
[176] statement --> . compound_statement
	Preceding states: {259}
[177] statement --> . expression_statement
	Preceding states: {259}
[178] statement --> . selection_statement
	Preceding states: {259}
[179] statement --> . iteration_statement
	Preceding states: {259}
[180] statement --> . jump_statement
	Preceding states: {259}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {259}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {259}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {259}
[184] compound_statement --> . '{' '}'
	Preceding states: {259}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {259}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {259}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {259}
[192] expression_statement --> . ';'
	Preceding states: {259}
[193] expression_statement --> . expression ';'
	Preceding states: {259}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {259}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {259}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {259}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {259}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {259}
[198] iteration_statement --> 'DO' . statement 'WHILE' '(' expression ')' ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'WHILE'}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {259}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {259}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {259}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {259}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {259}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {259}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {259}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With selection_statement, go to state 248
With 'CONTINUE', go to state 247
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 273
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 260
=============================
[183] labeled_statement --> 'DEFAULT' . ':' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ':', go to state 271
=============================
STATE NUMBER: 261
=============================
[176] statement --> compound_statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 262
=============================
[199] iteration_statement --> 'FOR' . '(' expression_statement expression_statement ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
[200] iteration_statement --> 'FOR' . '(' expression_statement expression_statement expression ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With '(', go to state 263
=============================
STATE NUMBER: 263
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {263}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {263}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {263}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {263}
[7] postfix_expression --> . primary_expression
	Preceding states: {263}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {263}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {263}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {263}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {263}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {263}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {263}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {263}
[17] unary_expression --> . postfix_expression
	Preceding states: {263}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {263}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {263}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {263}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {263}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {263}
[23] unary_operator --> . '&'
	Preceding states: {263}
[24] unary_operator --> . '*'
	Preceding states: {263}
[25] unary_operator --> . '+'
	Preceding states: {263}
[26] unary_operator --> . '-'
	Preceding states: {263}
[27] unary_operator --> . '~'
	Preceding states: {263}
[28] unary_operator --> . '!'
	Preceding states: {263}
[29] cast_expression --> . unary_expression
	Preceding states: {263}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {263}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {263}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {263}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {263}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {263}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {263}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {263}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {263}
[38] shift_expression --> . additive_expression
	Preceding states: {263}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {263}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {263}
[41] relational_expression --> . shift_expression
	Preceding states: {263}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {263}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {263}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {263}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {263}
[46] equality_expression --> . relational_expression
	Preceding states: {263}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {263}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {263}
[49] and_expression --> . equality_expression
	Preceding states: {263}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {263}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {263}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {263}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {263}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {263}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {263}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {263}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {263}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {263}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {263}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {263}
[61] assignment_expression --> . conditional_expression
	Preceding states: {263}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {263}
[74] expression --> . assignment_expression
	Preceding states: {263}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {263}
[192] expression_statement --> . ';'
	Preceding states: {263}
[193] expression_statement --> . expression ';'
	Preceding states: {263}
[199] iteration_statement --> 'FOR' '(' . expression_statement expression_statement ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!', ';'}
[200] iteration_statement --> 'FOR' '(' . expression_statement expression_statement expression ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', '&', '*', '+', '-', '~', '!', ';'}
-----------------------------
With relational_expression, go to state 71
With '(', go to state 70
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With expression, go to state 257
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With expression_statement, go to state 264
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 264
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {264}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {264}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {264}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {264}
[7] postfix_expression --> . primary_expression
	Preceding states: {264}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {264}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {264}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {264}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {264}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {264}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {264}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {264}
[17] unary_expression --> . postfix_expression
	Preceding states: {264}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {264}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {264}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {264}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {264}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {264}
[23] unary_operator --> . '&'
	Preceding states: {264}
[24] unary_operator --> . '*'
	Preceding states: {264}
[25] unary_operator --> . '+'
	Preceding states: {264}
[26] unary_operator --> . '-'
	Preceding states: {264}
[27] unary_operator --> . '~'
	Preceding states: {264}
[28] unary_operator --> . '!'
	Preceding states: {264}
[29] cast_expression --> . unary_expression
	Preceding states: {264}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {264}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {264}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {264}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {264}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {264}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {264}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {264}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {264}
[38] shift_expression --> . additive_expression
	Preceding states: {264}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {264}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {264}
[41] relational_expression --> . shift_expression
	Preceding states: {264}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {264}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {264}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {264}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {264}
[46] equality_expression --> . relational_expression
	Preceding states: {264}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {264}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {264}
[49] and_expression --> . equality_expression
	Preceding states: {264}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {264}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {264}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {264}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {264}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {264}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {264}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {264}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {264}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {264}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {264}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {264}
[61] assignment_expression --> . conditional_expression
	Preceding states: {264}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {264}
[74] expression --> . assignment_expression
	Preceding states: {264}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {264}
[192] expression_statement --> . ';'
	Preceding states: {264}
[193] expression_statement --> . expression ';'
	Preceding states: {264}
[199] iteration_statement --> 'FOR' '(' expression_statement . expression_statement ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', ')', '&', '*', '+', '-', '~', '!'}
[200] iteration_statement --> 'FOR' '(' expression_statement . expression_statement expression ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', '(', ')', '&', '*', '+', '-', '~', '!'}
-----------------------------
With relational_expression, go to state 71
With '(', go to state 70
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With expression, go to state 257
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With expression_statement, go to state 265
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 265
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {265}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {265}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {265}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {265}
[7] postfix_expression --> . primary_expression
	Preceding states: {265}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {265}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {265}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {265}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {265}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {265}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {265}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {265}
[17] unary_expression --> . postfix_expression
	Preceding states: {265}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {265}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {265}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {265}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {265}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {265}
[23] unary_operator --> . '&'
	Preceding states: {265}
[24] unary_operator --> . '*'
	Preceding states: {265}
[25] unary_operator --> . '+'
	Preceding states: {265}
[26] unary_operator --> . '-'
	Preceding states: {265}
[27] unary_operator --> . '~'
	Preceding states: {265}
[28] unary_operator --> . '!'
	Preceding states: {265}
[29] cast_expression --> . unary_expression
	Preceding states: {265}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {265}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {265}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {265}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {265}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {265}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {265}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {265}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {265}
[38] shift_expression --> . additive_expression
	Preceding states: {265}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {265}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {265}
[41] relational_expression --> . shift_expression
	Preceding states: {265}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {265}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {265}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {265}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {265}
[46] equality_expression --> . relational_expression
	Preceding states: {265}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {265}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {265}
[49] and_expression --> . equality_expression
	Preceding states: {265}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {265}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {265}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {265}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {265}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {265}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {265}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {265}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {265}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {265}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {265}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {265}
[61] assignment_expression --> . conditional_expression
	Preceding states: {265}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {265}
[74] expression --> . assignment_expression
	Preceding states: {265}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {265}
[199] iteration_statement --> 'FOR' '(' expression_statement expression_statement . ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
[200] iteration_statement --> 'FOR' '(' expression_statement expression_statement . expression ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {')'}
-----------------------------
With relational_expression, go to state 71
With '(', go to state 70
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With expression, go to state 266
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With ')', go to state 267
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 266
=============================
[75] expression --> expression . ',' assignment_expression
	Preceding states: {265}
[200] iteration_statement --> 'FOR' '(' expression_statement expression_statement expression . ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ',', go to state 133
With ')', go to state 269
=============================
STATE NUMBER: 267
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {267}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {267}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {267}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {267}
[7] postfix_expression --> . primary_expression
	Preceding states: {267}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {267}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {267}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {267}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {267}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {267}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {267}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {267}
[17] unary_expression --> . postfix_expression
	Preceding states: {267}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {267}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {267}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {267}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {267}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {267}
[23] unary_operator --> . '&'
	Preceding states: {267}
[24] unary_operator --> . '*'
	Preceding states: {267}
[25] unary_operator --> . '+'
	Preceding states: {267}
[26] unary_operator --> . '-'
	Preceding states: {267}
[27] unary_operator --> . '~'
	Preceding states: {267}
[28] unary_operator --> . '!'
	Preceding states: {267}
[29] cast_expression --> . unary_expression
	Preceding states: {267}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {267}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {267}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {267}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {267}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {267}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {267}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {267}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {267}
[38] shift_expression --> . additive_expression
	Preceding states: {267}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {267}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {267}
[41] relational_expression --> . shift_expression
	Preceding states: {267}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {267}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {267}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {267}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {267}
[46] equality_expression --> . relational_expression
	Preceding states: {267}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {267}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {267}
[49] and_expression --> . equality_expression
	Preceding states: {267}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {267}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {267}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {267}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {267}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {267}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {267}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {267}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {267}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {267}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {267}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {267}
[61] assignment_expression --> . conditional_expression
	Preceding states: {267}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {267}
[74] expression --> . assignment_expression
	Preceding states: {267}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {267}
[175] statement --> . labeled_statement
	Preceding states: {267}
[176] statement --> . compound_statement
	Preceding states: {267}
[177] statement --> . expression_statement
	Preceding states: {267}
[178] statement --> . selection_statement
	Preceding states: {267}
[179] statement --> . iteration_statement
	Preceding states: {267}
[180] statement --> . jump_statement
	Preceding states: {267}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {267}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {267}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {267}
[184] compound_statement --> . '{' '}'
	Preceding states: {267}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {267}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {267}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {267}
[192] expression_statement --> . ';'
	Preceding states: {267}
[193] expression_statement --> . expression ';'
	Preceding states: {267}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {267}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {267}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {267}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {267}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {267}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {267}
[199] iteration_statement --> 'FOR' '(' expression_statement expression_statement ')' . statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {267}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {267}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {267}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {267}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {267}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {267}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With selection_statement, go to state 248
With 'CONTINUE', go to state 247
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 268
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 268
=============================
[199] iteration_statement --> 'FOR' '(' expression_statement expression_statement ')' statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 269
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {269}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {269}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {269}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {269}
[7] postfix_expression --> . primary_expression
	Preceding states: {269}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {269}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {269}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {269}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {269}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {269}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {269}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {269}
[17] unary_expression --> . postfix_expression
	Preceding states: {269}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {269}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {269}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {269}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {269}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {269}
[23] unary_operator --> . '&'
	Preceding states: {269}
[24] unary_operator --> . '*'
	Preceding states: {269}
[25] unary_operator --> . '+'
	Preceding states: {269}
[26] unary_operator --> . '-'
	Preceding states: {269}
[27] unary_operator --> . '~'
	Preceding states: {269}
[28] unary_operator --> . '!'
	Preceding states: {269}
[29] cast_expression --> . unary_expression
	Preceding states: {269}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {269}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {269}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {269}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {269}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {269}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {269}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {269}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {269}
[38] shift_expression --> . additive_expression
	Preceding states: {269}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {269}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {269}
[41] relational_expression --> . shift_expression
	Preceding states: {269}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {269}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {269}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {269}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {269}
[46] equality_expression --> . relational_expression
	Preceding states: {269}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {269}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {269}
[49] and_expression --> . equality_expression
	Preceding states: {269}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {269}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {269}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {269}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {269}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {269}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {269}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {269}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {269}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {269}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {269}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {269}
[61] assignment_expression --> . conditional_expression
	Preceding states: {269}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {269}
[74] expression --> . assignment_expression
	Preceding states: {269}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {269}
[175] statement --> . labeled_statement
	Preceding states: {269}
[176] statement --> . compound_statement
	Preceding states: {269}
[177] statement --> . expression_statement
	Preceding states: {269}
[178] statement --> . selection_statement
	Preceding states: {269}
[179] statement --> . iteration_statement
	Preceding states: {269}
[180] statement --> . jump_statement
	Preceding states: {269}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {269}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {269}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {269}
[184] compound_statement --> . '{' '}'
	Preceding states: {269}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {269}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {269}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {269}
[192] expression_statement --> . ';'
	Preceding states: {269}
[193] expression_statement --> . expression ';'
	Preceding states: {269}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {269}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {269}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {269}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {269}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {269}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {269}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {269}
[200] iteration_statement --> 'FOR' '(' expression_statement expression_statement expression ')' . statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {269}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {269}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {269}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {269}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {269}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With selection_statement, go to state 248
With 'CONTINUE', go to state 247
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 270
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 270
=============================
[200] iteration_statement --> 'FOR' '(' expression_statement expression_statement expression ')' statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 271
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {271}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {271}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {271}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {271}
[7] postfix_expression --> . primary_expression
	Preceding states: {271}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {271}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {271}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {271}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {271}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {271}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {271}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {271}
[17] unary_expression --> . postfix_expression
	Preceding states: {271}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {271}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {271}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {271}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {271}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {271}
[23] unary_operator --> . '&'
	Preceding states: {271}
[24] unary_operator --> . '*'
	Preceding states: {271}
[25] unary_operator --> . '+'
	Preceding states: {271}
[26] unary_operator --> . '-'
	Preceding states: {271}
[27] unary_operator --> . '~'
	Preceding states: {271}
[28] unary_operator --> . '!'
	Preceding states: {271}
[29] cast_expression --> . unary_expression
	Preceding states: {271}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {271}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {271}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {271}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {271}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {271}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {271}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {271}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {271}
[38] shift_expression --> . additive_expression
	Preceding states: {271}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {271}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {271}
[41] relational_expression --> . shift_expression
	Preceding states: {271}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {271}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {271}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {271}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {271}
[46] equality_expression --> . relational_expression
	Preceding states: {271}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {271}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {271}
[49] and_expression --> . equality_expression
	Preceding states: {271}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {271}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {271}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {271}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {271}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {271}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {271}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {271}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {271}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {271}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {271}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {271}
[61] assignment_expression --> . conditional_expression
	Preceding states: {271}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {271}
[74] expression --> . assignment_expression
	Preceding states: {271}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {271}
[175] statement --> . labeled_statement
	Preceding states: {271}
[176] statement --> . compound_statement
	Preceding states: {271}
[177] statement --> . expression_statement
	Preceding states: {271}
[178] statement --> . selection_statement
	Preceding states: {271}
[179] statement --> . iteration_statement
	Preceding states: {271}
[180] statement --> . jump_statement
	Preceding states: {271}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {271}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {271}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {271}
[183] labeled_statement --> 'DEFAULT' ':' . statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[184] compound_statement --> . '{' '}'
	Preceding states: {271}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {271}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {271}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {271}
[192] expression_statement --> . ';'
	Preceding states: {271}
[193] expression_statement --> . expression ';'
	Preceding states: {271}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {271}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {271}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {271}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {271}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {271}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {271}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {271}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {271}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {271}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {271}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {271}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {271}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With selection_statement, go to state 248
With 'CONTINUE', go to state 247
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 272
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 272
=============================
[183] labeled_statement --> 'DEFAULT' ':' statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 273
=============================
[198] iteration_statement --> 'DO' statement . 'WHILE' '(' expression ')' ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With 'WHILE', go to state 274
=============================
STATE NUMBER: 274
=============================
[198] iteration_statement --> 'DO' statement 'WHILE' . '(' expression ')' ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With '(', go to state 275
=============================
STATE NUMBER: 275
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {275}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {275}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {275}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {275}
[7] postfix_expression --> . primary_expression
	Preceding states: {275}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {275}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {275}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {275}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {275}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {275}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {275}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {275}
[17] unary_expression --> . postfix_expression
	Preceding states: {275}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {275}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {275}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {275}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {275}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {275}
[23] unary_operator --> . '&'
	Preceding states: {275}
[24] unary_operator --> . '*'
	Preceding states: {275}
[25] unary_operator --> . '+'
	Preceding states: {275}
[26] unary_operator --> . '-'
	Preceding states: {275}
[27] unary_operator --> . '~'
	Preceding states: {275}
[28] unary_operator --> . '!'
	Preceding states: {275}
[29] cast_expression --> . unary_expression
	Preceding states: {275}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {275}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {275}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {275}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {275}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {275}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {275}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {275}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {275}
[38] shift_expression --> . additive_expression
	Preceding states: {275}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {275}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {275}
[41] relational_expression --> . shift_expression
	Preceding states: {275}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {275}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {275}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {275}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {275}
[46] equality_expression --> . relational_expression
	Preceding states: {275}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {275}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {275}
[49] and_expression --> . equality_expression
	Preceding states: {275}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {275}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {275}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {275}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {275}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {275}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {275}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {275}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {275}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {275}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {275}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {275}
[61] assignment_expression --> . conditional_expression
	Preceding states: {275}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {275}
[74] expression --> . assignment_expression
	Preceding states: {275}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {275}
[198] iteration_statement --> 'DO' statement 'WHILE' '(' . expression ')' ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {')'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With expression, go to state 276
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 276
=============================
[75] expression --> expression . ',' assignment_expression
	Preceding states: {275}
[198] iteration_statement --> 'DO' statement 'WHILE' '(' expression . ')' ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ',', go to state 133
With ')', go to state 277
=============================
STATE NUMBER: 277
=============================
[198] iteration_statement --> 'DO' statement 'WHILE' '(' expression ')' . ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ';', go to state 278
=============================
STATE NUMBER: 278
=============================
[198] iteration_statement --> 'DO' statement 'WHILE' '(' expression ')' ';' .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 279
=============================
[193] expression_statement --> expression ';' .
	Preceding states: {236, 239, 245, 259, 263, 264, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 280
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {280}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {280}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {280}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {280}
[7] postfix_expression --> . primary_expression
	Preceding states: {280}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {280}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {280}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {280}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {280}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {280}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {280}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {280}
[17] unary_expression --> . postfix_expression
	Preceding states: {280}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {280}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {280}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {280}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {280}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {280}
[23] unary_operator --> . '&'
	Preceding states: {280}
[24] unary_operator --> . '*'
	Preceding states: {280}
[25] unary_operator --> . '+'
	Preceding states: {280}
[26] unary_operator --> . '-'
	Preceding states: {280}
[27] unary_operator --> . '~'
	Preceding states: {280}
[28] unary_operator --> . '!'
	Preceding states: {280}
[29] cast_expression --> . unary_expression
	Preceding states: {280}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {280}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {280}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {280}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {280}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {280}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {280}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {280}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {280}
[38] shift_expression --> . additive_expression
	Preceding states: {280}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {280}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {280}
[41] relational_expression --> . shift_expression
	Preceding states: {280}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {280}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {280}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {280}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {280}
[46] equality_expression --> . relational_expression
	Preceding states: {280}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {280}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {280}
[49] and_expression --> . equality_expression
	Preceding states: {280}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {280}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {280}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {280}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {280}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {280}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {280}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {280}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {280}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {280}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {280}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {280}
[61] assignment_expression --> . conditional_expression
	Preceding states: {280}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {280}
[74] expression --> . assignment_expression
	Preceding states: {280}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {280}
[196] selection_statement --> 'SWITCH' '(' . expression ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {')'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With expression, go to state 281
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 281
=============================
[75] expression --> expression . ',' assignment_expression
	Preceding states: {280}
[196] selection_statement --> 'SWITCH' '(' expression . ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ',', go to state 133
With ')', go to state 282
=============================
STATE NUMBER: 282
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {282}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {282}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {282}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {282}
[7] postfix_expression --> . primary_expression
	Preceding states: {282}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {282}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {282}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {282}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {282}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {282}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {282}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {282}
[17] unary_expression --> . postfix_expression
	Preceding states: {282}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {282}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {282}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {282}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {282}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {282}
[23] unary_operator --> . '&'
	Preceding states: {282}
[24] unary_operator --> . '*'
	Preceding states: {282}
[25] unary_operator --> . '+'
	Preceding states: {282}
[26] unary_operator --> . '-'
	Preceding states: {282}
[27] unary_operator --> . '~'
	Preceding states: {282}
[28] unary_operator --> . '!'
	Preceding states: {282}
[29] cast_expression --> . unary_expression
	Preceding states: {282}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {282}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {282}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {282}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {282}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {282}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {282}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {282}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {282}
[38] shift_expression --> . additive_expression
	Preceding states: {282}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {282}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {282}
[41] relational_expression --> . shift_expression
	Preceding states: {282}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {282}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {282}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {282}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {282}
[46] equality_expression --> . relational_expression
	Preceding states: {282}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {282}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {282}
[49] and_expression --> . equality_expression
	Preceding states: {282}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {282}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {282}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {282}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {282}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {282}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {282}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {282}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {282}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {282}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {282}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {282}
[61] assignment_expression --> . conditional_expression
	Preceding states: {282}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {282}
[74] expression --> . assignment_expression
	Preceding states: {282}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {282}
[175] statement --> . labeled_statement
	Preceding states: {282}
[176] statement --> . compound_statement
	Preceding states: {282}
[177] statement --> . expression_statement
	Preceding states: {282}
[178] statement --> . selection_statement
	Preceding states: {282}
[179] statement --> . iteration_statement
	Preceding states: {282}
[180] statement --> . jump_statement
	Preceding states: {282}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {282}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {282}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {282}
[184] compound_statement --> . '{' '}'
	Preceding states: {282}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {282}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {282}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {282}
[192] expression_statement --> . ';'
	Preceding states: {282}
[193] expression_statement --> . expression ';'
	Preceding states: {282}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {282}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {282}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {282}
[196] selection_statement --> 'SWITCH' '(' expression ')' . statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {282}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {282}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {282}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {282}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {282}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {282}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {282}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {282}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {282}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With selection_statement, go to state 248
With 'CONTINUE', go to state 247
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 283
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 283
=============================
[196] selection_statement --> 'SWITCH' '(' expression ')' statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 284
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {284}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {284}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {284}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {284}
[7] postfix_expression --> . primary_expression
	Preceding states: {284}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {284}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {284}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {284}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {284}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {284}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {284}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {284}
[17] unary_expression --> . postfix_expression
	Preceding states: {284}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {284}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {284}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {284}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {284}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {284}
[23] unary_operator --> . '&'
	Preceding states: {284}
[24] unary_operator --> . '*'
	Preceding states: {284}
[25] unary_operator --> . '+'
	Preceding states: {284}
[26] unary_operator --> . '-'
	Preceding states: {284}
[27] unary_operator --> . '~'
	Preceding states: {284}
[28] unary_operator --> . '!'
	Preceding states: {284}
[29] cast_expression --> . unary_expression
	Preceding states: {284}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {284}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {284}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {284}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {284}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {284}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {284}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {284}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {284}
[38] shift_expression --> . additive_expression
	Preceding states: {284}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {284}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {284}
[41] relational_expression --> . shift_expression
	Preceding states: {284}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {284}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {284}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {284}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {284}
[46] equality_expression --> . relational_expression
	Preceding states: {284}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {284}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {284}
[49] and_expression --> . equality_expression
	Preceding states: {284}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {284}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {284}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {284}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {284}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {284}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {284}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {284}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {284}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {284}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {284}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {284}
[61] assignment_expression --> . conditional_expression
	Preceding states: {284}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {284}
[74] expression --> . assignment_expression
	Preceding states: {284}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {284}
[197] iteration_statement --> 'WHILE' '(' . expression ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {')'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With expression, go to state 285
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 285
=============================
[75] expression --> expression . ',' assignment_expression
	Preceding states: {284}
[197] iteration_statement --> 'WHILE' '(' expression . ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ',', go to state 133
With ')', go to state 286
=============================
STATE NUMBER: 286
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {286}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {286}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {286}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {286}
[7] postfix_expression --> . primary_expression
	Preceding states: {286}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {286}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {286}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {286}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {286}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {286}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {286}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {286}
[17] unary_expression --> . postfix_expression
	Preceding states: {286}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {286}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {286}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {286}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {286}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {286}
[23] unary_operator --> . '&'
	Preceding states: {286}
[24] unary_operator --> . '*'
	Preceding states: {286}
[25] unary_operator --> . '+'
	Preceding states: {286}
[26] unary_operator --> . '-'
	Preceding states: {286}
[27] unary_operator --> . '~'
	Preceding states: {286}
[28] unary_operator --> . '!'
	Preceding states: {286}
[29] cast_expression --> . unary_expression
	Preceding states: {286}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {286}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {286}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {286}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {286}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {286}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {286}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {286}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {286}
[38] shift_expression --> . additive_expression
	Preceding states: {286}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {286}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {286}
[41] relational_expression --> . shift_expression
	Preceding states: {286}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {286}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {286}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {286}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {286}
[46] equality_expression --> . relational_expression
	Preceding states: {286}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {286}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {286}
[49] and_expression --> . equality_expression
	Preceding states: {286}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {286}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {286}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {286}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {286}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {286}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {286}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {286}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {286}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {286}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {286}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {286}
[61] assignment_expression --> . conditional_expression
	Preceding states: {286}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {286}
[74] expression --> . assignment_expression
	Preceding states: {286}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {286}
[175] statement --> . labeled_statement
	Preceding states: {286}
[176] statement --> . compound_statement
	Preceding states: {286}
[177] statement --> . expression_statement
	Preceding states: {286}
[178] statement --> . selection_statement
	Preceding states: {286}
[179] statement --> . iteration_statement
	Preceding states: {286}
[180] statement --> . jump_statement
	Preceding states: {286}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {286}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {286}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {286}
[184] compound_statement --> . '{' '}'
	Preceding states: {286}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {286}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {286}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {286}
[192] expression_statement --> . ';'
	Preceding states: {286}
[193] expression_statement --> . expression ';'
	Preceding states: {286}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {286}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {286}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {286}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {286}
[197] iteration_statement --> 'WHILE' '(' expression ')' . statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {286}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {286}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {286}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {286}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {286}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {286}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {286}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {286}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With selection_statement, go to state 248
With 'CONTINUE', go to state 247
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 287
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 287
=============================
[197] iteration_statement --> 'WHILE' '(' expression ')' statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 288
=============================
[182] labeled_statement --> 'CASE' constant_expression . ':' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ':', go to state 289
=============================
STATE NUMBER: 289
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {289}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {289}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {289}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {289}
[7] postfix_expression --> . primary_expression
	Preceding states: {289}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {289}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {289}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {289}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {289}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {289}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {289}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {289}
[17] unary_expression --> . postfix_expression
	Preceding states: {289}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {289}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {289}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {289}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {289}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {289}
[23] unary_operator --> . '&'
	Preceding states: {289}
[24] unary_operator --> . '*'
	Preceding states: {289}
[25] unary_operator --> . '+'
	Preceding states: {289}
[26] unary_operator --> . '-'
	Preceding states: {289}
[27] unary_operator --> . '~'
	Preceding states: {289}
[28] unary_operator --> . '!'
	Preceding states: {289}
[29] cast_expression --> . unary_expression
	Preceding states: {289}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {289}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {289}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {289}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {289}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {289}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {289}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {289}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {289}
[38] shift_expression --> . additive_expression
	Preceding states: {289}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {289}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {289}
[41] relational_expression --> . shift_expression
	Preceding states: {289}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {289}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {289}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {289}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {289}
[46] equality_expression --> . relational_expression
	Preceding states: {289}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {289}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {289}
[49] and_expression --> . equality_expression
	Preceding states: {289}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {289}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {289}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {289}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {289}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {289}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {289}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {289}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {289}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {289}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {289}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {289}
[61] assignment_expression --> . conditional_expression
	Preceding states: {289}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {289}
[74] expression --> . assignment_expression
	Preceding states: {289}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {289}
[175] statement --> . labeled_statement
	Preceding states: {289}
[176] statement --> . compound_statement
	Preceding states: {289}
[177] statement --> . expression_statement
	Preceding states: {289}
[178] statement --> . selection_statement
	Preceding states: {289}
[179] statement --> . iteration_statement
	Preceding states: {289}
[180] statement --> . jump_statement
	Preceding states: {289}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {289}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {289}
[182] labeled_statement --> 'CASE' constant_expression ':' . statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {289}
[184] compound_statement --> . '{' '}'
	Preceding states: {289}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {289}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {289}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {289}
[192] expression_statement --> . ';'
	Preceding states: {289}
[193] expression_statement --> . expression ';'
	Preceding states: {289}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {289}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {289}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {289}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {289}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {289}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {289}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {289}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {289}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {289}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {289}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {289}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {289}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With selection_statement, go to state 248
With 'CONTINUE', go to state 247
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 290
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 290
=============================
[182] labeled_statement --> 'CASE' constant_expression ':' statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 291
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {291}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {291}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {291}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {291}
[7] postfix_expression --> . primary_expression
	Preceding states: {291}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {291}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {291}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {291}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {291}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {291}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {291}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {291}
[17] unary_expression --> . postfix_expression
	Preceding states: {291}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {291}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {291}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {291}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {291}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {291}
[23] unary_operator --> . '&'
	Preceding states: {291}
[24] unary_operator --> . '*'
	Preceding states: {291}
[25] unary_operator --> . '+'
	Preceding states: {291}
[26] unary_operator --> . '-'
	Preceding states: {291}
[27] unary_operator --> . '~'
	Preceding states: {291}
[28] unary_operator --> . '!'
	Preceding states: {291}
[29] cast_expression --> . unary_expression
	Preceding states: {291}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {291}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {291}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {291}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {291}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {291}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {291}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {291}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {291}
[38] shift_expression --> . additive_expression
	Preceding states: {291}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {291}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {291}
[41] relational_expression --> . shift_expression
	Preceding states: {291}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {291}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {291}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {291}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {291}
[46] equality_expression --> . relational_expression
	Preceding states: {291}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {291}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {291}
[49] and_expression --> . equality_expression
	Preceding states: {291}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {291}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {291}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {291}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {291}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {291}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {291}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {291}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {291}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {291}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {291}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {291}
[61] assignment_expression --> . conditional_expression
	Preceding states: {291}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {291}
[74] expression --> . assignment_expression
	Preceding states: {291}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {291}
[194] selection_statement --> 'IF' '(' . expression ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {')'}
[195] selection_statement --> 'IF' '(' . expression ')' statement 'ELSE' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {')'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 109
With '~', go to state 74
With equality_expression, go to state 75
With assignment_expression, go to state 130
With '-', go to state 76
With conditional_expression, go to state 111
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With '&', go to state 87
With 'CONSTANT', go to state 88
With expression, go to state 292
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 292
=============================
[75] expression --> expression . ',' assignment_expression
	Preceding states: {291}
[194] selection_statement --> 'IF' '(' expression . ')' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
[195] selection_statement --> 'IF' '(' expression . ')' statement 'ELSE' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ',', go to state 133
With ')', go to state 293
=============================
STATE NUMBER: 293
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {293}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {293}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {293}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {293}
[7] postfix_expression --> . primary_expression
	Preceding states: {293}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {293}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {293}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {293}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {293}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {293}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {293}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {293}
[17] unary_expression --> . postfix_expression
	Preceding states: {293}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {293}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {293}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {293}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {293}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {293}
[23] unary_operator --> . '&'
	Preceding states: {293}
[24] unary_operator --> . '*'
	Preceding states: {293}
[25] unary_operator --> . '+'
	Preceding states: {293}
[26] unary_operator --> . '-'
	Preceding states: {293}
[27] unary_operator --> . '~'
	Preceding states: {293}
[28] unary_operator --> . '!'
	Preceding states: {293}
[29] cast_expression --> . unary_expression
	Preceding states: {293}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {293}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {293}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {293}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {293}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {293}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {293}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {293}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {293}
[38] shift_expression --> . additive_expression
	Preceding states: {293}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {293}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {293}
[41] relational_expression --> . shift_expression
	Preceding states: {293}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {293}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {293}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {293}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {293}
[46] equality_expression --> . relational_expression
	Preceding states: {293}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {293}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {293}
[49] and_expression --> . equality_expression
	Preceding states: {293}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {293}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {293}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {293}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {293}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {293}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {293}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {293}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {293}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {293}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {293}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {293}
[61] assignment_expression --> . conditional_expression
	Preceding states: {293}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {293}
[74] expression --> . assignment_expression
	Preceding states: {293}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {293}
[175] statement --> . labeled_statement
	Preceding states: {293}
[176] statement --> . compound_statement
	Preceding states: {293}
[177] statement --> . expression_statement
	Preceding states: {293}
[178] statement --> . selection_statement
	Preceding states: {293}
[179] statement --> . iteration_statement
	Preceding states: {293}
[180] statement --> . jump_statement
	Preceding states: {293}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {293}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {293}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {293}
[184] compound_statement --> . '{' '}'
	Preceding states: {293}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {293}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {293}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {293}
[192] expression_statement --> . ';'
	Preceding states: {293}
[193] expression_statement --> . expression ';'
	Preceding states: {293}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {293}
[194] selection_statement --> 'IF' '(' expression ')' . statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {293}
[195] selection_statement --> 'IF' '(' expression ')' . statement 'ELSE' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {293}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {293}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {293}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {293}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {293}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {293}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {293}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {293}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {293}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {293}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With selection_statement, go to state 248
With 'CONTINUE', go to state 247
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 294
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 294
=============================
[194] selection_statement --> 'IF' '(' expression ')' statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[195] selection_statement --> 'IF' '(' expression ')' statement . 'ELSE' statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With 'ELSE', go to state 295
=============================
STATE NUMBER: 295
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {295}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {295}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {295}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {295}
[7] postfix_expression --> . primary_expression
	Preceding states: {295}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {295}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {295}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {295}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {295}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {295}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {295}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {295}
[17] unary_expression --> . postfix_expression
	Preceding states: {295}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {295}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {295}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {295}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {295}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {295}
[23] unary_operator --> . '&'
	Preceding states: {295}
[24] unary_operator --> . '*'
	Preceding states: {295}
[25] unary_operator --> . '+'
	Preceding states: {295}
[26] unary_operator --> . '-'
	Preceding states: {295}
[27] unary_operator --> . '~'
	Preceding states: {295}
[28] unary_operator --> . '!'
	Preceding states: {295}
[29] cast_expression --> . unary_expression
	Preceding states: {295}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {295}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {295}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {295}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {295}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {295}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {295}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {295}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {295}
[38] shift_expression --> . additive_expression
	Preceding states: {295}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {295}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {295}
[41] relational_expression --> . shift_expression
	Preceding states: {295}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {295}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {295}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {295}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {295}
[46] equality_expression --> . relational_expression
	Preceding states: {295}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {295}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {295}
[49] and_expression --> . equality_expression
	Preceding states: {295}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {295}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {295}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {295}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {295}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {295}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {295}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {295}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {295}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {295}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {295}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {295}
[61] assignment_expression --> . conditional_expression
	Preceding states: {295}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {295}
[74] expression --> . assignment_expression
	Preceding states: {295}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {295}
[175] statement --> . labeled_statement
	Preceding states: {295}
[176] statement --> . compound_statement
	Preceding states: {295}
[177] statement --> . expression_statement
	Preceding states: {295}
[178] statement --> . selection_statement
	Preceding states: {295}
[179] statement --> . iteration_statement
	Preceding states: {295}
[180] statement --> . jump_statement
	Preceding states: {295}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {295}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {295}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {295}
[184] compound_statement --> . '{' '}'
	Preceding states: {295}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {295}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {295}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {295}
[192] expression_statement --> . ';'
	Preceding states: {295}
[193] expression_statement --> . expression ';'
	Preceding states: {295}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {295}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {295}
[195] selection_statement --> 'IF' '(' expression ')' statement 'ELSE' . statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {295}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {295}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {295}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {295}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {295}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {295}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {295}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {295}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {295}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {295}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With selection_statement, go to state 248
With 'CONTINUE', go to state 247
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 296
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 296
=============================
[195] selection_statement --> 'IF' '(' expression ')' statement 'ELSE' statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 297
=============================
[201] jump_statement --> 'GOTO' 'IDENTIFIER' . ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ';', go to state 298
=============================
STATE NUMBER: 298
=============================
[201] jump_statement --> 'GOTO' 'IDENTIFIER' ';' .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 299
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {299}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {299}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {299}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {299}
[7] postfix_expression --> . primary_expression
	Preceding states: {299}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {299}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {299}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {299}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {299}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {299}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {299}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {299}
[17] unary_expression --> . postfix_expression
	Preceding states: {299}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {299}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {299}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {299}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {299}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {299}
[23] unary_operator --> . '&'
	Preceding states: {299}
[24] unary_operator --> . '*'
	Preceding states: {299}
[25] unary_operator --> . '+'
	Preceding states: {299}
[26] unary_operator --> . '-'
	Preceding states: {299}
[27] unary_operator --> . '~'
	Preceding states: {299}
[28] unary_operator --> . '!'
	Preceding states: {299}
[29] cast_expression --> . unary_expression
	Preceding states: {299}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {299}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {299}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {299}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {299}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {299}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {299}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {299}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {299}
[38] shift_expression --> . additive_expression
	Preceding states: {299}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {299}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {299}
[41] relational_expression --> . shift_expression
	Preceding states: {299}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {299}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {299}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {299}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {299}
[46] equality_expression --> . relational_expression
	Preceding states: {299}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {299}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {299}
[49] and_expression --> . equality_expression
	Preceding states: {299}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {299}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {299}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {299}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {299}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {299}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {299}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {299}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {299}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {299}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {299}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {299}
[61] assignment_expression --> . conditional_expression
	Preceding states: {299}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {299}
[74] expression --> . assignment_expression
	Preceding states: {299}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {299}
[175] statement --> . labeled_statement
	Preceding states: {299}
[176] statement --> . compound_statement
	Preceding states: {299}
[177] statement --> . expression_statement
	Preceding states: {299}
[178] statement --> . selection_statement
	Preceding states: {299}
[179] statement --> . iteration_statement
	Preceding states: {299}
[180] statement --> . jump_statement
	Preceding states: {299}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {299}
[181] labeled_statement --> 'IDENTIFIER' ':' . statement
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {299}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {299}
[184] compound_statement --> . '{' '}'
	Preceding states: {299}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {299}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {299}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {299}
[192] expression_statement --> . ';'
	Preceding states: {299}
[193] expression_statement --> . expression ';'
	Preceding states: {299}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {299}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {299}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {299}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {299}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {299}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {299}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {299}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {299}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {299}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {299}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {299}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {299}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With selection_statement, go to state 248
With 'CONTINUE', go to state 247
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 300
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 300
=============================
[181] labeled_statement --> 'IDENTIFIER' ':' statement .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 301
=============================
[202] jump_statement --> 'CONTINUE' ';' .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 302
=============================
[185] compound_statement --> '{' statement_list '}' .
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 303
=============================
[191] statement_list --> statement_list statement .
	Preceding states: {236, 239}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 304
=============================
[204] jump_statement --> 'RETURN' ';' .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 305
=============================
[75] expression --> expression . ',' assignment_expression
	Preceding states: {242}
[205] jump_statement --> 'RETURN' expression . ';'
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
-----------------------------
With ';', go to state 306
With ',', go to state 133
=============================
STATE NUMBER: 306
=============================
[205] jump_statement --> 'RETURN' expression ';' .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 307
=============================
[203] jump_statement --> 'BREAK' ';' .
	Preceding states: {236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 308
=============================
[186] compound_statement --> '{' declaration_list '}' .
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 309
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {309}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {309}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {309}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {309}
[7] postfix_expression --> . primary_expression
	Preceding states: {309}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {309}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {309}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {309}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {309}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {309}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {309}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {309}
[17] unary_expression --> . postfix_expression
	Preceding states: {309}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {309}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {309}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {309}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {309}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {309}
[23] unary_operator --> . '&'
	Preceding states: {309}
[24] unary_operator --> . '*'
	Preceding states: {309}
[25] unary_operator --> . '+'
	Preceding states: {309}
[26] unary_operator --> . '-'
	Preceding states: {309}
[27] unary_operator --> . '~'
	Preceding states: {309}
[28] unary_operator --> . '!'
	Preceding states: {309}
[29] cast_expression --> . unary_expression
	Preceding states: {309}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {309}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {309}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {309}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {309}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {309}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {309}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {309}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {309}
[38] shift_expression --> . additive_expression
	Preceding states: {309}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {309}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {309}
[41] relational_expression --> . shift_expression
	Preceding states: {309}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {309}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {309}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {309}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {309}
[46] equality_expression --> . relational_expression
	Preceding states: {309}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {309}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {309}
[49] and_expression --> . equality_expression
	Preceding states: {309}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {309}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {309}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {309}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {309}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {309}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {309}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {309}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {309}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {309}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {309}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {309}
[61] assignment_expression --> . conditional_expression
	Preceding states: {309}
[62] assignment_expression --> . unary_expression assignment_operator assignment_expression
	Preceding states: {309}
[74] expression --> . assignment_expression
	Preceding states: {309}
[75] expression --> . expression ',' assignment_expression
	Preceding states: {309}
[175] statement --> . labeled_statement
	Preceding states: {309}
[176] statement --> . compound_statement
	Preceding states: {309}
[177] statement --> . expression_statement
	Preceding states: {309}
[178] statement --> . selection_statement
	Preceding states: {309}
[179] statement --> . iteration_statement
	Preceding states: {309}
[180] statement --> . jump_statement
	Preceding states: {309}
[181] labeled_statement --> . 'IDENTIFIER' ':' statement
	Preceding states: {309}
[182] labeled_statement --> . 'CASE' constant_expression ':' statement
	Preceding states: {309}
[183] labeled_statement --> . 'DEFAULT' ':' statement
	Preceding states: {309}
[184] compound_statement --> . '{' '}'
	Preceding states: {309}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {309}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {309}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {309}
[187] compound_statement --> '{' declaration_list statement_list . '}'
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
[191] statement_list --> statement_list . statement
	Preceding states: {239}
	Follow set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
[192] expression_statement --> . ';'
	Preceding states: {309}
[193] expression_statement --> . expression ';'
	Preceding states: {309}
[194] selection_statement --> . 'IF' '(' expression ')' statement
	Preceding states: {309}
[195] selection_statement --> . 'IF' '(' expression ')' statement 'ELSE' statement
	Preceding states: {309}
[196] selection_statement --> . 'SWITCH' '(' expression ')' statement
	Preceding states: {309}
[197] iteration_statement --> . 'WHILE' '(' expression ')' statement
	Preceding states: {309}
[198] iteration_statement --> . 'DO' statement 'WHILE' '(' expression ')' ';'
	Preceding states: {309}
[199] iteration_statement --> . 'FOR' '(' expression_statement expression_statement ')' statement
	Preceding states: {309}
[200] iteration_statement --> . 'FOR' '(' expression_statement expression_statement expression ')' statement
	Preceding states: {309}
[201] jump_statement --> . 'GOTO' 'IDENTIFIER' ';'
	Preceding states: {309}
[202] jump_statement --> . 'CONTINUE' ';'
	Preceding states: {309}
[203] jump_statement --> . 'BREAK' ';'
	Preceding states: {309}
[204] jump_statement --> . 'RETURN' ';'
	Preceding states: {309}
[205] jump_statement --> . 'RETURN' expression ';'
	Preceding states: {309}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With equality_expression, go to state 75
With 'BREAK', go to state 240
With iteration_statement, go to state 241
With '!', go to state 78
With '+', go to state 83
With 'RETURN', go to state 242
With '}', go to state 311
With jump_statement, go to state 244
With shift_expression, go to state 85
With ';', go to state 246
With '&', go to state 87
With 'CONTINUE', go to state 247
With selection_statement, go to state 248
With exclusive_or_expression, go to state 90
With 'IDENTIFIER', go to state 249
With primary_expression, go to state 91
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With '{', go to state 236
With expression_statement, go to state 251
With 'GOTO', go to state 250
With 'IF', go to state 252
With unary_expression, go to state 109
With 'INC_OP', go to state 72
With '~', go to state 74
With assignment_expression, go to state 130
With '-', go to state 76
With statement, go to state 303
With 'CASE', go to state 254
With 'WHILE', go to state 255
With conditional_expression, go to state 111
With 'DEC_OP', go to state 80
With unary_operator, go to state 79
With 'SWITCH', go to state 256
With logical_or_expression, go to state 82
With 'SIZEOF', go to state 84
With 'CONSTANT', go to state 88
With expression, go to state 257
With inclusive_or_expression, go to state 89
With labeled_statement, go to state 258
With 'DO', go to state 259
With 'DEFAULT', go to state 260
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With compound_statement, go to state 261
With 'FOR', go to state 262
With 'STRING_LITERAL', go to state 99
With postfix_expression, go to state 98
With '*', go to state 100
=============================
STATE NUMBER: 310
=============================
[189] declaration_list --> declaration_list declaration .
	Preceding states: {9, 216, 236}
	Lookahead set: {'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 311
=============================
[187] compound_statement --> '{' declaration_list statement_list '}' .
	Preceding states: {9, 216, 234, 236, 239, 245, 259, 267, 269, 271, 282, 286, 289, 293, 295, 299, 309, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'ELSE', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 312
=============================
[210] function_definition --> declaration_specifiers declarator declaration_list compound_statement .
	Preceding states: {0, 15, 32, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
=============================
STATE NUMBER: 313
=============================
[94] type_specifier --> . 'VOID'
	Preceding states: {313}
[95] type_specifier --> . 'CHAR'
	Preceding states: {313}
[96] type_specifier --> . 'SHORT'
	Preceding states: {313}
[97] type_specifier --> . 'INT'
	Preceding states: {313}
[98] type_specifier --> . 'LONG'
	Preceding states: {313}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {313}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {313}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {313}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {313}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {313}
[104] type_specifier --> . enum_specifier
	Preceding states: {313}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {313}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {313}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {313}
[107] struct_or_union_specifier --> struct_or_union '{' . struct_declaration_list '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Follow set: {'}'}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {313}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {313}
[110] struct_or_union --> . 'UNION'
	Preceding states: {313}
[111] struct_declaration_list --> . struct_declaration
	Preceding states: {313}
[112] struct_declaration_list --> . struct_declaration_list struct_declaration
	Preceding states: {313}
[113] struct_declaration --> . specifier_qualifier_list struct_declarator_list ';'
	Preceding states: {313}
[114] specifier_qualifier_list --> . type_specifier specifier_qualifier_list
	Preceding states: {313}
[115] specifier_qualifier_list --> . type_specifier
	Preceding states: {313}
[116] specifier_qualifier_list --> . type_qualifier specifier_qualifier_list
	Preceding states: {313}
[117] specifier_qualifier_list --> . type_qualifier
	Preceding states: {313}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {313}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {313}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {313}
[130] type_qualifier --> . 'CONST'
	Preceding states: {313}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {313}
-----------------------------
With 'ENUM', go to state 20
With type_qualifier, go to state 172
With 'INT', go to state 22
With struct_or_union, go to state 21
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With specifier_qualifier_list, go to state 316
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With 'CHAR', go to state 10
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With struct_declaration, go to state 317
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With type_specifier, go to state 173
With 'UNION', go to state 36
With struct_declaration_list, go to state 331
With 'LONG', go to state 38
With 'CONST', go to state 19
=============================
STATE NUMBER: 314
=============================
[106] struct_or_union_specifier --> struct_or_union 'IDENTIFIER' . '{' struct_declaration_list '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
[108] struct_or_union_specifier --> struct_or_union 'IDENTIFIER' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
With '{', go to state 315
=============================
STATE NUMBER: 315
=============================
[94] type_specifier --> . 'VOID'
	Preceding states: {315}
[95] type_specifier --> . 'CHAR'
	Preceding states: {315}
[96] type_specifier --> . 'SHORT'
	Preceding states: {315}
[97] type_specifier --> . 'INT'
	Preceding states: {315}
[98] type_specifier --> . 'LONG'
	Preceding states: {315}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {315}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {315}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {315}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {315}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {315}
[104] type_specifier --> . enum_specifier
	Preceding states: {315}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {315}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {315}
[106] struct_or_union_specifier --> struct_or_union 'IDENTIFIER' '{' . struct_declaration_list '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Follow set: {'}'}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {315}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {315}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {315}
[110] struct_or_union --> . 'UNION'
	Preceding states: {315}
[111] struct_declaration_list --> . struct_declaration
	Preceding states: {315}
[112] struct_declaration_list --> . struct_declaration_list struct_declaration
	Preceding states: {315}
[113] struct_declaration --> . specifier_qualifier_list struct_declarator_list ';'
	Preceding states: {315}
[114] specifier_qualifier_list --> . type_specifier specifier_qualifier_list
	Preceding states: {315}
[115] specifier_qualifier_list --> . type_specifier
	Preceding states: {315}
[116] specifier_qualifier_list --> . type_qualifier specifier_qualifier_list
	Preceding states: {315}
[117] specifier_qualifier_list --> . type_qualifier
	Preceding states: {315}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {315}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {315}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {315}
[130] type_qualifier --> . 'CONST'
	Preceding states: {315}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {315}
-----------------------------
With 'ENUM', go to state 20
With type_qualifier, go to state 172
With 'INT', go to state 22
With struct_or_union, go to state 21
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With specifier_qualifier_list, go to state 316
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With 'CHAR', go to state 10
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With struct_declaration, go to state 317
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With type_specifier, go to state 173
With 'UNION', go to state 36
With struct_declaration_list, go to state 318
With 'LONG', go to state 38
With 'CONST', go to state 19
=============================
STATE NUMBER: 316
=============================
[113] struct_declaration --> specifier_qualifier_list . struct_declarator_list ';'
	Preceding states: {313, 315, 318, 331}
	Follow set: {';'}
[118] struct_declarator_list --> . struct_declarator
	Preceding states: {316}
[119] struct_declarator_list --> . struct_declarator_list ',' struct_declarator
	Preceding states: {316}
[120] struct_declarator --> . declarator
	Preceding states: {316}
[121] struct_declarator --> . ':' constant_expression
	Preceding states: {316}
[122] struct_declarator --> . declarator ':' constant_expression
	Preceding states: {316}
[132] declarator --> . pointer direct_declarator
	Preceding states: {316}
[133] declarator --> . direct_declarator
	Preceding states: {316}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {316}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {316}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {316}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {316}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {316}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {316}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {316}
[141] pointer --> . '*'
	Preceding states: {316}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {316}
[143] pointer --> . '*' pointer
	Preceding states: {316}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {316}
-----------------------------
With declarator, go to state 321
With direct_declarator, go to state 31
With '(', go to state 1
With struct_declarator, go to state 322
With struct_declarator_list, go to state 323
With 'IDENTIFIER', go to state 25
With ':', go to state 324
With '*', go to state 39
With pointer, go to state 27
=============================
STATE NUMBER: 317
=============================
[111] struct_declaration_list --> struct_declaration .
	Preceding states: {313, 315}
	Lookahead set: {'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '}'}
-----------------------------
=============================
STATE NUMBER: 318
=============================
[94] type_specifier --> . 'VOID'
	Preceding states: {318}
[95] type_specifier --> . 'CHAR'
	Preceding states: {318}
[96] type_specifier --> . 'SHORT'
	Preceding states: {318}
[97] type_specifier --> . 'INT'
	Preceding states: {318}
[98] type_specifier --> . 'LONG'
	Preceding states: {318}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {318}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {318}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {318}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {318}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {318}
[104] type_specifier --> . enum_specifier
	Preceding states: {318}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {318}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {318}
[106] struct_or_union_specifier --> struct_or_union 'IDENTIFIER' '{' struct_declaration_list . '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {318}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {318}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {318}
[110] struct_or_union --> . 'UNION'
	Preceding states: {318}
[112] struct_declaration_list --> struct_declaration_list . struct_declaration
	Preceding states: {315}
	Follow set: {'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '}'}
[113] struct_declaration --> . specifier_qualifier_list struct_declarator_list ';'
	Preceding states: {318}
[114] specifier_qualifier_list --> . type_specifier specifier_qualifier_list
	Preceding states: {318}
[115] specifier_qualifier_list --> . type_specifier
	Preceding states: {318}
[116] specifier_qualifier_list --> . type_qualifier specifier_qualifier_list
	Preceding states: {318}
[117] specifier_qualifier_list --> . type_qualifier
	Preceding states: {318}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {318}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {318}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {318}
[130] type_qualifier --> . 'CONST'
	Preceding states: {318}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {318}
-----------------------------
With 'ENUM', go to state 20
With type_qualifier, go to state 172
With 'INT', go to state 22
With struct_or_union, go to state 21
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With specifier_qualifier_list, go to state 316
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With 'CHAR', go to state 10
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With struct_declaration, go to state 319
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With '}', go to state 320
With type_specifier, go to state 173
With 'UNION', go to state 36
With 'LONG', go to state 38
With 'CONST', go to state 19
=============================
STATE NUMBER: 319
=============================
[112] struct_declaration_list --> struct_declaration_list struct_declaration .
	Preceding states: {313, 315}
	Lookahead set: {'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '}'}
-----------------------------
=============================
STATE NUMBER: 320
=============================
[106] struct_or_union_specifier --> struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 321
=============================
[120] struct_declarator --> declarator .
	Preceding states: {316, 327}
	Lookahead set: {',', ';'}
[122] struct_declarator --> declarator . ':' constant_expression
	Preceding states: {316, 327}
-----------------------------
With ':', go to state 329
=============================
STATE NUMBER: 322
=============================
[118] struct_declarator_list --> struct_declarator .
	Preceding states: {316}
	Lookahead set: {',', ';'}
-----------------------------
=============================
STATE NUMBER: 323
=============================
[113] struct_declaration --> specifier_qualifier_list struct_declarator_list . ';'
	Preceding states: {313, 315, 318, 331}
[119] struct_declarator_list --> struct_declarator_list . ',' struct_declarator
	Preceding states: {316}
-----------------------------
With ';', go to state 326
With ',', go to state 327
=============================
STATE NUMBER: 324
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {324}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {324}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {324}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {324}
[7] postfix_expression --> . primary_expression
	Preceding states: {324}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {324}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {324}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {324}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {324}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {324}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {324}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {324}
[17] unary_expression --> . postfix_expression
	Preceding states: {324}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {324}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {324}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {324}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {324}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {324}
[23] unary_operator --> . '&'
	Preceding states: {324}
[24] unary_operator --> . '*'
	Preceding states: {324}
[25] unary_operator --> . '+'
	Preceding states: {324}
[26] unary_operator --> . '-'
	Preceding states: {324}
[27] unary_operator --> . '~'
	Preceding states: {324}
[28] unary_operator --> . '!'
	Preceding states: {324}
[29] cast_expression --> . unary_expression
	Preceding states: {324}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {324}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {324}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {324}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {324}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {324}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {324}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {324}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {324}
[38] shift_expression --> . additive_expression
	Preceding states: {324}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {324}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {324}
[41] relational_expression --> . shift_expression
	Preceding states: {324}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {324}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {324}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {324}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {324}
[46] equality_expression --> . relational_expression
	Preceding states: {324}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {324}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {324}
[49] and_expression --> . equality_expression
	Preceding states: {324}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {324}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {324}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {324}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {324}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {324}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {324}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {324}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {324}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {324}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {324}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {324}
[76] constant_expression --> . conditional_expression
	Preceding states: {324}
[121] struct_declarator --> ':' . constant_expression
	Preceding states: {316, 327}
	Follow set: {',', ';'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With conditional_expression, go to state 77
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With constant_expression, go to state 325
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 325
=============================
[121] struct_declarator --> ':' constant_expression .
	Preceding states: {316, 327}
	Lookahead set: {',', ';'}
-----------------------------
=============================
STATE NUMBER: 326
=============================
[113] struct_declaration --> specifier_qualifier_list struct_declarator_list ';' .
	Preceding states: {313, 315, 318, 331}
	Lookahead set: {'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '}'}
-----------------------------
=============================
STATE NUMBER: 327
=============================
[119] struct_declarator_list --> struct_declarator_list ',' . struct_declarator
	Preceding states: {316}
	Follow set: {',', ';'}
[120] struct_declarator --> . declarator
	Preceding states: {327}
[121] struct_declarator --> . ':' constant_expression
	Preceding states: {327}
[122] struct_declarator --> . declarator ':' constant_expression
	Preceding states: {327}
[132] declarator --> . pointer direct_declarator
	Preceding states: {327}
[133] declarator --> . direct_declarator
	Preceding states: {327}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {327}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {327}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {327}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {327}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {327}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {327}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {327}
[141] pointer --> . '*'
	Preceding states: {327}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {327}
[143] pointer --> . '*' pointer
	Preceding states: {327}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {327}
-----------------------------
With declarator, go to state 321
With direct_declarator, go to state 31
With '(', go to state 1
With struct_declarator, go to state 328
With 'IDENTIFIER', go to state 25
With ':', go to state 324
With '*', go to state 39
With pointer, go to state 27
=============================
STATE NUMBER: 328
=============================
[119] struct_declarator_list --> struct_declarator_list ',' struct_declarator .
	Preceding states: {316}
	Lookahead set: {',', ';'}
-----------------------------
=============================
STATE NUMBER: 329
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {329}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {329}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {329}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {329}
[7] postfix_expression --> . primary_expression
	Preceding states: {329}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {329}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {329}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {329}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {329}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {329}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {329}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {329}
[17] unary_expression --> . postfix_expression
	Preceding states: {329}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {329}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {329}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {329}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {329}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {329}
[23] unary_operator --> . '&'
	Preceding states: {329}
[24] unary_operator --> . '*'
	Preceding states: {329}
[25] unary_operator --> . '+'
	Preceding states: {329}
[26] unary_operator --> . '-'
	Preceding states: {329}
[27] unary_operator --> . '~'
	Preceding states: {329}
[28] unary_operator --> . '!'
	Preceding states: {329}
[29] cast_expression --> . unary_expression
	Preceding states: {329}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {329}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {329}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {329}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {329}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {329}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {329}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {329}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {329}
[38] shift_expression --> . additive_expression
	Preceding states: {329}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {329}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {329}
[41] relational_expression --> . shift_expression
	Preceding states: {329}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {329}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {329}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {329}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {329}
[46] equality_expression --> . relational_expression
	Preceding states: {329}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {329}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {329}
[49] and_expression --> . equality_expression
	Preceding states: {329}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {329}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {329}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {329}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {329}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {329}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {329}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {329}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {329}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {329}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {329}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {329}
[76] constant_expression --> . conditional_expression
	Preceding states: {329}
[122] struct_declarator --> declarator ':' . constant_expression
	Preceding states: {316, 327}
	Follow set: {',', ';'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With conditional_expression, go to state 77
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With constant_expression, go to state 330
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 330
=============================
[122] struct_declarator --> declarator ':' constant_expression .
	Preceding states: {316, 327}
	Lookahead set: {',', ';'}
-----------------------------
=============================
STATE NUMBER: 331
=============================
[94] type_specifier --> . 'VOID'
	Preceding states: {331}
[95] type_specifier --> . 'CHAR'
	Preceding states: {331}
[96] type_specifier --> . 'SHORT'
	Preceding states: {331}
[97] type_specifier --> . 'INT'
	Preceding states: {331}
[98] type_specifier --> . 'LONG'
	Preceding states: {331}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {331}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {331}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {331}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {331}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {331}
[104] type_specifier --> . enum_specifier
	Preceding states: {331}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {331}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {331}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {331}
[107] struct_or_union_specifier --> struct_or_union '{' struct_declaration_list . '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {331}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {331}
[110] struct_or_union --> . 'UNION'
	Preceding states: {331}
[112] struct_declaration_list --> struct_declaration_list . struct_declaration
	Preceding states: {313}
	Follow set: {'TYPE_NAME', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '}'}
[113] struct_declaration --> . specifier_qualifier_list struct_declarator_list ';'
	Preceding states: {331}
[114] specifier_qualifier_list --> . type_specifier specifier_qualifier_list
	Preceding states: {331}
[115] specifier_qualifier_list --> . type_specifier
	Preceding states: {331}
[116] specifier_qualifier_list --> . type_qualifier specifier_qualifier_list
	Preceding states: {331}
[117] specifier_qualifier_list --> . type_qualifier
	Preceding states: {331}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {331}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {331}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {331}
[130] type_qualifier --> . 'CONST'
	Preceding states: {331}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {331}
-----------------------------
With 'ENUM', go to state 20
With type_qualifier, go to state 172
With 'INT', go to state 22
With struct_or_union, go to state 21
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With specifier_qualifier_list, go to state 316
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With 'CHAR', go to state 10
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With struct_declaration, go to state 319
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With '}', go to state 332
With type_specifier, go to state 173
With 'UNION', go to state 36
With 'LONG', go to state 38
With 'CONST', go to state 19
=============================
STATE NUMBER: 332
=============================
[107] struct_or_union_specifier --> struct_or_union '{' struct_declaration_list '}' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 333
=============================
[123] enum_specifier --> 'ENUM' '{' . enumerator_list '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Follow set: {'}'}
[126] enumerator_list --> . enumerator
	Preceding states: {333}
[127] enumerator_list --> . enumerator_list ',' enumerator
	Preceding states: {333}
[128] enumerator --> . 'IDENTIFIER'
	Preceding states: {333}
[129] enumerator --> . 'IDENTIFIER' '=' constant_expression
	Preceding states: {333}
-----------------------------
With enumerator, go to state 336
With 'IDENTIFIER', go to state 337
With enumerator_list, go to state 344
=============================
STATE NUMBER: 334
=============================
[124] enum_specifier --> 'ENUM' 'IDENTIFIER' . '{' enumerator_list '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
[125] enum_specifier --> 'ENUM' 'IDENTIFIER' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
With '{', go to state 335
=============================
STATE NUMBER: 335
=============================
[124] enum_specifier --> 'ENUM' 'IDENTIFIER' '{' . enumerator_list '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Follow set: {'}'}
[126] enumerator_list --> . enumerator
	Preceding states: {335}
[127] enumerator_list --> . enumerator_list ',' enumerator
	Preceding states: {335}
[128] enumerator --> . 'IDENTIFIER'
	Preceding states: {335}
[129] enumerator --> . 'IDENTIFIER' '=' constant_expression
	Preceding states: {335}
-----------------------------
With enumerator, go to state 336
With 'IDENTIFIER', go to state 337
With enumerator_list, go to state 338
=============================
STATE NUMBER: 336
=============================
[126] enumerator_list --> enumerator .
	Preceding states: {333, 335}
	Lookahead set: {',', '}'}
-----------------------------
=============================
STATE NUMBER: 337
=============================
[128] enumerator --> 'IDENTIFIER' .
	Preceding states: {333, 335, 340}
	Lookahead set: {',', '}'}
[129] enumerator --> 'IDENTIFIER' . '=' constant_expression
	Preceding states: {333, 335, 340}
-----------------------------
With '=', go to state 342
=============================
STATE NUMBER: 338
=============================
[124] enum_specifier --> 'ENUM' 'IDENTIFIER' '{' enumerator_list . '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
[127] enumerator_list --> enumerator_list . ',' enumerator
	Preceding states: {335}
-----------------------------
With '}', go to state 339
With ',', go to state 340
=============================
STATE NUMBER: 339
=============================
[124] enum_specifier --> 'ENUM' 'IDENTIFIER' '{' enumerator_list '}' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 340
=============================
[127] enumerator_list --> enumerator_list ',' . enumerator
	Preceding states: {333, 335}
	Follow set: {',', '}'}
[128] enumerator --> . 'IDENTIFIER'
	Preceding states: {340}
[129] enumerator --> . 'IDENTIFIER' '=' constant_expression
	Preceding states: {340}
-----------------------------
With enumerator, go to state 341
With 'IDENTIFIER', go to state 337
=============================
STATE NUMBER: 341
=============================
[127] enumerator_list --> enumerator_list ',' enumerator .
	Preceding states: {333, 335}
	Lookahead set: {',', '}'}
-----------------------------
=============================
STATE NUMBER: 342
=============================
[3] primary_expression --> . 'IDENTIFIER'
	Preceding states: {342}
[4] primary_expression --> . 'CONSTANT'
	Preceding states: {342}
[5] primary_expression --> . 'STRING_LITERAL'
	Preceding states: {342}
[6] primary_expression --> . '(' expression ')'
	Preceding states: {342}
[7] postfix_expression --> . primary_expression
	Preceding states: {342}
[8] postfix_expression --> . postfix_expression '[' expression ']'
	Preceding states: {342}
[9] postfix_expression --> . postfix_expression '(' ')'
	Preceding states: {342}
[10] postfix_expression --> . postfix_expression '(' argument_expression_list ')'
	Preceding states: {342}
[11] postfix_expression --> . postfix_expression '.' 'IDENTIFIER'
	Preceding states: {342}
[12] postfix_expression --> . postfix_expression 'PTR_OP' 'IDENTIFIER'
	Preceding states: {342}
[13] postfix_expression --> . postfix_expression 'INC_OP'
	Preceding states: {342}
[14] postfix_expression --> . postfix_expression 'DEC_OP'
	Preceding states: {342}
[17] unary_expression --> . postfix_expression
	Preceding states: {342}
[18] unary_expression --> . 'INC_OP' unary_expression
	Preceding states: {342}
[19] unary_expression --> . 'DEC_OP' unary_expression
	Preceding states: {342}
[20] unary_expression --> . unary_operator cast_expression
	Preceding states: {342}
[21] unary_expression --> . 'SIZEOF' unary_expression
	Preceding states: {342}
[22] unary_expression --> . 'SIZEOF' '(' type_name ')'
	Preceding states: {342}
[23] unary_operator --> . '&'
	Preceding states: {342}
[24] unary_operator --> . '*'
	Preceding states: {342}
[25] unary_operator --> . '+'
	Preceding states: {342}
[26] unary_operator --> . '-'
	Preceding states: {342}
[27] unary_operator --> . '~'
	Preceding states: {342}
[28] unary_operator --> . '!'
	Preceding states: {342}
[29] cast_expression --> . unary_expression
	Preceding states: {342}
[30] cast_expression --> . '(' type_name ')' cast_expression
	Preceding states: {342}
[31] multiplicative_expression --> . cast_expression
	Preceding states: {342}
[32] multiplicative_expression --> . multiplicative_expression '*' cast_expression
	Preceding states: {342}
[33] multiplicative_expression --> . multiplicative_expression '/' cast_expression
	Preceding states: {342}
[34] multiplicative_expression --> . multiplicative_expression '%' cast_expression
	Preceding states: {342}
[35] additive_expression --> . multiplicative_expression
	Preceding states: {342}
[36] additive_expression --> . additive_expression '+' multiplicative_expression
	Preceding states: {342}
[37] additive_expression --> . additive_expression '-' multiplicative_expression
	Preceding states: {342}
[38] shift_expression --> . additive_expression
	Preceding states: {342}
[39] shift_expression --> . shift_expression 'LEFT_OP' additive_expression
	Preceding states: {342}
[40] shift_expression --> . shift_expression 'RIGHT_OP' additive_expression
	Preceding states: {342}
[41] relational_expression --> . shift_expression
	Preceding states: {342}
[42] relational_expression --> . relational_expression '<' shift_expression
	Preceding states: {342}
[43] relational_expression --> . relational_expression '>' shift_expression
	Preceding states: {342}
[44] relational_expression --> . relational_expression 'LE_OP' shift_expression
	Preceding states: {342}
[45] relational_expression --> . relational_expression 'GE_OP' shift_expression
	Preceding states: {342}
[46] equality_expression --> . relational_expression
	Preceding states: {342}
[47] equality_expression --> . equality_expression 'EQ_OP' relational_expression
	Preceding states: {342}
[48] equality_expression --> . equality_expression 'NE_OP' relational_expression
	Preceding states: {342}
[49] and_expression --> . equality_expression
	Preceding states: {342}
[50] and_expression --> . and_expression '&' equality_expression
	Preceding states: {342}
[51] exclusive_or_expression --> . and_expression
	Preceding states: {342}
[52] exclusive_or_expression --> . exclusive_or_expression '^' and_expression
	Preceding states: {342}
[53] inclusive_or_expression --> . exclusive_or_expression
	Preceding states: {342}
[54] inclusive_or_expression --> . inclusive_or_expression '|' exclusive_or_expression
	Preceding states: {342}
[55] logical_and_expression --> . inclusive_or_expression
	Preceding states: {342}
[56] logical_and_expression --> . logical_and_expression 'AND_OP' inclusive_or_expression
	Preceding states: {342}
[57] logical_or_expression --> . logical_and_expression
	Preceding states: {342}
[58] logical_or_expression --> . logical_or_expression 'OR_OP' logical_and_expression
	Preceding states: {342}
[59] conditional_expression --> . logical_or_expression
	Preceding states: {342}
[60] conditional_expression --> . logical_or_expression '?' expression ':' conditional_expression
	Preceding states: {342}
[76] constant_expression --> . conditional_expression
	Preceding states: {342}
[129] enumerator --> 'IDENTIFIER' '=' . constant_expression
	Preceding states: {333, 335, 340}
	Follow set: {',', '}'}
-----------------------------
With '(', go to state 70
With relational_expression, go to state 71
With 'INC_OP', go to state 72
With unary_expression, go to state 73
With '~', go to state 74
With equality_expression, go to state 75
With '-', go to state 76
With conditional_expression, go to state 77
With '!', go to state 78
With unary_operator, go to state 79
With 'DEC_OP', go to state 80
With logical_or_expression, go to state 82
With '+', go to state 83
With 'SIZEOF', go to state 84
With shift_expression, go to state 85
With constant_expression, go to state 343
With '&', go to state 87
With 'CONSTANT', go to state 88
With inclusive_or_expression, go to state 89
With exclusive_or_expression, go to state 90
With primary_expression, go to state 91
With 'IDENTIFIER', go to state 92
With multiplicative_expression, go to state 93
With and_expression, go to state 94
With additive_expression, go to state 95
With logical_and_expression, go to state 96
With cast_expression, go to state 97
With postfix_expression, go to state 98
With 'STRING_LITERAL', go to state 99
With '*', go to state 100
=============================
STATE NUMBER: 343
=============================
[129] enumerator --> 'IDENTIFIER' '=' constant_expression .
	Preceding states: {333, 335, 340}
	Lookahead set: {',', '}'}
-----------------------------
=============================
STATE NUMBER: 344
=============================
[123] enum_specifier --> 'ENUM' '{' enumerator_list . '}'
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
[127] enumerator_list --> enumerator_list . ',' enumerator
	Preceding states: {333}
-----------------------------
With '}', go to state 345
With ',', go to state 340
=============================
STATE NUMBER: 345
=============================
[123] enum_specifier --> 'ENUM' '{' enumerator_list '}' .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 70, 170, 172, 173, 177, 210, 216, 234, 236, 239, 313, 315, 318, 331, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ':', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 346
=============================
[82] declaration_specifiers --> type_specifier declaration_specifiers .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
=============================
STATE NUMBER: 347
=============================
[2] $ROOTS$ --> '$translation_unit_switch$' translation_unit .
	Preceding states: {0}
	Lookahead set: {'$E_O_I$'}
[77] declaration --> . declaration_specifiers ';'
	Preceding states: {347}
[78] declaration --> . declaration_specifiers init_declarator_list ';'
	Preceding states: {347}
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {347}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {347}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {347}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {347}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {347}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {347}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {347}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {347}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {347}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {347}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {347}
[94] type_specifier --> . 'VOID'
	Preceding states: {347}
[95] type_specifier --> . 'CHAR'
	Preceding states: {347}
[96] type_specifier --> . 'SHORT'
	Preceding states: {347}
[97] type_specifier --> . 'INT'
	Preceding states: {347}
[98] type_specifier --> . 'LONG'
	Preceding states: {347}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {347}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {347}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {347}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {347}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {347}
[104] type_specifier --> . enum_specifier
	Preceding states: {347}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {347}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {347}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {347}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {347}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {347}
[110] struct_or_union --> . 'UNION'
	Preceding states: {347}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {347}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {347}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {347}
[130] type_qualifier --> . 'CONST'
	Preceding states: {347}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {347}
[132] declarator --> . pointer direct_declarator
	Preceding states: {347}
[133] declarator --> . direct_declarator
	Preceding states: {347}
[134] direct_declarator --> . 'IDENTIFIER'
	Preceding states: {347}
[135] direct_declarator --> . '(' declarator ')'
	Preceding states: {347}
[136] direct_declarator --> . direct_declarator '[' constant_expression ']'
	Preceding states: {347}
[137] direct_declarator --> . direct_declarator '[' ']'
	Preceding states: {347}
[138] direct_declarator --> . direct_declarator '(' parameter_type_list ')'
	Preceding states: {347}
[139] direct_declarator --> . direct_declarator '(' identifier_list ')'
	Preceding states: {347}
[140] direct_declarator --> . direct_declarator '(' ')'
	Preceding states: {347}
[141] pointer --> . '*'
	Preceding states: {347}
[142] pointer --> . '*' type_qualifier_list
	Preceding states: {347}
[143] pointer --> . '*' pointer
	Preceding states: {347}
[144] pointer --> . '*' type_qualifier_list pointer
	Preceding states: {347}
[207] translation_unit --> translation_unit . external_declaration
	Preceding states: {15}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
[208] external_declaration --> . function_definition
	Preceding states: {347}
[209] external_declaration --> . declaration
	Preceding states: {347}
[210] function_definition --> . declaration_specifiers declarator declaration_list compound_statement
	Preceding states: {347}
[211] function_definition --> . declaration_specifiers declarator compound_statement
	Preceding states: {347}
[212] function_definition --> . declarator declaration_list compound_statement
	Preceding states: {347}
[213] function_definition --> . declarator compound_statement
	Preceding states: {347}
-----------------------------
With '(', go to state 1
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With declarator, go to state 9
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With struct_or_union, go to state 21
With 'INT', go to state 22
With declaration_specifiers, go to state 23
With external_declaration, go to state 46
With 'IDENTIFIER', go to state 25
With 'UNSIGNED', go to state 26
With pointer, go to state 27
With 'VOID', go to state 28
With function_definition, go to state 29
With 'STRUCT', go to state 30
With direct_declarator, go to state 31
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With 'UNION', go to state 36
With declaration, go to state 37
With 'LONG', go to state 38
With '*', go to state 39
=============================
STATE NUMBER: 348
=============================
[77] declaration --> . declaration_specifiers ';'
	Preceding states: {348}
[78] declaration --> . declaration_specifiers init_declarator_list ';'
	Preceding states: {348}
[79] declaration_specifiers --> . storage_class_specifier
	Preceding states: {348}
[80] declaration_specifiers --> . storage_class_specifier declaration_specifiers
	Preceding states: {348}
[81] declaration_specifiers --> . type_specifier
	Preceding states: {348}
[82] declaration_specifiers --> . type_specifier declaration_specifiers
	Preceding states: {348}
[83] declaration_specifiers --> . type_qualifier
	Preceding states: {348}
[84] declaration_specifiers --> . type_qualifier declaration_specifiers
	Preceding states: {348}
[89] storage_class_specifier --> . 'TYPEDEF'
	Preceding states: {348}
[90] storage_class_specifier --> . 'EXTERN'
	Preceding states: {348}
[91] storage_class_specifier --> . 'STATIC'
	Preceding states: {348}
[92] storage_class_specifier --> . 'AUTO'
	Preceding states: {348}
[93] storage_class_specifier --> . 'REGISTER'
	Preceding states: {348}
[94] type_specifier --> . 'VOID'
	Preceding states: {348}
[95] type_specifier --> . 'CHAR'
	Preceding states: {348}
[96] type_specifier --> . 'SHORT'
	Preceding states: {348}
[97] type_specifier --> . 'INT'
	Preceding states: {348}
[98] type_specifier --> . 'LONG'
	Preceding states: {348}
[99] type_specifier --> . 'FLOAT'
	Preceding states: {348}
[100] type_specifier --> . 'DOUBLE'
	Preceding states: {348}
[101] type_specifier --> . 'SIGNED'
	Preceding states: {348}
[102] type_specifier --> . 'UNSIGNED'
	Preceding states: {348}
[103] type_specifier --> . struct_or_union_specifier
	Preceding states: {348}
[104] type_specifier --> . enum_specifier
	Preceding states: {348}
[105] type_specifier --> . 'TYPE_NAME'
	Preceding states: {348}
[106] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER' '{' struct_declaration_list '}'
	Preceding states: {348}
[107] struct_or_union_specifier --> . struct_or_union '{' struct_declaration_list '}'
	Preceding states: {348}
[108] struct_or_union_specifier --> . struct_or_union 'IDENTIFIER'
	Preceding states: {348}
[109] struct_or_union --> . 'STRUCT'
	Preceding states: {348}
[110] struct_or_union --> . 'UNION'
	Preceding states: {348}
[123] enum_specifier --> . 'ENUM' '{' enumerator_list '}'
	Preceding states: {348}
[124] enum_specifier --> . 'ENUM' 'IDENTIFIER' '{' enumerator_list '}'
	Preceding states: {348}
[125] enum_specifier --> . 'ENUM' 'IDENTIFIER'
	Preceding states: {348}
[130] type_qualifier --> . 'CONST'
	Preceding states: {348}
[131] type_qualifier --> . 'VOLATILE'
	Preceding states: {348}
[184] compound_statement --> . '{' '}'
	Preceding states: {348}
[185] compound_statement --> . '{' statement_list '}'
	Preceding states: {348}
[186] compound_statement --> . '{' declaration_list '}'
	Preceding states: {348}
[187] compound_statement --> . '{' declaration_list statement_list '}'
	Preceding states: {348}
[189] declaration_list --> declaration_list . declaration
	Preceding states: {9}
	Follow set: {'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '{'}
[212] function_definition --> declarator declaration_list . compound_statement
	Preceding states: {0, 15, 32, 347}
	Follow set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
With 'EXTERN', go to state 2
With type_qualifier, go to state 3
With 'FLOAT', go to state 4
With 'VOLATILE', go to state 5
With 'STATIC', go to state 6
With 'SHORT', go to state 7
With enum_specifier, go to state 8
With 'CHAR', go to state 10
With 'AUTO', go to state 11
With struct_or_union_specifier, go to state 12
With 'DOUBLE', go to state 13
With 'REGISTER', go to state 14
With 'TYPEDEF', go to state 17
With type_specifier, go to state 18
With 'CONST', go to state 19
With 'ENUM', go to state 20
With struct_or_union, go to state 21
With 'INT', go to state 22
With declaration_specifiers, go to state 235
With 'UNSIGNED', go to state 26
With 'VOID', go to state 28
With 'STRUCT', go to state 30
With storage_class_specifier, go to state 33
With 'SIGNED', go to state 34
With 'TYPE_NAME', go to state 35
With '{', go to state 236
With 'UNION', go to state 36
With 'LONG', go to state 38
With declaration, go to state 310
With compound_statement, go to state 350
=============================
STATE NUMBER: 349
=============================
[213] function_definition --> declarator compound_statement .
	Preceding states: {0, 15, 32, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
=============================
STATE NUMBER: 350
=============================
[212] function_definition --> declarator declaration_list compound_statement .
	Preceding states: {0, 15, 32, 347}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', '(', '*'}
-----------------------------
=============================
STATE NUMBER: 351
=============================
[84] declaration_specifiers --> type_qualifier declaration_specifiers .
	Preceding states: {0, 3, 9, 15, 18, 32, 33, 48, 59, 66, 177, 210, 216, 234, 236, 239, 347, 348}
	Lookahead set: {'$E_O_I$', 'IDENTIFIER', 'CONSTANT', 'STRING_LITERAL', 'SIZEOF', 'INC_OP', 'DEC_OP', 'TYPE_NAME', 'TYPEDEF', 'EXTERN', 'STATIC', 'AUTO', 'REGISTER', 'CHAR', 'SHORT', 'INT', 'LONG', 'SIGNED', 'UNSIGNED', 'FLOAT', 'DOUBLE', 'CONST', 'VOLATILE', 'VOID', 'STRUCT', 'UNION', 'ENUM', 'CASE', 'DEFAULT', 'IF', 'SWITCH', 'WHILE', 'DO', 'FOR', 'GOTO', 'CONTINUE', 'BREAK', 'RETURN', '(', ')', '[', ',', '&', '*', '+', '-', '~', '!', ';', '{', '}'}
-----------------------------
*** Grammar analysis completed in 1938 ms.
*** Building parsing tables ... 
*** WARNING: Rule 141 may compose the non-associative symbol: '*'
*** WARNING: Rule 142 may compose the non-associative symbol: '*'
	S/R conflict:	choosing S159	over R35,	in state 93, 	on input '*'
	S/R conflict:	choosing S141	over R51,	in state 94, 	on input '&'
	S/R conflict:	choosing S154	over R38,	in state 95, 	on input '+'
	S/R conflict:	choosing S155	over R38,	in state 95, 	on input '-'
	S/R conflict:	choosing S102	over R17,	in state 98, 	on input '('
	S/R conflict:	choosing S141	over R52,	in state 140, 	on input '&'
	S/R conflict:	choosing S159	over R37,	in state 156, 	on input '*'
	S/R conflict:	choosing S159	over R36,	in state 163, 	on input '*'
	S/R conflict:	choosing S315	over R108,	in state 314, 	on input '{'
	S/R conflict:	choosing S335	over R125,	in state 334, 	on input '{'
***	... in 90 ms
*** Conflicts: 113 shift/reduce (10 still unresolved)
*** Compressing parsing tables ... 
***	55 rows eliminated in action table
***	250 rows eliminated in goto table
*** Table compression completed in 20 ms


ACTION TABLE:

	[1]	[2]	[3]	[4]	[5]	[6]	[7]	[8]	[9]	[10]	[11]	[12]	[13]	[14]	[15]	[16]	[17]	[18]	[19]	[20]	[21]	[22]	[23]	[24]	[25]	[26]	[27]	[28]	[29]	[30]	[31]	[32]	[33]	[34]	[35]	[36]	[37]	[38]	[39]	[40]	[41]	[42]	[43]	[44]	[45]	[46]	[47]	[48]	[49]	[50]	[51]	[52]	[53]	[54]	[55]	[56]	[57]	[58]	[59]	[60]	[61]	[62]	[63]	[64]	[65]	[66]	[67]	[68]	[69]	[70]	[71]	[72]	[73]	[74]	[75]	[76]	[77]	[78]	[79]	[80]	[81]	[82]	[83]	[84]	[85]
	________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
[0]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S15	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[1]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[2]	 R90	 - 	 R90	 R90	 R90	 R90	 - 	 R90	 R90	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 - 	 R90	 R90	 R90	 - 	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 - 	 R90	 R90	 R90	 - 	 - 	 R90	 R90	 R90	 R90	 R90	 R90	 R90	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R90	 R90	 R90
[3]	 R83	 - 	 R83	 R83	 R83	 R83	 - 	 R83	 R83	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 R83	 R83	 R83	 - 	 R83	 R83	 R83	 R83	 R83	 R83	 R83	 R83	 - 	 R83	 R83	 R83	 - 	 - 	 R83	 R83	 R83	 R83	 R83	 R83	 R83	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R83	 R83	 R83
[4]	 R99	 - 	 R99	 R99	 R99	 R99	 - 	 R99	 R99	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 - 	 R99	 R99	 R99	 - 	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 - 	 R99	 R99	 R99	 - 	 - 	 R99	 R99	 R99	 R99	 R99	 R99	 R99	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R99	 - 	 R99	 R99	 R99
[5]	 R131	 - 	 R131	 R131	 R131	 R131	 - 	 R131	 R131	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 - 	 R131	 R131	 R131	 - 	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 - 	 R131	 R131	 R131	 - 	 - 	 R131	 R131	 R131	 R131	 R131	 R131	 R131	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R131	 - 	 R131	 R131	 R131
[6]	 R91	 - 	 R91	 R91	 R91	 R91	 - 	 R91	 R91	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 - 	 R91	 R91	 R91	 - 	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 - 	 R91	 R91	 R91	 - 	 - 	 R91	 R91	 R91	 R91	 R91	 R91	 R91	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R91	 R91	 R91
[7]	 R96	 - 	 R96	 R96	 R96	 R96	 - 	 R96	 R96	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 - 	 R96	 R96	 R96	 - 	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 - 	 R96	 R96	 R96	 - 	 - 	 R96	 R96	 R96	 R96	 R96	 R96	 R96	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R96	 - 	 R96	 R96	 R96
[8]	 R104	 - 	 R104	 R104	 R104	 R104	 - 	 R104	 R104	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 - 	 R104	 R104	 R104	 - 	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 - 	 R104	 R104	 R104	 - 	 - 	 R104	 R104	 R104	 R104	 R104	 R104	 R104	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R104	 - 	 R104	 R104	 R104
[9]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S236	 - 
[10]	 R95	 - 	 R95	 R95	 R95	 R95	 - 	 R95	 R95	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 - 	 R95	 R95	 R95	 - 	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 - 	 R95	 R95	 R95	 - 	 - 	 R95	 R95	 R95	 R95	 R95	 R95	 R95	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R95	 - 	 R95	 R95	 R95
[11]	 R92	 - 	 R92	 R92	 R92	 R92	 - 	 R92	 R92	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 - 	 R92	 R92	 R92	 - 	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 - 	 R92	 R92	 R92	 - 	 - 	 R92	 R92	 R92	 R92	 R92	 R92	 R92	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R92	 R92	 R92
[12]	 R103	 - 	 R103	 R103	 R103	 R103	 - 	 R103	 R103	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 - 	 R103	 R103	 R103	 - 	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 - 	 R103	 R103	 R103	 - 	 - 	 R103	 R103	 R103	 R103	 R103	 R103	 R103	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R103	 - 	 R103	 R103	 R103
[13]	 R100	 - 	 R100	 R100	 R100	 R100	 - 	 R100	 R100	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 - 	 R100	 R100	 R100	 - 	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 - 	 R100	 R100	 R100	 - 	 - 	 R100	 R100	 R100	 R100	 R100	 R100	 R100	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R100	 - 	 R100	 R100	 R100
[14]	 R93	 - 	 R93	 R93	 R93	 R93	 - 	 R93	 R93	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 - 	 R93	 R93	 R93	 - 	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 - 	 R93	 R93	 R93	 - 	 - 	 R93	 R93	 R93	 R93	 R93	 R93	 R93	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R93	 R93	 R93
[15]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[16]	 A	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[17]	 R89	 - 	 R89	 R89	 R89	 R89	 - 	 R89	 R89	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 - 	 R89	 R89	 R89	 - 	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 - 	 R89	 R89	 R89	 - 	 - 	 R89	 R89	 R89	 R89	 R89	 R89	 R89	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R89	 R89	 R89
[18]	 R81	 - 	 R81	 R81	 R81	 R81	 - 	 R81	 R81	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 R81	 R81	 R81	 - 	 R81	 R81	 R81	 R81	 R81	 R81	 R81	 R81	 - 	 R81	 R81	 R81	 - 	 - 	 R81	 R81	 R81	 R81	 R81	 R81	 R81	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R81	 R81	 R81
[19]	 R130	 - 	 R130	 R130	 R130	 R130	 - 	 R130	 R130	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 - 	 R130	 R130	 R130	 - 	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 - 	 R130	 R130	 R130	 - 	 - 	 R130	 R130	 R130	 R130	 R130	 R130	 R130	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R130	 - 	 R130	 R130	 R130
[20]	 - 	 - 	 S334	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S333	 - 
[21]	 - 	 - 	 S314	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S313	 - 
[22]	 R97	 - 	 R97	 R97	 R97	 R97	 - 	 R97	 R97	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 - 	 R97	 R97	 R97	 - 	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 - 	 R97	 R97	 R97	 - 	 - 	 R97	 R97	 R97	 R97	 R97	 R97	 R97	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R97	 - 	 R97	 R97	 R97
[23]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S217	 - 	 - 
[24]	 R206	 - 	 R206	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 R206	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R206	 - 	 - 	 - 	 - 	 - 	 - 	 R206	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[25]	 R134	 - 	 R134	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 R134	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R134	 R134	 R134	 - 	 - 	 R134	 - 	 R134	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R134	 R134	 R134	 R134	 - 
[26]	 R102	 - 	 R102	 R102	 R102	 R102	 - 	 R102	 R102	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 - 	 R102	 R102	 R102	 - 	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 - 	 R102	 R102	 R102	 - 	 - 	 R102	 R102	 R102	 R102	 R102	 R102	 R102	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R102	 - 	 R102	 R102	 R102
[27]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[28]	 R94	 - 	 R94	 R94	 R94	 R94	 - 	 R94	 R94	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 - 	 R94	 R94	 R94	 - 	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 - 	 R94	 R94	 R94	 - 	 - 	 R94	 R94	 R94	 R94	 R94	 R94	 R94	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R94	 - 	 R94	 R94	 R94
[29]	 R208	 - 	 R208	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 R208	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R208	 - 	 - 	 - 	 - 	 - 	 - 	 R208	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[30]	 - 	 - 	 R109	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R109	 - 
[31]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 R133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S48	 R133	 S47	 - 	 - 	 R133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R133	 R133	 R133	 R133	 - 
[32]	 R1	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[33]	 R79	 - 	 R79	 R79	 R79	 R79	 - 	 R79	 R79	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 R79	 R79	 R79	 - 	 R79	 R79	 R79	 R79	 R79	 R79	 R79	 R79	 - 	 R79	 R79	 R79	 - 	 - 	 R79	 R79	 R79	 R79	 R79	 R79	 R79	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R79	 R79	 R79
[34]	 R101	 - 	 R101	 R101	 R101	 R101	 - 	 R101	 R101	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 - 	 R101	 R101	 R101	 - 	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 - 	 R101	 R101	 R101	 - 	 - 	 R101	 R101	 R101	 R101	 R101	 R101	 R101	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R101	 - 	 R101	 R101	 R101
[35]	 R105	 - 	 R105	 R105	 R105	 R105	 - 	 R105	 R105	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 - 	 R105	 R105	 R105	 - 	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 - 	 R105	 R105	 R105	 - 	 - 	 R105	 R105	 R105	 R105	 R105	 R105	 R105	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R105	 - 	 R105	 R105	 R105
[36]	 - 	 - 	 R110	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R110	 - 
[37]	 R209	 - 	 R209	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 R209	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R209	 - 	 - 	 - 	 - 	 - 	 - 	 R209	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[38]	 R98	 - 	 R98	 R98	 R98	 R98	 - 	 R98	 R98	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 - 	 R98	 R98	 R98	 - 	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 - 	 R98	 R98	 R98	 - 	 - 	 R98	 R98	 R98	 R98	 R98	 R98	 R98	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R98	 - 	 R98	 R98	 R98
[39]	 R141	 - 	 R141	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R141	 R141	 R141	 R141	 R141	 R141	 R141	 R141	 R141	 R141	 R141	 R141	 R141	 R141	 S19	 S5	 R141	 R141	 R141	 R141	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R141	 R141	 R141	 - 	 - 	 R141	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R141	 R141	 - 
[40]	 R145	 - 	 R145	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 R145	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R145	 R145	 R145	 - 	 - 	 R145	 - 	 R145	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R145	 R145	 - 
[41]	 R142	 - 	 R142	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R142	 R142	 R142	 R142	 R142	 R142	 R142	 R142	 R142	 R142	 R142	 R142	 R142	 R142	 S19	 S5	 R142	 R142	 R142	 R142	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R142	 R142	 R142	 - 	 - 	 R142	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R142	 R142	 - 
[42]	 R143	 - 	 R143	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 R143	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R143	 R143	 R143	 - 	 - 	 R143	 - 	 R143	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R143	 R143	 - 
[43]	 R146	 - 	 R146	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 R146	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R146	 R146	 R146	 - 	 - 	 R146	 - 	 R146	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R146	 R146	 - 
[44]	 R144	 - 	 R144	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 R144	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R144	 R144	 R144	 - 	 - 	 R144	 - 	 R144	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R144	 R144	 - 
[45]	 R80	 - 	 R80	 R80	 R80	 R80	 - 	 R80	 R80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 - 	 R80	 R80	 R80	 - 	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 - 	 R80	 R80	 R80	 - 	 - 	 R80	 R80	 R80	 R80	 R80	 R80	 R80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R80	 R80	 R80
[46]	 R207	 - 	 R207	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 R207	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R207	 - 	 - 	 - 	 - 	 - 	 - 	 R207	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[47]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 S213	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[48]	 - 	 - 	 S54	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S53	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[49]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R147	 - 	 - 	 - 	 S210	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[50]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S208	 - 	 - 	 - 	 S207	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[51]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S59	 R153	 S57	 - 	 - 	 R153	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[52]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R149	 - 	 - 	 - 	 R149	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[53]	 R140	 - 	 R140	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 R140	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R140	 R140	 R140	 - 	 - 	 R140	 - 	 R140	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R140	 R140	 R140	 R140	 - 
[54]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R154	 - 	 - 	 - 	 R154	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[55]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S56	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[56]	 R138	 - 	 R138	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 R138	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R138	 R138	 R138	 - 	 - 	 R138	 - 	 R138	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R138	 R138	 R138	 R138	 - 
[57]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 S204	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[58]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R151	 - 	 - 	 - 	 R151	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[59]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S59	 S181	 S57	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[60]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R152	 - 	 - 	 - 	 R152	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[61]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S66	 R159	 S65	 - 	 - 	 R159	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[62]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S59	 R158	 S57	 - 	 - 	 R158	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[63]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 R132	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S48	 R132	 S47	 - 	 - 	 R132	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R132	 R132	 R132	 R132	 - 
[64]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S66	 R160	 S65	 - 	 - 	 R160	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[65]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 S81	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[66]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S67	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[67]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R168	 R168	 R168	 - 	 - 	 R168	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[68]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S69	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[69]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R169	 R169	 R169	 - 	 - 	 R169	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[70]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 - 	 - 	 - 	 - 	 - 	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[71]	 - 	 - 	 R46	 R46	 R46	 R46	 - 	 R46	 R46	 - 	 - 	 S149	 S146	 R46	 R46	 R46	 R46	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R46	 R46	 R46	 R46	 R46	 R46	 R46	 R46	 R46	 R46	 R46	 R46	 - 	 R46	 R46	 - 	 R46	 - 	 R46	 R46	 R46	 R46	 R46	 R46	 R46	 - 	 - 	 S148	 S147	 R46	 R46	 R46	 R46	 - 	 R46	 R46	 R46
[72]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S195	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[73]	 - 	 - 	 R29	 R29	 R29	 R29	 - 	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 - 	 R29	 R29	 - 	 R29	 - 	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29
[74]	 - 	 - 	 R27	 R27	 R27	 R27	 - 	 R27	 R27	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R27	 - 	 - 	 - 	 - 	 - 	 R27	 R27	 R27	 R27	 R27	 R27	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[75]	 - 	 - 	 R49	 R49	 R49	 R49	 - 	 R49	 R49	 - 	 - 	 - 	 - 	 S144	 S143	 R49	 R49	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R49	 R49	 R49	 R49	 R49	 R49	 R49	 R49	 R49	 R49	 R49	 R49	 - 	 R49	 R49	 - 	 R49	 - 	 R49	 R49	 R49	 R49	 R49	 R49	 R49	 - 	 - 	 - 	 - 	 R49	 R49	 R49	 R49	 - 	 R49	 R49	 R49
[76]	 - 	 - 	 R26	 R26	 R26	 R26	 - 	 R26	 R26	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R26	 - 	 - 	 - 	 - 	 - 	 R26	 R26	 R26	 R26	 R26	 R26	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[77]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R76	 - 	 R76	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R76	 - 	 R76	 - 	 R76
[78]	 - 	 - 	 R28	 R28	 R28	 R28	 - 	 R28	 R28	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R28	 - 	 - 	 - 	 - 	 - 	 R28	 R28	 R28	 R28	 R28	 R28	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[79]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[80]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S195	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[81]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R164	 R164	 R164	 - 	 - 	 R164	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[82]	 - 	 - 	 R59	 R59	 R59	 R59	 - 	 R59	 R59	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S189	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R59	 R59	 R59	 R59	 R59	 R59	 R59	 R59	 R59	 R59	 R59	 R59	 - 	 R59	 R59	 - 	 R59	 - 	 R59	 R59	 R59	 R59	 R59	 R59	 R59	 - 	 - 	 - 	 - 	 - 	 - 	 S190	 R59	 - 	 R59	 R59	 R59
[83]	 - 	 - 	 R25	 R25	 R25	 R25	 - 	 R25	 R25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R25	 - 	 - 	 - 	 - 	 - 	 R25	 R25	 R25	 R25	 R25	 R25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[84]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S170	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[85]	 - 	 - 	 R41	 R41	 R41	 R41	 - 	 R41	 R41	 S152	 S151	 R41	 R41	 R41	 R41	 R41	 R41	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R41	 R41	 R41	 R41	 R41	 R41	 R41	 R41	 R41	 R41	 R41	 R41	 - 	 R41	 R41	 - 	 R41	 - 	 R41	 R41	 R41	 R41	 R41	 R41	 R41	 - 	 - 	 R41	 R41	 R41	 R41	 R41	 R41	 - 	 R41	 R41	 R41
[86]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S169	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[87]	 - 	 - 	 R23	 R23	 R23	 R23	 - 	 R23	 R23	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R23	 - 	 - 	 - 	 - 	 - 	 R23	 R23	 R23	 R23	 R23	 R23	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[88]	 - 	 - 	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 - 	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4	 R4
[89]	 - 	 - 	 R55	 R55	 R55	 R55	 - 	 R55	 R55	 - 	 - 	 - 	 - 	 - 	 - 	 R55	 R55	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R55	 R55	 R55	 R55	 R55	 R55	 R55	 R55	 R55	 R55	 R55	 R55	 - 	 R55	 R55	 - 	 R55	 - 	 R55	 R55	 R55	 R55	 R55	 R55	 R55	 - 	 - 	 - 	 - 	 - 	 S137	 R55	 R55	 - 	 R55	 R55	 R55
[90]	 - 	 - 	 R53	 R53	 R53	 R53	 - 	 R53	 R53	 - 	 - 	 - 	 - 	 - 	 - 	 R53	 R53	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R53	 R53	 R53	 R53	 R53	 R53	 R53	 R53	 R53	 R53	 R53	 R53	 - 	 R53	 R53	 - 	 R53	 - 	 R53	 R53	 R53	 R53	 R53	 R53	 R53	 - 	 - 	 - 	 - 	 S139	 R53	 R53	 R53	 - 	 R53	 R53	 R53
[91]	 - 	 - 	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 - 	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7	 R7
[92]	 - 	 - 	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 - 	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3
[93]	 - 	 - 	 R35	 R35	 R35	 R35	 - 	 R35	 R35	 R35	 R35	 R35	 R35	 R35	 R35	 R35	 R35	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R35	 R35	 R35	 R35	 R35	 R35	 R35	 R35	 R35	 R35	 R35	 R35	 - 	 R35	 R35	 - 	 R35	 - 	 R35	 R35	 S159	 R35	 R35	 R35	 R35	 S158	 S157	 R35	 R35	 R35	 R35	 R35	 R35	 - 	 R35	 R35	 R35
[94]	 - 	 - 	 R51	 R51	 R51	 R51	 - 	 R51	 R51	 - 	 - 	 - 	 - 	 - 	 - 	 R51	 R51	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R51	 R51	 R51	 R51	 R51	 R51	 R51	 R51	 R51	 R51	 R51	 R51	 - 	 R51	 R51	 - 	 R51	 - 	 R51	 S141	 R51	 R51	 R51	 R51	 R51	 - 	 - 	 - 	 - 	 R51	 R51	 R51	 R51	 - 	 R51	 R51	 R51
[95]	 - 	 - 	 R38	 R38	 R38	 R38	 - 	 R38	 R38	 R38	 R38	 R38	 R38	 R38	 R38	 R38	 R38	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R38	 R38	 R38	 R38	 R38	 R38	 R38	 R38	 R38	 R38	 R38	 R38	 - 	 R38	 R38	 - 	 R38	 - 	 R38	 R38	 R38	 S154	 S155	 R38	 R38	 - 	 - 	 R38	 R38	 R38	 R38	 R38	 R38	 - 	 R38	 R38	 R38
[96]	 - 	 - 	 R57	 R57	 R57	 R57	 - 	 R57	 R57	 - 	 - 	 - 	 - 	 - 	 - 	 S135	 R57	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R57	 R57	 R57	 R57	 R57	 R57	 R57	 R57	 R57	 R57	 R57	 R57	 - 	 R57	 R57	 - 	 R57	 - 	 R57	 R57	 R57	 R57	 R57	 R57	 R57	 - 	 - 	 - 	 - 	 - 	 - 	 R57	 R57	 - 	 R57	 R57	 R57
[97]	 - 	 - 	 R31	 R31	 R31	 R31	 - 	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 - 	 R31	 R31	 - 	 R31	 - 	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 R31	 - 	 R31	 R31	 R31
[98]	 - 	 - 	 R17	 R17	 R17	 R17	 S106	 S104	 S103	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 - 	 S102	 R17	 S101	 R17	 S105	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17	 R17
[99]	 - 	 - 	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 - 	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5	 R5
[100]	 - 	 - 	 R24	 R24	 R24	 R24	 - 	 R24	 R24	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R24	 - 	 - 	 - 	 - 	 - 	 R24	 R24	 R24	 R24	 R24	 R24	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[101]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[102]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 S113	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[103]	 - 	 - 	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 - 	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14	 R14
[104]	 - 	 - 	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 - 	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13	 R13
[105]	 - 	 - 	 S108	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[106]	 - 	 - 	 S107	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[107]	 - 	 - 	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 - 	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12	 R12
[108]	 - 	 - 	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 - 	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11	 R11
[109]	 - 	 - 	 R29	 R29	 R29	 R29	 - 	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 S123	 S117	 S124	 S122	 S128	 S120	 S126	 S125	 S119	 S127	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 - 	 R29	 R29	 - 	 R29	 - 	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 R29	 S118	 R29	 R29	 R29
[110]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R15	 - 	 - 	 - 	 R15	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[111]	 - 	 - 	 R61	 R61	 R61	 R61	 - 	 R61	 R61	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R61	 R61	 R61	 R61	 R61	 R61	 R61	 R61	 R61	 R61	 R61	 R61	 - 	 R61	 R61	 - 	 R61	 - 	 R61	 R61	 R61	 R61	 R61	 R61	 R61	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R61	 - 	 R61	 R61	 R61
[112]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S115	 - 	 - 	 - 	 S114	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[113]	 - 	 - 	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 - 	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9	 R9
[114]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[115]	 - 	 - 	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 - 	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10	 R10
[116]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R16	 - 	 - 	 - 	 R16	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[117]	 - 	 - 	 R65	 R65	 R65	 R65	 - 	 R65	 R65	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R65	 - 	 - 	 - 	 - 	 - 	 R65	 R65	 R65	 R65	 R65	 R65	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[118]	 - 	 - 	 R63	 R63	 R63	 R63	 - 	 R63	 R63	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R63	 - 	 - 	 - 	 - 	 - 	 R63	 R63	 R63	 R63	 R63	 R63	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[119]	 - 	 - 	 R72	 R72	 R72	 R72	 - 	 R72	 R72	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R72	 - 	 - 	 - 	 - 	 - 	 R72	 R72	 R72	 R72	 R72	 R72	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[120]	 - 	 - 	 R69	 R69	 R69	 R69	 - 	 R69	 R69	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R69	 - 	 - 	 - 	 - 	 - 	 R69	 R69	 R69	 R69	 R69	 R69	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[121]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[122]	 - 	 - 	 R67	 R67	 R67	 R67	 - 	 R67	 R67	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R67	 - 	 - 	 - 	 - 	 - 	 R67	 R67	 R67	 R67	 R67	 R67	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[123]	 - 	 - 	 R64	 R64	 R64	 R64	 - 	 R64	 R64	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R64	 - 	 - 	 - 	 - 	 - 	 R64	 R64	 R64	 R64	 R64	 R64	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[124]	 - 	 - 	 R66	 R66	 R66	 R66	 - 	 R66	 R66	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R66	 - 	 - 	 - 	 - 	 - 	 R66	 R66	 R66	 R66	 R66	 R66	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[125]	 - 	 - 	 R71	 R71	 R71	 R71	 - 	 R71	 R71	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R71	 - 	 - 	 - 	 - 	 - 	 R71	 R71	 R71	 R71	 R71	 R71	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[126]	 - 	 - 	 R70	 R70	 R70	 R70	 - 	 R70	 R70	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R70	 - 	 - 	 - 	 - 	 - 	 R70	 R70	 R70	 R70	 R70	 R70	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[127]	 - 	 - 	 R73	 R73	 R73	 R73	 - 	 R73	 R73	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R73	 - 	 - 	 - 	 - 	 - 	 R73	 R73	 R73	 R73	 R73	 R73	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[128]	 - 	 - 	 R68	 R68	 R68	 R68	 - 	 R68	 R68	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R68	 - 	 - 	 - 	 - 	 - 	 R68	 R68	 R68	 R68	 R68	 R68	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[129]	 - 	 - 	 R62	 R62	 R62	 R62	 - 	 R62	 R62	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R62	 R62	 R62	 R62	 R62	 R62	 R62	 R62	 R62	 R62	 R62	 R62	 - 	 R62	 R62	 - 	 R62	 - 	 R62	 R62	 R62	 R62	 R62	 R62	 R62	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R62	 - 	 R62	 R62	 R62
[130]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R74	 - 	 R74	 - 	 R74	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R74	 - 	 R74	 - 	 - 
[131]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S132	 - 	 S133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[132]	 - 	 - 	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 - 	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8	 R8
[133]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[134]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R75	 - 	 R75	 - 	 R75	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R75	 - 	 R75	 - 	 - 
[135]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[136]	 - 	 - 	 R56	 R56	 R56	 R56	 - 	 R56	 R56	 - 	 - 	 - 	 - 	 - 	 - 	 R56	 R56	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R56	 R56	 R56	 R56	 R56	 R56	 R56	 R56	 R56	 R56	 R56	 R56	 - 	 R56	 R56	 - 	 R56	 - 	 R56	 R56	 R56	 R56	 R56	 R56	 R56	 - 	 - 	 - 	 - 	 - 	 S137	 R56	 R56	 - 	 R56	 R56	 R56
[137]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[138]	 - 	 - 	 R54	 R54	 R54	 R54	 - 	 R54	 R54	 - 	 - 	 - 	 - 	 - 	 - 	 R54	 R54	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R54	 R54	 R54	 R54	 R54	 R54	 R54	 R54	 R54	 R54	 R54	 R54	 - 	 R54	 R54	 - 	 R54	 - 	 R54	 R54	 R54	 R54	 R54	 R54	 R54	 - 	 - 	 - 	 - 	 S139	 R54	 R54	 R54	 - 	 R54	 R54	 R54
[139]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[140]	 - 	 - 	 R52	 R52	 R52	 R52	 - 	 R52	 R52	 - 	 - 	 - 	 - 	 - 	 - 	 R52	 R52	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R52	 R52	 R52	 R52	 R52	 R52	 R52	 R52	 R52	 R52	 R52	 R52	 - 	 R52	 R52	 - 	 R52	 - 	 R52	 S141	 R52	 R52	 R52	 R52	 R52	 - 	 - 	 - 	 - 	 R52	 R52	 R52	 R52	 - 	 R52	 R52	 R52
[141]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[142]	 - 	 - 	 R50	 R50	 R50	 R50	 - 	 R50	 R50	 - 	 - 	 - 	 - 	 S144	 S143	 R50	 R50	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R50	 R50	 R50	 R50	 R50	 R50	 R50	 R50	 R50	 R50	 R50	 R50	 - 	 R50	 R50	 - 	 R50	 - 	 R50	 R50	 R50	 R50	 R50	 R50	 R50	 - 	 - 	 - 	 - 	 R50	 R50	 R50	 R50	 - 	 R50	 R50	 R50
[143]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[144]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[145]	 - 	 - 	 R47	 R47	 R47	 R47	 - 	 R47	 R47	 - 	 - 	 S149	 S146	 R47	 R47	 R47	 R47	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R47	 R47	 R47	 R47	 R47	 R47	 R47	 R47	 R47	 R47	 R47	 R47	 - 	 R47	 R47	 - 	 R47	 - 	 R47	 R47	 R47	 R47	 R47	 R47	 R47	 - 	 - 	 S148	 S147	 R47	 R47	 R47	 R47	 - 	 R47	 R47	 R47
[146]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[147]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[148]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[149]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[150]	 - 	 - 	 R44	 R44	 R44	 R44	 - 	 R44	 R44	 S152	 S151	 R44	 R44	 R44	 R44	 R44	 R44	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R44	 R44	 R44	 R44	 R44	 R44	 R44	 R44	 R44	 R44	 R44	 R44	 - 	 R44	 R44	 - 	 R44	 - 	 R44	 R44	 R44	 R44	 R44	 R44	 R44	 - 	 - 	 R44	 R44	 R44	 R44	 R44	 R44	 - 	 R44	 R44	 R44
[151]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[152]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[153]	 - 	 - 	 R39	 R39	 R39	 R39	 - 	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 - 	 R39	 R39	 - 	 R39	 - 	 R39	 R39	 R39	 R39	 R39	 R39	 R39	 - 	 - 	 R39	 R39	 R39	 R39	 R39	 R39	 - 	 R39	 R39	 R39
[154]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[155]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[156]	 - 	 - 	 R37	 R37	 R37	 R37	 - 	 R37	 R37	 R37	 R37	 R37	 R37	 R37	 R37	 R37	 R37	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R37	 R37	 R37	 R37	 R37	 R37	 R37	 R37	 R37	 R37	 R37	 R37	 - 	 R37	 R37	 - 	 R37	 - 	 R37	 R37	 S159	 R37	 R37	 R37	 R37	 S158	 S157	 R37	 R37	 R37	 R37	 R37	 R37	 - 	 R37	 R37	 R37
[157]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[158]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[159]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[160]	 - 	 - 	 R32	 R32	 R32	 R32	 - 	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 - 	 R32	 R32	 - 	 R32	 - 	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 R32	 - 	 R32	 R32	 R32
[161]	 - 	 - 	 R33	 R33	 R33	 R33	 - 	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 - 	 R33	 R33	 - 	 R33	 - 	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 R33	 - 	 R33	 R33	 R33
[162]	 - 	 - 	 R34	 R34	 R34	 R34	 - 	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 - 	 R34	 R34	 - 	 R34	 - 	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 R34	 - 	 R34	 R34	 R34
[163]	 - 	 - 	 R36	 R36	 R36	 R36	 - 	 R36	 R36	 R36	 R36	 R36	 R36	 R36	 R36	 R36	 R36	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R36	 R36	 R36	 R36	 R36	 R36	 R36	 R36	 R36	 R36	 R36	 R36	 - 	 R36	 R36	 - 	 R36	 - 	 R36	 R36	 S159	 R36	 R36	 R36	 R36	 S158	 S157	 R36	 R36	 R36	 R36	 R36	 R36	 - 	 R36	 R36	 R36
[164]	 - 	 - 	 R40	 R40	 R40	 R40	 - 	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 - 	 R40	 R40	 - 	 R40	 - 	 R40	 R40	 R40	 R40	 R40	 R40	 R40	 - 	 - 	 R40	 R40	 R40	 R40	 R40	 R40	 - 	 R40	 R40	 R40
[165]	 - 	 - 	 R42	 R42	 R42	 R42	 - 	 R42	 R42	 S152	 S151	 R42	 R42	 R42	 R42	 R42	 R42	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R42	 R42	 R42	 R42	 R42	 R42	 R42	 R42	 R42	 R42	 R42	 R42	 - 	 R42	 R42	 - 	 R42	 - 	 R42	 R42	 R42	 R42	 R42	 R42	 R42	 - 	 - 	 R42	 R42	 R42	 R42	 R42	 R42	 - 	 R42	 R42	 R42
[166]	 - 	 - 	 R43	 R43	 R43	 R43	 - 	 R43	 R43	 S152	 S151	 R43	 R43	 R43	 R43	 R43	 R43	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R43	 R43	 R43	 R43	 R43	 R43	 R43	 R43	 R43	 R43	 R43	 R43	 - 	 R43	 R43	 - 	 R43	 - 	 R43	 R43	 R43	 R43	 R43	 R43	 R43	 - 	 - 	 R43	 R43	 R43	 R43	 R43	 R43	 - 	 R43	 R43	 R43
[167]	 - 	 - 	 R45	 R45	 R45	 R45	 - 	 R45	 R45	 S152	 S151	 R45	 R45	 R45	 R45	 R45	 R45	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R45	 R45	 R45	 R45	 R45	 R45	 R45	 R45	 R45	 R45	 R45	 R45	 - 	 R45	 R45	 - 	 R45	 - 	 R45	 R45	 R45	 R45	 R45	 R45	 R45	 - 	 - 	 R45	 R45	 R45	 R45	 R45	 R45	 - 	 R45	 R45	 R45
[168]	 - 	 - 	 R48	 R48	 R48	 R48	 - 	 R48	 R48	 - 	 - 	 S149	 S146	 R48	 R48	 R48	 R48	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R48	 R48	 R48	 R48	 R48	 R48	 R48	 R48	 R48	 R48	 R48	 R48	 - 	 R48	 R48	 - 	 R48	 - 	 R48	 R48	 R48	 R48	 R48	 R48	 R48	 - 	 - 	 S148	 S147	 R48	 R48	 R48	 R48	 - 	 R48	 R48	 R48
[169]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R165	 R165	 R165	 - 	 - 	 R165	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[170]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 - 	 - 	 - 	 - 	 - 	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[171]	 - 	 - 	 R21	 R21	 R21	 R21	 - 	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 - 	 R21	 R21	 - 	 R21	 - 	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21	 R21
[172]	 - 	 - 	 R117	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 - 	 - 	 - 	 - 	 - 	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R117	 R117	 R117	 - 	 - 	 - 	 - 	 R117	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R117	 - 	 - 	 - 	 R117
[173]	 - 	 - 	 R115	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 - 	 - 	 - 	 - 	 - 	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R115	 R115	 R115	 - 	 - 	 - 	 - 	 R115	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R115	 - 	 - 	 - 	 R115
[174]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S186	 - 	 - 	 - 	 S133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[175]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S185	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[176]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S177	 R156	 S57	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[177]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S177	 S181	 S57	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[178]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R157	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[179]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S177	 R158	 S57	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[180]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S184	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[181]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R166	 R166	 R166	 - 	 - 	 R166	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[182]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S183	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[183]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R167	 R167	 R167	 - 	 - 	 R167	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[184]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R161	 R161	 R161	 - 	 - 	 R161	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[185]	 - 	 - 	 R22	 R22	 R22	 R22	 - 	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 - 	 R22	 R22	 - 	 R22	 - 	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22	 R22
[186]	 - 	 - 	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 - 	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6	 R6
[187]	 - 	 - 	 R114	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R114	 - 	 - 	 - 	 - 	 - 	 R114	 R114	 R114	 R114	 R114	 R114	 R114	 R114	 R114	 R114	 R114	 R114	 R114	 R114	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R114	 R114	 R114	 - 	 - 	 - 	 - 	 R114	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R114	 - 	 - 	 - 	 R114
[188]	 - 	 - 	 R116	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R116	 - 	 - 	 - 	 - 	 - 	 R116	 R116	 R116	 R116	 R116	 R116	 R116	 R116	 R116	 R116	 R116	 R116	 R116	 R116	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R116	 R116	 R116	 - 	 - 	 - 	 - 	 R116	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R116	 - 	 - 	 - 	 R116
[189]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[190]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[191]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S192	 - 	 - 	 - 	 - 
[192]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[193]	 - 	 - 	 R60	 R60	 R60	 R60	 - 	 R60	 R60	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R60	 R60	 R60	 R60	 R60	 R60	 R60	 R60	 R60	 R60	 R60	 R60	 - 	 R60	 R60	 - 	 R60	 - 	 R60	 R60	 R60	 R60	 R60	 R60	 R60	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R60	 - 	 R60	 R60	 R60
[194]	 - 	 - 	 R58	 R58	 R58	 R58	 - 	 R58	 R58	 - 	 - 	 - 	 - 	 - 	 - 	 S135	 R58	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R58	 R58	 R58	 R58	 R58	 R58	 R58	 R58	 R58	 R58	 R58	 R58	 - 	 R58	 R58	 - 	 R58	 - 	 R58	 R58	 R58	 R58	 R58	 R58	 R58	 - 	 - 	 - 	 - 	 - 	 - 	 R58	 R58	 - 	 R58	 R58	 R58
[195]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[196]	 - 	 - 	 R19	 R19	 R19	 R19	 - 	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 - 	 R19	 R19	 - 	 R19	 - 	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19	 R19
[197]	 - 	 - 	 R20	 R20	 R20	 R20	 - 	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 - 	 R20	 R20	 - 	 R20	 - 	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20	 R20
[198]	 - 	 - 	 R18	 R18	 R18	 R18	 - 	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 - 	 R18	 R18	 - 	 R18	 - 	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18	 R18
[199]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S200	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[200]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[201]	 - 	 - 	 R30	 R30	 R30	 R30	 - 	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 - 	 R30	 R30	 - 	 R30	 - 	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30	 R30
[202]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S203	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[203]	 R135	 - 	 R135	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 R135	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R135	 R135	 R135	 - 	 - 	 R135	 - 	 R135	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R135	 R135	 R135	 R135	 - 
[204]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R162	 R162	 R162	 - 	 - 	 R162	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[205]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S206	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[206]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R163	 R163	 R163	 - 	 - 	 R163	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[207]	 - 	 - 	 S209	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[208]	 R139	 - 	 R139	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 R139	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R139	 R139	 R139	 - 	 - 	 R139	 - 	 R139	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R139	 R139	 R139	 R139	 - 
[209]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R155	 - 	 - 	 - 	 R155	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[210]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 S211	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[211]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R148	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[212]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R150	 - 	 - 	 - 	 R150	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[213]	 R137	 - 	 R137	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 R137	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R137	 R137	 R137	 - 	 - 	 R137	 - 	 R137	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R137	 R137	 R137	 R137	 - 
[214]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S215	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[215]	 R136	 - 	 R136	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 R136	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R136	 R136	 R136	 - 	 - 	 R136	 - 	 R136	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R136	 R136	 R136	 R136	 - 
[216]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R87	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S224	 R87	 S236	 - 
[217]	 R77	 - 	 R77	 R77	 R77	 R77	 - 	 R77	 R77	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 - 	 R77	 R77	 R77	 - 	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 R77	 - 	 R77	 - 	 - 	 - 	 - 	 - 	 R77	 R77	 R77	 R77	 R77	 R77	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R77	 R77	 R77
[218]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R85	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R85	 - 	 - 
[219]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S221	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S220	 - 	 - 
[220]	 R78	 - 	 R78	 R78	 R78	 R78	 - 	 R78	 R78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 - 	 R78	 R78	 R78	 - 	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 R78	 - 	 R78	 - 	 - 	 - 	 - 	 - 	 R78	 R78	 R78	 R78	 R78	 R78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R78	 R78	 R78
[221]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[222]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R87	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S224	 R87	 - 	 - 
[223]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R86	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R86	 - 	 - 
[224]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S227	 - 
[225]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R170	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R170	 - 	 R170
[226]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R88	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R88	 - 	 - 
[227]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S227	 - 
[228]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S231	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S230
[229]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R173	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R173
[230]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R171	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R171	 - 	 R171
[231]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S227	 S233
[232]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R174	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R174
[233]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R172	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R172	 - 	 R172
[234]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S236	 - 
[235]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S217	 - 	 - 
[236]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 S243
[237]	 - 	 - 	 R188	 R188	 R188	 R188	 - 	 R188	 R188	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 - 	 R188	 R188	 R188	 - 	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 R188	 - 	 R188	 - 	 - 	 - 	 - 	 - 	 R188	 R188	 R188	 R188	 R188	 R188	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R188	 R188	 R188
[238]	 R211	 - 	 R211	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 R211	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R211	 - 	 - 	 - 	 - 	 - 	 - 	 R211	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[239]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 S308
[240]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S307	 - 	 - 
[241]	 - 	 - 	 R179	 R179	 R179	 R179	 - 	 R179	 R179	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R179	 R179	 R179	 R179	 R179	 R179	 R179	 R179	 R179	 R179	 R179	 R179	 - 	 R179	 - 	 - 	 - 	 - 	 - 	 R179	 R179	 R179	 R179	 R179	 R179	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R179	 R179	 R179
[242]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S304	 - 	 - 
[243]	 R184	 - 	 R184	 R184	 R184	 R184	 - 	 R184	 R184	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 - 	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 R184	 - 	 R184	 - 	 - 	 - 	 - 	 - 	 R184	 R184	 R184	 R184	 R184	 R184	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R184	 R184	 R184
[244]	 - 	 - 	 R180	 R180	 R180	 R180	 - 	 R180	 R180	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R180	 R180	 R180	 R180	 R180	 R180	 R180	 R180	 R180	 R180	 R180	 R180	 - 	 R180	 - 	 - 	 - 	 - 	 - 	 R180	 R180	 R180	 R180	 R180	 R180	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R180	 R180	 R180
[245]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 S302
[246]	 - 	 - 	 R192	 R192	 R192	 R192	 - 	 R192	 R192	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R192	 R192	 R192	 R192	 R192	 R192	 R192	 R192	 R192	 R192	 R192	 R192	 - 	 R192	 R192	 - 	 - 	 - 	 - 	 R192	 R192	 R192	 R192	 R192	 R192	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R192	 R192	 R192
[247]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S301	 - 	 - 
[248]	 - 	 - 	 R178	 R178	 R178	 R178	 - 	 R178	 R178	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R178	 R178	 R178	 R178	 R178	 R178	 R178	 R178	 R178	 R178	 R178	 R178	 - 	 R178	 - 	 - 	 - 	 - 	 - 	 R178	 R178	 R178	 R178	 R178	 R178	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R178	 R178	 R178
[249]	 - 	 - 	 - 	 - 	 - 	 - 	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R3	 - 	 R3	 - 	 R3	 R3	 R3	 R3	 R3	 R3	 - 	 - 	 R3	 R3	 R3	 R3	 R3	 R3	 R3	 S299	 R3	 R3	 - 	 - 
[250]	 - 	 - 	 S297	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[251]	 - 	 - 	 R177	 R177	 R177	 R177	 - 	 R177	 R177	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R177	 R177	 R177	 R177	 R177	 R177	 R177	 R177	 R177	 R177	 R177	 R177	 - 	 R177	 - 	 - 	 - 	 - 	 - 	 R177	 R177	 R177	 R177	 R177	 R177	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R177	 R177	 R177
[252]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S291	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[253]	 - 	 - 	 R190	 R190	 R190	 R190	 - 	 R190	 R190	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R190	 R190	 R190	 - 	 R190	 R190	 R190	 R190	 R190	 R190	 R190	 R190	 - 	 R190	 - 	 - 	 - 	 - 	 - 	 R190	 R190	 R190	 R190	 R190	 R190	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R190	 R190	 R190
[254]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[255]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S284	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[256]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S280	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[257]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S279	 - 	 - 
[258]	 - 	 - 	 R175	 R175	 R175	 R175	 - 	 R175	 R175	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R175	 R175	 R175	 R175	 R175	 R175	 R175	 R175	 R175	 R175	 R175	 R175	 - 	 R175	 - 	 - 	 - 	 - 	 - 	 R175	 R175	 R175	 R175	 R175	 R175	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R175	 R175	 R175
[259]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 - 
[260]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S271	 - 	 - 	 - 	 - 
[261]	 - 	 - 	 R176	 R176	 R176	 R176	 - 	 R176	 R176	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R176	 R176	 R176	 R176	 R176	 R176	 R176	 R176	 R176	 R176	 R176	 R176	 - 	 R176	 - 	 - 	 - 	 - 	 - 	 R176	 R176	 R176	 R176	 R176	 R176	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R176	 R176	 R176
[262]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S263	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[263]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 - 	 - 
[264]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 - 	 - 
[265]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 S267	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[266]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S269	 - 	 - 	 - 	 S133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[267]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 - 
[268]	 - 	 - 	 R199	 R199	 R199	 R199	 - 	 R199	 R199	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R199	 R199	 R199	 R199	 R199	 R199	 R199	 R199	 R199	 R199	 R199	 R199	 - 	 R199	 - 	 - 	 - 	 - 	 - 	 R199	 R199	 R199	 R199	 R199	 R199	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R199	 R199	 R199
[269]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 - 
[270]	 - 	 - 	 R200	 R200	 R200	 R200	 - 	 R200	 R200	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R200	 R200	 R200	 R200	 R200	 R200	 R200	 R200	 R200	 R200	 R200	 R200	 - 	 R200	 - 	 - 	 - 	 - 	 - 	 R200	 R200	 R200	 R200	 R200	 R200	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R200	 R200	 R200
[271]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 - 
[272]	 - 	 - 	 R183	 R183	 R183	 R183	 - 	 R183	 R183	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R183	 R183	 R183	 R183	 R183	 R183	 R183	 R183	 R183	 R183	 R183	 R183	 - 	 R183	 - 	 - 	 - 	 - 	 - 	 R183	 R183	 R183	 R183	 R183	 R183	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R183	 R183	 R183
[273]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S274	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[274]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S275	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[275]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[276]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S277	 - 	 - 	 - 	 S133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[277]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S278	 - 	 - 
[278]	 - 	 - 	 R198	 R198	 R198	 R198	 - 	 R198	 R198	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R198	 R198	 R198	 R198	 R198	 R198	 R198	 R198	 R198	 R198	 R198	 R198	 - 	 R198	 - 	 - 	 - 	 - 	 - 	 R198	 R198	 R198	 R198	 R198	 R198	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R198	 R198	 R198
[279]	 - 	 - 	 R193	 R193	 R193	 R193	 - 	 R193	 R193	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R193	 R193	 R193	 R193	 R193	 R193	 R193	 R193	 R193	 R193	 R193	 R193	 - 	 R193	 R193	 - 	 - 	 - 	 - 	 R193	 R193	 R193	 R193	 R193	 R193	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R193	 R193	 R193
[280]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[281]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S282	 - 	 - 	 - 	 S133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[282]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 - 
[283]	 - 	 - 	 R196	 R196	 R196	 R196	 - 	 R196	 R196	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R196	 R196	 R196	 R196	 R196	 R196	 R196	 R196	 R196	 R196	 R196	 R196	 - 	 R196	 - 	 - 	 - 	 - 	 - 	 R196	 R196	 R196	 R196	 R196	 R196	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R196	 R196	 R196
[284]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[285]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S286	 - 	 - 	 - 	 S133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[286]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 - 
[287]	 - 	 - 	 R197	 R197	 R197	 R197	 - 	 R197	 R197	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R197	 R197	 R197	 R197	 R197	 R197	 R197	 R197	 R197	 R197	 R197	 R197	 - 	 R197	 - 	 - 	 - 	 - 	 - 	 R197	 R197	 R197	 R197	 R197	 R197	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R197	 R197	 R197
[288]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S289	 - 	 - 	 - 	 - 
[289]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 - 
[290]	 - 	 - 	 R182	 R182	 R182	 R182	 - 	 R182	 R182	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R182	 R182	 R182	 R182	 R182	 R182	 R182	 R182	 R182	 R182	 R182	 R182	 - 	 R182	 - 	 - 	 - 	 - 	 - 	 R182	 R182	 R182	 R182	 R182	 R182	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R182	 R182	 R182
[291]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[292]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S293	 - 	 - 	 - 	 S133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[293]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 - 
[294]	 - 	 - 	 R194	 R194	 R194	 R194	 - 	 R194	 R194	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R194	 R194	 R194	 S295	 R194	 R194	 R194	 R194	 R194	 R194	 R194	 R194	 - 	 R194	 - 	 - 	 - 	 - 	 - 	 R194	 R194	 R194	 R194	 R194	 R194	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R194	 R194	 R194
[295]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 - 
[296]	 - 	 - 	 R195	 R195	 R195	 R195	 - 	 R195	 R195	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R195	 R195	 R195	 R195	 R195	 R195	 R195	 R195	 R195	 R195	 R195	 R195	 - 	 R195	 - 	 - 	 - 	 - 	 - 	 R195	 R195	 R195	 R195	 R195	 R195	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R195	 R195	 R195
[297]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S298	 - 	 - 
[298]	 - 	 - 	 R201	 R201	 R201	 R201	 - 	 R201	 R201	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R201	 R201	 R201	 R201	 R201	 R201	 R201	 R201	 R201	 R201	 R201	 R201	 - 	 R201	 - 	 - 	 - 	 - 	 - 	 R201	 R201	 R201	 R201	 R201	 R201	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R201	 R201	 R201
[299]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 - 
[300]	 - 	 - 	 R181	 R181	 R181	 R181	 - 	 R181	 R181	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R181	 R181	 R181	 R181	 R181	 R181	 R181	 R181	 R181	 R181	 R181	 R181	 - 	 R181	 - 	 - 	 - 	 - 	 - 	 R181	 R181	 R181	 R181	 R181	 R181	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R181	 R181	 R181
[301]	 - 	 - 	 R202	 R202	 R202	 R202	 - 	 R202	 R202	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R202	 R202	 R202	 R202	 R202	 R202	 R202	 R202	 R202	 R202	 R202	 R202	 - 	 R202	 - 	 - 	 - 	 - 	 - 	 R202	 R202	 R202	 R202	 R202	 R202	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R202	 R202	 R202
[302]	 R185	 - 	 R185	 R185	 R185	 R185	 - 	 R185	 R185	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 - 	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 R185	 - 	 R185	 - 	 - 	 - 	 - 	 - 	 R185	 R185	 R185	 R185	 R185	 R185	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R185	 R185	 R185
[303]	 - 	 - 	 R191	 R191	 R191	 R191	 - 	 R191	 R191	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R191	 R191	 R191	 - 	 R191	 R191	 R191	 R191	 R191	 R191	 R191	 R191	 - 	 R191	 - 	 - 	 - 	 - 	 - 	 R191	 R191	 R191	 R191	 R191	 R191	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R191	 R191	 R191
[304]	 - 	 - 	 R204	 R204	 R204	 R204	 - 	 R204	 R204	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R204	 R204	 R204	 R204	 R204	 R204	 R204	 R204	 R204	 R204	 R204	 R204	 - 	 R204	 - 	 - 	 - 	 - 	 - 	 R204	 R204	 R204	 R204	 R204	 R204	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R204	 R204	 R204
[305]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S133	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S306	 - 	 - 
[306]	 - 	 - 	 R205	 R205	 R205	 R205	 - 	 R205	 R205	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R205	 R205	 R205	 R205	 R205	 R205	 R205	 R205	 R205	 R205	 R205	 R205	 - 	 R205	 - 	 - 	 - 	 - 	 - 	 R205	 R205	 R205	 R205	 R205	 R205	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R205	 R205	 R205
[307]	 - 	 - 	 R203	 R203	 R203	 R203	 - 	 R203	 R203	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R203	 R203	 R203	 R203	 R203	 R203	 R203	 R203	 R203	 R203	 R203	 R203	 - 	 R203	 - 	 - 	 - 	 - 	 - 	 R203	 R203	 R203	 R203	 R203	 R203	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R203	 R203	 R203
[308]	 R186	 - 	 R186	 R186	 R186	 R186	 - 	 R186	 R186	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 - 	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 R186	 - 	 R186	 - 	 - 	 - 	 - 	 - 	 R186	 R186	 R186	 R186	 R186	 R186	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R186	 R186	 R186
[309]	 - 	 - 	 S249	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S254	 S260	 S252	 - 	 S256	 S255	 S259	 S262	 S250	 S247	 S240	 S242	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S246	 S236	 S311
[310]	 - 	 - 	 R189	 R189	 R189	 R189	 - 	 R189	 R189	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 - 	 R189	 R189	 R189	 - 	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 R189	 - 	 R189	 - 	 - 	 - 	 - 	 - 	 R189	 R189	 R189	 R189	 R189	 R189	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R189	 R189	 R189
[311]	 R187	 - 	 R187	 R187	 R187	 R187	 - 	 R187	 R187	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 - 	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 R187	 - 	 R187	 - 	 - 	 - 	 - 	 - 	 R187	 R187	 R187	 R187	 R187	 R187	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R187	 R187	 R187
[312]	 R210	 - 	 R210	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 R210	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R210	 - 	 - 	 - 	 - 	 - 	 - 	 R210	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[313]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 - 	 - 	 - 	 - 	 - 	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[314]	 R108	 - 	 R108	 R108	 R108	 R108	 - 	 R108	 R108	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 - 	 R108	 R108	 R108	 - 	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 - 	 R108	 R108	 R108	 - 	 - 	 R108	 R108	 R108	 R108	 R108	 R108	 R108	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R108	 - 	 R108	 S315	 R108
[315]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 - 	 - 	 - 	 - 	 - 	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[316]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S324	 - 	 - 	 - 	 - 
[317]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R111	 - 	 - 	 - 	 - 	 - 	 R111	 R111	 R111	 R111	 R111	 R111	 R111	 R111	 R111	 R111	 R111	 R111	 R111	 R111	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R111
[318]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 - 	 - 	 - 	 - 	 - 	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S320
[319]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R112	 - 	 - 	 - 	 - 	 - 	 R112	 R112	 R112	 R112	 R112	 R112	 R112	 R112	 R112	 R112	 R112	 R112	 R112	 R112	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R112
[320]	 R106	 - 	 R106	 R106	 R106	 R106	 - 	 R106	 R106	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 - 	 R106	 R106	 R106	 - 	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 - 	 R106	 R106	 R106	 - 	 - 	 R106	 R106	 R106	 R106	 R106	 R106	 R106	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R106	 - 	 R106	 R106	 R106
[321]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R120	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S329	 - 	 R120	 - 	 - 
[322]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R118	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R118	 - 	 - 
[323]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S327	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S326	 - 	 - 
[324]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[325]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R121	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R121	 - 	 - 
[326]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R113	 - 	 - 	 - 	 - 	 - 	 R113	 R113	 R113	 R113	 R113	 R113	 R113	 R113	 R113	 R113	 R113	 R113	 R113	 R113	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R113
[327]	 - 	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S324	 - 	 - 	 - 	 - 
[328]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R119	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R119	 - 	 - 
[329]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[330]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R122	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R122	 - 	 - 
[331]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 - 	 - 	 - 	 - 	 - 	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S332
[332]	 R107	 - 	 R107	 R107	 R107	 R107	 - 	 R107	 R107	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 - 	 R107	 R107	 R107	 - 	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 - 	 R107	 R107	 R107	 - 	 - 	 R107	 R107	 R107	 R107	 R107	 R107	 R107	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R107	 - 	 R107	 R107	 R107
[333]	 - 	 - 	 S337	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[334]	 R125	 - 	 R125	 R125	 R125	 R125	 - 	 R125	 R125	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 - 	 R125	 R125	 R125	 - 	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 - 	 R125	 R125	 R125	 - 	 - 	 R125	 R125	 R125	 R125	 R125	 R125	 R125	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R125	 - 	 R125	 S335	 R125
[335]	 - 	 - 	 S337	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[336]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R126	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R126
[337]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R128	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S342	 - 	 - 	 R128
[338]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S340	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S339
[339]	 R124	 - 	 R124	 R124	 R124	 R124	 - 	 R124	 R124	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 - 	 R124	 R124	 R124	 - 	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 - 	 R124	 R124	 R124	 - 	 - 	 R124	 R124	 R124	 R124	 R124	 R124	 R124	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R124	 - 	 R124	 R124	 R124
[340]	 - 	 - 	 S337	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[341]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R127	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R127
[342]	 - 	 - 	 S92	 S88	 S99	 S84	 - 	 S72	 S80	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S70	 - 	 - 	 - 	 - 	 - 	 S87	 S100	 S83	 S76	 S74	 S78	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[343]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R129	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R129
[344]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S340	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S345
[345]	 R123	 - 	 R123	 R123	 R123	 R123	 - 	 R123	 R123	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 - 	 R123	 R123	 R123	 - 	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 - 	 R123	 R123	 R123	 - 	 - 	 R123	 R123	 R123	 R123	 R123	 R123	 R123	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R123	 - 	 R123	 R123	 R123
[346]	 R82	 - 	 R82	 R82	 R82	 R82	 - 	 R82	 R82	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 - 	 R82	 R82	 R82	 - 	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 - 	 R82	 R82	 R82	 - 	 - 	 R82	 R82	 R82	 R82	 R82	 R82	 R82	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R82	 R82	 R82
[347]	 R2	 - 	 S25	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S1	 - 	 - 	 - 	 - 	 - 	 - 	 S39	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[348]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S35	 S17	 S2	 S6	 S11	 S14	 S10	 S7	 S22	 S38	 S34	 S26	 S4	 S13	 S19	 S5	 S28	 S30	 S36	 S20	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 S236	 - 
[349]	 R213	 - 	 R213	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 R213	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R213	 - 	 - 	 - 	 - 	 - 	 - 	 R213	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[350]	 R212	 - 	 R212	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 R212	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R212	 - 	 - 	 - 	 - 	 - 	 - 	 R212	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[351]	 R84	 - 	 R84	 R84	 R84	 R84	 - 	 R84	 R84	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 - 	 R84	 R84	 R84	 - 	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 - 	 R84	 R84	 R84	 - 	 - 	 R84	 R84	 R84	 R84	 R84	 R84	 R84	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 R84	 R84	 R84

GOTO TABLE:

	[1]	[2]	[3]	[4]	[5]	[6]	[7]	[8]	[9]	[10]	[11]	[12]	[13]	[14]	[15]	[16]	[17]	[18]	[19]	[20]	[21]	[22]	[23]	[24]	[25]	[26]	[27]	[28]	[29]	[30]	[31]	[32]	[33]	[34]	[35]	[36]	[37]	[38]	[39]	[40]	[41]	[42]	[43]	[44]	[45]	[46]	[47]	[48]	[49]	[50]	[51]	[52]	[53]	[54]	[55]	[56]	[57]	[58]	[59]	[60]	[61]	[62]	[63]	[64]
	________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
[0]	 16 	 32 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 37 	 23 	 - 	 33 	 18 	 3 	 - 	 9 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 27 	 31 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 24 	 29 
[1]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 202 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 27 	 31 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[2]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[3]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 351 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[4]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[5]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[6]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[7]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[8]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[9]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 237 	 235 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 349 	 - 	 - 	 - 	 - 	 - 	 348 	 - 	 - 
[10]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[11]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[12]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[13]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[14]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[15]	 - 	 347 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 37 	 23 	 - 	 33 	 18 	 3 	 - 	 9 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 27 	 31 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 24 	 29 
[16]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[17]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[18]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 346 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[19]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[20]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[21]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[22]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[23]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 219 	 - 	 - 	 - 	 218 	 216 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 27 	 31 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[24]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[25]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[26]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[27]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 63 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[28]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[29]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[30]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[31]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[32]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 37 	 23 	 - 	 33 	 18 	 3 	 - 	 9 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 27 	 31 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 46 	 29 
[33]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 45 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[34]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[35]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[36]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[37]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[38]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[39]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 40 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 42 	 - 	 - 	 - 	 41 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[40]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[41]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 43 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 44 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[42]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[43]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[44]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[45]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[46]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[47]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 77 	 - 	 214 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[48]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 51 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 55 	 50 	 - 	 49 	 52 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[49]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[50]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[51]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 58 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 62 	 31 	 - 	 - 	 - 	 - 	 - 	 60 	 61 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[52]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[53]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[54]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[55]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[56]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[57]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 77 	 - 	 205 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[58]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[59]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 51 	 - 	 33 	 18 	 3 	 - 	 202 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 62 	 31 	 182 	 - 	 - 	 49 	 52 	 180 	 61 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[60]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[61]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[62]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 63 	 - 	 - 	 - 	 - 	 - 	 - 	 64 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[63]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[64]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[65]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 77 	 - 	 86 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[66]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 51 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 68 	 - 	 - 	 49 	 52 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[67]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[68]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[69]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[70]	 - 	 - 	 91 	 174 	 98 	 - 	 130 	 109 	 79 	 97 	 199 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 173 	 172 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 176 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[71]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[72]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 198 	 79 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[73]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[74]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[75]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[76]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[77]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[78]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[79]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 197 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[80]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 196 	 79 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[81]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[82]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[83]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[84]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 171 	 79 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[85]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[86]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[87]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[88]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[89]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[90]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[91]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[92]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[93]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[94]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[95]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[96]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[97]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[98]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[99]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[100]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[101]	 - 	 - 	 91 	 131 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[102]	 - 	 - 	 91 	 - 	 98 	 112 	 110 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[103]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[104]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[105]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[106]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[107]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[108]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[109]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 121 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[110]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[111]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[112]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[113]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[114]	 - 	 - 	 91 	 - 	 98 	 - 	 116 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[115]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[116]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[117]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[118]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[119]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[120]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[121]	 - 	 - 	 91 	 - 	 98 	 - 	 129 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[122]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[123]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[124]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[125]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[126]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[127]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[128]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[129]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[130]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[131]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[132]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[133]	 - 	 - 	 91 	 - 	 98 	 - 	 134 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[134]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[135]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 136 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[136]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[137]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 138 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[138]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[139]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 140 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[140]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[141]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 142 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[142]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[143]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 168 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[144]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 145 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[145]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[146]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 167 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[147]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 166 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[148]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 165 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[149]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 150 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[150]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[151]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 164 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[152]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 153 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[153]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[154]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 163 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[155]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 156 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[156]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[157]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 162 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[158]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 161 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[159]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 160 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[160]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[161]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[162]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[163]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[164]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[165]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[166]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[167]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[168]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[169]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[170]	 - 	 - 	 91 	 174 	 98 	 - 	 130 	 109 	 79 	 97 	 175 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 173 	 172 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 176 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[171]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[172]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 173 	 172 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 188 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[173]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 173 	 172 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 187 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[174]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[175]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[176]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 179 	 - 	 - 	 - 	 - 	 - 	 - 	 178 	 61 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[177]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 51 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 179 	 - 	 182 	 - 	 - 	 49 	 52 	 180 	 61 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[178]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[179]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 64 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[180]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[181]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[182]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[183]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[184]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[185]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[186]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[187]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[188]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[189]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 194 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[190]	 - 	 - 	 91 	 191 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[191]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[192]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 193 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[193]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[194]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[195]	 - 	 - 	 91 	 174 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[196]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[197]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[198]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[199]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[200]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 201 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[201]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[202]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[203]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[204]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[205]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[206]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[207]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[208]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[209]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[210]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 51 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 212 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[211]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[212]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[213]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[214]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[215]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[216]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 237 	 235 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 238 	 - 	 - 	 - 	 - 	 - 	 234 	 - 	 - 
[217]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[218]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[219]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[220]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[221]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 223 	 222 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 27 	 31 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[222]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[223]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[224]	 - 	 - 	 91 	 - 	 98 	 - 	 225 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 226 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[225]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[226]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[227]	 - 	 - 	 91 	 - 	 98 	 - 	 225 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 229 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 228 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[228]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[229]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[230]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[231]	 - 	 - 	 91 	 - 	 98 	 - 	 225 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 232 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[232]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[233]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[234]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 310 	 235 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 312 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[235]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 219 	 - 	 - 	 - 	 218 	 222 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 27 	 31 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[236]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 237 	 235 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 253 	 258 	 261 	 251 	 248 	 241 	 244 	 245 	 239 	 - 	 - 
[237]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[238]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[239]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 310 	 235 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 253 	 258 	 261 	 251 	 248 	 241 	 244 	 309 	 - 	 - 	 - 
[240]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[241]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[242]	 - 	 - 	 91 	 305 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[243]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[244]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[245]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 303 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[246]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[247]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[248]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[249]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[250]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[251]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[252]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[253]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[254]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 77 	 - 	 288 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[255]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[256]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[257]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[258]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[259]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 273 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[260]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[261]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[262]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[263]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 264 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[264]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 265 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[265]	 - 	 - 	 91 	 266 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[266]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[267]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 268 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[268]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[269]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 270 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[270]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[271]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 272 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[272]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[273]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[274]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[275]	 - 	 - 	 91 	 276 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[276]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[277]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[278]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[279]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[280]	 - 	 - 	 91 	 281 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[281]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[282]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 283 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[283]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[284]	 - 	 - 	 91 	 285 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[285]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[286]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 287 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[287]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[288]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[289]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 290 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[290]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[291]	 - 	 - 	 91 	 292 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[292]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[293]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 294 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[294]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[295]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 296 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[296]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[297]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[298]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[299]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 300 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[300]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[301]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[302]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[303]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[304]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[305]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[306]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[307]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[308]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[309]	 - 	 - 	 91 	 257 	 98 	 - 	 130 	 109 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 111 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 303 	 258 	 261 	 251 	 248 	 241 	 244 	 - 	 - 	 - 	 - 
[310]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[311]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[312]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[313]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 173 	 172 	 - 	 - 	 - 	 12 	 8 	 21 	 331 	 317 	 316 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[314]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[315]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 173 	 172 	 - 	 - 	 - 	 12 	 8 	 21 	 318 	 317 	 316 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[316]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 321 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 323 	 322 	 - 	 - 	 27 	 31 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[317]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[318]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 173 	 172 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 319 	 316 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[319]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[320]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[321]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[322]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[323]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[324]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 77 	 - 	 325 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[325]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[326]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[327]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 321 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 328 	 - 	 - 	 27 	 31 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[328]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[329]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 77 	 - 	 330 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[330]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[331]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 173 	 172 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 319 	 316 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[332]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[333]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 344 	 336 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[334]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[335]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 338 	 336 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[336]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[337]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[338]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[339]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[340]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 341 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[341]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[342]	 - 	 - 	 91 	 - 	 98 	 - 	 - 	 73 	 79 	 97 	 - 	 93 	 95 	 85 	 71 	 75 	 94 	 90 	 89 	 96 	 82 	 77 	 - 	 343 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[343]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[344]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[345]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[346]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[347]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 37 	 23 	 - 	 33 	 18 	 3 	 - 	 9 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 27 	 31 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 46 	 29 
[348]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 310 	 235 	 - 	 33 	 18 	 3 	 - 	 - 	 - 	 12 	 8 	 21 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 350 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[349]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[350]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 
[351]	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 	 - 

