#D12212. Kuru Robot

    ID: 10156 Type: Default 1000ms 134MiB

Kuru Robot

Kuru Robot

Dr. Asimov, a robotics researcher, has succeeded in developing a new robot. The robot can move freely along a special wire stretched around the floor. The robot always moves forward in a direction parallel to the current wire.

The good news is that this robot doesn't consume energy to move on the wire, regardless of its distance. However, in order to change the direction at the end point of the wire or the intersection of the wires, it is necessary to rotate around that point, and energy is consumed by the rotation angle.

I want to move this robot from the start point to the goal point. For example, in the figure below, place the robot at start in the east direction (the positive direction of the x-axis in the figure below) and move it to the goal. There is a route from start to the goal via intersection A and intersection B, and a route via intersection A and intersection C, but the former has a longer travel distance but a smaller rotation angle, so it consumes less energy.

Your job is to create a program that reads the position of the wires on the floor, the start point, the goal point, and reports the minimum total rotation angle required to move from the start point to the goal point.

The robot may be placed in any direction at the start point and in any direction at the goal point.

Input

The input consists of multiple datasets. The format of each dataset is as follows:

n x11 y11 x21 y21 x12 y12 x22 y22 .. .. .. x1n y1n x2n y2n sx sy gx gy

n is an integer indicating the number of wires. x1i y1i shows the coordinates of one end point of the i-th wire, and x2i y2i shows the coordinates of the other end point of the i-th wire.

sx sy and gx gy indicate the coordinates of the start point and the goal point, respectively.

All given coordinates are integer values, and the x-axis and y-axis values ​​are -1000 or more and 1000 or less. It may also be assumed that the start and finish points are on the end points of the given wire.

You can assume that n ≤ 50.

When n is 0, it indicates the end of input.

Output

For each dataset, output the minimum value of the total rotation angle on one line. If the robot cannot reach the goal point, output "-1". The output may contain an error of 0.00001 or less.

Example

Input

8 1 3 11 3 5 3 13 11 10 10 17 10 11 2 11 6 10 5 14 5 13 6 13 2 17 10 17 3 13 3 19 3 1 3 19 3 6 1 3 11 3 5 3 13 11 10 10 17 10 11 2 11 6 10 5 14 5 13 3 19 3 1 3 19 3 2 0 0 7 0 3 0 7 3 0 0 7 3 0

Output

270.0000 -1 36.86989765

inputFormat

Input

The input consists of multiple datasets. The format of each dataset is as follows:

n x11 y11 x21 y21 x12 y12 x22 y22 .. .. .. x1n y1n x2n y2n sx sy gx gy

n is an integer indicating the number of wires. x1i y1i shows the coordinates of one end point of the i-th wire, and x2i y2i shows the coordinates of the other end point of the i-th wire.

sx sy and gx gy indicate the coordinates of the start point and the goal point, respectively.

All given coordinates are integer values, and the x-axis and y-axis values ​​are -1000 or more and 1000 or less. It may also be assumed that the start and finish points are on the end points of the given wire.

You can assume that n ≤ 50.

When n is 0, it indicates the end of input.

outputFormat

Output

For each dataset, output the minimum value of the total rotation angle on one line. If the robot cannot reach the goal point, output "-1". The output may contain an error of 0.00001 or less.

Example

Input

8 1 3 11 3 5 3 13 11 10 10 17 10 11 2 11 6 10 5 14 5 13 6 13 2 17 10 17 3 13 3 19 3 1 3 19 3 6 1 3 11 3 5 3 13 11 10 10 17 10 11 2 11 6 10 5 14 5 13 3 19 3 1 3 19 3 2 0 0 7 0 3 0 7 3 0 0 7 3 0

Output

270.0000 -1 36.86989765

样例

8
1 3 11 3
5 3 13 11
10 10 17 10
11 2 11 6
10 5 14 5
13 6 13 2
17 10 17 3
13 3 19 3
1 3 19 3
6
1 3 11 3
5 3 13 11
10 10 17 10
11 2 11 6
10 5 14 5
13 3 19 3
1 3 19 3
2
0 0 7 0
3 0 7 3
0 0 7 3
0
270.0000

-1 36.86989765

</p>