#D4375. The Last Hole!

    ID: 3637 Type: Default 2000ms 256MiB

The Last Hole!

The Last Hole!

Luyi has n circles on the plane. The i-th circle is centered at (xi, yi). At the time zero circles start to grow simultaneously. In other words, the radius of each circle at time t (t > 0) is equal to t. The circles are drawn as black discs on an infinite white plane. So at each moment the plane consists of several black and white regions. Note that the circles may overlap while growing.

We define a hole as a closed, connected white region. For instance, the figure contains two holes shown by red border. During growing some holes may be created and it is easy to see that each created hole will disappear eventually. Luyi asks you to find moment of time such that the last hole disappears. In other words, you should find the first moment such that no hole can be seen after that.

Input

The first line of the input contains integer n (1 ≤ n ≤ 100). Each of the next n lines contains two integers xi and yi ( - 104 ≤ xi, yi ≤ 104), indicating the location of i-th circle.

It's guaranteed that no two circles are centered at the same point.

Output

Print the moment where the last hole disappears. If there exists no moment in which we can find holes print -1.

The answer will be considered correct if the absolute or relative error does not exceed 10 - 4.

Examples

Input

3 0 0 1 1 2 2

Output

-1

Input

4 0 0 0 2 2 2 2 0

Output

1.414214

Input

4 0 1 0 -1 -2 0 4 0

Output

2.125000

inputFormat

Input

The first line of the input contains integer n (1 ≤ n ≤ 100). Each of the next n lines contains two integers xi and yi ( - 104 ≤ xi, yi ≤ 104), indicating the location of i-th circle.

It's guaranteed that no two circles are centered at the same point.

outputFormat

Output

Print the moment where the last hole disappears. If there exists no moment in which we can find holes print -1.

The answer will be considered correct if the absolute or relative error does not exceed 10 - 4.

Examples

Input

3 0 0 1 1 2 2

Output

-1

Input

4 0 0 0 2 2 2 2 0

Output

1.414214

Input

4 0 1 0 -1 -2 0 4 0

Output

2.125000

样例

4
0 0
0 2
2 2
2 0
1.41421356237309514547

</p>