Natalia Romanova is trying to test something on the new gun S.H.I.E.L.D gave her. In order to determine the result of the test, she needs to find the number of answers to a certain equation. The equation is of form:

Where

represents logical OR and

represents logical exclusive OR (XOR), and
vi,j are some boolean variables or their negations. Natalia calls the left side of the equation a XNF formula. Each statement in brackets is called a clause, and
vi,j are called literals.
In the equation Natalia has, the left side is actually a 2-XNF-2 containing variables
x1,x2,...,xm and their negations. An XNF formula is 2-XNF-2 if:
- For each 1≤i≤n, ki≤2, i.e. the size of each clause doesn't exceed two.
- Each variable occurs in the formula at most two times (with negation and without negation in total). Please note that it's possible that a variable occurs twice but its negation doesn't occur in any clause (or vice versa).
Natalia is given a formula of
m variables, consisting of
n clauses. Please, make sure to check the samples in order to properly understand how the formula looks like.
Natalia is more into fight than theory, so she asked you to tell her the number of answers to this equation. More precisely, you need to find the number of ways to set
x1,...,xm with
true and
false (out of total of
2m ways) so that the equation is satisfied. Since this number can be extremely large, you need to print the answer modulo
109+7.
Please, note that some variable may appear twice in one clause, or not appear in the equation at all (but still, setting it to
false or
true gives different ways to set variables).
Note
The equation in the first sample is:

The equation in the second sample is:

The equation in the third sample is:
