NFA Example 2

Given the following transition table:

Produces the NFA:

digraph {
	rankdir=LR
	init[shape=point]
	node[shape=doublecircle]; q;
	node[shape=circle];
	init->s
	
	s->s [label=0]
	s->p [label=0]
	s->q [label=1]
	s->p [label=ε]
	q->p [label=0]
	p->q [label=1]
}