This is c++ code to display all of the possible unbusted player hands in a file and some of the logic.
// in the code is a comment and has no effect on execution.
Hand data is output to a file because there is too much data to display in a console application.
A little basic c/c++ syntax
#include <xxxx> is a preprocessor directive enabling the use of the code defined in xxxx
a statement needs to be terminated by a semi-colon (;)
{ denotes the start of a code block - block must be ended with }
some examples of code blocks are functions, loops, and conditional code branches
a c/c++ program must contain a function named main which is where program execution begins
function parameters are enclosed in parentheses; () means there are no parameters
void main() means main function has no parameters where void means main does not return a value
int main() would mean main function has no parameters and returns an integer (int) data type value
// in the code is a comment and has no effect on program execution
Pseudo program example
#include <iostream> // include code in iostream which enables outputting/inputting to console
void main() // main function
{ // start of main function code block
int i; // declare an integer data type named i
for (i = 1; i <= 3; ++i) // i=1, incremented by 1 until i is not less than or equal to 3
{ // start of for loop code block
std::cout << i; // output value of i to console - separate with comma except last iteration
if (i < 3) // if i is less than 3, branch to code in if code block
std::cout << "," ; // one line does not require { and } for code block (optional)
} // end of for loop code block
} // end of main function code block
(1) This code shows an example of nested for loops
#include <iostream> // enables output to console using cout
#include <fstream> // enables output to a file
using namespace std; // enables writing simply cout << instead having to write std::cout <<
void main()
{
// example of nested for loop
// vary 3 integers from 1 to 3 and display all of the iterations
// there are 3 x 3 x 3 = 27 iterations
int i, j, k; // declare 3 variable integers named i, j, k
for (i = 1; i <= 3; ++i) {
for (j = 1; j <= 3; ++j) {
for (k = 1; k <= 3; ++k) {
cout << i << j << k; // display current values of i, j, k
cout << " "; // insert space
if (k == 3) // (= assigns a value to k, == compares k to a value)
cout << endl; // new line whenever k == 3
}
}
}
}
This is the output of the nested for loop code snippet
111 112 113
121 122 123
131 132 133
211 212 213
221 222 223
231 232 233
311 312 313
321 322 323
331 332 333
(2) This touches upon the use of arrays
#include <iostream> // enables output to console using cout
#include <fstream> // enables output to a file
using namespace std; // enables writing simply cout << instead having to write std::cout <<
void main()
{
// an array is a variable that can represent multiple values
// each differing value is referenced by a number called a subscript
// for example:
// int array[4] declares an integer variable named array of 4 elemental values
// the elements are numbered starting at 0 and are 0, 1, 2, 3
// each element can then be assigned values
// for example array[0] = 1 or array[0] = 10 or whatever
// example - declare an integer array of 4 elements
// then assign values to it using a for loop and display the values
int array[4];
int i;
for (i = 0; i <= 3; ++i) {
array[i] = 10 * i; // assigns value of 10 x i to array[i]
cout << array[i]; // display value of array[i]
if (i < 3) // create a new line if i is less than 3
cout << endl;
}
}
This is the output of the array code snippet
0
10
20
30
(3) This shows an example of integer division
#include <iostream> // enables output to console using cout
#include <fstream> // enables output to a file
using namespace std; // enables writing simply cout << instead having to write std::cout <<
void main()
{
// integer division
// when a numerical value is divided by a whole number there may or may not be a remainder
// for example 23 divided by 3 = 7 with a remainder of 2
// integer division ignores the remainder
// integer division of 23 divided by 3 is represented as 23 / 3 which equals 7
int i = 23;
int j = 3;
cout << "example of integer division" << endl; // outputs message
cout << i << "/" << j << "=" << i / j; // displays i/j=(value of i/j)
}
This is the output of the integer division code snippet
example of integer division
23/3=7
(4) This combines nested for loops, an array, and integer division to output all unbusted player hands to a file.
#include <iostream> // enables output to console using cout
#include <fstream> // enables output to a file
using namespace std; // enables writing simply cout << instead having to write std::cout <<
void main()
{
// use nested loops, array, and integer division to display all possible unbusted player hands
// output to a file named playerHands.txt
// the list will include 10 one card hands (one for each rank)
// and also an empty hand consisting of zero cards for each rank
int c[10]; // 10 element array representing number of ranks 1 to 10 in a player hand
int handNumber = 0; // keep track of number of hands, initialized to 0
int i; // integer variable
ofstream file; // declare a file object of data type ofstream which is defined in fstream
file.open("playerHands.txt"); // open a file named playerHands.txt, overwrite if it already exists
for (c[9] = 21/10; c[9] >= 0; --c[9]) {
for (c[8] = (21-10*c[9])/9; c[8] >= 0; --c[8]) {
for (c[7] = (21-10*c[9]-9*c[8])/8; c[7] >= 0; --c[7]) {
for (c[6] = (21-10*c[9]-9*c[8]-8*c[7])/7; c[6] >=0; --c[6]) {
for (c[5] = (21-10*c[9]-9*c[8]-8*c[7]-7*c[6])/6; c[5] >= 0; --c[5]) {
for (c[4] = (21-10*c[9]-9*c[8]-8*c[7]-7*c[6]-6*c[5])/5; c[4] >= 0; --c[4]) {
for (c[3] = (21-10*c[9]-9*c[8]-8*c[7]-7*c[6]-6*c[5]-5*c[4])/4; c[3] >= 0; --c[3]) {
for (c[2] = (21-10*c[9]-9*c[8]-8*c[7]-7*c[6]-6*c[5]-5*c[4]-4*c[3])/3; c[2] >= 0; --c[2]) {
for (c[1] = (21-10*c[9]-9*c[8]-8*c[7]-7*c[6]-6*c[5]-5*c[4]-4*c[3]-3*c[2])/2; c[1] >= 0; --c[1]) {
for (c[0] = (21-10*c[9]-9*c[8]-8*c[7]-7*c[6]-6*c[5]-5*c[4]-4*c[3]-3*c[2]-2*c[1]); c[0] >= 0; --c[0]) {
handNumber += 1; // increment hand number by 1
file << handNumber << "\t"; // writes hand number followed by tab to file
for (i = 10; i >= 1; --i) { // highest ranks first (10,9,8,7,6,5,4,3,2,1)
file << c[i - 1]; // write value of c[i - 1] to file
// this equals number of rank=(i-1) in player hand for current iteration
if (i > 1)
file << ","; // separates number of each rank by a comma when i is greater than 1
else
file << endl; // write next hand number on next line when i is 1
}
}}}}}}}}}}
file.close(); // close the file
}
This is the output of the playerHands.txt file that was created
1 2,0,0,0,0,0,0,0,0,1
2 2,0,0,0,0,0,0,0,0,0
3 1,1,0,0,0,0,0,0,1,0
4 1,1,0,0,0,0,0,0,0,2
5 1,1,0,0,0,0,0,0,0,1
6 1,1,0,0,0,0,0,0,0,0
7 1,0,1,0,0,0,0,1,0,0
8 1,0,1,0,0,0,0,0,1,1
9 1,0,1,0,0,0,0,0,1,0
10 1,0,1,0,0,0,0,0,0,3
11 1,0,1,0,0,0,0,0,0,2
12 1,0,1,0,0,0,0,0,0,1
13 1,0,1,0,0,0,0,0,0,0
14 1,0,0,1,0,0,1,0,0,0
15 1,0,0,1,0,0,0,1,0,1
16 1,0,0,1,0,0,0,1,0,0
17 1,0,0,1,0,0,0,0,2,0
18 1,0,0,1,0,0,0,0,1,2
19 1,0,0,1,0,0,0,0,1,1
20 1,0,0,1,0,0,0,0,1,0
21 1,0,0,1,0,0,0,0,0,4
22 1,0,0,1,0,0,0,0,0,3
23 1,0,0,1,0,0,0,0,0,2
24 1,0,0,1,0,0,0,0,0,1
25 1,0,0,1,0,0,0,0,0,0
26 1,0,0,0,1,1,0,0,0,0
27 1,0,0,0,1,0,1,0,0,1
28 1,0,0,0,1,0,1,0,0,0
29 1,0,0,0,1,0,0,1,1,0
30 1,0,0,0,1,0,0,1,0,2
31 1,0,0,0,1,0,0,1,0,1
32 1,0,0,0,1,0,0,1,0,0
33 1,0,0,0,1,0,0,0,2,1
34 1,0,0,0,1,0,0,0,2,0
35 1,0,0,0,1,0,0,0,1,3
36 1,0,0,0,1,0,0,0,1,2
37 1,0,0,0,1,0,0,0,1,1
38 1,0,0,0,1,0,0,0,1,0
39 1,0,0,0,1,0,0,0,0,5
40 1,0,0,0,1,0,0,0,0,4
41 1,0,0,0,1,0,0,0,0,3
42 1,0,0,0,1,0,0,0,0,2
43 1,0,0,0,1,0,0,0,0,1
44 1,0,0,0,1,0,0,0,0,0
45 1,0,0,0,0,2,0,0,0,1
46 1,0,0,0,0,2,0,0,0,0
47 1,0,0,0,0,1,1,0,1,0
48 1,0,0,0,0,1,1,0,0,2
49 1,0,0,0,0,1,1,0,0,1
50 1,0,0,0,0,1,1,0,0,0
51 1,0,0,0,0,1,0,2,0,0
52 1,0,0,0,0,1,0,1,1,1
53 1,0,0,0,0,1,0,1,1,0
54 1,0,0,0,0,1,0,1,0,3
55 1,0,0,0,0,1,0,1,0,2
56 1,0,0,0,0,1,0,1,0,1
57 1,0,0,0,0,1,0,1,0,0
58 1,0,0,0,0,1,0,0,3,0
59 1,0,0,0,0,1,0,0,2,2
60 1,0,0,0,0,1,0,0,2,1
61 1,0,0,0,0,1,0,0,2,0
62 1,0,0,0,0,1,0,0,1,4
63 1,0,0,0,0,1,0,0,1,3
64 1,0,0,0,0,1,0,0,1,2
65 1,0,0,0,0,1,0,0,1,1
66 1,0,0,0,0,1,0,0,1,0
67 1,0,0,0,0,1,0,0,0,6
68 1,0,0,0,0,1,0,0,0,5
69 1,0,0,0,0,1,0,0,0,4
70 1,0,0,0,0,1,0,0,0,3
71 1,0,0,0,0,1,0,0,0,2
72 1,0,0,0,0,1,0,0,0,1
73 1,0,0,0,0,1,0,0,0,0
74 1,0,0,0,0,0,2,1,0,0
75 1,0,0,0,0,0,2,0,1,1
76 1,0,0,0,0,0,2,0,1,0
77 1,0,0,0,0,0,2,0,0,3
78 1,0,0,0,0,0,2,0,0,2
79 1,0,0,0,0,0,2,0,0,1
80 1,0,0,0,0,0,2,0,0,0
81 1,0,0,0,0,0,1,2,0,1
82 1,0,0,0,0,0,1,2,0,0
83 1,0,0,0,0,0,1,1,2,0
84 1,0,0,0,0,0,1,1,1,2
85 1,0,0,0,0,0,1,1,1,1
86 1,0,0,0,0,0,1,1,1,0
87 1,0,0,0,0,0,1,1,0,4
88 1,0,0,0,0,0,1,1,0,3
89 1,0,0,0,0,0,1,1,0,2
90 1,0,0,0,0,0,1,1,0,1
91 1,0,0,0,0,0,1,1,0,0
92 1,0,0,0,0,0,1,0,3,1
93 1,0,0,0,0,0,1,0,3,0
94 1,0,0,0,0,0,1,0,2,3
95 1,0,0,0,0,0,1,0,2,2
96 1,0,0,0,0,0,1,0,2,1
97 1,0,0,0,0,0,1,0,2,0
98 1,0,0,0,0,0,1,0,1,5
99 1,0,0,0,0,0,1,0,1,4
100 1,0,0,0,0,0,1,0,1,3
101 1,0,0,0,0,0,1,0,1,2
102 1,0,0,0,0,0,1,0,1,1
103 1,0,0,0,0,0,1,0,1,0
104 1,0,0,0,0,0,1,0,0,7
105 1,0,0,0,0,0,1,0,0,6
106 1,0,0,0,0,0,1,0,0,5
107 1,0,0,0,0,0,1,0,0,4
108 1,0,0,0,0,0,1,0,0,3
109 1,0,0,0,0,0,1,0,0,2
110 1,0,0,0,0,0,1,0,0,1
111 1,0,0,0,0,0,1,0,0,0
112 1,0,0,0,0,0,0,3,1,0
113 1,0,0,0,0,0,0,3,0,2
114 1,0,0,0,0,0,0,3,0,1
115 1,0,0,0,0,0,0,3,0,0
116 1,0,0,0,0,0,0,2,2,1
117 1,0,0,0,0,0,0,2,2,0
118 1,0,0,0,0,0,0,2,1,3
119 1,0,0,0,0,0,0,2,1,2
120 1,0,0,0,0,0,0,2,1,1
121 1,0,0,0,0,0,0,2,1,0
122 1,0,0,0,0,0,0,2,0,5
123 1,0,0,0,0,0,0,2,0,4
124 1,0,0,0,0,0,0,2,0,3
125 1,0,0,0,0,0,0,2,0,2
126 1,0,0,0,0,0,0,2,0,1
127 1,0,0,0,0,0,0,2,0,0
128 1,0,0,0,0,0,0,1,4,0
129 1,0,0,0,0,0,0,1,3,2
130 1,0,0,0,0,0,0,1,3,1
131 1,0,0,0,0,0,0,1,3,0
132 1,0,0,0,0,0,0,1,2,4
133 1,0,0,0,0,0,0,1,2,3
134 1,0,0,0,0,0,0,1,2,2
135 1,0,0,0,0,0,0,1,2,1
136 1,0,0,0,0,0,0,1,2,0
137 1,0,0,0,0,0,0,1,1,6
138 1,0,0,0,0,0,0,1,1,5
139 1,0,0,0,0,0,0,1,1,4
140 1,0,0,0,0,0,0,1,1,3
141 1,0,0,0,0,0,0,1,1,2
142 1,0,0,0,0,0,0,1,1,1
143 1,0,0,0,0,0,0,1,1,0
144 1,0,0,0,0,0,0,1,0,8
145 1,0,0,0,0,0,0,1,0,7
146 1,0,0,0,0,0,0,1,0,6
147 1,0,0,0,0,0,0,1,0,5
148 1,0,0,0,0,0,0,1,0,4
149 1,0,0,0,0,0,0,1,0,3
150 1,0,0,0,0,0,0,1,0,2
151 1,0,0,0,0,0,0,1,0,1
152 1,0,0,0,0,0,0,1,0,0
153 1,0,0,0,0,0,0,0,5,1
154 1,0,0,0,0,0,0,0,5,0
155 1,0,0,0,0,0,0,0,4,3
156 1,0,0,0,0,0,0,0,4,2
157 1,0,0,0,0,0,0,0,4,1
158 1,0,0,0,0,0,0,0,4,0
159 1,0,0,0,0,0,0,0,3,5
160 1,0,0,0,0,0,0,0,3,4
161 1,0,0,0,0,0,0,0,3,3
162 1,0,0,0,0,0,0,0,3,2
163 1,0,0,0,0,0,0,0,3,1
164 1,0,0,0,0,0,0,0,3,0
165 1,0,0,0,0,0,0,0,2,7
166 1,0,0,0,0,0,0,0,2,6
167 1,0,0,0,0,0,0,0,2,5
168 1,0,0,0,0,0,0,0,2,4
169 1,0,0,0,0,0,0,0,2,3
170 1,0,0,0,0,0,0,0,2,2
171 1,0,0,0,0,0,0,0,2,1
172 1,0,0,0,0,0,0,0,2,0
173 1,0,0,0,0,0,0,0,1,9
174 1,0,0,0,0,0,0,0,1,8
175 1,0,0,0,0,0,0,0,1,7
176 1,0,0,0,0,0,0,0,1,6
177 1,0,0,0,0,0,0,0,1,5
178 1,0,0,0,0,0,0,0,1,4
179 1,0,0,0,0,0,0,0,1,3
180 1,0,0,0,0,0,0,0,1,2
181 1,0,0,0,0,0,0,0,1,1
182 1,0,0,0,0,0,0,0,1,0
183 1,0,0,0,0,0,0,0,0,11
184 1,0,0,0,0,0,0,0,0,10
185 1,0,0,0,0,0,0,0,0,9
186 1,0,0,0,0,0,0,0,0,8
187 1,0,0,0,0,0,0,0,0,7
188 1,0,0,0,0,0,0,0,0,6
189 1,0,0,0,0,0,0,0,0,5
190 1,0,0,0,0,0,0,0,0,4
191 1,0,0,0,0,0,0,0,0,3
192 1,0,0,0,0,0,0,0,0,2
193 1,0,0,0,0,0,0,0,0,1
194 1,0,0,0,0,0,0,0,0,0
195 0,2,0,0,0,0,0,1,0,0
196 0,2,0,0,0,0,0,0,1,1
197 0,2,0,0,0,0,0,0,1,0
198 0,2,0,0,0,0,0,0,0,3
199 0,2,0,0,0,0,0,0,0,2
200 0,2,0,0,0,0,0,0,0,1
201 0,2,0,0,0,0,0,0,0,0
202 0,1,1,0,0,0,1,0,0,0
203 0,1,1,0,0,0,0,1,0,1
204 0,1,1,0,0,0,0,1,0,0
205 0,1,1,0,0,0,0,0,2,0
206 0,1,1,0,0,0,0,0,1,2
207 0,1,1,0,0,0,0,0,1,1
208 0,1,1,0,0,0,0,0,1,0
209 0,1,1,0,0,0,0,0,0,4
210 0,1,1,0,0,0,0,0,0,3
211 0,1,1,0,0,0,0,0,0,2
212 0,1,1,0,0,0,0,0,0,1
213 0,1,1,0,0,0,0,0,0,0
214 0,1,0,1,0,1,0,0,0,0
215 0,1,0,1,0,0,1,0,0,1
216 0,1,0,1,0,0,1,0,0,0
217 0,1,0,1,0,0,0,1,1,0
218 0,1,0,1,0,0,0,1,0,2
219 0,1,0,1,0,0,0,1,0,1
220 0,1,0,1,0,0,0,1,0,0
221 0,1,0,1,0,0,0,0,2,1
222 0,1,0,1,0,0,0,0,2,0
223 0,1,0,1,0,0,0,0,1,3
224 0,1,0,1,0,0,0,0,1,2
225 0,1,0,1,0,0,0,0,1,1
226 0,1,0,1,0,0,0,0,1,0
227 0,1,0,1,0,0,0,0,0,5
228 0,1,0,1,0,0,0,0,0,4
229 0,1,0,1,0,0,0,0,0,3
230 0,1,0,1,0,0,0,0,0,2
231 0,1,0,1,0,0,0,0,0,1
232 0,1,0,1,0,0,0,0,0,0
233 0,1,0,0,2,0,0,0,0,0
234 0,1,0,0,1,1,0,0,0,1
235 0,1,0,0,1,1,0,0,0,0
236 0,1,0,0,1,0,1,0,1,0
237 0,1,0,0,1,0,1,0,0,2
238 0,1,0,0,1,0,1,0,0,1
239 0,1,0,0,1,0,1,0,0,0
240 0,1,0,0,1,0,0,2,0,0
241 0,1,0,0,1,0,0,1,1,1
242 0,1,0,0,1,0,0,1,1,0
243 0,1,0,0,1,0,0,1,0,3
244 0,1,0,0,1,0,0,1,0,2
245 0,1,0,0,1,0,0,1,0,1
246 0,1,0,0,1,0,0,1,0,0
247 0,1,0,0,1,0,0,0,3,0
248 0,1,0,0,1,0,0,0,2,2
249 0,1,0,0,1,0,0,0,2,1
250 0,1,0,0,1,0,0,0,2,0
251 0,1,0,0,1,0,0,0,1,4
252 0,1,0,0,1,0,0,0,1,3
253 0,1,0,0,1,0,0,0,1,2
254 0,1,0,0,1,0,0,0,1,1
255 0,1,0,0,1,0,0,0,1,0
256 0,1,0,0,1,0,0,0,0,6
257 0,1,0,0,1,0,0,0,0,5
258 0,1,0,0,1,0,0,0,0,4
259 0,1,0,0,1,0,0,0,0,3
260 0,1,0,0,1,0,0,0,0,2
261 0,1,0,0,1,0,0,0,0,1
262 0,1,0,0,1,0,0,0,0,0
263 0,1,0,0,0,2,0,0,1,0
264 0,1,0,0,0,2,0,0,0,2
265 0,1,0,0,0,2,0,0,0,1
266 0,1,0,0,0,2,0,0,0,0
267 0,1,0,0,0,1,1,1,0,0
268 0,1,0,0,0,1,1,0,1,1
269 0,1,0,0,0,1,1,0,1,0
270 0,1,0,0,0,1,1,0,0,3
271 0,1,0,0,0,1,1,0,0,2
272 0,1,0,0,0,1,1,0,0,1
273 0,1,0,0,0,1,1,0,0,0
274 0,1,0,0,0,1,0,2,0,1
275 0,1,0,0,0,1,0,2,0,0
276 0,1,0,0,0,1,0,1,2,0
277 0,1,0,0,0,1,0,1,1,2
278 0,1,0,0,0,1,0,1,1,1
279 0,1,0,0,0,1,0,1,1,0
280 0,1,0,0,0,1,0,1,0,4
281 0,1,0,0,0,1,0,1,0,3
282 0,1,0,0,0,1,0,1,0,2
283 0,1,0,0,0,1,0,1,0,1
284 0,1,0,0,0,1,0,1,0,0
285 0,1,0,0,0,1,0,0,3,1
286 0,1,0,0,0,1,0,0,3,0
287 0,1,0,0,0,1,0,0,2,3
288 0,1,0,0,0,1,0,0,2,2
289 0,1,0,0,0,1,0,0,2,1
290 0,1,0,0,0,1,0,0,2,0
291 0,1,0,0,0,1,0,0,1,5
292 0,1,0,0,0,1,0,0,1,4
293 0,1,0,0,0,1,0,0,1,3
294 0,1,0,0,0,1,0,0,1,2
295 0,1,0,0,0,1,0,0,1,1
296 0,1,0,0,0,1,0,0,1,0
297 0,1,0,0,0,1,0,0,0,7
298 0,1,0,0,0,1,0,0,0,6
299 0,1,0,0,0,1,0,0,0,5
300 0,1,0,0,0,1,0,0,0,4
301 0,1,0,0,0,1,0,0,0,3
302 0,1,0,0,0,1,0,0,0,2
303 0,1,0,0,0,1,0,0,0,1
304 0,1,0,0,0,1,0,0,0,0
305 0,1,0,0,0,0,3,0,0,0
306 0,1,0,0,0,0,2,1,0,1
307 0,1,0,0,0,0,2,1,0,0
308 0,1,0,0,0,0,2,0,2,0
309 0,1,0,0,0,0,2,0,1,2
310 0,1,0,0,0,0,2,0,1,1
311 0,1,0,0,0,0,2,0,1,0
312 0,1,0,0,0,0,2,0,0,4
313 0,1,0,0,0,0,2,0,0,3
314 0,1,0,0,0,0,2,0,0,2
315 0,1,0,0,0,0,2,0,0,1
316 0,1,0,0,0,0,2,0,0,0
317 0,1,0,0,0,0,1,2,1,0
318 0,1,0,0,0,0,1,2,0,2
319 0,1,0,0,0,0,1,2,0,1
320 0,1,0,0,0,0,1,2,0,0
321 0,1,0,0,0,0,1,1,2,1
322 0,1,0,0,0,0,1,1,2,0
323 0,1,0,0,0,0,1,1,1,3
324 0,1,0,0,0,0,1,1,1,2
325 0,1,0,0,0,0,1,1,1,1
326 0,1,0,0,0,0,1,1,1,0
327 0,1,0,0,0,0,1,1,0,5
328 0,1,0,0,0,0,1,1,0,4
329 0,1,0,0,0,0,1,1,0,3
330 0,1,0,0,0,0,1,1,0,2
331 0,1,0,0,0,0,1,1,0,1
332 0,1,0,0,0,0,1,1,0,0
333 0,1,0,0,0,0,1,0,4,0
334 0,1,0,0,0,0,1,0,3,2
335 0,1,0,0,0,0,1,0,3,1
336 0,1,0,0,0,0,1,0,3,0
337 0,1,0,0,0,0,1,0,2,4
338 0,1,0,0,0,0,1,0,2,3
339 0,1,0,0,0,0,1,0,2,2
340 0,1,0,0,0,0,1,0,2,1
341 0,1,0,0,0,0,1,0,2,0
342 0,1,0,0,0,0,1,0,1,6
343 0,1,0,0,0,0,1,0,1,5
344 0,1,0,0,0,0,1,0,1,4
345 0,1,0,0,0,0,1,0,1,3
346 0,1,0,0,0,0,1,0,1,2
347 0,1,0,0,0,0,1,0,1,1
348 0,1,0,0,0,0,1,0,1,0
349 0,1,0,0,0,0,1,0,0,8
350 0,1,0,0,0,0,1,0,0,7
351 0,1,0,0,0,0,1,0,0,6
352 0,1,0,0,0,0,1,0,0,5
353 0,1,0,0,0,0,1,0,0,4
354 0,1,0,0,0,0,1,0,0,3
355 0,1,0,0,0,0,1,0,0,2
356 0,1,0,0,0,0,1,0,0,1
357 0,1,0,0,0,0,1,0,0,0
358 0,1,0,0,0,0,0,4,0,0
359 0,1,0,0,0,0,0,3,1,1
360 0,1,0,0,0,0,0,3,1,0
361 0,1,0,0,0,0,0,3,0,3
362 0,1,0,0,0,0,0,3,0,2
363 0,1,0,0,0,0,0,3,0,1
364 0,1,0,0,0,0,0,3,0,0
365 0,1,0,0,0,0,0,2,3,0
366 0,1,0,0,0,0,0,2,2,2
367 0,1,0,0,0,0,0,2,2,1
368 0,1,0,0,0,0,0,2,2,0
369 0,1,0,0,0,0,0,2,1,4
370 0,1,0,0,0,0,0,2,1,3
371 0,1,0,0,0,0,0,2,1,2
372 0,1,0,0,0,0,0,2,1,1
373 0,1,0,0,0,0,0,2,1,0
374 0,1,0,0,0,0,0,2,0,6
375 0,1,0,0,0,0,0,2,0,5
376 0,1,0,0,0,0,0,2,0,4
377 0,1,0,0,0,0,0,2,0,3
378 0,1,0,0,0,0,0,2,0,2
379 0,1,0,0,0,0,0,2,0,1
380 0,1,0,0,0,0,0,2,0,0
381 0,1,0,0,0,0,0,1,4,1
382 0,1,0,0,0,0,0,1,4,0
383 0,1,0,0,0,0,0,1,3,3
384 0,1,0,0,0,0,0,1,3,2
385 0,1,0,0,0,0,0,1,3,1
386 0,1,0,0,0,0,0,1,3,0
387 0,1,0,0,0,0,0,1,2,5
388 0,1,0,0,0,0,0,1,2,4
389 0,1,0,0,0,0,0,1,2,3
390 0,1,0,0,0,0,0,1,2,2
391 0,1,0,0,0,0,0,1,2,1
392 0,1,0,0,0,0,0,1,2,0
393 0,1,0,0,0,0,0,1,1,7
394 0,1,0,0,0,0,0,1,1,6
395 0,1,0,0,0,0,0,1,1,5
396 0,1,0,0,0,0,0,1,1,4
397 0,1,0,0,0,0,0,1,1,3
398 0,1,0,0,0,0,0,1,1,2
399 0,1,0,0,0,0,0,1,1,1
400 0,1,0,0,0,0,0,1,1,0
401 0,1,0,0,0,0,0,1,0,9
402 0,1,0,0,0,0,0,1,0,8
403 0,1,0,0,0,0,0,1,0,7
404 0,1,0,0,0,0,0,1,0,6
405 0,1,0,0,0,0,0,1,0,5
406 0,1,0,0,0,0,0,1,0,4
407 0,1,0,0,0,0,0,1,0,3
408 0,1,0,0,0,0,0,1,0,2
409 0,1,0,0,0,0,0,1,0,1
410 0,1,0,0,0,0,0,1,0,0
411 0,1,0,0,0,0,0,0,6,0
412 0,1,0,0,0,0,0,0,5,2
413 0,1,0,0,0,0,0,0,5,1
414 0,1,0,0,0,0,0,0,5,0
415 0,1,0,0,0,0,0,0,4,4
416 0,1,0,0,0,0,0,0,4,3
417 0,1,0,0,0,0,0,0,4,2
418 0,1,0,0,0,0,0,0,4,1
419 0,1,0,0,0,0,0,0,4,0
420 0,1,0,0,0,0,0,0,3,6
421 0,1,0,0,0,0,0,0,3,5
422 0,1,0,0,0,0,0,0,3,4
423 0,1,0,0,0,0,0,0,3,3
424 0,1,0,0,0,0,0,0,3,2
425 0,1,0,0,0,0,0,0,3,1
426 0,1,0,0,0,0,0,0,3,0
427 0,1,0,0,0,0,0,0,2,8
428 0,1,0,0,0,0,0,0,2,7
429 0,1,0,0,0,0,0,0,2,6
430 0,1,0,0,0,0,0,0,2,5
431 0,1,0,0,0,0,0,0,2,4
432 0,1,0,0,0,0,0,0,2,3
433 0,1,0,0,0,0,0,0,2,2
434 0,1,0,0,0,0,0,0,2,1
435 0,1,0,0,0,0,0,0,2,0
436 0,1,0,0,0,0,0,0,1,10
437 0,1,0,0,0,0,0,0,1,9
438 0,1,0,0,0,0,0,0,1,8
439 0,1,0,0,0,0,0,0,1,7
440 0,1,0,0,0,0,0,0,1,6
441 0,1,0,0,0,0,0,0,1,5
442 0,1,0,0,0,0,0,0,1,4
443 0,1,0,0,0,0,0,0,1,3
444 0,1,0,0,0,0,0,0,1,2
445 0,1,0,0,0,0,0,0,1,1
446 0,1,0,0,0,0,0,0,1,0
447 0,1,0,0,0,0,0,0,0,12
448 0,1,0,0,0,0,0,0,0,11
449 0,1,0,0,0,0,0,0,0,10
450 0,1,0,0,0,0,0,0,0,9
451 0,1,0,0,0,0,0,0,0,8
452 0,1,0,0,0,0,0,0,0,7
453 0,1,0,0,0,0,0,0,0,6
454 0,1,0,0,0,0,0,0,0,5
455 0,1,0,0,0,0,0,0,0,4
456 0,1,0,0,0,0,0,0,0,3
457 0,1,0,0,0,0,0,0,0,2
458 0,1,0,0,0,0,0,0,0,1
459 0,1,0,0,0,0,0,0,0,0
460 0,0,2,0,0,1,0,0,0,0
461 0,0,2,0,0,0,1,0,0,1
462 0,0,2,0,0,0,1,0,0,0
463 0,0,2,0,0,0,0,1,1,0
464 0,0,2,0,0,0,0,1,0,2
465 0,0,2,0,0,0,0,1,0,1
466 0,0,2,0,0,0,0,1,0,0
467 0,0,2,0,0,0,0,0,2,1
468 0,0,2,0,0,0,0,0,2,0
469 0,0,2,0,0,0,0,0,1,3
470 0,0,2,0,0,0,0,0,1,2
471 0,0,2,0,0,0,0,0,1,1
472 0,0,2,0,0,0,0,0,1,0
473 0,0,2,0,0,0,0,0,0,5
474 0,0,2,0,0,0,0,0,0,4
475 0,0,2,0,0,0,0,0,0,3
476 0,0,2,0,0,0,0,0,0,2
477 0,0,2,0,0,0,0,0,0,1
478 0,0,2,0,0,0,0,0,0,0
479 0,0,1,1,1,0,0,0,0,0
480 0,0,1,1,0,1,0,0,0,1
481 0,0,1,1,0,1,0,0,0,0
482 0,0,1,1,0,0,1,0,1,0
483 0,0,1,1,0,0,1,0,0,2
484 0,0,1,1,0,0,1,0,0,1
485 0,0,1,1,0,0,1,0,0,0
486 0,0,1,1,0,0,0,2,0,0
487 0,0,1,1,0,0,0,1,1,1
488 0,0,1,1,0,0,0,1,1,0
489 0,0,1,1,0,0,0,1,0,3
490 0,0,1,1,0,0,0,1,0,2
491 0,0,1,1,0,0,0,1,0,1
492 0,0,1,1,0,0,0,1,0,0
493 0,0,1,1,0,0,0,0,3,0
494 0,0,1,1,0,0,0,0,2,2
495 0,0,1,1,0,0,0,0,2,1
496 0,0,1,1,0,0,0,0,2,0
497 0,0,1,1,0,0,0,0,1,4
498 0,0,1,1,0,0,0,0,1,3
499 0,0,1,1,0,0,0,0,1,2
500 0,0,1,1,0,0,0,0,1,1
501 0,0,1,1,0,0,0,0,1,0
502 0,0,1,1,0,0,0,0,0,6
503 0,0,1,1,0,0,0,0,0,5
504 0,0,1,1,0,0,0,0,0,4
505 0,0,1,1,0,0,0,0,0,3
506 0,0,1,1,0,0,0,0,0,2
507 0,0,1,1,0,0,0,0,0,1
508 0,0,1,1,0,0,0,0,0,0
509 0,0,1,0,2,0,0,0,0,1
510 0,0,1,0,2,0,0,0,0,0
511 0,0,1,0,1,1,0,0,1,0
512 0,0,1,0,1,1,0,0,0,2
513 0,0,1,0,1,1,0,0,0,1
514 0,0,1,0,1,1,0,0,0,0
515 0,0,1,0,1,0,1,1,0,0
516 0,0,1,0,1,0,1,0,1,1
517 0,0,1,0,1,0,1,0,1,0
518 0,0,1,0,1,0,1,0,0,3
519 0,0,1,0,1,0,1,0,0,2
520 0,0,1,0,1,0,1,0,0,1
521 0,0,1,0,1,0,1,0,0,0
522 0,0,1,0,1,0,0,2,0,1
523 0,0,1,0,1,0,0,2,0,0
524 0,0,1,0,1,0,0,1,2,0
525 0,0,1,0,1,0,0,1,1,2
526 0,0,1,0,1,0,0,1,1,1
527 0,0,1,0,1,0,0,1,1,0
528 0,0,1,0,1,0,0,1,0,4
529 0,0,1,0,1,0,0,1,0,3
530 0,0,1,0,1,0,0,1,0,2
531 0,0,1,0,1,0,0,1,0,1
532 0,0,1,0,1,0,0,1,0,0
533 0,0,1,0,1,0,0,0,3,1
534 0,0,1,0,1,0,0,0,3,0
535 0,0,1,0,1,0,0,0,2,3
536 0,0,1,0,1,0,0,0,2,2
537 0,0,1,0,1,0,0,0,2,1
538 0,0,1,0,1,0,0,0,2,0
539 0,0,1,0,1,0,0,0,1,5
540 0,0,1,0,1,0,0,0,1,4
541 0,0,1,0,1,0,0,0,1,3
542 0,0,1,0,1,0,0,0,1,2
543 0,0,1,0,1,0,0,0,1,1
544 0,0,1,0,1,0,0,0,1,0
545 0,0,1,0,1,0,0,0,0,7
546 0,0,1,0,1,0,0,0,0,6
547 0,0,1,0,1,0,0,0,0,5
548 0,0,1,0,1,0,0,0,0,4
549 0,0,1,0,1,0,0,0,0,3
550 0,0,1,0,1,0,0,0,0,2
551 0,0,1,0,1,0,0,0,0,1
552 0,0,1,0,1,0,0,0,0,0
553 0,0,1,0,0,2,0,1,0,0
554 0,0,1,0,0,2,0,0,1,1
555 0,0,1,0,0,2,0,0,1,0
556 0,0,1,0,0,2,0,0,0,3
557 0,0,1,0,0,2,0,0,0,2
558 0,0,1,0,0,2,0,0,0,1
559 0,0,1,0,0,2,0,0,0,0
560 0,0,1,0,0,1,2,0,0,0
561 0,0,1,0,0,1,1,1,0,1
562 0,0,1,0,0,1,1,1,0,0
563 0,0,1,0,0,1,1,0,2,0
564 0,0,1,0,0,1,1,0,1,2
565 0,0,1,0,0,1,1,0,1,1
566 0,0,1,0,0,1,1,0,1,0
567 0,0,1,0,0,1,1,0,0,4
568 0,0,1,0,0,1,1,0,0,3
569 0,0,1,0,0,1,1,0,0,2
570 0,0,1,0,0,1,1,0,0,1
571 0,0,1,0,0,1,1,0,0,0
572 0,0,1,0,0,1,0,2,1,0
573 0,0,1,0,0,1,0,2,0,2
574 0,0,1,0,0,1,0,2,0,1
575 0,0,1,0,0,1,0,2,0,0
576 0,0,1,0,0,1,0,1,2,1
577 0,0,1,0,0,1,0,1,2,0
578 0,0,1,0,0,1,0,1,1,3
579 0,0,1,0,0,1,0,1,1,2
580 0,0,1,0,0,1,0,1,1,1
581 0,0,1,0,0,1,0,1,1,0
582 0,0,1,0,0,1,0,1,0,5
583 0,0,1,0,0,1,0,1,0,4
584 0,0,1,0,0,1,0,1,0,3
585 0,0,1,0,0,1,0,1,0,2
586 0,0,1,0,0,1,0,1,0,1
587 0,0,1,0,0,1,0,1,0,0
588 0,0,1,0,0,1,0,0,4,0
589 0,0,1,0,0,1,0,0,3,2
590 0,0,1,0,0,1,0,0,3,1
591 0,0,1,0,0,1,0,0,3,0
592 0,0,1,0,0,1,0,0,2,4
593 0,0,1,0,0,1,0,0,2,3
594 0,0,1,0,0,1,0,0,2,2
595 0,0,1,0,0,1,0,0,2,1
596 0,0,1,0,0,1,0,0,2,0
597 0,0,1,0,0,1,0,0,1,6
598 0,0,1,0,0,1,0,0,1,5
599 0,0,1,0,0,1,0,0,1,4
600 0,0,1,0,0,1,0,0,1,3
601 0,0,1,0,0,1,0,0,1,2
602 0,0,1,0,0,1,0,0,1,1
603 0,0,1,0,0,1,0,0,1,0
604 0,0,1,0,0,1,0,0,0,8
605 0,0,1,0,0,1,0,0,0,7
606 0,0,1,0,0,1,0,0,0,6
607 0,0,1,0,0,1,0,0,0,5
608 0,0,1,0,0,1,0,0,0,4
609 0,0,1,0,0,1,0,0,0,3
610 0,0,1,0,0,1,0,0,0,2
611 0,0,1,0,0,1,0,0,0,1
612 0,0,1,0,0,1,0,0,0,0
613 0,0,1,0,0,0,3,0,0,1
614 0,0,1,0,0,0,3,0,0,0
615 0,0,1,0,0,0,2,1,1,0
616 0,0,1,0,0,0,2,1,0,2
617 0,0,1,0,0,0,2,1,0,1
618 0,0,1,0,0,0,2,1,0,0
619 0,0,1,0,0,0,2,0,2,1
620 0,0,1,0,0,0,2,0,2,0
621 0,0,1,0,0,0,2,0,1,3
622 0,0,1,0,0,0,2,0,1,2
623 0,0,1,0,0,0,2,0,1,1
624 0,0,1,0,0,0,2,0,1,0
625 0,0,1,0,0,0,2,0,0,5
626 0,0,1,0,0,0,2,0,0,4
627 0,0,1,0,0,0,2,0,0,3
628 0,0,1,0,0,0,2,0,0,2
629 0,0,1,0,0,0,2,0,0,1
630 0,0,1,0,0,0,2,0,0,0
631 0,0,1,0,0,0,1,3,0,0
632 0,0,1,0,0,0,1,2,1,1
633 0,0,1,0,0,0,1,2,1,0
634 0,0,1,0,0,0,1,2,0,3
635 0,0,1,0,0,0,1,2,0,2
636 0,0,1,0,0,0,1,2,0,1
637 0,0,1,0,0,0,1,2,0,0
638 0,0,1,0,0,0,1,1,3,0
639 0,0,1,0,0,0,1,1,2,2
640 0,0,1,0,0,0,1,1,2,1
641 0,0,1,0,0,0,1,1,2,0
642 0,0,1,0,0,0,1,1,1,4
643 0,0,1,0,0,0,1,1,1,3
644 0,0,1,0,0,0,1,1,1,2
645 0,0,1,0,0,0,1,1,1,1
646 0,0,1,0,0,0,1,1,1,0
647 0,0,1,0,0,0,1,1,0,6
648 0,0,1,0,0,0,1,1,0,5
649 0,0,1,0,0,0,1,1,0,4
650 0,0,1,0,0,0,1,1,0,3
651 0,0,1,0,0,0,1,1,0,2
652 0,0,1,0,0,0,1,1,0,1
653 0,0,1,0,0,0,1,1,0,0
654 0,0,1,0,0,0,1,0,4,1
655 0,0,1,0,0,0,1,0,4,0
656 0,0,1,0,0,0,1,0,3,3
657 0,0,1,0,0,0,1,0,3,2
658 0,0,1,0,0,0,1,0,3,1
659 0,0,1,0,0,0,1,0,3,0
660 0,0,1,0,0,0,1,0,2,5
661 0,0,1,0,0,0,1,0,2,4
662 0,0,1,0,0,0,1,0,2,3
663 0,0,1,0,0,0,1,0,2,2
664 0,0,1,0,0,0,1,0,2,1
665 0,0,1,0,0,0,1,0,2,0
666 0,0,1,0,0,0,1,0,1,7
667 0,0,1,0,0,0,1,0,1,6
668 0,0,1,0,0,0,1,0,1,5
669 0,0,1,0,0,0,1,0,1,4
670 0,0,1,0,0,0,1,0,1,3
671 0,0,1,0,0,0,1,0,1,2
672 0,0,1,0,0,0,1,0,1,1
673 0,0,1,0,0,0,1,0,1,0
674 0,0,1,0,0,0,1,0,0,9
675 0,0,1,0,0,0,1,0,0,8
676 0,0,1,0,0,0,1,0,0,7
677 0,0,1,0,0,0,1,0,0,6
678 0,0,1,0,0,0,1,0,0,5
679 0,0,1,0,0,0,1,0,0,4
680 0,0,1,0,0,0,1,0,0,3
681 0,0,1,0,0,0,1,0,0,2
682 0,0,1,0,0,0,1,0,0,1
683 0,0,1,0,0,0,1,0,0,0
684 0,0,1,0,0,0,0,4,0,1
685 0,0,1,0,0,0,0,4,0,0
686 0,0,1,0,0,0,0,3,2,0
687 0,0,1,0,0,0,0,3,1,2
688 0,0,1,0,0,0,0,3,1,1
689 0,0,1,0,0,0,0,3,1,0
690 0,0,1,0,0,0,0,3,0,4
691 0,0,1,0,0,0,0,3,0,3
692 0,0,1,0,0,0,0,3,0,2
693 0,0,1,0,0,0,0,3,0,1
694 0,0,1,0,0,0,0,3,0,0
695 0,0,1,0,0,0,0,2,3,1
696 0,0,1,0,0,0,0,2,3,0
697 0,0,1,0,0,0,0,2,2,3
698 0,0,1,0,0,0,0,2,2,2
699 0,0,1,0,0,0,0,2,2,1
700 0,0,1,0,0,0,0,2,2,0
701 0,0,1,0,0,0,0,2,1,5
702 0,0,1,0,0,0,0,2,1,4
703 0,0,1,0,0,0,0,2,1,3
704 0,0,1,0,0,0,0,2,1,2
705 0,0,1,0,0,0,0,2,1,1
706 0,0,1,0,0,0,0,2,1,0
707 0,0,1,0,0,0,0,2,0,7
708 0,0,1,0,0,0,0,2,0,6
709 0,0,1,0,0,0,0,2,0,5
710 0,0,1,0,0,0,0,2,0,4
711 0,0,1,0,0,0,0,2,0,3
712 0,0,1,0,0,0,0,2,0,2
713 0,0,1,0,0,0,0,2,0,1
714 0,0,1,0,0,0,0,2,0,0
715 0,0,1,0,0,0,0,1,5,0
716 0,0,1,0,0,0,0,1,4,2
717 0,0,1,0,0,0,0,1,4,1
718 0,0,1,0,0,0,0,1,4,0
719 0,0,1,0,0,0,0,1,3,4
720 0,0,1,0,0,0,0,1,3,3
721 0,0,1,0,0,0,0,1,3,2
722 0,0,1,0,0,0,0,1,3,1
723 0,0,1,0,0,0,0,1,3,0
724 0,0,1,0,0,0,0,1,2,6
725 0,0,1,0,0,0,0,1,2,5
726 0,0,1,0,0,0,0,1,2,4
727 0,0,1,0,0,0,0,1,2,3
728 0,0,1,0,0,0,0,1,2,2
729 0,0,1,0,0,0,0,1,2,1
730 0,0,1,0,0,0,0,1,2,0
731 0,0,1,0,0,0,0,1,1,8
732 0,0,1,0,0,0,0,1,1,7
733 0,0,1,0,0,0,0,1,1,6
734 0,0,1,0,0,0,0,1,1,5
735 0,0,1,0,0,0,0,1,1,4
736 0,0,1,0,0,0,0,1,1,3
737 0,0,1,0,0,0,0,1,1,2
738 0,0,1,0,0,0,0,1,1,1
739 0,0,1,0,0,0,0,1,1,0
740 0,0,1,0,0,0,0,1,0,10
741 0,0,1,0,0,0,0,1,0,9
742 0,0,1,0,0,0,0,1,0,8
743 0,0,1,0,0,0,0,1,0,7
744 0,0,1,0,0,0,0,1,0,6
745 0,0,1,0,0,0,0,1,0,5
746 0,0,1,0,0,0,0,1,0,4
747 0,0,1,0,0,0,0,1,0,3
748 0,0,1,0,0,0,0,1,0,2
749 0,0,1,0,0,0,0,1,0,1
750 0,0,1,0,0,0,0,1,0,0
751 0,0,1,0,0,0,0,0,6,1
752 0,0,1,0,0,0,0,0,6,0
753 0,0,1,0,0,0,0,0,5,3
754 0,0,1,0,0,0,0,0,5,2
755 0,0,1,0,0,0,0,0,5,1
756 0,0,1,0,0,0,0,0,5,0
757 0,0,1,0,0,0,0,0,4,5
758 0,0,1,0,0,0,0,0,4,4
759 0,0,1,0,0,0,0,0,4,3
760 0,0,1,0,0,0,0,0,4,2
761 0,0,1,0,0,0,0,0,4,1
762 0,0,1,0,0,0,0,0,4,0
763 0,0,1,0,0,0,0,0,3,7
764 0,0,1,0,0,0,0,0,3,6
765 0,0,1,0,0,0,0,0,3,5
766 0,0,1,0,0,0,0,0,3,4
767 0,0,1,0,0,0,0,0,3,3
768 0,0,1,0,0,0,0,0,3,2
769 0,0,1,0,0,0,0,0,3,1
770 0,0,1,0,0,0,0,0,3,0
771 0,0,1,0,0,0,0,0,2,9
772 0,0,1,0,0,0,0,0,2,8
773 0,0,1,0,0,0,0,0,2,7
774 0,0,1,0,0,0,0,0,2,6
775 0,0,1,0,0,0,0,0,2,5
776 0,0,1,0,0,0,0,0,2,4
777 0,0,1,0,0,0,0,0,2,3
778 0,0,1,0,0,0,0,0,2,2
779 0,0,1,0,0,0,0,0,2,1
780 0,0,1,0,0,0,0,0,2,0
781 0,0,1,0,0,0,0,0,1,11
782 0,0,1,0,0,0,0,0,1,10
783 0,0,1,0,0,0,0,0,1,9
784 0,0,1,0,0,0,0,0,1,8
785 0,0,1,0,0,0,0,0,1,7
786 0,0,1,0,0,0,0,0,1,6
787 0,0,1,0,0,0,0,0,1,5
788 0,0,1,0,0,0,0,0,1,4
789 0,0,1,0,0,0,0,0,1,3
790 0,0,1,0,0,0,0,0,1,2
791 0,0,1,0,0,0,0,0,1,1
792 0,0,1,0,0,0,0,0,1,0
793 0,0,1,0,0,0,0,0,0,13
794 0,0,1,0,0,0,0,0,0,12
795 0,0,1,0,0,0,0,0,0,11
796 0,0,1,0,0,0,0,0,0,10
797 0,0,1,0,0,0,0,0,0,9
798 0,0,1,0,0,0,0,0,0,8
799 0,0,1,0,0,0,0,0,0,7
800 0,0,1,0,0,0,0,0,0,6
801 0,0,1,0,0,0,0,0,0,5
802 0,0,1,0,0,0,0,0,0,4
803 0,0,1,0,0,0,0,0,0,3
804 0,0,1,0,0,0,0,0,0,2
805 0,0,1,0,0,0,0,0,0,1
806 0,0,1,0,0,0,0,0,0,0
807 0,0,0,3,0,0,0,0,0,0
808 0,0,0,2,1,0,0,0,0,1
809 0,0,0,2,1,0,0,0,0,0
810 0,0,0,2,0,1,0,0,1,0
811 0,0,0,2,0,1,0,0,0,2
812 0,0,0,2,0,1,0,0,0,1
813 0,0,0,2,0,1,0,0,0,0
814 0,0,0,2,0,0,1,1,0,0
815 0,0,0,2,0,0,1,0,1,1
816 0,0,0,2,0,0,1,0,1,0
817 0,0,0,2,0,0,1,0,0,3
818 0,0,0,2,0,0,1,0,0,2
819 0,0,0,2,0,0,1,0,0,1
820 0,0,0,2,0,0,1,0,0,0
821 0,0,0,2,0,0,0,2,0,1
822 0,0,0,2,0,0,0,2,0,0
823 0,0,0,2,0,0,0,1,2,0
824 0,0,0,2,0,0,0,1,1,2
825 0,0,0,2,0,0,0,1,1,1
826 0,0,0,2,0,0,0,1,1,0
827 0,0,0,2,0,0,0,1,0,4
828 0,0,0,2,0,0,0,1,0,3
829 0,0,0,2,0,0,0,1,0,2
830 0,0,0,2,0,0,0,1,0,1
831 0,0,0,2,0,0,0,1,0,0
832 0,0,0,2,0,0,0,0,3,1
833 0,0,0,2,0,0,0,0,3,0
834 0,0,0,2,0,0,0,0,2,3
835 0,0,0,2,0,0,0,0,2,2
836 0,0,0,2,0,0,0,0,2,1
837 0,0,0,2,0,0,0,0,2,0
838 0,0,0,2,0,0,0,0,1,5
839 0,0,0,2,0,0,0,0,1,4
840 0,0,0,2,0,0,0,0,1,3
841 0,0,0,2,0,0,0,0,1,2
842 0,0,0,2,0,0,0,0,1,1
843 0,0,0,2,0,0,0,0,1,0
844 0,0,0,2,0,0,0,0,0,7
845 0,0,0,2,0,0,0,0,0,6
846 0,0,0,2,0,0,0,0,0,5
847 0,0,0,2,0,0,0,0,0,4
848 0,0,0,2,0,0,0,0,0,3
849 0,0,0,2,0,0,0,0,0,2
850 0,0,0,2,0,0,0,0,0,1
851 0,0,0,2,0,0,0,0,0,0
852 0,0,0,1,2,0,0,0,1,0
853 0,0,0,1,2,0,0,0,0,2
854 0,0,0,1,2,0,0,0,0,1
855 0,0,0,1,2,0,0,0,0,0
856 0,0,0,1,1,1,0,1,0,0
857 0,0,0,1,1,1,0,0,1,1
858 0,0,0,1,1,1,0,0,1,0
859 0,0,0,1,1,1,0,0,0,3
860 0,0,0,1,1,1,0,0,0,2
861 0,0,0,1,1,1,0,0,0,1
862 0,0,0,1,1,1,0,0,0,0
863 0,0,0,1,1,0,2,0,0,0
864 0,0,0,1,1,0,1,1,0,1
865 0,0,0,1,1,0,1,1,0,0
866 0,0,0,1,1,0,1,0,2,0
867 0,0,0,1,1,0,1,0,1,2
868 0,0,0,1,1,0,1,0,1,1
869 0,0,0,1,1,0,1,0,1,0
870 0,0,0,1,1,0,1,0,0,4
871 0,0,0,1,1,0,1,0,0,3
872 0,0,0,1,1,0,1,0,0,2
873 0,0,0,1,1,0,1,0,0,1
874 0,0,0,1,1,0,1,0,0,0
875 0,0,0,1,1,0,0,2,1,0
876 0,0,0,1,1,0,0,2,0,2
877 0,0,0,1,1,0,0,2,0,1
878 0,0,0,1,1,0,0,2,0,0
879 0,0,0,1,1,0,0,1,2,1
880 0,0,0,1,1,0,0,1,2,0
881 0,0,0,1,1,0,0,1,1,3
882 0,0,0,1,1,0,0,1,1,2
883 0,0,0,1,1,0,0,1,1,1
884 0,0,0,1,1,0,0,1,1,0
885 0,0,0,1,1,0,0,1,0,5
886 0,0,0,1,1,0,0,1,0,4
887 0,0,0,1,1,0,0,1,0,3
888 0,0,0,1,1,0,0,1,0,2
889 0,0,0,1,1,0,0,1,0,1
890 0,0,0,1,1,0,0,1,0,0
891 0,0,0,1,1,0,0,0,4,0
892 0,0,0,1,1,0,0,0,3,2
893 0,0,0,1,1,0,0,0,3,1
894 0,0,0,1,1,0,0,0,3,0
895 0,0,0,1,1,0,0,0,2,4
896 0,0,0,1,1,0,0,0,2,3
897 0,0,0,1,1,0,0,0,2,2
898 0,0,0,1,1,0,0,0,2,1
899 0,0,0,1,1,0,0,0,2,0
900 0,0,0,1,1,0,0,0,1,6
901 0,0,0,1,1,0,0,0,1,5
902 0,0,0,1,1,0,0,0,1,4
903 0,0,0,1,1,0,0,0,1,3
904 0,0,0,1,1,0,0,0,1,2
905 0,0,0,1,1,0,0,0,1,1
906 0,0,0,1,1,0,0,0,1,0
907 0,0,0,1,1,0,0,0,0,8
908 0,0,0,1,1,0,0,0,0,7
909 0,0,0,1,1,0,0,0,0,6
910 0,0,0,1,1,0,0,0,0,5
911 0,0,0,1,1,0,0,0,0,4
912 0,0,0,1,1,0,0,0,0,3
913 0,0,0,1,1,0,0,0,0,2
914 0,0,0,1,1,0,0,0,0,1
915 0,0,0,1,1,0,0,0,0,0
916 0,0,0,1,0,2,1,0,0,0
917 0,0,0,1,0,2,0,1,0,1
918 0,0,0,1,0,2,0,1,0,0
919 0,0,0,1,0,2,0,0,2,0
920 0,0,0,1,0,2,0,0,1,2
921 0,0,0,1,0,2,0,0,1,1
922 0,0,0,1,0,2,0,0,1,0
923 0,0,0,1,0,2,0,0,0,4
924 0,0,0,1,0,2,0,0,0,3
925 0,0,0,1,0,2,0,0,0,2
926 0,0,0,1,0,2,0,0,0,1
927 0,0,0,1,0,2,0,0,0,0
928 0,0,0,1,0,1,2,0,0,1
929 0,0,0,1,0,1,2,0,0,0
930 0,0,0,1,0,1,1,1,1,0
931 0,0,0,1,0,1,1,1,0,2
932 0,0,0,1,0,1,1,1,0,1
933 0,0,0,1,0,1,1,1,0,0
934 0,0,0,1,0,1,1,0,2,1
935 0,0,0,1,0,1,1,0,2,0
936 0,0,0,1,0,1,1,0,1,3
937 0,0,0,1,0,1,1,0,1,2
938 0,0,0,1,0,1,1,0,1,1
939 0,0,0,1,0,1,1,0,1,0
940 0,0,0,1,0,1,1,0,0,5
941 0,0,0,1,0,1,1,0,0,4
942 0,0,0,1,0,1,1,0,0,3
943 0,0,0,1,0,1,1,0,0,2
944 0,0,0,1,0,1,1,0,0,1
945 0,0,0,1,0,1,1,0,0,0
946 0,0,0,1,0,1,0,3,0,0
947 0,0,0,1,0,1,0,2,1,1
948 0,0,0,1,0,1,0,2,1,0
949 0,0,0,1,0,1,0,2,0,3
950 0,0,0,1,0,1,0,2,0,2
951 0,0,0,1,0,1,0,2,0,1
952 0,0,0,1,0,1,0,2,0,0
953 0,0,0,1,0,1,0,1,3,0
954 0,0,0,1,0,1,0,1,2,2
955 0,0,0,1,0,1,0,1,2,1
956 0,0,0,1,0,1,0,1,2,0
957 0,0,0,1,0,1,0,1,1,4
958 0,0,0,1,0,1,0,1,1,3
959 0,0,0,1,0,1,0,1,1,2
960 0,0,0,1,0,1,0,1,1,1
961 0,0,0,1,0,1,0,1,1,0
962 0,0,0,1,0,1,0,1,0,6
963 0,0,0,1,0,1,0,1,0,5
964 0,0,0,1,0,1,0,1,0,4
965 0,0,0,1,0,1,0,1,0,3
966 0,0,0,1,0,1,0,1,0,2
967 0,0,0,1,0,1,0,1,0,1
968 0,0,0,1,0,1,0,1,0,0
969 0,0,0,1,0,1,0,0,4,1
970 0,0,0,1,0,1,0,0,4,0
971 0,0,0,1,0,1,0,0,3,3
972 0,0,0,1,0,1,0,0,3,2
973 0,0,0,1,0,1,0,0,3,1
974 0,0,0,1,0,1,0,0,3,0
975 0,0,0,1,0,1,0,0,2,5
976 0,0,0,1,0,1,0,0,2,4
977 0,0,0,1,0,1,0,0,2,3
978 0,0,0,1,0,1,0,0,2,2
979 0,0,0,1,0,1,0,0,2,1
980 0,0,0,1,0,1,0,0,2,0
981 0,0,0,1,0,1,0,0,1,7
982 0,0,0,1,0,1,0,0,1,6
983 0,0,0,1,0,1,0,0,1,5
984 0,0,0,1,0,1,0,0,1,4
985 0,0,0,1,0,1,0,0,1,3
986 0,0,0,1,0,1,0,0,1,2
987 0,0,0,1,0,1,0,0,1,1
988 0,0,0,1,0,1,0,0,1,0
989 0,0,0,1,0,1,0,0,0,9
990 0,0,0,1,0,1,0,0,0,8
991 0,0,0,1,0,1,0,0,0,7
992 0,0,0,1,0,1,0,0,0,6
993 0,0,0,1,0,1,0,0,0,5
994 0,0,0,1,0,1,0,0,0,4
995 0,0,0,1,0,1,0,0,0,3
996 0,0,0,1,0,1,0,0,0,2
997 0,0,0,1,0,1,0,0,0,1
998 0,0,0,1,0,1,0,0,0,0
999 0,0,0,1,0,0,3,0,1,0
1000 0,0,0,1,0,0,3,0,0,2
1001 0,0,0,1,0,0,3,0,0,1
1002 0,0,0,1,0,0,3,0,0,0
1003 0,0,0,1,0,0,2,2,0,0
1004 0,0,0,1,0,0,2,1,1,1
1005 0,0,0,1,0,0,2,1,1,0
1006 0,0,0,1,0,0,2,1,0,3
1007 0,0,0,1,0,0,2,1,0,2
1008 0,0,0,1,0,0,2,1,0,1
1009 0,0,0,1,0,0,2,1,0,0
1010 0,0,0,1,0,0,2,0,3,0
1011 0,0,0,1,0,0,2,0,2,2
1012 0,0,0,1,0,0,2,0,2,1
1013 0,0,0,1,0,0,2,0,2,0
1014 0,0,0,1,0,0,2,0,1,4
1015 0,0,0,1,0,0,2,0,1,3
1016 0,0,0,1,0,0,2,0,1,2
1017 0,0,0,1,0,0,2,0,1,1
1018 0,0,0,1,0,0,2,0,1,0
1019 0,0,0,1,0,0,2,0,0,6
1020 0,0,0,1,0,0,2,0,0,5
1021 0,0,0,1,0,0,2,0,0,4
1022 0,0,0,1,0,0,2,0,0,3
1023 0,0,0,1,0,0,2,0,0,2
1024 0,0,0,1,0,0,2,0,0,1
1025 0,0,0,1,0,0,2,0,0,0
1026 0,0,0,1,0,0,1,3,0,1
1027 0,0,0,1,0,0,1,3,0,0
1028 0,0,0,1,0,0,1,2,2,0
1029 0,0,0,1,0,0,1,2,1,2
1030 0,0,0,1,0,0,1,2,1,1
1031 0,0,0,1,0,0,1,2,1,0
1032 0,0,0,1,0,0,1,2,0,4
1033 0,0,0,1,0,0,1,2,0,3
1034 0,0,0,1,0,0,1,2,0,2
1035 0,0,0,1,0,0,1,2,0,1
1036 0,0,0,1,0,0,1,2,0,0
1037 0,0,0,1,0,0,1,1,3,1
1038 0,0,0,1,0,0,1,1,3,0
1039 0,0,0,1,0,0,1,1,2,3
1040 0,0,0,1,0,0,1,1,2,2
1041 0,0,0,1,0,0,1,1,2,1
1042 0,0,0,1,0,0,1,1,2,0
1043 0,0,0,1,0,0,1,1,1,5
1044 0,0,0,1,0,0,1,1,1,4
1045 0,0,0,1,0,0,1,1,1,3
1046 0,0,0,1,0,0,1,1,1,2
1047 0,0,0,1,0,0,1,1,1,1
1048 0,0,0,1,0,0,1,1,1,0
1049 0,0,0,1,0,0,1,1,0,7
1050 0,0,0,1,0,0,1,1,0,6
1051 0,0,0,1,0,0,1,1,0,5
1052 0,0,0,1,0,0,1,1,0,4
1053 0,0,0,1,0,0,1,1,0,3
1054 0,0,0,1,0,0,1,1,0,2
1055 0,0,0,1,0,0,1,1,0,1
1056 0,0,0,1,0,0,1,1,0,0
1057 0,0,0,1,0,0,1,0,5,0
1058 0,0,0,1,0,0,1,0,4,2
1059 0,0,0,1,0,0,1,0,4,1
1060 0,0,0,1,0,0,1,0,4,0
1061 0,0,0,1,0,0,1,0,3,4
1062 0,0,0,1,0,0,1,0,3,3
1063 0,0,0,1,0,0,1,0,3,2
1064 0,0,0,1,0,0,1,0,3,1
1065 0,0,0,1,0,0,1,0,3,0
1066 0,0,0,1,0,0,1,0,2,6
1067 0,0,0,1,0,0,1,0,2,5
1068 0,0,0,1,0,0,1,0,2,4
1069 0,0,0,1,0,0,1,0,2,3
1070 0,0,0,1,0,0,1,0,2,2
1071 0,0,0,1,0,0,1,0,2,1
1072 0,0,0,1,0,0,1,0,2,0
1073 0,0,0,1,0,0,1,0,1,8
1074 0,0,0,1,0,0,1,0,1,7
1075 0,0,0,1,0,0,1,0,1,6
1076 0,0,0,1,0,0,1,0,1,5
1077 0,0,0,1,0,0,1,0,1,4
1078 0,0,0,1,0,0,1,0,1,3
1079 0,0,0,1,0,0,1,0,1,2
1080 0,0,0,1,0,0,1,0,1,1
1081 0,0,0,1,0,0,1,0,1,0
1082 0,0,0,1,0,0,1,0,0,10
1083 0,0,0,1,0,0,1,0,0,9
1084 0,0,0,1,0,0,1,0,0,8
1085 0,0,0,1,0,0,1,0,0,7
1086 0,0,0,1,0,0,1,0,0,6
1087 0,0,0,1,0,0,1,0,0,5
1088 0,0,0,1,0,0,1,0,0,4
1089 0,0,0,1,0,0,1,0,0,3
1090 0,0,0,1,0,0,1,0,0,2
1091 0,0,0,1,0,0,1,0,0,1
1092 0,0,0,1,0,0,1,0,0,0
1093 0,0,0,1,0,0,0,4,1,0
1094 0,0,0,1,0,0,0,4,0,2
1095 0,0,0,1,0,0,0,4,0,1
1096 0,0,0,1,0,0,0,4,0,0
1097 0,0,0,1,0,0,0,3,2,1
1098 0,0,0,1,0,0,0,3,2,0
1099 0,0,0,1,0,0,0,3,1,3
1100 0,0,0,1,0,0,0,3,1,2
1101 0,0,0,1,0,0,0,3,1,1
1102 0,0,0,1,0,0,0,3,1,0
1103 0,0,0,1,0,0,0,3,0,5
1104 0,0,0,1,0,0,0,3,0,4
1105 0,0,0,1,0,0,0,3,0,3
1106 0,0,0,1,0,0,0,3,0,2
1107 0,0,0,1,0,0,0,3,0,1
1108 0,0,0,1,0,0,0,3,0,0
1109 0,0,0,1,0,0,0,2,4,0
1110 0,0,0,1,0,0,0,2,3,2
1111 0,0,0,1,0,0,0,2,3,1
1112 0,0,0,1,0,0,0,2,3,0
1113 0,0,0,1,0,0,0,2,2,4
1114 0,0,0,1,0,0,0,2,2,3
1115 0,0,0,1,0,0,0,2,2,2
1116 0,0,0,1,0,0,0,2,2,1
1117 0,0,0,1,0,0,0,2,2,0
1118 0,0,0,1,0,0,0,2,1,6
1119 0,0,0,1,0,0,0,2,1,5
1120 0,0,0,1,0,0,0,2,1,4
1121 0,0,0,1,0,0,0,2,1,3
1122 0,0,0,1,0,0,0,2,1,2
1123 0,0,0,1,0,0,0,2,1,1
1124 0,0,0,1,0,0,0,2,1,0
1125 0,0,0,1,0,0,0,2,0,8
1126 0,0,0,1,0,0,0,2,0,7
1127 0,0,0,1,0,0,0,2,0,6
1128 0,0,0,1,0,0,0,2,0,5
1129 0,0,0,1,0,0,0,2,0,4
1130 0,0,0,1,0,0,0,2,0,3
1131 0,0,0,1,0,0,0,2,0,2
1132 0,0,0,1,0,0,0,2,0,1
1133 0,0,0,1,0,0,0,2,0,0
1134 0,0,0,1,0,0,0,1,5,1
1135 0,0,0,1,0,0,0,1,5,0
1136 0,0,0,1,0,0,0,1,4,3
1137 0,0,0,1,0,0,0,1,4,2
1138 0,0,0,1,0,0,0,1,4,1
1139 0,0,0,1,0,0,0,1,4,0
1140 0,0,0,1,0,0,0,1,3,5
1141 0,0,0,1,0,0,0,1,3,4
1142 0,0,0,1,0,0,0,1,3,3
1143 0,0,0,1,0,0,0,1,3,2
1144 0,0,0,1,0,0,0,1,3,1
1145 0,0,0,1,0,0,0,1,3,0
1146 0,0,0,1,0,0,0,1,2,7
1147 0,0,0,1,0,0,0,1,2,6
1148 0,0,0,1,0,0,0,1,2,5
1149 0,0,0,1,0,0,0,1,2,4
1150 0,0,0,1,0,0,0,1,2,3
1151 0,0,0,1,0,0,0,1,2,2
1152 0,0,0,1,0,0,0,1,2,1
1153 0,0,0,1,0,0,0,1,2,0
1154 0,0,0,1,0,0,0,1,1,9
1155 0,0,0,1,0,0,0,1,1,8
1156 0,0,0,1,0,0,0,1,1,7
1157 0,0,0,1,0,0,0,1,1,6
1158 0,0,0,1,0,0,0,1,1,5
1159 0,0,0,1,0,0,0,1,1,4
1160 0,0,0,1,0,0,0,1,1,3
1161 0,0,0,1,0,0,0,1,1,2
1162 0,0,0,1,0,0,0,1,1,1
1163 0,0,0,1,0,0,0,1,1,0
1164 0,0,0,1,0,0,0,1,0,11
1165 0,0,0,1,0,0,0,1,0,10
1166 0,0,0,1,0,0,0,1,0,9
1167 0,0,0,1,0,0,0,1,0,8
1168 0,0,0,1,0,0,0,1,0,7
1169 0,0,0,1,0,0,0,1,0,6
1170 0,0,0,1,0,0,0,1,0,5
1171 0,0,0,1,0,0,0,1,0,4
1172 0,0,0,1,0,0,0,1,0,3
1173 0,0,0,1,0,0,0,1,0,2
1174 0,0,0,1,0,0,0,1,0,1
1175 0,0,0,1,0,0,0,1,0,0
1176 0,0,0,1,0,0,0,0,7,0
1177 0,0,0,1,0,0,0,0,6,2
1178 0,0,0,1,0,0,0,0,6,1
1179 0,0,0,1,0,0,0,0,6,0
1180 0,0,0,1,0,0,0,0,5,4
1181 0,0,0,1,0,0,0,0,5,3
1182 0,0,0,1,0,0,0,0,5,2
1183 0,0,0,1,0,0,0,0,5,1
1184 0,0,0,1,0,0,0,0,5,0
1185 0,0,0,1,0,0,0,0,4,6
1186 0,0,0,1,0,0,0,0,4,5
1187 0,0,0,1,0,0,0,0,4,4
1188 0,0,0,1,0,0,0,0,4,3
1189 0,0,0,1,0,0,0,0,4,2
1190 0,0,0,1,0,0,0,0,4,1
1191 0,0,0,1,0,0,0,0,4,0
1192 0,0,0,1,0,0,0,0,3,8
1193 0,0,0,1,0,0,0,0,3,7
1194 0,0,0,1,0,0,0,0,3,6
1195 0,0,0,1,0,0,0,0,3,5
1196 0,0,0,1,0,0,0,0,3,4
1197 0,0,0,1,0,0,0,0,3,3
1198 0,0,0,1,0,0,0,0,3,2
1199 0,0,0,1,0,0,0,0,3,1
1200 0,0,0,1,0,0,0,0,3,0
1201 0,0,0,1,0,0,0,0,2,10
1202 0,0,0,1,0,0,0,0,2,9
1203 0,0,0,1,0,0,0,0,2,8
1204 0,0,0,1,0,0,0,0,2,7
1205 0,0,0,1,0,0,0,0,2,6
1206 0,0,0,1,0,0,0,0,2,5
1207 0,0,0,1,0,0,0,0,2,4
1208 0,0,0,1,0,0,0,0,2,3
1209 0,0,0,1,0,0,0,0,2,2
1210 0,0,0,1,0,0,0,0,2,1
1211 0,0,0,1,0,0,0,0,2,0
1212 0,0,0,1,0,0,0,0,1,12
1213 0,0,0,1,0,0,0,0,1,11
1214 0,0,0,1,0,0,0,0,1,10
1215 0,0,0,1,0,0,0,0,1,9
1216 0,0,0,1,0,0,0,0,1,8
1217 0,0,0,1,0,0,0,0,1,7
1218 0,0,0,1,0,0,0,0,1,6
1219 0,0,0,1,0,0,0,0,1,5
1220 0,0,0,1,0,0,0,0,1,4
1221 0,0,0,1,0,0,0,0,1,3
1222 0,0,0,1,0,0,0,0,1,2
1223 0,0,0,1,0,0,0,0,1,1
1224 0,0,0,1,0,0,0,0,1,0
1225 0,0,0,1,0,0,0,0,0,14
1226 0,0,0,1,0,0,0,0,0,13
1227 0,0,0,1,0,0,0,0,0,12
1228 0,0,0,1,0,0,0,0,0,11
1229 0,0,0,1,0,0,0,0,0,10
1230 0,0,0,1,0,0,0,0,0,9
1231 0,0,0,1,0,0,0,0,0,8
1232 0,0,0,1,0,0,0,0,0,7
1233 0,0,0,1,0,0,0,0,0,6
1234 0,0,0,1,0,0,0,0,0,5
1235 0,0,0,1,0,0,0,0,0,4
1236 0,0,0,1,0,0,0,0,0,3
1237 0,0,0,1,0,0,0,0,0,2
1238 0,0,0,1,0,0,0,0,0,1
1239 0,0,0,1,0,0,0,0,0,0
1240 0,0,0,0,3,0,0,1,0,0
1241 0,0,0,0,3,0,0,0,1,1
1242 0,0,0,0,3,0,0,0,1,0
1243 0,0,0,0,3,0,0,0,0,3
1244 0,0,0,0,3,0,0,0,0,2
1245 0,0,0,0,3,0,0,0,0,1
1246 0,0,0,0,3,0,0,0,0,0
1247 0,0,0,0,2,1,1,0,0,0
1248 0,0,0,0,2,1,0,1,0,1
1249 0,0,0,0,2,1,0,1,0,0
1250 0,0,0,0,2,1,0,0,2,0
1251 0,0,0,0,2,1,0,0,1,2
1252 0,0,0,0,2,1,0,0,1,1
1253 0,0,0,0,2,1,0,0,1,0
1254 0,0,0,0,2,1,0,0,0,4
1255 0,0,0,0,2,1,0,0,0,3
1256 0,0,0,0,2,1,0,0,0,2
1257 0,0,0,0,2,1,0,0,0,1
1258 0,0,0,0,2,1,0,0,0,0
1259 0,0,0,0,2,0,2,0,0,1
1260 0,0,0,0,2,0,2,0,0,0
1261 0,0,0,0,2,0,1,1,1,0
1262 0,0,0,0,2,0,1,1,0,2
1263 0,0,0,0,2,0,1,1,0,1
1264 0,0,0,0,2,0,1,1,0,0
1265 0,0,0,0,2,0,1,0,2,1
1266 0,0,0,0,2,0,1,0,2,0
1267 0,0,0,0,2,0,1,0,1,3
1268 0,0,0,0,2,0,1,0,1,2
1269 0,0,0,0,2,0,1,0,1,1
1270 0,0,0,0,2,0,1,0,1,0
1271 0,0,0,0,2,0,1,0,0,5
1272 0,0,0,0,2,0,1,0,0,4
1273 0,0,0,0,2,0,1,0,0,3
1274 0,0,0,0,2,0,1,0,0,2
1275 0,0,0,0,2,0,1,0,0,1
1276 0,0,0,0,2,0,1,0,0,0
1277 0,0,0,0,2,0,0,3,0,0
1278 0,0,0,0,2,0,0,2,1,1
1279 0,0,0,0,2,0,0,2,1,0
1280 0,0,0,0,2,0,0,2,0,3
1281 0,0,0,0,2,0,0,2,0,2
1282 0,0,0,0,2,0,0,2,0,1
1283 0,0,0,0,2,0,0,2,0,0
1284 0,0,0,0,2,0,0,1,3,0
1285 0,0,0,0,2,0,0,1,2,2
1286 0,0,0,0,2,0,0,1,2,1
1287 0,0,0,0,2,0,0,1,2,0
1288 0,0,0,0,2,0,0,1,1,4
1289 0,0,0,0,2,0,0,1,1,3
1290 0,0,0,0,2,0,0,1,1,2
1291 0,0,0,0,2,0,0,1,1,1
1292 0,0,0,0,2,0,0,1,1,0
1293 0,0,0,0,2,0,0,1,0,6
1294 0,0,0,0,2,0,0,1,0,5
1295 0,0,0,0,2,0,0,1,0,4
1296 0,0,0,0,2,0,0,1,0,3
1297 0,0,0,0,2,0,0,1,0,2
1298 0,0,0,0,2,0,0,1,0,1
1299 0,0,0,0,2,0,0,1,0,0
1300 0,0,0,0,2,0,0,0,4,1
1301 0,0,0,0,2,0,0,0,4,0
1302 0,0,0,0,2,0,0,0,3,3
1303 0,0,0,0,2,0,0,0,3,2
1304 0,0,0,0,2,0,0,0,3,1
1305 0,0,0,0,2,0,0,0,3,0
1306 0,0,0,0,2,0,0,0,2,5
1307 0,0,0,0,2,0,0,0,2,4
1308 0,0,0,0,2,0,0,0,2,3
1309 0,0,0,0,2,0,0,0,2,2
1310 0,0,0,0,2,0,0,0,2,1
1311 0,0,0,0,2,0,0,0,2,0
1312 0,0,0,0,2,0,0,0,1,7
1313 0,0,0,0,2,0,0,0,1,6
1314 0,0,0,0,2,0,0,0,1,5
1315 0,0,0,0,2,0,0,0,1,4
1316 0,0,0,0,2,0,0,0,1,3
1317 0,0,0,0,2,0,0,0,1,2
1318 0,0,0,0,2,0,0,0,1,1
1319 0,0,0,0,2,0,0,0,1,0
1320 0,0,0,0,2,0,0,0,0,9
1321 0,0,0,0,2,0,0,0,0,8
1322 0,0,0,0,2,0,0,0,0,7
1323 0,0,0,0,2,0,0,0,0,6
1324 0,0,0,0,2,0,0,0,0,5
1325 0,0,0,0,2,0,0,0,0,4
1326 0,0,0,0,2,0,0,0,0,3
1327 0,0,0,0,2,0,0,0,0,2
1328 0,0,0,0,2,0,0,0,0,1
1329 0,0,0,0,2,0,0,0,0,0
1330 0,0,0,0,1,3,0,0,0,0
1331 0,0,0,0,1,2,1,0,0,1
1332 0,0,0,0,1,2,1,0,0,0
1333 0,0,0,0,1,2,0,1,1,0
1334 0,0,0,0,1,2,0,1,0,2
1335 0,0,0,0,1,2,0,1,0,1
1336 0,0,0,0,1,2,0,1,0,0
1337 0,0,0,0,1,2,0,0,2,1
1338 0,0,0,0,1,2,0,0,2,0
1339 0,0,0,0,1,2,0,0,1,3
1340 0,0,0,0,1,2,0,0,1,2
1341 0,0,0,0,1,2,0,0,1,1
1342 0,0,0,0,1,2,0,0,1,0
1343 0,0,0,0,1,2,0,0,0,5
1344 0,0,0,0,1,2,0,0,0,4
1345 0,0,0,0,1,2,0,0,0,3
1346 0,0,0,0,1,2,0,0,0,2
1347 0,0,0,0,1,2,0,0,0,1
1348 0,0,0,0,1,2,0,0,0,0
1349 0,0,0,0,1,1,2,0,1,0
1350 0,0,0,0,1,1,2,0,0,2
1351 0,0,0,0,1,1,2,0,0,1
1352 0,0,0,0,1,1,2,0,0,0
1353 0,0,0,0,1,1,1,2,0,0
1354 0,0,0,0,1,1,1,1,1,1
1355 0,0,0,0,1,1,1,1,1,0
1356 0,0,0,0,1,1,1,1,0,3
1357 0,0,0,0,1,1,1,1,0,2
1358 0,0,0,0,1,1,1,1,0,1
1359 0,0,0,0,1,1,1,1,0,0
1360 0,0,0,0,1,1,1,0,3,0
1361 0,0,0,0,1,1,1,0,2,2
1362 0,0,0,0,1,1,1,0,2,1
1363 0,0,0,0,1,1,1,0,2,0
1364 0,0,0,0,1,1,1,0,1,4
1365 0,0,0,0,1,1,1,0,1,3
1366 0,0,0,0,1,1,1,0,1,2
1367 0,0,0,0,1,1,1,0,1,1
1368 0,0,0,0,1,1,1,0,1,0
1369 0,0,0,0,1,1,1,0,0,6
1370 0,0,0,0,1,1,1,0,0,5
1371 0,0,0,0,1,1,1,0,0,4
1372 0,0,0,0,1,1,1,0,0,3
1373 0,0,0,0,1,1,1,0,0,2
1374 0,0,0,0,1,1,1,0,0,1
1375 0,0,0,0,1,1,1,0,0,0
1376 0,0,0,0,1,1,0,3,0,1
1377 0,0,0,0,1,1,0,3,0,0
1378 0,0,0,0,1,1,0,2,2,0
1379 0,0,0,0,1,1,0,2,1,2
1380 0,0,0,0,1,1,0,2,1,1
1381 0,0,0,0,1,1,0,2,1,0
1382 0,0,0,0,1,1,0,2,0,4
1383 0,0,0,0,1,1,0,2,0,3
1384 0,0,0,0,1,1,0,2,0,2
1385 0,0,0,0,1,1,0,2,0,1
1386 0,0,0,0,1,1,0,2,0,0
1387 0,0,0,0,1,1,0,1,3,1
1388 0,0,0,0,1,1,0,1,3,0
1389 0,0,0,0,1,1,0,1,2,3
1390 0,0,0,0,1,1,0,1,2,2
1391 0,0,0,0,1,1,0,1,2,1
1392 0,0,0,0,1,1,0,1,2,0
1393 0,0,0,0,1,1,0,1,1,5
1394 0,0,0,0,1,1,0,1,1,4
1395 0,0,0,0,1,1,0,1,1,3
1396 0,0,0,0,1,1,0,1,1,2
1397 0,0,0,0,1,1,0,1,1,1
1398 0,0,0,0,1,1,0,1,1,0
1399 0,0,0,0,1,1,0,1,0,7
1400 0,0,0,0,1,1,0,1,0,6
1401 0,0,0,0,1,1,0,1,0,5
1402 0,0,0,0,1,1,0,1,0,4
1403 0,0,0,0,1,1,0,1,0,3
1404 0,0,0,0,1,1,0,1,0,2
1405 0,0,0,0,1,1,0,1,0,1
1406 0,0,0,0,1,1,0,1,0,0
1407 0,0,0,0,1,1,0,0,5,0
1408 0,0,0,0,1,1,0,0,4,2
1409 0,0,0,0,1,1,0,0,4,1
1410 0,0,0,0,1,1,0,0,4,0
1411 0,0,0,0,1,1,0,0,3,4
1412 0,0,0,0,1,1,0,0,3,3
1413 0,0,0,0,1,1,0,0,3,2
1414 0,0,0,0,1,1,0,0,3,1
1415 0,0,0,0,1,1,0,0,3,0
1416 0,0,0,0,1,1,0,0,2,6
1417 0,0,0,0,1,1,0,0,2,5
1418 0,0,0,0,1,1,0,0,2,4
1419 0,0,0,0,1,1,0,0,2,3
1420 0,0,0,0,1,1,0,0,2,2
1421 0,0,0,0,1,1,0,0,2,1
1422 0,0,0,0,1,1,0,0,2,0
1423 0,0,0,0,1,1,0,0,1,8
1424 0,0,0,0,1,1,0,0,1,7
1425 0,0,0,0,1,1,0,0,1,6
1426 0,0,0,0,1,1,0,0,1,5
1427 0,0,0,0,1,1,0,0,1,4
1428 0,0,0,0,1,1,0,0,1,3
1429 0,0,0,0,1,1,0,0,1,2
1430 0,0,0,0,1,1,0,0,1,1
1431 0,0,0,0,1,1,0,0,1,0
1432 0,0,0,0,1,1,0,0,0,10
1433 0,0,0,0,1,1,0,0,0,9
1434 0,0,0,0,1,1,0,0,0,8
1435 0,0,0,0,1,1,0,0,0,7
1436 0,0,0,0,1,1,0,0,0,6
1437 0,0,0,0,1,1,0,0,0,5
1438 0,0,0,0,1,1,0,0,0,4
1439 0,0,0,0,1,1,0,0,0,3
1440 0,0,0,0,1,1,0,0,0,2
1441 0,0,0,0,1,1,0,0,0,1
1442 0,0,0,0,1,1,0,0,0,0
1443 0,0,0,0,1,0,3,1,0,0
1444 0,0,0,0,1,0,3,0,1,1
1445 0,0,0,0,1,0,3,0,1,0
1446 0,0,0,0,1,0,3,0,0,3
1447 0,0,0,0,1,0,3,0,0,2
1448 0,0,0,0,1,0,3,0,0,1
1449 0,0,0,0,1,0,3,0,0,0
1450 0,0,0,0,1,0,2,2,0,1
1451 0,0,0,0,1,0,2,2,0,0
1452 0,0,0,0,1,0,2,1,2,0
1453 0,0,0,0,1,0,2,1,1,2
1454 0,0,0,0,1,0,2,1,1,1
1455 0,0,0,0,1,0,2,1,1,0
1456 0,0,0,0,1,0,2,1,0,4
1457 0,0,0,0,1,0,2,1,0,3
1458 0,0,0,0,1,0,2,1,0,2
1459 0,0,0,0,1,0,2,1,0,1
1460 0,0,0,0,1,0,2,1,0,0
1461 0,0,0,0,1,0,2,0,3,1
1462 0,0,0,0,1,0,2,0,3,0
1463 0,0,0,0,1,0,2,0,2,3
1464 0,0,0,0,1,0,2,0,2,2
1465 0,0,0,0,1,0,2,0,2,1
1466 0,0,0,0,1,0,2,0,2,0
1467 0,0,0,0,1,0,2,0,1,5
1468 0,0,0,0,1,0,2,0,1,4
1469 0,0,0,0,1,0,2,0,1,3
1470 0,0,0,0,1,0,2,0,1,2
1471 0,0,0,0,1,0,2,0,1,1
1472 0,0,0,0,1,0,2,0,1,0
1473 0,0,0,0,1,0,2,0,0,7
1474 0,0,0,0,1,0,2,0,0,6
1475 0,0,0,0,1,0,2,0,0,5
1476 0,0,0,0,1,0,2,0,0,4
1477 0,0,0,0,1,0,2,0,0,3
1478 0,0,0,0,1,0,2,0,0,2
1479 0,0,0,0,1,0,2,0,0,1
1480 0,0,0,0,1,0,2,0,0,0
1481 0,0,0,0,1,0,1,3,1,0
1482 0,0,0,0,1,0,1,3,0,2
1483 0,0,0,0,1,0,1,3,0,1
1484 0,0,0,0,1,0,1,3,0,0
1485 0,0,0,0,1,0,1,2,2,1
1486 0,0,0,0,1,0,1,2,2,0
1487 0,0,0,0,1,0,1,2,1,3
1488 0,0,0,0,1,0,1,2,1,2
1489 0,0,0,0,1,0,1,2,1,1
1490 0,0,0,0,1,0,1,2,1,0
1491 0,0,0,0,1,0,1,2,0,5
1492 0,0,0,0,1,0,1,2,0,4
1493 0,0,0,0,1,0,1,2,0,3
1494 0,0,0,0,1,0,1,2,0,2
1495 0,0,0,0,1,0,1,2,0,1
1496 0,0,0,0,1,0,1,2,0,0
1497 0,0,0,0,1,0,1,1,4,0
1498 0,0,0,0,1,0,1,1,3,2
1499 0,0,0,0,1,0,1,1,3,1
1500 0,0,0,0,1,0,1,1,3,0
1501 0,0,0,0,1,0,1,1,2,4
1502 0,0,0,0,1,0,1,1,2,3
1503 0,0,0,0,1,0,1,1,2,2
1504 0,0,0,0,1,0,1,1,2,1
1505 0,0,0,0,1,0,1,1,2,0
1506 0,0,0,0,1,0,1,1,1,6
1507 0,0,0,0,1,0,1,1,1,5
1508 0,0,0,0,1,0,1,1,1,4
1509 0,0,0,0,1,0,1,1,1,3
1510 0,0,0,0,1,0,1,1,1,2
1511 0,0,0,0,1,0,1,1,1,1
1512 0,0,0,0,1,0,1,1,1,0
1513 0,0,0,0,1,0,1,1,0,8
1514 0,0,0,0,1,0,1,1,0,7
1515 0,0,0,0,1,0,1,1,0,6
1516 0,0,0,0,1,0,1,1,0,5
1517 0,0,0,0,1,0,1,1,0,4
1518 0,0,0,0,1,0,1,1,0,3
1519 0,0,0,0,1,0,1,1,0,2
1520 0,0,0,0,1,0,1,1,0,1
1521 0,0,0,0,1,0,1,1,0,0
1522 0,0,0,0,1,0,1,0,5,1
1523 0,0,0,0,1,0,1,0,5,0
1524 0,0,0,0,1,0,1,0,4,3
1525 0,0,0,0,1,0,1,0,4,2
1526 0,0,0,0,1,0,1,0,4,1
1527 0,0,0,0,1,0,1,0,4,0
1528 0,0,0,0,1,0,1,0,3,5
1529 0,0,0,0,1,0,1,0,3,4
1530 0,0,0,0,1,0,1,0,3,3
1531 0,0,0,0,1,0,1,0,3,2
1532 0,0,0,0,1,0,1,0,3,1
1533 0,0,0,0,1,0,1,0,3,0
1534 0,0,0,0,1,0,1,0,2,7
1535 0,0,0,0,1,0,1,0,2,6
1536 0,0,0,0,1,0,1,0,2,5
1537 0,0,0,0,1,0,1,0,2,4
1538 0,0,0,0,1,0,1,0,2,3
1539 0,0,0,0,1,0,1,0,2,2
1540 0,0,0,0,1,0,1,0,2,1
1541 0,0,0,0,1,0,1,0,2,0
1542 0,0,0,0,1,0,1,0,1,9
1543 0,0,0,0,1,0,1,0,1,8
1544 0,0,0,0,1,0,1,0,1,7
1545 0,0,0,0,1,0,1,0,1,6
1546 0,0,0,0,1,0,1,0,1,5
1547 0,0,0,0,1,0,1,0,1,4
1548 0,0,0,0,1,0,1,0,1,3
1549 0,0,0,0,1,0,1,0,1,2
1550 0,0,0,0,1,0,1,0,1,1
1551 0,0,0,0,1,0,1,0,1,0
1552 0,0,0,0,1,0,1,0,0,11
1553 0,0,0,0,1,0,1,0,0,10
1554 0,0,0,0,1,0,1,0,0,9
1555 0,0,0,0,1,0,1,0,0,8
1556 0,0,0,0,1,0,1,0,0,7
1557 0,0,0,0,1,0,1,0,0,6
1558 0,0,0,0,1,0,1,0,0,5
1559 0,0,0,0,1,0,1,0,0,4
1560 0,0,0,0,1,0,1,0,0,3
1561 0,0,0,0,1,0,1,0,0,2
1562 0,0,0,0,1,0,1,0,0,1
1563 0,0,0,0,1,0,1,0,0,0
1564 0,0,0,0,1,0,0,5,0,0
1565 0,0,0,0,1,0,0,4,1,1
1566 0,0,0,0,1,0,0,4,1,0
1567 0,0,0,0,1,0,0,4,0,3
1568 0,0,0,0,1,0,0,4,0,2
1569 0,0,0,0,1,0,0,4,0,1
1570 0,0,0,0,1,0,0,4,0,0
1571 0,0,0,0,1,0,0,3,3,0
1572 0,0,0,0,1,0,0,3,2,2
1573 0,0,0,0,1,0,0,3,2,1
1574 0,0,0,0,1,0,0,3,2,0
1575 0,0,0,0,1,0,0,3,1,4
1576 0,0,0,0,1,0,0,3,1,3
1577 0,0,0,0,1,0,0,3,1,2
1578 0,0,0,0,1,0,0,3,1,1
1579 0,0,0,0,1,0,0,3,1,0
1580 0,0,0,0,1,0,0,3,0,6
1581 0,0,0,0,1,0,0,3,0,5
1582 0,0,0,0,1,0,0,3,0,4
1583 0,0,0,0,1,0,0,3,0,3
1584 0,0,0,0,1,0,0,3,0,2
1585 0,0,0,0,1,0,0,3,0,1
1586 0,0,0,0,1,0,0,3,0,0
1587 0,0,0,0,1,0,0,2,4,1
1588 0,0,0,0,1,0,0,2,4,0
1589 0,0,0,0,1,0,0,2,3,3
1590 0,0,0,0,1,0,0,2,3,2
1591 0,0,0,0,1,0,0,2,3,1
1592 0,0,0,0,1,0,0,2,3,0
1593 0,0,0,0,1,0,0,2,2,5
1594 0,0,0,0,1,0,0,2,2,4
1595 0,0,0,0,1,0,0,2,2,3
1596 0,0,0,0,1,0,0,2,2,2
1597 0,0,0,0,1,0,0,2,2,1
1598 0,0,0,0,1,0,0,2,2,0
1599 0,0,0,0,1,0,0,2,1,7
1600 0,0,0,0,1,0,0,2,1,6
1601 0,0,0,0,1,0,0,2,1,5
1602 0,0,0,0,1,0,0,2,1,4
1603 0,0,0,0,1,0,0,2,1,3
1604 0,0,0,0,1,0,0,2,1,2
1605 0,0,0,0,1,0,0,2,1,1
1606 0,0,0,0,1,0,0,2,1,0
1607 0,0,0,0,1,0,0,2,0,9
1608 0,0,0,0,1,0,0,2,0,8
1609 0,0,0,0,1,0,0,2,0,7
1610 0,0,0,0,1,0,0,2,0,6
1611 0,0,0,0,1,0,0,2,0,5
1612 0,0,0,0,1,0,0,2,0,4
1613 0,0,0,0,1,0,0,2,0,3
1614 0,0,0,0,1,0,0,2,0,2
1615 0,0,0,0,1,0,0,2,0,1
1616 0,0,0,0,1,0,0,2,0,0
1617 0,0,0,0,1,0,0,1,6,0
1618 0,0,0,0,1,0,0,1,5,2
1619 0,0,0,0,1,0,0,1,5,1
1620 0,0,0,0,1,0,0,1,5,0
1621 0,0,0,0,1,0,0,1,4,4
1622 0,0,0,0,1,0,0,1,4,3
1623 0,0,0,0,1,0,0,1,4,2
1624 0,0,0,0,1,0,0,1,4,1
1625 0,0,0,0,1,0,0,1,4,0
1626 0,0,0,0,1,0,0,1,3,6
1627 0,0,0,0,1,0,0,1,3,5
1628 0,0,0,0,1,0,0,1,3,4
1629 0,0,0,0,1,0,0,1,3,3
1630 0,0,0,0,1,0,0,1,3,2
1631 0,0,0,0,1,0,0,1,3,1
1632 0,0,0,0,1,0,0,1,3,0
1633 0,0,0,0,1,0,0,1,2,8
1634 0,0,0,0,1,0,0,1,2,7
1635 0,0,0,0,1,0,0,1,2,6
1636 0,0,0,0,1,0,0,1,2,5
1637 0,0,0,0,1,0,0,1,2,4
1638 0,0,0,0,1,0,0,1,2,3
1639 0,0,0,0,1,0,0,1,2,2
1640 0,0,0,0,1,0,0,1,2,1
1641 0,0,0,0,1,0,0,1,2,0
1642 0,0,0,0,1,0,0,1,1,10
1643 0,0,0,0,1,0,0,1,1,9
1644 0,0,0,0,1,0,0,1,1,8
1645 0,0,0,0,1,0,0,1,1,7
1646 0,0,0,0,1,0,0,1,1,6
1647 0,0,0,0,1,0,0,1,1,5
1648 0,0,0,0,1,0,0,1,1,4
1649 0,0,0,0,1,0,0,1,1,3
1650 0,0,0,0,1,0,0,1,1,2
1651 0,0,0,0,1,0,0,1,1,1
1652 0,0,0,0,1,0,0,1,1,0
1653 0,0,0,0,1,0,0,1,0,12
1654 0,0,0,0,1,0,0,1,0,11
1655 0,0,0,0,1,0,0,1,0,10
1656 0,0,0,0,1,0,0,1,0,9
1657 0,0,0,0,1,0,0,1,0,8
1658 0,0,0,0,1,0,0,1,0,7
1659 0,0,0,0,1,0,0,1,0,6
1660 0,0,0,0,1,0,0,1,0,5
1661 0,0,0,0,1,0,0,1,0,4
1662 0,0,0,0,1,0,0,1,0,3
1663 0,0,0,0,1,0,0,1,0,2
1664 0,0,0,0,1,0,0,1,0,1
1665 0,0,0,0,1,0,0,1,0,0
1666 0,0,0,0,1,0,0,0,7,1
1667 0,0,0,0,1,0,0,0,7,0
1668 0,0,0,0,1,0,0,0,6,3
1669 0,0,0,0,1,0,0,0,6,2
1670 0,0,0,0,1,0,0,0,6,1
1671 0,0,0,0,1,0,0,0,6,0
1672 0,0,0,0,1,0,0,0,5,5
1673 0,0,0,0,1,0,0,0,5,4
1674 0,0,0,0,1,0,0,0,5,3
1675 0,0,0,0,1,0,0,0,5,2
1676 0,0,0,0,1,0,0,0,5,1
1677 0,0,0,0,1,0,0,0,5,0
1678 0,0,0,0,1,0,0,0,4,7
1679 0,0,0,0,1,0,0,0,4,6
1680 0,0,0,0,1,0,0,0,4,5
1681 0,0,0,0,1,0,0,0,4,4
1682 0,0,0,0,1,0,0,0,4,3
1683 0,0,0,0,1,0,0,0,4,2
1684 0,0,0,0,1,0,0,0,4,1
1685 0,0,0,0,1,0,0,0,4,0
1686 0,0,0,0,1,0,0,0,3,9
1687 0,0,0,0,1,0,0,0,3,8
1688 0,0,0,0,1,0,0,0,3,7
1689 0,0,0,0,1,0,0,0,3,6
1690 0,0,0,0,1,0,0,0,3,5
1691 0,0,0,0,1,0,0,0,3,4
1692 0,0,0,0,1,0,0,0,3,3
1693 0,0,0,0,1,0,0,0,3,2
1694 0,0,0,0,1,0,0,0,3,1
1695 0,0,0,0,1,0,0,0,3,0
1696 0,0,0,0,1,0,0,0,2,11
1697 0,0,0,0,1,0,0,0,2,10
1698 0,0,0,0,1,0,0,0,2,9
1699 0,0,0,0,1,0,0,0,2,8
1700 0,0,0,0,1,0,0,0,2,7
1701 0,0,0,0,1,0,0,0,2,6
1702 0,0,0,0,1,0,0,0,2,5
1703 0,0,0,0,1,0,0,0,2,4
1704 0,0,0,0,1,0,0,0,2,3
1705 0,0,0,0,1,0,0,0,2,2
1706 0,0,0,0,1,0,0,0,2,1
1707 0,0,0,0,1,0,0,0,2,0
1708 0,0,0,0,1,0,0,0,1,13
1709 0,0,0,0,1,0,0,0,1,12
1710 0,0,0,0,1,0,0,0,1,11
1711 0,0,0,0,1,0,0,0,1,10
1712 0,0,0,0,1,0,0,0,1,9
1713 0,0,0,0,1,0,0,0,1,8
1714 0,0,0,0,1,0,0,0,1,7
1715 0,0,0,0,1,0,0,0,1,6
1716 0,0,0,0,1,0,0,0,1,5
1717 0,0,0,0,1,0,0,0,1,4
1718 0,0,0,0,1,0,0,0,1,3
1719 0,0,0,0,1,0,0,0,1,2
1720 0,0,0,0,1,0,0,0,1,1
1721 0,0,0,0,1,0,0,0,1,0
1722 0,0,0,0,1,0,0,0,0,15
1723 0,0,0,0,1,0,0,0,0,14
1724 0,0,0,0,1,0,0,0,0,13
1725 0,0,0,0,1,0,0,0,0,12
1726 0,0,0,0,1,0,0,0,0,11
1727 0,0,0,0,1,0,0,0,0,10
1728 0,0,0,0,1,0,0,0,0,9
1729 0,0,0,0,1,0,0,0,0,8
1730 0,0,0,0,1,0,0,0,0,7
1731 0,0,0,0,1,0,0,0,0,6
1732 0,0,0,0,1,0,0,0,0,5
1733 0,0,0,0,1,0,0,0,0,4
1734 0,0,0,0,1,0,0,0,0,3
1735 0,0,0,0,1,0,0,0,0,2
1736 0,0,0,0,1,0,0,0,0,1
1737 0,0,0,0,1,0,0,0,0,0
1738 0,0,0,0,0,4,0,0,0,1
1739 0,0,0,0,0,4,0,0,0,0
1740 0,0,0,0,0,3,1,0,1,0
1741 0,0,0,0,0,3,1,0,0,2
1742 0,0,0,0,0,3,1,0,0,1
1743 0,0,0,0,0,3,1,0,0,0
1744 0,0,0,0,0,3,0,2,0,0
1745 0,0,0,0,0,3,0,1,1,1
1746 0,0,0,0,0,3,0,1,1,0
1747 0,0,0,0,0,3,0,1,0,3
1748 0,0,0,0,0,3,0,1,0,2
1749 0,0,0,0,0,3,0,1,0,1
1750 0,0,0,0,0,3,0,1,0,0
1751 0,0,0,0,0,3,0,0,3,0
1752 0,0,0,0,0,3,0,0,2,2
1753 0,0,0,0,0,3,0,0,2,1
1754 0,0,0,0,0,3,0,0,2,0
1755 0,0,0,0,0,3,0,0,1,4
1756 0,0,0,0,0,3,0,0,1,3
1757 0,0,0,0,0,3,0,0,1,2
1758 0,0,0,0,0,3,0,0,1,1
1759 0,0,0,0,0,3,0,0,1,0
1760 0,0,0,0,0,3,0,0,0,6
1761 0,0,0,0,0,3,0,0,0,5
1762 0,0,0,0,0,3,0,0,0,4
1763 0,0,0,0,0,3,0,0,0,3
1764 0,0,0,0,0,3,0,0,0,2
1765 0,0,0,0,0,3,0,0,0,1
1766 0,0,0,0,0,3,0,0,0,0
1767 0,0,0,0,0,2,2,1,0,0
1768 0,0,0,0,0,2,2,0,1,1
1769 0,0,0,0,0,2,2,0,1,0
1770 0,0,0,0,0,2,2,0,0,3
1771 0,0,0,0,0,2,2,0,0,2
1772 0,0,0,0,0,2,2,0,0,1
1773 0,0,0,0,0,2,2,0,0,0
1774 0,0,0,0,0,2,1,2,0,1
1775 0,0,0,0,0,2,1,2,0,0
1776 0,0,0,0,0,2,1,1,2,0
1777 0,0,0,0,0,2,1,1,1,2
1778 0,0,0,0,0,2,1,1,1,1
1779 0,0,0,0,0,2,1,1,1,0
1780 0,0,0,0,0,2,1,1,0,4
1781 0,0,0,0,0,2,1,1,0,3
1782 0,0,0,0,0,2,1,1,0,2
1783 0,0,0,0,0,2,1,1,0,1
1784 0,0,0,0,0,2,1,1,0,0
1785 0,0,0,0,0,2,1,0,3,1
1786 0,0,0,0,0,2,1,0,3,0
1787 0,0,0,0,0,2,1,0,2,3
1788 0,0,0,0,0,2,1,0,2,2
1789 0,0,0,0,0,2,1,0,2,1
1790 0,0,0,0,0,2,1,0,2,0
1791 0,0,0,0,0,2,1,0,1,5
1792 0,0,0,0,0,2,1,0,1,4
1793 0,0,0,0,0,2,1,0,1,3
1794 0,0,0,0,0,2,1,0,1,2
1795 0,0,0,0,0,2,1,0,1,1
1796 0,0,0,0,0,2,1,0,1,0
1797 0,0,0,0,0,2,1,0,0,7
1798 0,0,0,0,0,2,1,0,0,6
1799 0,0,0,0,0,2,1,0,0,5
1800 0,0,0,0,0,2,1,0,0,4
1801 0,0,0,0,0,2,1,0,0,3
1802 0,0,0,0,0,2,1,0,0,2
1803 0,0,0,0,0,2,1,0,0,1
1804 0,0,0,0,0,2,1,0,0,0
1805 0,0,0,0,0,2,0,3,1,0
1806 0,0,0,0,0,2,0,3,0,2
1807 0,0,0,0,0,2,0,3,0,1
1808 0,0,0,0,0,2,0,3,0,0
1809 0,0,0,0,0,2,0,2,2,1
1810 0,0,0,0,0,2,0,2,2,0
1811 0,0,0,0,0,2,0,2,1,3
1812 0,0,0,0,0,2,0,2,1,2
1813 0,0,0,0,0,2,0,2,1,1
1814 0,0,0,0,0,2,0,2,1,0
1815 0,0,0,0,0,2,0,2,0,5
1816 0,0,0,0,0,2,0,2,0,4
1817 0,0,0,0,0,2,0,2,0,3
1818 0,0,0,0,0,2,0,2,0,2
1819 0,0,0,0,0,2,0,2,0,1
1820 0,0,0,0,0,2,0,2,0,0
1821 0,0,0,0,0,2,0,1,4,0
1822 0,0,0,0,0,2,0,1,3,2
1823 0,0,0,0,0,2,0,1,3,1
1824 0,0,0,0,0,2,0,1,3,0
1825 0,0,0,0,0,2,0,1,2,4
1826 0,0,0,0,0,2,0,1,2,3
1827 0,0,0,0,0,2,0,1,2,2
1828 0,0,0,0,0,2,0,1,2,1
1829 0,0,0,0,0,2,0,1,2,0
1830 0,0,0,0,0,2,0,1,1,6
1831 0,0,0,0,0,2,0,1,1,5
1832 0,0,0,0,0,2,0,1,1,4
1833 0,0,0,0,0,2,0,1,1,3
1834 0,0,0,0,0,2,0,1,1,2
1835 0,0,0,0,0,2,0,1,1,1
1836 0,0,0,0,0,2,0,1,1,0
1837 0,0,0,0,0,2,0,1,0,8
1838 0,0,0,0,0,2,0,1,0,7
1839 0,0,0,0,0,2,0,1,0,6
1840 0,0,0,0,0,2,0,1,0,5
1841 0,0,0,0,0,2,0,1,0,4
1842 0,0,0,0,0,2,0,1,0,3
1843 0,0,0,0,0,2,0,1,0,2
1844 0,0,0,0,0,2,0,1,0,1
1845 0,0,0,0,0,2,0,1,0,0
1846 0,0,0,0,0,2,0,0,5,1
1847 0,0,0,0,0,2,0,0,5,0
1848 0,0,0,0,0,2,0,0,4,3
1849 0,0,0,0,0,2,0,0,4,2
1850 0,0,0,0,0,2,0,0,4,1
1851 0,0,0,0,0,2,0,0,4,0
1852 0,0,0,0,0,2,0,0,3,5
1853 0,0,0,0,0,2,0,0,3,4
1854 0,0,0,0,0,2,0,0,3,3
1855 0,0,0,0,0,2,0,0,3,2
1856 0,0,0,0,0,2,0,0,3,1
1857 0,0,0,0,0,2,0,0,3,0
1858 0,0,0,0,0,2,0,0,2,7
1859 0,0,0,0,0,2,0,0,2,6
1860 0,0,0,0,0,2,0,0,2,5
1861 0,0,0,0,0,2,0,0,2,4
1862 0,0,0,0,0,2,0,0,2,3
1863 0,0,0,0,0,2,0,0,2,2
1864 0,0,0,0,0,2,0,0,2,1
1865 0,0,0,0,0,2,0,0,2,0
1866 0,0,0,0,0,2,0,0,1,9
1867 0,0,0,0,0,2,0,0,1,8
1868 0,0,0,0,0,2,0,0,1,7
1869 0,0,0,0,0,2,0,0,1,6
1870 0,0,0,0,0,2,0,0,1,5
1871 0,0,0,0,0,2,0,0,1,4
1872 0,0,0,0,0,2,0,0,1,3
1873 0,0,0,0,0,2,0,0,1,2
1874 0,0,0,0,0,2,0,0,1,1
1875 0,0,0,0,0,2,0,0,1,0
1876 0,0,0,0,0,2,0,0,0,11
1877 0,0,0,0,0,2,0,0,0,10
1878 0,0,0,0,0,2,0,0,0,9
1879 0,0,0,0,0,2,0,0,0,8
1880 0,0,0,0,0,2,0,0,0,7
1881 0,0,0,0,0,2,0,0,0,6
1882 0,0,0,0,0,2,0,0,0,5
1883 0,0,0,0,0,2,0,0,0,4
1884 0,0,0,0,0,2,0,0,0,3
1885 0,0,0,0,0,2,0,0,0,2
1886 0,0,0,0,0,2,0,0,0,1
1887 0,0,0,0,0,2,0,0,0,0
1888 0,0,0,0,0,1,4,0,0,0
1889 0,0,0,0,0,1,3,1,0,1
1890 0,0,0,0,0,1,3,1,0,0
1891 0,0,0,0,0,1,3,0,2,0
1892 0,0,0,0,0,1,3,0,1,2
1893 0,0,0,0,0,1,3,0,1,1
1894 0,0,0,0,0,1,3,0,1,0
1895 0,0,0,0,0,1,3,0,0,4
1896 0,0,0,0,0,1,3,0,0,3
1897 0,0,0,0,0,1,3,0,0,2
1898 0,0,0,0,0,1,3,0,0,1
1899 0,0,0,0,0,1,3,0,0,0
1900 0,0,0,0,0,1,2,2,1,0
1901 0,0,0,0,0,1,2,2,0,2
1902 0,0,0,0,0,1,2,2,0,1
1903 0,0,0,0,0,1,2,2,0,0
1904 0,0,0,0,0,1,2,1,2,1
1905 0,0,0,0,0,1,2,1,2,0
1906 0,0,0,0,0,1,2,1,1,3
1907 0,0,0,0,0,1,2,1,1,2
1908 0,0,0,0,0,1,2,1,1,1
1909 0,0,0,0,0,1,2,1,1,0
1910 0,0,0,0,0,1,2,1,0,5
1911 0,0,0,0,0,1,2,1,0,4
1912 0,0,0,0,0,1,2,1,0,3
1913 0,0,0,0,0,1,2,1,0,2
1914 0,0,0,0,0,1,2,1,0,1
1915 0,0,0,0,0,1,2,1,0,0
1916 0,0,0,0,0,1,2,0,4,0
1917 0,0,0,0,0,1,2,0,3,2
1918 0,0,0,0,0,1,2,0,3,1
1919 0,0,0,0,0,1,2,0,3,0
1920 0,0,0,0,0,1,2,0,2,4
1921 0,0,0,0,0,1,2,0,2,3
1922 0,0,0,0,0,1,2,0,2,2
1923 0,0,0,0,0,1,2,0,2,1
1924 0,0,0,0,0,1,2,0,2,0
1925 0,0,0,0,0,1,2,0,1,6
1926 0,0,0,0,0,1,2,0,1,5
1927 0,0,0,0,0,1,2,0,1,4
1928 0,0,0,0,0,1,2,0,1,3
1929 0,0,0,0,0,1,2,0,1,2
1930 0,0,0,0,0,1,2,0,1,1
1931 0,0,0,0,0,1,2,0,1,0
1932 0,0,0,0,0,1,2,0,0,8
1933 0,0,0,0,0,1,2,0,0,7
1934 0,0,0,0,0,1,2,0,0,6
1935 0,0,0,0,0,1,2,0,0,5
1936 0,0,0,0,0,1,2,0,0,4
1937 0,0,0,0,0,1,2,0,0,3
1938 0,0,0,0,0,1,2,0,0,2
1939 0,0,0,0,0,1,2,0,0,1
1940 0,0,0,0,0,1,2,0,0,0
1941 0,0,0,0,0,1,1,4,0,0
1942 0,0,0,0,0,1,1,3,1,1
1943 0,0,0,0,0,1,1,3,1,0
1944 0,0,0,0,0,1,1,3,0,3
1945 0,0,0,0,0,1,1,3,0,2
1946 0,0,0,0,0,1,1,3,0,1
1947 0,0,0,0,0,1,1,3,0,0
1948 0,0,0,0,0,1,1,2,3,0
1949 0,0,0,0,0,1,1,2,2,2
1950 0,0,0,0,0,1,1,2,2,1
1951 0,0,0,0,0,1,1,2,2,0
1952 0,0,0,0,0,1,1,2,1,4
1953 0,0,0,0,0,1,1,2,1,3
1954 0,0,0,0,0,1,1,2,1,2
1955 0,0,0,0,0,1,1,2,1,1
1956 0,0,0,0,0,1,1,2,1,0
1957 0,0,0,0,0,1,1,2,0,6
1958 0,0,0,0,0,1,1,2,0,5
1959 0,0,0,0,0,1,1,2,0,4
1960 0,0,0,0,0,1,1,2,0,3
1961 0,0,0,0,0,1,1,2,0,2
1962 0,0,0,0,0,1,1,2,0,1
1963 0,0,0,0,0,1,1,2,0,0
1964 0,0,0,0,0,1,1,1,4,1
1965 0,0,0,0,0,1,1,1,4,0
1966 0,0,0,0,0,1,1,1,3,3
1967 0,0,0,0,0,1,1,1,3,2
1968 0,0,0,0,0,1,1,1,3,1
1969 0,0,0,0,0,1,1,1,3,0
1970 0,0,0,0,0,1,1,1,2,5
1971 0,0,0,0,0,1,1,1,2,4
1972 0,0,0,0,0,1,1,1,2,3
1973 0,0,0,0,0,1,1,1,2,2
1974 0,0,0,0,0,1,1,1,2,1
1975 0,0,0,0,0,1,1,1,2,0
1976 0,0,0,0,0,1,1,1,1,7
1977 0,0,0,0,0,1,1,1,1,6
1978 0,0,0,0,0,1,1,1,1,5
1979 0,0,0,0,0,1,1,1,1,4
1980 0,0,0,0,0,1,1,1,1,3
1981 0,0,0,0,0,1,1,1,1,2
1982 0,0,0,0,0,1,1,1,1,1
1983 0,0,0,0,0,1,1,1,1,0
1984 0,0,0,0,0,1,1,1,0,9
1985 0,0,0,0,0,1,1,1,0,8
1986 0,0,0,0,0,1,1,1,0,7
1987 0,0,0,0,0,1,1,1,0,6
1988 0,0,0,0,0,1,1,1,0,5
1989 0,0,0,0,0,1,1,1,0,4
1990 0,0,0,0,0,1,1,1,0,3
1991 0,0,0,0,0,1,1,1,0,2
1992 0,0,0,0,0,1,1,1,0,1
1993 0,0,0,0,0,1,1,1,0,0
1994 0,0,0,0,0,1,1,0,6,0
1995 0,0,0,0,0,1,1,0,5,2
1996 0,0,0,0,0,1,1,0,5,1
1997 0,0,0,0,0,1,1,0,5,0
1998 0,0,0,0,0,1,1,0,4,4
1999 0,0,0,0,0,1,1,0,4,3
2000 0,0,0,0,0,1,1,0,4,2
2001 0,0,0,0,0,1,1,0,4,1
2002 0,0,0,0,0,1,1,0,4,0
2003 0,0,0,0,0,1,1,0,3,6
2004 0,0,0,0,0,1,1,0,3,5
2005 0,0,0,0,0,1,1,0,3,4
2006 0,0,0,0,0,1,1,0,3,3
2007 0,0,0,0,0,1,1,0,3,2
2008 0,0,0,0,0,1,1,0,3,1
2009 0,0,0,0,0,1,1,0,3,0
2010 0,0,0,0,0,1,1,0,2,8
2011 0,0,0,0,0,1,1,0,2,7
2012 0,0,0,0,0,1,1,0,2,6
2013 0,0,0,0,0,1,1,0,2,5
2014 0,0,0,0,0,1,1,0,2,4
2015 0,0,0,0,0,1,1,0,2,3
2016 0,0,0,0,0,1,1,0,2,2
2017 0,0,0,0,0,1,1,0,2,1
2018 0,0,0,0,0,1,1,0,2,0
2019 0,0,0,0,0,1,1,0,1,10
2020 0,0,0,0,0,1,1,0,1,9
2021 0,0,0,0,0,1,1,0,1,8
2022 0,0,0,0,0,1,1,0,1,7
2023 0,0,0,0,0,1,1,0,1,6
2024 0,0,0,0,0,1,1,0,1,5
2025 0,0,0,0,0,1,1,0,1,4
2026 0,0,0,0,0,1,1,0,1,3
2027 0,0,0,0,0,1,1,0,1,2
2028 0,0,0,0,0,1,1,0,1,1
2029 0,0,0,0,0,1,1,0,1,0
2030 0,0,0,0,0,1,1,0,0,12
2031 0,0,0,0,0,1,1,0,0,11
2032 0,0,0,0,0,1,1,0,0,10
2033 0,0,0,0,0,1,1,0,0,9
2034 0,0,0,0,0,1,1,0,0,8
2035 0,0,0,0,0,1,1,0,0,7
2036 0,0,0,0,0,1,1,0,0,6
2037 0,0,0,0,0,1,1,0,0,5
2038 0,0,0,0,0,1,1,0,0,4
2039 0,0,0,0,0,1,1,0,0,3
2040 0,0,0,0,0,1,1,0,0,2
2041 0,0,0,0,0,1,1,0,0,1
2042 0,0,0,0,0,1,1,0,0,0
2043 0,0,0,0,0,1,0,5,0,1
2044 0,0,0,0,0,1,0,5,0,0
2045 0,0,0,0,0,1,0,4,2,0
2046 0,0,0,0,0,1,0,4,1,2
2047 0,0,0,0,0,1,0,4,1,1
2048 0,0,0,0,0,1,0,4,1,0
2049 0,0,0,0,0,1,0,4,0,4
2050 0,0,0,0,0,1,0,4,0,3
2051 0,0,0,0,0,1,0,4,0,2
2052 0,0,0,0,0,1,0,4,0,1
2053 0,0,0,0,0,1,0,4,0,0
2054 0,0,0,0,0,1,0,3,3,1
2055 0,0,0,0,0,1,0,3,3,0
2056 0,0,0,0,0,1,0,3,2,3
2057 0,0,0,0,0,1,0,3,2,2
2058 0,0,0,0,0,1,0,3,2,1
2059 0,0,0,0,0,1,0,3,2,0
2060 0,0,0,0,0,1,0,3,1,5
2061 0,0,0,0,0,1,0,3,1,4
2062 0,0,0,0,0,1,0,3,1,3
2063 0,0,0,0,0,1,0,3,1,2
2064 0,0,0,0,0,1,0,3,1,1
2065 0,0,0,0,0,1,0,3,1,0
2066 0,0,0,0,0,1,0,3,0,7
2067 0,0,0,0,0,1,0,3,0,6
2068 0,0,0,0,0,1,0,3,0,5
2069 0,0,0,0,0,1,0,3,0,4
2070 0,0,0,0,0,1,0,3,0,3
2071 0,0,0,0,0,1,0,3,0,2
2072 0,0,0,0,0,1,0,3,0,1
2073 0,0,0,0,0,1,0,3,0,0
2074 0,0,0,0,0,1,0,2,5,0
2075 0,0,0,0,0,1,0,2,4,2
2076 0,0,0,0,0,1,0,2,4,1
2077 0,0,0,0,0,1,0,2,4,0
2078 0,0,0,0,0,1,0,2,3,4
2079 0,0,0,0,0,1,0,2,3,3
2080 0,0,0,0,0,1,0,2,3,2
2081 0,0,0,0,0,1,0,2,3,1
2082 0,0,0,0,0,1,0,2,3,0
2083 0,0,0,0,0,1,0,2,2,6
2084 0,0,0,0,0,1,0,2,2,5
2085 0,0,0,0,0,1,0,2,2,4
2086 0,0,0,0,0,1,0,2,2,3
2087 0,0,0,0,0,1,0,2,2,2
2088 0,0,0,0,0,1,0,2,2,1
2089 0,0,0,0,0,1,0,2,2,0
2090 0,0,0,0,0,1,0,2,1,8
2091 0,0,0,0,0,1,0,2,1,7
2092 0,0,0,0,0,1,0,2,1,6
2093 0,0,0,0,0,1,0,2,1,5
2094 0,0,0,0,0,1,0,2,1,4
2095 0,0,0,0,0,1,0,2,1,3
2096 0,0,0,0,0,1,0,2,1,2
2097 0,0,0,0,0,1,0,2,1,1
2098 0,0,0,0,0,1,0,2,1,0
2099 0,0,0,0,0,1,0,2,0,10
2100 0,0,0,0,0,1,0,2,0,9
2101 0,0,0,0,0,1,0,2,0,8
2102 0,0,0,0,0,1,0,2,0,7
2103 0,0,0,0,0,1,0,2,0,6
2104 0,0,0,0,0,1,0,2,0,5
2105 0,0,0,0,0,1,0,2,0,4
2106 0,0,0,0,0,1,0,2,0,3
2107 0,0,0,0,0,1,0,2,0,2
2108 0,0,0,0,0,1,0,2,0,1
2109 0,0,0,0,0,1,0,2,0,0
2110 0,0,0,0,0,1,0,1,6,1
2111 0,0,0,0,0,1,0,1,6,0
2112 0,0,0,0,0,1,0,1,5,3
2113 0,0,0,0,0,1,0,1,5,2
2114 0,0,0,0,0,1,0,1,5,1
2115 0,0,0,0,0,1,0,1,5,0
2116 0,0,0,0,0,1,0,1,4,5
2117 0,0,0,0,0,1,0,1,4,4
2118 0,0,0,0,0,1,0,1,4,3
2119 0,0,0,0,0,1,0,1,4,2
2120 0,0,0,0,0,1,0,1,4,1
2121 0,0,0,0,0,1,0,1,4,0
2122 0,0,0,0,0,1,0,1,3,7
2123 0,0,0,0,0,1,0,1,3,6
2124 0,0,0,0,0,1,0,1,3,5
2125 0,0,0,0,0,1,0,1,3,4
2126 0,0,0,0,0,1,0,1,3,3
2127 0,0,0,0,0,1,0,1,3,2
2128 0,0,0,0,0,1,0,1,3,1
2129 0,0,0,0,0,1,0,1,3,0
2130 0,0,0,0,0,1,0,1,2,9
2131 0,0,0,0,0,1,0,1,2,8
2132 0,0,0,0,0,1,0,1,2,7
2133 0,0,0,0,0,1,0,1,2,6
2134 0,0,0,0,0,1,0,1,2,5
2135 0,0,0,0,0,1,0,1,2,4
2136 0,0,0,0,0,1,0,1,2,3
2137 0,0,0,0,0,1,0,1,2,2
2138 0,0,0,0,0,1,0,1,2,1
2139 0,0,0,0,0,1,0,1,2,0
2140 0,0,0,0,0,1,0,1,1,11
2141 0,0,0,0,0,1,0,1,1,10
2142 0,0,0,0,0,1,0,1,1,9
2143 0,0,0,0,0,1,0,1,1,8
2144 0,0,0,0,0,1,0,1,1,7
2145 0,0,0,0,0,1,0,1,1,6
2146 0,0,0,0,0,1,0,1,1,5
2147 0,0,0,0,0,1,0,1,1,4
2148 0,0,0,0,0,1,0,1,1,3
2149 0,0,0,0,0,1,0,1,1,2
2150 0,0,0,0,0,1,0,1,1,1
2151 0,0,0,0,0,1,0,1,1,0
2152 0,0,0,0,0,1,0,1,0,13
2153 0,0,0,0,0,1,0,1,0,12
2154 0,0,0,0,0,1,0,1,0,11
2155 0,0,0,0,0,1,0,1,0,10
2156 0,0,0,0,0,1,0,1,0,9
2157 0,0,0,0,0,1,0,1,0,8
2158 0,0,0,0,0,1,0,1,0,7
2159 0,0,0,0,0,1,0,1,0,6
2160 0,0,0,0,0,1,0,1,0,5
2161 0,0,0,0,0,1,0,1,0,4
2162 0,0,0,0,0,1,0,1,0,3
2163 0,0,0,0,0,1,0,1,0,2
2164 0,0,0,0,0,1,0,1,0,1
2165 0,0,0,0,0,1,0,1,0,0
2166 0,0,0,0,0,1,0,0,8,0
2167 0,0,0,0,0,1,0,0,7,2
2168 0,0,0,0,0,1,0,0,7,1
2169 0,0,0,0,0,1,0,0,7,0
2170 0,0,0,0,0,1,0,0,6,4
2171 0,0,0,0,0,1,0,0,6,3
2172 0,0,0,0,0,1,0,0,6,2
2173 0,0,0,0,0,1,0,0,6,1
2174 0,0,0,0,0,1,0,0,6,0
2175 0,0,0,0,0,1,0,0,5,6
2176 0,0,0,0,0,1,0,0,5,5
2177 0,0,0,0,0,1,0,0,5,4
2178 0,0,0,0,0,1,0,0,5,3
2179 0,0,0,0,0,1,0,0,5,2
2180 0,0,0,0,0,1,0,0,5,1
2181 0,0,0,0,0,1,0,0,5,0
2182 0,0,0,0,0,1,0,0,4,8
2183 0,0,0,0,0,1,0,0,4,7
2184 0,0,0,0,0,1,0,0,4,6
2185 0,0,0,0,0,1,0,0,4,5
2186 0,0,0,0,0,1,0,0,4,4
2187 0,0,0,0,0,1,0,0,4,3
2188 0,0,0,0,0,1,0,0,4,2
2189 0,0,0,0,0,1,0,0,4,1
2190 0,0,0,0,0,1,0,0,4,0
2191 0,0,0,0,0,1,0,0,3,10
2192 0,0,0,0,0,1,0,0,3,9
2193 0,0,0,0,0,1,0,0,3,8
2194 0,0,0,0,0,1,0,0,3,7
2195 0,0,0,0,0,1,0,0,3,6
2196 0,0,0,0,0,1,0,0,3,5
2197 0,0,0,0,0,1,0,0,3,4
2198 0,0,0,0,0,1,0,0,3,3
2199 0,0,0,0,0,1,0,0,3,2
2200 0,0,0,0,0,1,0,0,3,1
2201 0,0,0,0,0,1,0,0,3,0
2202 0,0,0,0,0,1,0,0,2,12
2203 0,0,0,0,0,1,0,0,2,11
2204 0,0,0,0,0,1,0,0,2,10
2205 0,0,0,0,0,1,0,0,2,9
2206 0,0,0,0,0,1,0,0,2,8
2207 0,0,0,0,0,1,0,0,2,7
2208 0,0,0,0,0,1,0,0,2,6
2209 0,0,0,0,0,1,0,0,2,5
2210 0,0,0,0,0,1,0,0,2,4
2211 0,0,0,0,0,1,0,0,2,3
2212 0,0,0,0,0,1,0,0,2,2
2213 0,0,0,0,0,1,0,0,2,1
2214 0,0,0,0,0,1,0,0,2,0
2215 0,0,0,0,0,1,0,0,1,14
2216 0,0,0,0,0,1,0,0,1,13
2217 0,0,0,0,0,1,0,0,1,12
2218 0,0,0,0,0,1,0,0,1,11
2219 0,0,0,0,0,1,0,0,1,10
2220 0,0,0,0,0,1,0,0,1,9
2221 0,0,0,0,0,1,0,0,1,8
2222 0,0,0,0,0,1,0,0,1,7
2223 0,0,0,0,0,1,0,0,1,6
2224 0,0,0,0,0,1,0,0,1,5
2225 0,0,0,0,0,1,0,0,1,4
2226 0,0,0,0,0,1,0,0,1,3
2227 0,0,0,0,0,1,0,0,1,2
2228 0,0,0,0,0,1,0,0,1,1
2229 0,0,0,0,0,1,0,0,1,0
2230 0,0,0,0,0,1,0,0,0,16
2231 0,0,0,0,0,1,0,0,0,15
2232 0,0,0,0,0,1,0,0,0,14
2233 0,0,0,0,0,1,0,0,0,13
2234 0,0,0,0,0,1,0,0,0,12
2235 0,0,0,0,0,1,0,0,0,11
2236 0,0,0,0,0,1,0,0,0,10
2237 0,0,0,0,0,1,0,0,0,9
2238 0,0,0,0,0,1,0,0,0,8
2239 0,0,0,0,0,1,0,0,0,7
2240 0,0,0,0,0,1,0,0,0,6
2241 0,0,0,0,0,1,0,0,0,5
2242 0,0,0,0,0,1,0,0,0,4
2243 0,0,0,0,0,1,0,0,0,3
2244 0,0,0,0,0,1,0,0,0,2
2245 0,0,0,0,0,1,0,0,0,1
2246 0,0,0,0,0,1,0,0,0,0
2247 0,0,0,0,0,0,5,0,0,1
2248 0,0,0,0,0,0,5,0,0,0
2249 0,0,0,0,0,0,4,1,1,0
2250 0,0,0,0,0,0,4,1,0,2
2251 0,0,0,0,0,0,4,1,0,1
2252 0,0,0,0,0,0,4,1,0,0
2253 0,0,0,0,0,0,4,0,2,1
2254 0,0,0,0,0,0,4,0,2,0
2255 0,0,0,0,0,0,4,0,1,3
2256 0,0,0,0,0,0,4,0,1,2
2257 0,0,0,0,0,0,4,0,1,1
2258 0,0,0,0,0,0,4,0,1,0
2259 0,0,0,0,0,0,4,0,0,5
2260 0,0,0,0,0,0,4,0,0,4
2261 0,0,0,0,0,0,4,0,0,3
2262 0,0,0,0,0,0,4,0,0,2
2263 0,0,0,0,0,0,4,0,0,1
2264 0,0,0,0,0,0,4,0,0,0
2265 0,0,0,0,0,0,3,3,0,0
2266 0,0,0,0,0,0,3,2,1,1
2267 0,0,0,0,0,0,3,2,1,0
2268 0,0,0,0,0,0,3,2,0,3
2269 0,0,0,0,0,0,3,2,0,2
2270 0,0,0,0,0,0,3,2,0,1
2271 0,0,0,0,0,0,3,2,0,0
2272 0,0,0,0,0,0,3,1,3,0
2273 0,0,0,0,0,0,3,1,2,2
2274 0,0,0,0,0,0,3,1,2,1
2275 0,0,0,0,0,0,3,1,2,0
2276 0,0,0,0,0,0,3,1,1,4
2277 0,0,0,0,0,0,3,1,1,3
2278 0,0,0,0,0,0,3,1,1,2
2279 0,0,0,0,0,0,3,1,1,1
2280 0,0,0,0,0,0,3,1,1,0
2281 0,0,0,0,0,0,3,1,0,6
2282 0,0,0,0,0,0,3,1,0,5
2283 0,0,0,0,0,0,3,1,0,4
2284 0,0,0,0,0,0,3,1,0,3
2285 0,0,0,0,0,0,3,1,0,2
2286 0,0,0,0,0,0,3,1,0,1
2287 0,0,0,0,0,0,3,1,0,0
2288 0,0,0,0,0,0,3,0,4,1
2289 0,0,0,0,0,0,3,0,4,0
2290 0,0,0,0,0,0,3,0,3,3
2291 0,0,0,0,0,0,3,0,3,2
2292 0,0,0,0,0,0,3,0,3,1
2293 0,0,0,0,0,0,3,0,3,0
2294 0,0,0,0,0,0,3,0,2,5
2295 0,0,0,0,0,0,3,0,2,4
2296 0,0,0,0,0,0,3,0,2,3
2297 0,0,0,0,0,0,3,0,2,2
2298 0,0,0,0,0,0,3,0,2,1
2299 0,0,0,0,0,0,3,0,2,0
2300 0,0,0,0,0,0,3,0,1,7
2301 0,0,0,0,0,0,3,0,1,6
2302 0,0,0,0,0,0,3,0,1,5
2303 0,0,0,0,0,0,3,0,1,4
2304 0,0,0,0,0,0,3,0,1,3
2305 0,0,0,0,0,0,3,0,1,2
2306 0,0,0,0,0,0,3,0,1,1
2307 0,0,0,0,0,0,3,0,1,0
2308 0,0,0,0,0,0,3,0,0,9
2309 0,0,0,0,0,0,3,0,0,8
2310 0,0,0,0,0,0,3,0,0,7
2311 0,0,0,0,0,0,3,0,0,6
2312 0,0,0,0,0,0,3,0,0,5
2313 0,0,0,0,0,0,3,0,0,4
2314 0,0,0,0,0,0,3,0,0,3
2315 0,0,0,0,0,0,3,0,0,2
2316 0,0,0,0,0,0,3,0,0,1
2317 0,0,0,0,0,0,3,0,0,0
2318 0,0,0,0,0,0,2,4,0,1
2319 0,0,0,0,0,0,2,4,0,0
2320 0,0,0,0,0,0,2,3,2,0
2321 0,0,0,0,0,0,2,3,1,2
2322 0,0,0,0,0,0,2,3,1,1
2323 0,0,0,0,0,0,2,3,1,0
2324 0,0,0,0,0,0,2,3,0,4
2325 0,0,0,0,0,0,2,3,0,3
2326 0,0,0,0,0,0,2,3,0,2
2327 0,0,0,0,0,0,2,3,0,1
2328 0,0,0,0,0,0,2,3,0,0
2329 0,0,0,0,0,0,2,2,3,1
2330 0,0,0,0,0,0,2,2,3,0
2331 0,0,0,0,0,0,2,2,2,3
2332 0,0,0,0,0,0,2,2,2,2
2333 0,0,0,0,0,0,2,2,2,1
2334 0,0,0,0,0,0,2,2,2,0
2335 0,0,0,0,0,0,2,2,1,5
2336 0,0,0,0,0,0,2,2,1,4
2337 0,0,0,0,0,0,2,2,1,3
2338 0,0,0,0,0,0,2,2,1,2
2339 0,0,0,0,0,0,2,2,1,1
2340 0,0,0,0,0,0,2,2,1,0
2341 0,0,0,0,0,0,2,2,0,7
2342 0,0,0,0,0,0,2,2,0,6
2343 0,0,0,0,0,0,2,2,0,5
2344 0,0,0,0,0,0,2,2,0,4
2345 0,0,0,0,0,0,2,2,0,3
2346 0,0,0,0,0,0,2,2,0,2
2347 0,0,0,0,0,0,2,2,0,1
2348 0,0,0,0,0,0,2,2,0,0
2349 0,0,0,0,0,0,2,1,5,0
2350 0,0,0,0,0,0,2,1,4,2
2351 0,0,0,0,0,0,2,1,4,1
2352 0,0,0,0,0,0,2,1,4,0
2353 0,0,0,0,0,0,2,1,3,4
2354 0,0,0,0,0,0,2,1,3,3
2355 0,0,0,0,0,0,2,1,3,2
2356 0,0,0,0,0,0,2,1,3,1
2357 0,0,0,0,0,0,2,1,3,0
2358 0,0,0,0,0,0,2,1,2,6
2359 0,0,0,0,0,0,2,1,2,5
2360 0,0,0,0,0,0,2,1,2,4
2361 0,0,0,0,0,0,2,1,2,3
2362 0,0,0,0,0,0,2,1,2,2
2363 0,0,0,0,0,0,2,1,2,1
2364 0,0,0,0,0,0,2,1,2,0
2365 0,0,0,0,0,0,2,1,1,8
2366 0,0,0,0,0,0,2,1,1,7
2367 0,0,0,0,0,0,2,1,1,6
2368 0,0,0,0,0,0,2,1,1,5
2369 0,0,0,0,0,0,2,1,1,4
2370 0,0,0,0,0,0,2,1,1,3
2371 0,0,0,0,0,0,2,1,1,2
2372 0,0,0,0,0,0,2,1,1,1
2373 0,0,0,0,0,0,2,1,1,0
2374 0,0,0,0,0,0,2,1,0,10
2375 0,0,0,0,0,0,2,1,0,9
2376 0,0,0,0,0,0,2,1,0,8
2377 0,0,0,0,0,0,2,1,0,7
2378 0,0,0,0,0,0,2,1,0,6
2379 0,0,0,0,0,0,2,1,0,5
2380 0,0,0,0,0,0,2,1,0,4
2381 0,0,0,0,0,0,2,1,0,3
2382 0,0,0,0,0,0,2,1,0,2
2383 0,0,0,0,0,0,2,1,0,1
2384 0,0,0,0,0,0,2,1,0,0
2385 0,0,0,0,0,0,2,0,6,1
2386 0,0,0,0,0,0,2,0,6,0
2387 0,0,0,0,0,0,2,0,5,3
2388 0,0,0,0,0,0,2,0,5,2
2389 0,0,0,0,0,0,2,0,5,1
2390 0,0,0,0,0,0,2,0,5,0
2391 0,0,0,0,0,0,2,0,4,5
2392 0,0,0,0,0,0,2,0,4,4
2393 0,0,0,0,0,0,2,0,4,3
2394 0,0,0,0,0,0,2,0,4,2
2395 0,0,0,0,0,0,2,0,4,1
2396 0,0,0,0,0,0,2,0,4,0
2397 0,0,0,0,0,0,2,0,3,7
2398 0,0,0,0,0,0,2,0,3,6
2399 0,0,0,0,0,0,2,0,3,5
2400 0,0,0,0,0,0,2,0,3,4
2401 0,0,0,0,0,0,2,0,3,3
2402 0,0,0,0,0,0,2,0,3,2
2403 0,0,0,0,0,0,2,0,3,1
2404 0,0,0,0,0,0,2,0,3,0
2405 0,0,0,0,0,0,2,0,2,9
2406 0,0,0,0,0,0,2,0,2,8
2407 0,0,0,0,0,0,2,0,2,7
2408 0,0,0,0,0,0,2,0,2,6
2409 0,0,0,0,0,0,2,0,2,5
2410 0,0,0,0,0,0,2,0,2,4
2411 0,0,0,0,0,0,2,0,2,3
2412 0,0,0,0,0,0,2,0,2,2
2413 0,0,0,0,0,0,2,0,2,1
2414 0,0,0,0,0,0,2,0,2,0
2415 0,0,0,0,0,0,2,0,1,11
2416 0,0,0,0,0,0,2,0,1,10
2417 0,0,0,0,0,0,2,0,1,9
2418 0,0,0,0,0,0,2,0,1,8
2419 0,0,0,0,0,0,2,0,1,7
2420 0,0,0,0,0,0,2,0,1,6
2421 0,0,0,0,0,0,2,0,1,5
2422 0,0,0,0,0,0,2,0,1,4
2423 0,0,0,0,0,0,2,0,1,3
2424 0,0,0,0,0,0,2,0,1,2
2425 0,0,0,0,0,0,2,0,1,1
2426 0,0,0,0,0,0,2,0,1,0
2427 0,0,0,0,0,0,2,0,0,13
2428 0,0,0,0,0,0,2,0,0,12
2429 0,0,0,0,0,0,2,0,0,11
2430 0,0,0,0,0,0,2,0,0,10
2431 0,0,0,0,0,0,2,0,0,9
2432 0,0,0,0,0,0,2,0,0,8
2433 0,0,0,0,0,0,2,0,0,7
2434 0,0,0,0,0,0,2,0,0,6
2435 0,0,0,0,0,0,2,0,0,5
2436 0,0,0,0,0,0,2,0,0,4
2437 0,0,0,0,0,0,2,0,0,3
2438 0,0,0,0,0,0,2,0,0,2
2439 0,0,0,0,0,0,2,0,0,1
2440 0,0,0,0,0,0,2,0,0,0
2441 0,0,0,0,0,0,1,5,1,0
2442 0,0,0,0,0,0,1,5,0,2
2443 0,0,0,0,0,0,1,5,0,1
2444 0,0,0,0,0,0,1,5,0,0
2445 0,0,0,0,0,0,1,4,2,1
2446 0,0,0,0,0,0,1,4,2,0
2447 0,0,0,0,0,0,1,4,1,3
2448 0,0,0,0,0,0,1,4,1,2
2449 0,0,0,0,0,0,1,4,1,1
2450 0,0,0,0,0,0,1,4,1,0
2451 0,0,0,0,0,0,1,4,0,5
2452 0,0,0,0,0,0,1,4,0,4
2453 0,0,0,0,0,0,1,4,0,3
2454 0,0,0,0,0,0,1,4,0,2
2455 0,0,0,0,0,0,1,4,0,1
2456 0,0,0,0,0,0,1,4,0,0
2457 0,0,0,0,0,0,1,3,4,0
2458 0,0,0,0,0,0,1,3,3,2
2459 0,0,0,0,0,0,1,3,3,1
2460 0,0,0,0,0,0,1,3,3,0
2461 0,0,0,0,0,0,1,3,2,4
2462 0,0,0,0,0,0,1,3,2,3
2463 0,0,0,0,0,0,1,3,2,2
2464 0,0,0,0,0,0,1,3,2,1
2465 0,0,0,0,0,0,1,3,2,0
2466 0,0,0,0,0,0,1,3,1,6
2467 0,0,0,0,0,0,1,3,1,5
2468 0,0,0,0,0,0,1,3,1,4
2469 0,0,0,0,0,0,1,3,1,3
2470 0,0,0,0,0,0,1,3,1,2
2471 0,0,0,0,0,0,1,3,1,1
2472 0,0,0,0,0,0,1,3,1,0
2473 0,0,0,0,0,0,1,3,0,8
2474 0,0,0,0,0,0,1,3,0,7
2475 0,0,0,0,0,0,1,3,0,6
2476 0,0,0,0,0,0,1,3,0,5
2477 0,0,0,0,0,0,1,3,0,4
2478 0,0,0,0,0,0,1,3,0,3
2479 0,0,0,0,0,0,1,3,0,2
2480 0,0,0,0,0,0,1,3,0,1
2481 0,0,0,0,0,0,1,3,0,0
2482 0,0,0,0,0,0,1,2,5,1
2483 0,0,0,0,0,0,1,2,5,0
2484 0,0,0,0,0,0,1,2,4,3
2485 0,0,0,0,0,0,1,2,4,2
2486 0,0,0,0,0,0,1,2,4,1
2487 0,0,0,0,0,0,1,2,4,0
2488 0,0,0,0,0,0,1,2,3,5
2489 0,0,0,0,0,0,1,2,3,4
2490 0,0,0,0,0,0,1,2,3,3
2491 0,0,0,0,0,0,1,2,3,2
2492 0,0,0,0,0,0,1,2,3,1
2493 0,0,0,0,0,0,1,2,3,0
2494 0,0,0,0,0,0,1,2,2,7
2495 0,0,0,0,0,0,1,2,2,6
2496 0,0,0,0,0,0,1,2,2,5
2497 0,0,0,0,0,0,1,2,2,4
2498 0,0,0,0,0,0,1,2,2,3
2499 0,0,0,0,0,0,1,2,2,2
2500 0,0,0,0,0,0,1,2,2,1
2501 0,0,0,0,0,0,1,2,2,0
2502 0,0,0,0,0,0,1,2,1,9
2503 0,0,0,0,0,0,1,2,1,8
2504 0,0,0,0,0,0,1,2,1,7
2505 0,0,0,0,0,0,1,2,1,6
2506 0,0,0,0,0,0,1,2,1,5
2507 0,0,0,0,0,0,1,2,1,4
2508 0,0,0,0,0,0,1,2,1,3
2509 0,0,0,0,0,0,1,2,1,2
2510 0,0,0,0,0,0,1,2,1,1
2511 0,0,0,0,0,0,1,2,1,0
2512 0,0,0,0,0,0,1,2,0,11
2513 0,0,0,0,0,0,1,2,0,10
2514 0,0,0,0,0,0,1,2,0,9
2515 0,0,0,0,0,0,1,2,0,8
2516 0,0,0,0,0,0,1,2,0,7
2517 0,0,0,0,0,0,1,2,0,6
2518 0,0,0,0,0,0,1,2,0,5
2519 0,0,0,0,0,0,1,2,0,4
2520 0,0,0,0,0,0,1,2,0,3
2521 0,0,0,0,0,0,1,2,0,2
2522 0,0,0,0,0,0,1,2,0,1
2523 0,0,0,0,0,0,1,2,0,0
2524 0,0,0,0,0,0,1,1,7,0
2525 0,0,0,0,0,0,1,1,6,2
2526 0,0,0,0,0,0,1,1,6,1
2527 0,0,0,0,0,0,1,1,6,0
2528 0,0,0,0,0,0,1,1,5,4
2529 0,0,0,0,0,0,1,1,5,3
2530 0,0,0,0,0,0,1,1,5,2
2531 0,0,0,0,0,0,1,1,5,1
2532 0,0,0,0,0,0,1,1,5,0
2533 0,0,0,0,0,0,1,1,4,6
2534 0,0,0,0,0,0,1,1,4,5
2535 0,0,0,0,0,0,1,1,4,4
2536 0,0,0,0,0,0,1,1,4,3
2537 0,0,0,0,0,0,1,1,4,2
2538 0,0,0,0,0,0,1,1,4,1
2539 0,0,0,0,0,0,1,1,4,0
2540 0,0,0,0,0,0,1,1,3,8
2541 0,0,0,0,0,0,1,1,3,7
2542 0,0,0,0,0,0,1,1,3,6
2543 0,0,0,0,0,0,1,1,3,5
2544 0,0,0,0,0,0,1,1,3,4
2545 0,0,0,0,0,0,1,1,3,3
2546 0,0,0,0,0,0,1,1,3,2
2547 0,0,0,0,0,0,1,1,3,1
2548 0,0,0,0,0,0,1,1,3,0
2549 0,0,0,0,0,0,1,1,2,10
2550 0,0,0,0,0,0,1,1,2,9
2551 0,0,0,0,0,0,1,1,2,8
2552 0,0,0,0,0,0,1,1,2,7
2553 0,0,0,0,0,0,1,1,2,6
2554 0,0,0,0,0,0,1,1,2,5
2555 0,0,0,0,0,0,1,1,2,4
2556 0,0,0,0,0,0,1,1,2,3
2557 0,0,0,0,0,0,1,1,2,2
2558 0,0,0,0,0,0,1,1,2,1
2559 0,0,0,0,0,0,1,1,2,0
2560 0,0,0,0,0,0,1,1,1,12
2561 0,0,0,0,0,0,1,1,1,11
2562 0,0,0,0,0,0,1,1,1,10
2563 0,0,0,0,0,0,1,1,1,9
2564 0,0,0,0,0,0,1,1,1,8
2565 0,0,0,0,0,0,1,1,1,7
2566 0,0,0,0,0,0,1,1,1,6
2567 0,0,0,0,0,0,1,1,1,5
2568 0,0,0,0,0,0,1,1,1,4
2569 0,0,0,0,0,0,1,1,1,3
2570 0,0,0,0,0,0,1,1,1,2
2571 0,0,0,0,0,0,1,1,1,1
2572 0,0,0,0,0,0,1,1,1,0
2573 0,0,0,0,0,0,1,1,0,14
2574 0,0,0,0,0,0,1,1,0,13
2575 0,0,0,0,0,0,1,1,0,12
2576 0,0,0,0,0,0,1,1,0,11
2577 0,0,0,0,0,0,1,1,0,10
2578 0,0,0,0,0,0,1,1,0,9
2579 0,0,0,0,0,0,1,1,0,8
2580 0,0,0,0,0,0,1,1,0,7
2581 0,0,0,0,0,0,1,1,0,6
2582 0,0,0,0,0,0,1,1,0,5
2583 0,0,0,0,0,0,1,1,0,4
2584 0,0,0,0,0,0,1,1,0,3
2585 0,0,0,0,0,0,1,1,0,2
2586 0,0,0,0,0,0,1,1,0,1
2587 0,0,0,0,0,0,1,1,0,0
2588 0,0,0,0,0,0,1,0,8,1
2589 0,0,0,0,0,0,1,0,8,0
2590 0,0,0,0,0,0,1,0,7,3
2591 0,0,0,0,0,0,1,0,7,2
2592 0,0,0,0,0,0,1,0,7,1
2593 0,0,0,0,0,0,1,0,7,0
2594 0,0,0,0,0,0,1,0,6,5
2595 0,0,0,0,0,0,1,0,6,4
2596 0,0,0,0,0,0,1,0,6,3
2597 0,0,0,0,0,0,1,0,6,2
2598 0,0,0,0,0,0,1,0,6,1
2599 0,0,0,0,0,0,1,0,6,0
2600 0,0,0,0,0,0,1,0,5,7
2601 0,0,0,0,0,0,1,0,5,6
2602 0,0,0,0,0,0,1,0,5,5
2603 0,0,0,0,0,0,1,0,5,4
2604 0,0,0,0,0,0,1,0,5,3
2605 0,0,0,0,0,0,1,0,5,2
2606 0,0,0,0,0,0,1,0,5,1
2607 0,0,0,0,0,0,1,0,5,0
2608 0,0,0,0,0,0,1,0,4,9
2609 0,0,0,0,0,0,1,0,4,8
2610 0,0,0,0,0,0,1,0,4,7
2611 0,0,0,0,0,0,1,0,4,6
2612 0,0,0,0,0,0,1,0,4,5
2613 0,0,0,0,0,0,1,0,4,4
2614 0,0,0,0,0,0,1,0,4,3
2615 0,0,0,0,0,0,1,0,4,2
2616 0,0,0,0,0,0,1,0,4,1
2617 0,0,0,0,0,0,1,0,4,0
2618 0,0,0,0,0,0,1,0,3,11
2619 0,0,0,0,0,0,1,0,3,10
2620 0,0,0,0,0,0,1,0,3,9
2621 0,0,0,0,0,0,1,0,3,8
2622 0,0,0,0,0,0,1,0,3,7
2623 0,0,0,0,0,0,1,0,3,6
2624 0,0,0,0,0,0,1,0,3,5
2625 0,0,0,0,0,0,1,0,3,4
2626 0,0,0,0,0,0,1,0,3,3
2627 0,0,0,0,0,0,1,0,3,2
2628 0,0,0,0,0,0,1,0,3,1
2629 0,0,0,0,0,0,1,0,3,0
2630 0,0,0,0,0,0,1,0,2,13
2631 0,0,0,0,0,0,1,0,2,12
2632 0,0,0,0,0,0,1,0,2,11
2633 0,0,0,0,0,0,1,0,2,10
2634 0,0,0,0,0,0,1,0,2,9
2635 0,0,0,0,0,0,1,0,2,8
2636 0,0,0,0,0,0,1,0,2,7
2637 0,0,0,0,0,0,1,0,2,6
2638 0,0,0,0,0,0,1,0,2,5
2639 0,0,0,0,0,0,1,0,2,4
2640 0,0,0,0,0,0,1,0,2,3
2641 0,0,0,0,0,0,1,0,2,2
2642 0,0,0,0,0,0,1,0,2,1
2643 0,0,0,0,0,0,1,0,2,0
2644 0,0,0,0,0,0,1,0,1,15
2645 0,0,0,0,0,0,1,0,1,14
2646 0,0,0,0,0,0,1,0,1,13
2647 0,0,0,0,0,0,1,0,1,12
2648 0,0,0,0,0,0,1,0,1,11
2649 0,0,0,0,0,0,1,0,1,10
2650 0,0,0,0,0,0,1,0,1,9
2651 0,0,0,0,0,0,1,0,1,8
2652 0,0,0,0,0,0,1,0,1,7
2653 0,0,0,0,0,0,1,0,1,6
2654 0,0,0,0,0,0,1,0,1,5
2655 0,0,0,0,0,0,1,0,1,4
2656 0,0,0,0,0,0,1,0,1,3
2657 0,0,0,0,0,0,1,0,1,2
2658 0,0,0,0,0,0,1,0,1,1
2659 0,0,0,0,0,0,1,0,1,0
2660 0,0,0,0,0,0,1,0,0,17
2661 0,0,0,0,0,0,1,0,0,16
2662 0,0,0,0,0,0,1,0,0,15
2663 0,0,0,0,0,0,1,0,0,14
2664 0,0,0,0,0,0,1,0,0,13
2665 0,0,0,0,0,0,1,0,0,12
2666 0,0,0,0,0,0,1,0,0,11
2667 0,0,0,0,0,0,1,0,0,10
2668 0,0,0,0,0,0,1,0,0,9
2669 0,0,0,0,0,0,1,0,0,8
2670 0,0,0,0,0,0,1,0,0,7
2671 0,0,0,0,0,0,1,0,0,6
2672 0,0,0,0,0,0,1,0,0,5
2673 0,0,0,0,0,0,1,0,0,4
2674 0,0,0,0,0,0,1,0,0,3
2675 0,0,0,0,0,0,1,0,0,2
2676 0,0,0,0,0,0,1,0,0,1
2677 0,0,0,0,0,0,1,0,0,0
2678 0,0,0,0,0,0,0,7,0,0
2679 0,0,0,0,0,0,0,6,1,1
2680 0,0,0,0,0,0,0,6,1,0
2681 0,0,0,0,0,0,0,6,0,3
2682 0,0,0,0,0,0,0,6,0,2
2683 0,0,0,0,0,0,0,6,0,1
2684 0,0,0,0,0,0,0,6,0,0
2685 0,0,0,0,0,0,0,5,3,0
2686 0,0,0,0,0,0,0,5,2,2
2687 0,0,0,0,0,0,0,5,2,1
2688 0,0,0,0,0,0,0,5,2,0
2689 0,0,0,0,0,0,0,5,1,4
2690 0,0,0,0,0,0,0,5,1,3
2691 0,0,0,0,0,0,0,5,1,2
2692 0,0,0,0,0,0,0,5,1,1
2693 0,0,0,0,0,0,0,5,1,0
2694 0,0,0,0,0,0,0,5,0,6
2695 0,0,0,0,0,0,0,5,0,5
2696 0,0,0,0,0,0,0,5,0,4
2697 0,0,0,0,0,0,0,5,0,3
2698 0,0,0,0,0,0,0,5,0,2
2699 0,0,0,0,0,0,0,5,0,1
2700 0,0,0,0,0,0,0,5,0,0
2701 0,0,0,0,0,0,0,4,4,1
2702 0,0,0,0,0,0,0,4,4,0
2703 0,0,0,0,0,0,0,4,3,3
2704 0,0,0,0,0,0,0,4,3,2
2705 0,0,0,0,0,0,0,4,3,1
2706 0,0,0,0,0,0,0,4,3,0
2707 0,0,0,0,0,0,0,4,2,5
2708 0,0,0,0,0,0,0,4,2,4
2709 0,0,0,0,0,0,0,4,2,3
2710 0,0,0,0,0,0,0,4,2,2
2711 0,0,0,0,0,0,0,4,2,1
2712 0,0,0,0,0,0,0,4,2,0
2713 0,0,0,0,0,0,0,4,1,7
2714 0,0,0,0,0,0,0,4,1,6
2715 0,0,0,0,0,0,0,4,1,5
2716 0,0,0,0,0,0,0,4,1,4
2717 0,0,0,0,0,0,0,4,1,3
2718 0,0,0,0,0,0,0,4,1,2
2719 0,0,0,0,0,0,0,4,1,1
2720 0,0,0,0,0,0,0,4,1,0
2721 0,0,0,0,0,0,0,4,0,9
2722 0,0,0,0,0,0,0,4,0,8
2723 0,0,0,0,0,0,0,4,0,7
2724 0,0,0,0,0,0,0,4,0,6
2725 0,0,0,0,0,0,0,4,0,5
2726 0,0,0,0,0,0,0,4,0,4
2727 0,0,0,0,0,0,0,4,0,3
2728 0,0,0,0,0,0,0,4,0,2
2729 0,0,0,0,0,0,0,4,0,1
2730 0,0,0,0,0,0,0,4,0,0
2731 0,0,0,0,0,0,0,3,6,0
2732 0,0,0,0,0,0,0,3,5,2
2733 0,0,0,0,0,0,0,3,5,1
2734 0,0,0,0,0,0,0,3,5,0
2735 0,0,0,0,0,0,0,3,4,4
2736 0,0,0,0,0,0,0,3,4,3
2737 0,0,0,0,0,0,0,3,4,2
2738 0,0,0,0,0,0,0,3,4,1
2739 0,0,0,0,0,0,0,3,4,0
2740 0,0,0,0,0,0,0,3,3,6
2741 0,0,0,0,0,0,0,3,3,5
2742 0,0,0,0,0,0,0,3,3,4
2743 0,0,0,0,0,0,0,3,3,3
2744 0,0,0,0,0,0,0,3,3,2
2745 0,0,0,0,0,0,0,3,3,1
2746 0,0,0,0,0,0,0,3,3,0
2747 0,0,0,0,0,0,0,3,2,8
2748 0,0,0,0,0,0,0,3,2,7
2749 0,0,0,0,0,0,0,3,2,6
2750 0,0,0,0,0,0,0,3,2,5
2751 0,0,0,0,0,0,0,3,2,4
2752 0,0,0,0,0,0,0,3,2,3
2753 0,0,0,0,0,0,0,3,2,2
2754 0,0,0,0,0,0,0,3,2,1
2755 0,0,0,0,0,0,0,3,2,0
2756 0,0,0,0,0,0,0,3,1,10
2757 0,0,0,0,0,0,0,3,1,9
2758 0,0,0,0,0,0,0,3,1,8
2759 0,0,0,0,0,0,0,3,1,7
2760 0,0,0,0,0,0,0,3,1,6
2761 0,0,0,0,0,0,0,3,1,5
2762 0,0,0,0,0,0,0,3,1,4
2763 0,0,0,0,0,0,0,3,1,3
2764 0,0,0,0,0,0,0,3,1,2
2765 0,0,0,0,0,0,0,3,1,1
2766 0,0,0,0,0,0,0,3,1,0
2767 0,0,0,0,0,0,0,3,0,12
2768 0,0,0,0,0,0,0,3,0,11
2769 0,0,0,0,0,0,0,3,0,10
2770 0,0,0,0,0,0,0,3,0,9
2771 0,0,0,0,0,0,0,3,0,8
2772 0,0,0,0,0,0,0,3,0,7
2773 0,0,0,0,0,0,0,3,0,6
2774 0,0,0,0,0,0,0,3,0,5
2775 0,0,0,0,0,0,0,3,0,4
2776 0,0,0,0,0,0,0,3,0,3
2777 0,0,0,0,0,0,0,3,0,2
2778 0,0,0,0,0,0,0,3,0,1
2779 0,0,0,0,0,0,0,3,0,0
2780 0,0,0,0,0,0,0,2,7,1
2781 0,0,0,0,0,0,0,2,7,0
2782 0,0,0,0,0,0,0,2,6,3
2783 0,0,0,0,0,0,0,2,6,2
2784 0,0,0,0,0,0,0,2,6,1
2785 0,0,0,0,0,0,0,2,6,0
2786 0,0,0,0,0,0,0,2,5,5
2787 0,0,0,0,0,0,0,2,5,4
2788 0,0,0,0,0,0,0,2,5,3
2789 0,0,0,0,0,0,0,2,5,2
2790 0,0,0,0,0,0,0,2,5,1
2791 0,0,0,0,0,0,0,2,5,0
2792 0,0,0,0,0,0,0,2,4,7
2793 0,0,0,0,0,0,0,2,4,6
2794 0,0,0,0,0,0,0,2,4,5
2795 0,0,0,0,0,0,0,2,4,4
2796 0,0,0,0,0,0,0,2,4,3
2797 0,0,0,0,0,0,0,2,4,2
2798 0,0,0,0,0,0,0,2,4,1
2799 0,0,0,0,0,0,0,2,4,0
2800 0,0,0,0,0,0,0,2,3,9
2801 0,0,0,0,0,0,0,2,3,8
2802 0,0,0,0,0,0,0,2,3,7
2803 0,0,0,0,0,0,0,2,3,6
2804 0,0,0,0,0,0,0,2,3,5
2805 0,0,0,0,0,0,0,2,3,4
2806 0,0,0,0,0,0,0,2,3,3
2807 0,0,0,0,0,0,0,2,3,2
2808 0,0,0,0,0,0,0,2,3,1
2809 0,0,0,0,0,0,0,2,3,0
2810 0,0,0,0,0,0,0,2,2,11
2811 0,0,0,0,0,0,0,2,2,10
2812 0,0,0,0,0,0,0,2,2,9
2813 0,0,0,0,0,0,0,2,2,8
2814 0,0,0,0,0,0,0,2,2,7
2815 0,0,0,0,0,0,0,2,2,6
2816 0,0,0,0,0,0,0,2,2,5
2817 0,0,0,0,0,0,0,2,2,4
2818 0,0,0,0,0,0,0,2,2,3
2819 0,0,0,0,0,0,0,2,2,2
2820 0,0,0,0,0,0,0,2,2,1
2821 0,0,0,0,0,0,0,2,2,0
2822 0,0,0,0,0,0,0,2,1,13
2823 0,0,0,0,0,0,0,2,1,12
2824 0,0,0,0,0,0,0,2,1,11
2825 0,0,0,0,0,0,0,2,1,10
2826 0,0,0,0,0,0,0,2,1,9
2827 0,0,0,0,0,0,0,2,1,8
2828 0,0,0,0,0,0,0,2,1,7
2829 0,0,0,0,0,0,0,2,1,6
2830 0,0,0,0,0,0,0,2,1,5
2831 0,0,0,0,0,0,0,2,1,4
2832 0,0,0,0,0,0,0,2,1,3
2833 0,0,0,0,0,0,0,2,1,2
2834 0,0,0,0,0,0,0,2,1,1
2835 0,0,0,0,0,0,0,2,1,0
2836 0,0,0,0,0,0,0,2,0,15
2837 0,0,0,0,0,0,0,2,0,14
2838 0,0,0,0,0,0,0,2,0,13
2839 0,0,0,0,0,0,0,2,0,12
2840 0,0,0,0,0,0,0,2,0,11
2841 0,0,0,0,0,0,0,2,0,10
2842 0,0,0,0,0,0,0,2,0,9
2843 0,0,0,0,0,0,0,2,0,8
2844 0,0,0,0,0,0,0,2,0,7
2845 0,0,0,0,0,0,0,2,0,6
2846 0,0,0,0,0,0,0,2,0,5
2847 0,0,0,0,0,0,0,2,0,4
2848 0,0,0,0,0,0,0,2,0,3
2849 0,0,0,0,0,0,0,2,0,2
2850 0,0,0,0,0,0,0,2,0,1
2851 0,0,0,0,0,0,0,2,0,0
2852 0,0,0,0,0,0,0,1,9,0
2853 0,0,0,0,0,0,0,1,8,2
2854 0,0,0,0,0,0,0,1,8,1
2855 0,0,0,0,0,0,0,1,8,0
2856 0,0,0,0,0,0,0,1,7,4
2857 0,0,0,0,0,0,0,1,7,3
2858 0,0,0,0,0,0,0,1,7,2
2859 0,0,0,0,0,0,0,1,7,1
2860 0,0,0,0,0,0,0,1,7,0
2861 0,0,0,0,0,0,0,1,6,6
2862 0,0,0,0,0,0,0,1,6,5
2863 0,0,0,0,0,0,0,1,6,4
2864 0,0,0,0,0,0,0,1,6,3
2865 0,0,0,0,0,0,0,1,6,2
2866 0,0,0,0,0,0,0,1,6,1
2867 0,0,0,0,0,0,0,1,6,0
2868 0,0,0,0,0,0,0,1,5,8
2869 0,0,0,0,0,0,0,1,5,7
2870 0,0,0,0,0,0,0,1,5,6
2871 0,0,0,0,0,0,0,1,5,5
2872 0,0,0,0,0,0,0,1,5,4
2873 0,0,0,0,0,0,0,1,5,3
2874 0,0,0,0,0,0,0,1,5,2
2875 0,0,0,0,0,0,0,1,5,1
2876 0,0,0,0,0,0,0,1,5,0
2877 0,0,0,0,0,0,0,1,4,10
2878 0,0,0,0,0,0,0,1,4,9
2879 0,0,0,0,0,0,0,1,4,8
2880 0,0,0,0,0,0,0,1,4,7
2881 0,0,0,0,0,0,0,1,4,6
2882 0,0,0,0,0,0,0,1,4,5
2883 0,0,0,0,0,0,0,1,4,4
2884 0,0,0,0,0,0,0,1,4,3
2885 0,0,0,0,0,0,0,1,4,2
2886 0,0,0,0,0,0,0,1,4,1
2887 0,0,0,0,0,0,0,1,4,0
2888 0,0,0,0,0,0,0,1,3,12
2889 0,0,0,0,0,0,0,1,3,11
2890 0,0,0,0,0,0,0,1,3,10
2891 0,0,0,0,0,0,0,1,3,9
2892 0,0,0,0,0,0,0,1,3,8
2893 0,0,0,0,0,0,0,1,3,7
2894 0,0,0,0,0,0,0,1,3,6
2895 0,0,0,0,0,0,0,1,3,5
2896 0,0,0,0,0,0,0,1,3,4
2897 0,0,0,0,0,0,0,1,3,3
2898 0,0,0,0,0,0,0,1,3,2
2899 0,0,0,0,0,0,0,1,3,1
2900 0,0,0,0,0,0,0,1,3,0
2901 0,0,0,0,0,0,0,1,2,14
2902 0,0,0,0,0,0,0,1,2,13
2903 0,0,0,0,0,0,0,1,2,12
2904 0,0,0,0,0,0,0,1,2,11
2905 0,0,0,0,0,0,0,1,2,10
2906 0,0,0,0,0,0,0,1,2,9
2907 0,0,0,0,0,0,0,1,2,8
2908 0,0,0,0,0,0,0,1,2,7
2909 0,0,0,0,0,0,0,1,2,6
2910 0,0,0,0,0,0,0,1,2,5
2911 0,0,0,0,0,0,0,1,2,4
2912 0,0,0,0,0,0,0,1,2,3
2913 0,0,0,0,0,0,0,1,2,2
2914 0,0,0,0,0,0,0,1,2,1
2915 0,0,0,0,0,0,0,1,2,0
2916 0,0,0,0,0,0,0,1,1,16
2917 0,0,0,0,0,0,0,1,1,15
2918 0,0,0,0,0,0,0,1,1,14
2919 0,0,0,0,0,0,0,1,1,13
2920 0,0,0,0,0,0,0,1,1,12
2921 0,0,0,0,0,0,0,1,1,11
2922 0,0,0,0,0,0,0,1,1,10
2923 0,0,0,0,0,0,0,1,1,9
2924 0,0,0,0,0,0,0,1,1,8
2925 0,0,0,0,0,0,0,1,1,7
2926 0,0,0,0,0,0,0,1,1,6
2927 0,0,0,0,0,0,0,1,1,5
2928 0,0,0,0,0,0,0,1,1,4
2929 0,0,0,0,0,0,0,1,1,3
2930 0,0,0,0,0,0,0,1,1,2
2931 0,0,0,0,0,0,0,1,1,1
2932 0,0,0,0,0,0,0,1,1,0
2933 0,0,0,0,0,0,0,1,0,18
2934 0,0,0,0,0,0,0,1,0,17
2935 0,0,0,0,0,0,0,1,0,16
2936 0,0,0,0,0,0,0,1,0,15
2937 0,0,0,0,0,0,0,1,0,14
2938 0,0,0,0,0,0,0,1,0,13
2939 0,0,0,0,0,0,0,1,0,12
2940 0,0,0,0,0,0,0,1,0,11
2941 0,0,0,0,0,0,0,1,0,10
2942 0,0,0,0,0,0,0,1,0,9
2943 0,0,0,0,0,0,0,1,0,8
2944 0,0,0,0,0,0,0,1,0,7
2945 0,0,0,0,0,0,0,1,0,6
2946 0,0,0,0,0,0,0,1,0,5
2947 0,0,0,0,0,0,0,1,0,4
2948 0,0,0,0,0,0,0,1,0,3
2949 0,0,0,0,0,0,0,1,0,2
2950 0,0,0,0,0,0,0,1,0,1
2951 0,0,0,0,0,0,0,1,0,0
2952 0,0,0,0,0,0,0,0,10,1
2953 0,0,0,0,0,0,0,0,10,0
2954 0,0,0,0,0,0,0,0,9,3
2955 0,0,0,0,0,0,0,0,9,2
2956 0,0,0,0,0,0,0,0,9,1
2957 0,0,0,0,0,0,0,0,9,0
2958 0,0,0,0,0,0,0,0,8,5
2959 0,0,0,0,0,0,0,0,8,4
2960 0,0,0,0,0,0,0,0,8,3
2961 0,0,0,0,0,0,0,0,8,2
2962 0,0,0,0,0,0,0,0,8,1
2963 0,0,0,0,0,0,0,0,8,0
2964 0,0,0,0,0,0,0,0,7,7
2965 0,0,0,0,0,0,0,0,7,6
2966 0,0,0,0,0,0,0,0,7,5
2967 0,0,0,0,0,0,0,0,7,4
2968 0,0,0,0,0,0,0,0,7,3
2969 0,0,0,0,0,0,0,0,7,2
2970 0,0,0,0,0,0,0,0,7,1
2971 0,0,0,0,0,0,0,0,7,0
2972 0,0,0,0,0,0,0,0,6,9
2973 0,0,0,0,0,0,0,0,6,8
2974 0,0,0,0,0,0,0,0,6,7
2975 0,0,0,0,0,0,0,0,6,6
2976 0,0,0,0,0,0,0,0,6,5
2977 0,0,0,0,0,0,0,0,6,4
2978 0,0,0,0,0,0,0,0,6,3
2979 0,0,0,0,0,0,0,0,6,2
2980 0,0,0,0,0,0,0,0,6,1
2981 0,0,0,0,0,0,0,0,6,0
2982 0,0,0,0,0,0,0,0,5,11
2983 0,0,0,0,0,0,0,0,5,10
2984 0,0,0,0,0,0,0,0,5,9
2985 0,0,0,0,0,0,0,0,5,8
2986 0,0,0,0,0,0,0,0,5,7
2987 0,0,0,0,0,0,0,0,5,6
2988 0,0,0,0,0,0,0,0,5,5
2989 0,0,0,0,0,0,0,0,5,4
2990 0,0,0,0,0,0,0,0,5,3
2991 0,0,0,0,0,0,0,0,5,2
2992 0,0,0,0,0,0,0,0,5,1
2993 0,0,0,0,0,0,0,0,5,0
2994 0,0,0,0,0,0,0,0,4,13
2995 0,0,0,0,0,0,0,0,4,12
2996 0,0,0,0,0,0,0,0,4,11
2997 0,0,0,0,0,0,0,0,4,10
2998 0,0,0,0,0,0,0,0,4,9
2999 0,0,0,0,0,0,0,0,4,8
3000 0,0,0,0,0,0,0,0,4,7
3001 0,0,0,0,0,0,0,0,4,6
3002 0,0,0,0,0,0,0,0,4,5
3003 0,0,0,0,0,0,0,0,4,4
3004 0,0,0,0,0,0,0,0,4,3
3005 0,0,0,0,0,0,0,0,4,2
3006 0,0,0,0,0,0,0,0,4,1
3007 0,0,0,0,0,0,0,0,4,0
3008 0,0,0,0,0,0,0,0,3,15
3009 0,0,0,0,0,0,0,0,3,14
3010 0,0,0,0,0,0,0,0,3,13
3011 0,0,0,0,0,0,0,0,3,12
3012 0,0,0,0,0,0,0,0,3,11
3013 0,0,0,0,0,0,0,0,3,10
3014 0,0,0,0,0,0,0,0,3,9
3015 0,0,0,0,0,0,0,0,3,8
3016 0,0,0,0,0,0,0,0,3,7
3017 0,0,0,0,0,0,0,0,3,6
3018 0,0,0,0,0,0,0,0,3,5
3019 0,0,0,0,0,0,0,0,3,4
3020 0,0,0,0,0,0,0,0,3,3
3021 0,0,0,0,0,0,0,0,3,2
3022 0,0,0,0,0,0,0,0,3,1
3023 0,0,0,0,0,0,0,0,3,0
3024 0,0,0,0,0,0,0,0,2,17
3025 0,0,0,0,0,0,0,0,2,16
3026 0,0,0,0,0,0,0,0,2,15
3027 0,0,0,0,0,0,0,0,2,14
3028 0,0,0,0,0,0,0,0,2,13
3029 0,0,0,0,0,0,0,0,2,12
3030 0,0,0,0,0,0,0,0,2,11
3031 0,0,0,0,0,0,0,0,2,10
3032 0,0,0,0,0,0,0,0,2,9
3033 0,0,0,0,0,0,0,0,2,8
3034 0,0,0,0,0,0,0,0,2,7
3035 0,0,0,0,0,0,0,0,2,6
3036 0,0,0,0,0,0,0,0,2,5
3037 0,0,0,0,0,0,0,0,2,4
3038 0,0,0,0,0,0,0,0,2,3
3039 0,0,0,0,0,0,0,0,2,2
3040 0,0,0,0,0,0,0,0,2,1
3041 0,0,0,0,0,0,0,0,2,0
3042 0,0,0,0,0,0,0,0,1,19
3043 0,0,0,0,0,0,0,0,1,18
3044 0,0,0,0,0,0,0,0,1,17
3045 0,0,0,0,0,0,0,0,1,16
3046 0,0,0,0,0,0,0,0,1,15
3047 0,0,0,0,0,0,0,0,1,14
3048 0,0,0,0,0,0,0,0,1,13
3049 0,0,0,0,0,0,0,0,1,12
3050 0,0,0,0,0,0,0,0,1,11
3051 0,0,0,0,0,0,0,0,1,10
3052 0,0,0,0,0,0,0,0,1,9
3053 0,0,0,0,0,0,0,0,1,8
3054 0,0,0,0,0,0,0,0,1,7
3055 0,0,0,0,0,0,0,0,1,6
3056 0,0,0,0,0,0,0,0,1,5
3057 0,0,0,0,0,0,0,0,1,4
3058 0,0,0,0,0,0,0,0,1,3
3059 0,0,0,0,0,0,0,0,1,2
3060 0,0,0,0,0,0,0,0,1,1
3061 0,0,0,0,0,0,0,0,1,0
3062 0,0,0,0,0,0,0,0,0,21
3063 0,0,0,0,0,0,0,0,0,20
3064 0,0,0,0,0,0,0,0,0,19
3065 0,0,0,0,0,0,0,0,0,18
3066 0,0,0,0,0,0,0,0,0,17
3067 0,0,0,0,0,0,0,0,0,16
3068 0,0,0,0,0,0,0,0,0,15
3069 0,0,0,0,0,0,0,0,0,14
3070 0,0,0,0,0,0,0,0,0,13
3071 0,0,0,0,0,0,0,0,0,12
3072 0,0,0,0,0,0,0,0,0,11
3073 0,0,0,0,0,0,0,0,0,10
3074 0,0,0,0,0,0,0,0,0,9
3075 0,0,0,0,0,0,0,0,0,8
3076 0,0,0,0,0,0,0,0,0,7
3077 0,0,0,0,0,0,0,0,0,6
3078 0,0,0,0,0,0,0,0,0,5
3079 0,0,0,0,0,0,0,0,0,4
3080 0,0,0,0,0,0,0,0,0,3
3081 0,0,0,0,0,0,0,0,0,2
3082 0,0,0,0,0,0,0,0,0,1
3083 0,0,0,0,0,0,0,0,0,0