Problem D: Dungeon Wall

In 2337, people are bored at daily life and have crazy desire of having extraordinary experience. These days,“Dungeon Adventure” is one of the hottest attractions, where brave adventurers risk their lives to kill the evil monsters and save the world.

You are a manager of one of such dungeons. Recently you have been receiving a lot of complaints from soldiers who frequently enter your dungeon; they say your dungeon is too easy and they do not want to enter again. You are considering making your dungeon more difficult by increasing the distance between the entrance and the exit of your dungeon so that more monsters can approach the adventurers.

The shape of your dungeon is a rectangle whose width is W and whose height is H. The dungeon is a grid which consists of W × H square rooms of identical size 1 × 1. The southwest corner of the dungeon has the coordinate (0; 0), and the northeast corner has (W, H). The outside of the dungeon is surrounded by walls, and there may be some more walls inside the dungeon in order to prevent adventurers from going directly to the exit. Each wall in the dungeon is parallel to either x-axis or y-axis, and both ends of each wall are at integer coordinates. An adventurer can move from one room to another room if they are adjacent vertically or horizontally and have no wall between.

You would like to add some walls to make the shortest path between the entrance and the exit longer. However, severe financial situation only allows you to build at most only one wall of a unit length. Note that a new wall must also follow the constraints stated above. Furthermore, you need to guarantee that there is at least one path from the entrance to the exit.

You are wondering where you should put a new wall to maximize the minimum number of steps between the entrance and the exit. Can you figure it out?

Input

W H N
sx0 sy0 dx0 dy0
sx1 sy1 dx1 dy1
.
.
.
ix iy
ox oy

The first line contains three integers: W, H and N (1 ≤ W, H ≤ 50, 0 ≤ N ≤ 1000). They are separated with a space.

The next N lines contain the specifications of N walls inside the dungeon. Each wall specification is a line containing four integers. The i-th specification contains sxi, syi, dxi and dyi, separated with a space. These integers give the position of the i-th wall: it spans from (sxi, syi) to (dxi, dyi).

The last two lines contain information about the locations of the entrance and the exit. The first line contains two integers ix and iy, and the second line contains two integers ox and oy. The entrance is located at the room whose south-west corner is (ix, iy), and the exit is located at the room whose southwest corner is (ox, oy).

Output

Print the maximum possible increase in the minimum number of required steps between the entrance and the exit just by adding one wall. If there is no good place to build a new wall, print zero.

Sample Input 1

3 4 4
1 0 1 1
1 3 1 4
1 2 2 2
2 1 2 3
0 0
1 0

Output for the Sample Input 1

6

Sample Input 2

50 2 0
0 0
49 0

Output for the Sample Input 2

2

Sample Input 3

50 2 0
0 0
49 1

Output for the Sample Input 3

0