Brackets

Accepts: 9
Submissions: 78
Time Limit: 20000/10000 MS (Java/Others)
Memory Limit: 131072/131072 K (Java/Others)
Problem Description

Miceren likes playing with brackets.

There are NN brackets on his desk forming a sequence. In his spare time, he will do QQ operations on this sequence, each operation is either of these two types:

  1. Flip the XX-th bracket, i.e. the XX-th bracket will become ) if it is ( before, otherwise become ( .

  2. In a given subsequence [L, R][L,R], query the KK-th bracket position number after deleting all matched brackets. If the amount of brackets left is less than KK, output -1. For example, if NN = 10, LL = 2, RR = 9 and the sequence is ))(()))((). In the sub sequence [2, 9], the brackets sequence is )(()))((. After deleting all matched brackets, the sequence becomes ) )((. If KK = 1, answer is 2. If KK = 2, answer is 7. If KK = 3, answer is 8. If KK = 4, answer is 9. If K  5K\ge~5, answer is -1.

Miceren is good at playing brackets, instead of calculating them by himself.

As his friend, can you help him?

Input

The first line contains a single integer TT, indicating the number of test cases.

Each test case begins with two integers N, QN,~Q, indicating the number of brackets in Miceren's desk and the number of queries.

Each of following QQ lines describes an operation: if it is "1 X", it indicate the first type of operation. Otherwise it will be "2 L R K", indicating the second type of operation.

TT is about 100.

1  N,Q  200000.1\leN, Q\le200000.

For each query, 1  X  N1\leX\leN and 1  L  R  N1\leL\leR\leN, 1  K  N1\leK\leN.

The ratio of test cases with N > 100000N\gt100000 is less than 10%.

Output

For each query operation, output the answer. If there is no KK brackets left, output -1.

Sample Input
1
10 5
))(()))(()
2 2 9 2
2 2 9 3
2 2 9 5
1 3
2 2 9 5
Sample Output
7
8
-1
8