#Lutece0800. How About Some Circles?

How About Some Circles?

Migrated from Lutece 800 How About Some Circles?

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Kufeng is fond of circles. He builds a big machine which deal with circles and points.

There are mm points on a XOYXOY plane. The points' position may coincide. Kufeng also has nn circles, the position of each circle's center, as long as the initial radius of each circle are given to you.

Each time, Kufeng can operate the machine, and change some circles' radius.

The points give energy to the circles, the total energy for a circle is the number of points that strictly lie inside that circle. A point might serve energy to more than one circle.

At some time, Kufeng wants to know the total energy of some circles.

Input

The first line of the input contains two numbers nn and mm, the number of circles and the number of points. (1n10000,1m100)(1\leq n\leq 10000, 1\leq m\leq 100)

The next nn lines each with three numbers xi,yi,rix_{i}, y_{i}, r_{i}, which means the ithi_{th} circle on the plane. With center located at (xi,yi)(x_{i}, y_{i}), and with radius length rir_{i}. (0xi,yi,ri100)(0\leq x_{i}, y_{i}, r_{i}\leq 100)

The next mm lines each with three numbers pxi,pyipx_{i}, py_{i}, which means the ithi_{th} point on the plane located at (pxi,pyi)(px_{i}, py_{i}). (0pxi,pyi100)(0\leq px_{i}, py_{i}\leq 100)

The next lines contain a number qq, the number of operations Kufeng will do. (1q100000)(1\leq q\leq 100000)

The next qq lines each can be given in the following two types:

1 l r val: Kufeng will operate on all the circles, from lthl_{th} to rthr_{th}, inclusive, and change those circles' radius to valval.(1lrn,1val500) (1\leq l\leq r\leq n, 1\leq val\leq 500)

2 l r: Kufeng will calculate the sum of energy of all the circles, from lthl_{th} to rthr_{th}, inclusive.(1lrn) (1\leq l\leq r\leq n)

Output

For each type of 2 l r, output the answer in a line.

Samples

3 4
1 0 1
1 1 1
1 2 1
0 0
2 0
2 2
0 2
5
2 1 3
1 2 2 2
2 1 3
1 1 3 2
2 1 3
0
4
8

Resources

the 12th UESTC Programming Contest Preliminary