Isomorphism of Graphs with Few Cycles

Consider an undirected connected graph G with the following properties:



Figure 1. An example of 4 graphs with the given properties. Each graph has 14 vertices, 15 edges, and it contains 2 cycles. The only vertex of degree 3 which is not an element of a cycle is highlighted in orange. There is only one pair of isomorphic graphs: a) and c).

The task

Given a set S of graphs described above, identify maximum subsets of isomorphic graphs contained in S.


Input

The first line of the input consists of integers T, N, M separated by space. T is the number of the input graphs, N is the number of vertices of each graph and M and is the number of edges of each graph. Next, there are T×M lines with pairs of integers V1, V2 representing an undirected edge {V1, V2}. Edges of the i-th graph are represented by lines from 1+(i−1)×M to i×M (provided the first edge of the first graph is at line 1). For each graph, its vertices are numbered from 1 to N and the edges are listed in a random order.
It holds 1 ≤ T ≤ 200 and N, M ≤ 65000.

Output

Let {G1, ..., Gk} be a maximum subset of pairwise non-isomorphic input graphs. Let ci be the number of input graphs isomorphic with Gi. The output contains one text line with all the numbers ci sorted in ascending order and separated by spaces.

Example 1

Input
2 8 8
8 2
2 5
1 8
4 7
2 4
8 4
6 5
3 5
1 3
6 5
5 4
4 7
8 3
5 1
3 2
1 4
Output
2

Example 2

Input
4 14 15
1 2
2 13
13 14
13 11
12 11
11 10
2 10
9 8
8 10
8 3
4 7
6 5
3 6
3 4
6 4
13 12
12 11
11 14
1 2
2 3
4 2
10 11
10 12
10 9
8 7
5 6
4 5
5 7
7 9
9 4
3 4



5 3
5 2
2 1
3 2
5 6
7 6
8 6
13 14
12 11
10 9
8 14
11 14
9 8
9 11
1 8
1 2
1 10
9 8
9 13
9 10
7 8
11 10
13 14
12 13
2 5
5 6
5 3
2 3
4 3
Output
1 1 2
The data of Example 2 is depicted in Figure 1.

Public data

The public data set is intended for easier debugging and approximate program correctness checking. The public data set is stored also in the upload system and each time a student submits a solution it is run on the public dataset and the program output to stdout and stderr is available to him/her.
Link to public data set