#Lutece0716. Kings on a Chessboard

Kings on a Chessboard

Migrated from Lutece 716 Kings on a Chessboard

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

You are given a chessboard of size x×yx \times y and kk identical kings, and are asked to place all the kings on the board such that no two kings can attack each other. Two kings can attack each other if they are horizontally, vertically or diagonally adjacent.

title

Write a computer program that calculates the number of possible arrangements of the kk kings on the given chessboard. Since the number of feasible arrangements may be large, reduce the number modulo 1,000,000,0071,000,000,007.

Input

The first line of the input consists of a single integer TT, the number of test cases. Each of the following TT lines consists of three integers xx, yy and kk,separated by one space.

0<T500 < T \le 50

2x,y152 \le x, y \le 15

1kx×y1 \le k \le x\times y

Output

For each test case, output the number of possibilities modulo 1,000,000,0071,000,000,007.

Samples

4
8 8 1
7 7 16
7 7 7
3 7 15
64
1
2484382
0

Resources

IDI Open 2013 Programming Contest