State 0:             Transitions:
E′ → ⋅ E             on E goto state 1
E → ⋅ A              on A goto state 2
E → ⋅ L              on L goto state 3
A → ⋅ n              on n goto state 4
A → ⋅ i              on i goto state 5
L → ⋅ ( S )          on ( goto state 6

State 1:
E′ → E ⋅

State 2:
E → A ⋅

State 3:
E → L ⋅

State 4:
A → n ⋅

State 5:
A → i ⋅

State 6:             Transitions:
L → ( ⋅ S )          on S goto state 7
S → ⋅ E , S          on E goto state 8
S → ⋅ E
E → ⋅ A              on A goto state 2
E → ⋅ L              on L goto state 3
A → ⋅ n              on n goto state 4
A → ⋅ i              on i goto state 5
L → ⋅ ( S )          on ( goto state 6

State 7:             Transitions:
L → ( S ⋅ )          on ) goto state 9

State 8:             Transitions:
S → E ⋅ , S          on , goto state 10
S → E ⋅

State 9:
L → ( S ) ⋅

State 10:            Transitions:
S → E , ⋅ S          on S goto state 11
S → ⋅ E , S          on E goto state 8
S → ⋅ E
E → ⋅ A              on A goto state 2
E → ⋅ L              on L goto state 3
A → ⋅ n              on n goto state 4
A → ⋅ i              on i goto state 5
L → ⋅ ( S )          on ( goto state 6

State 11:
S → E , S ⋅