The first line contains an integer $T$(about 5),indicating the number of cases.
Each test case begins with two integers $n(1 \leq n \leq 300)$ and $m(1 \leq m \leq 90000)$.
Next $m$ lines contains two integers $A$ and $B(1 \leq A \leq n,1 \leq B \leq n)$
(P.S. there may be the same limits or contradict limits.)
Output
For each case, output an integer means the answer mod $1000000007$.
Sample Input
5
1 0
5 0
3 2
1 2
2 3
3 2
2 1
2 3
3 3
1 2
2 3
3 1
Sample Output
1
42
1
2
0
Hint
The only legal pop-sequence of case 3 is 1,2,3.
The legal pop-sequences of case 4 are 2,3,1 and 2,1,3.