echo 'Contract items which are complete without exceptions:'
egrep '^A C|^D C' $1
echo
echo 'Contract items which are complete with exceptions:'
egrep '^A E|^D E' $1
echo
echo 'Items which were added during system design:'
grep '^S' $1
echo
echo 'Items which were not in design, but have been completed:'
egrep '^X C|^X E|^R C|^R E' $1
echo 'Others:'
egrep '^R N|^X N' $1
