blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
357
content_id
stringlengths
40
40
detected_licenses
listlengths
0
58
license_type
stringclasses
2 values
repo_name
stringlengths
4
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-14 21:31:45
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-01 00:00:00
2023-09-05 23:26:37
committer_date
timestamp[ns]date
1970-01-01 00:00:00
2023-09-05 23:26:37
github_id
int64
966
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
24 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-02-03 21:17:16
2023-08-24 19:49:39
gha_language
stringclasses
180 values
src_encoding
stringclasses
35 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
6
10.4M
extension
stringclasses
121 values
filename
stringlengths
1
148
content
stringlengths
6
10.4M
f7129d6114a2c423cb18960e8150cabf948de73b
9063cf5089c29486fb2d32d45c938537af3a44be
/conditional statements/prime2.c
7f3392fdd12b486116c6d10433e84f5b54e0a5ee
[]
no_license
harinee2424/C-programs
d2c595767815176f3bd507d12178567857690bd0
4aa277c057de3631beb6a10de2bdd6b2dfe403fc
refs/heads/master
2023-06-23T22:30:56.256516
2021-06-29T06:07:31
2021-06-29T06:07:31
375,926,825
1
0
null
null
null
null
UTF-8
C
false
false
392
c
prime2.c
#include<stdio.h> //print all prime with in given range int main(){ int n,count,i,range; printf("enter range"); scanf("%d",&range); n = 2; while(n <= range){ count=0; i = 1; while(i <= n){ if(n % i ==0){ count++; } i++; } if(count == 2) printf("%d",n); } n++; }
f523a00c41ec6cfdc8bcc2adc5f7f299c66790a2
5282e06b246dcc6e9dbf67a777592bb16beb8bf4
/9/9.c
4ebaf7b7478b9d3f413a88451fa4fe17b3c55fb8
[ "MIT" ]
permissive
codelegant/c-primer-plus
40f352596cb0987e65e68496912b01a51dd1f75c
a23d2716d26c22d797e3eae1855be08b13a80c46
refs/heads/master
2020-03-16T02:08:21.049139
2018-05-07T12:46:49
2018-05-07T12:46:49
132,457,701
2
0
null
null
null
null
UTF-8
C
false
false
268
c
9.c
#include <stdio.h> int maximum (int,int,int); int main(void) { printf("%d",maximum(1,2,3)); return 0; } int maximum(int a,int b,int c) { int max=0; if(max<a) max=a; if(max<b) max=b; if(max<c) max=c; return max; }
063fa49f625a2b2d25c3a9362cc6f8e81d9f69bf
d9eadc52ccbb07949d9faefc67d98de10dd6deb1
/NCTUcourses/MP/final_project/mpeg4_encoder/src/bitstream/mbcoding.h
a6460451bc470281b0e59f5c241bac0ffe46fc31
[]
no_license
headhsu2568/codejam
2cb8079db1a1b48d10a9875a2a5c891ca04e9059
a6760c4cdab7ed21c6957a33f3245511b2cf2afa
refs/heads/master
2021-01-22T06:48:47.332058
2015-04-05T05:47:50
2015-04-05T05:47:50
13,116,608
1
0
null
null
null
null
UTF-8
C
false
false
414,448
h
mbcoding.h
#ifndef _MB_CODING_H_ #define _MB_CODING_H_ #include "../portab.h" #include "../global.h" #include "bitstream.h" #include "vlc_codes.h" //by gary int check_resync_marker(Bitstream * bs, int addbits); int get_mcbpc_intra(Bitstream * bs); int get_mcbpc_inter(Bitstream * bs); int get_cbpy(Bitstream * bs, int intra); int get_mv(Bitstream * bs, int fcode); int get_dc_dif(Bitstream * bs, uint32_t dc_size); int get_dc_size_lum(Bitstream * bs); int get_dc_size_chrom(Bitstream * bs); void get_intra_block(Bitstream * bs, int16_t * block, int direction, int coeff); void get_inter_block(Bitstream * bs, int16_t * block); void MBSkip(Bitstream * bs); /* just the bitstream. Since MB is skipped, no info is needed */ void MBCoding(const FRAMEINFO * frame, /* <-- the parameter for coding of the bitstream */ MACROBLOCK * pMB, /* <-- Info of the MB to be coded */ int16_t qcoeff[6 * 64], /* <-- the quantized DCT coefficients */ Bitstream * bs, /* <-> the bitstream */ Statistics * pStat); /* <-> statistical data collected for current frame */ //by gary void CodeVLCBlockIntra(const MACROBLOCK * pMB, const int16_t qcoeff[64], const uint16_t * zigzag, const int32_t i, VLC *runlevel, uint32_t *count, int8_t last_address); //by gary void WriteMBHeaderCoeff(const FRAMEINFO * frame, const MACROBLOCK * pMB, Bitstream * bs, Statistics * pStat, VLC *runlevel, uint32_t *count); //by gary void CodeVLCBlockInter(const MACROBLOCK * pMB, const int16_t qcoeff[64], const uint16_t * zigzag, const int32_t i, VLC * runlevel, uint32_t *count, int8_t last_address); //by gary void WriteMBHeaderCoeffPFrame(const FRAMEINFO * frame, const MACROBLOCK * pMB, Bitstream * bs, Statistics * pStat, VLC *runlevel, uint32_t *count); //modify .by gary static REVERSE_EVENT DCT3D[2][4096]={ { { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, {11,{1, 1, 2}}, {11,{1, 1, 2}}, {11,{1, 0, 3}}, {11,{1, 0, 3}}, {11,{0, 0,11}}, {11,{0, 0,11}}, {11,{0, 0,10}}, {11,{0, 0,10}}, {10,{1,28, 1}}, {10,{1,28, 1}}, {10,{1,28, 1}}, {10,{1,28, 1}}, {10,{1,27, 1}}, {10,{1,27, 1}}, {10,{1,27, 1}}, {10,{1,27, 1}}, {10,{1,26, 1}}, {10,{1,26, 1}}, {10,{1,26, 1}}, {10,{1,26, 1}}, {10,{1,25, 1}}, {10,{1,25, 1}}, {10,{1,25, 1}}, {10,{1,25, 1}}, {10,{0, 9, 2}}, {10,{0, 9, 2}}, {10,{0, 9, 2}}, {10,{0, 9, 2}}, {10,{0, 8, 2}}, {10,{0, 8, 2}}, {10,{0, 8, 2}}, {10,{0, 8, 2}}, {10,{0, 7, 2}}, {10,{0, 7, 2}}, {10,{0, 7, 2}}, {10,{0, 7, 2}}, {10,{0, 6, 2}}, {10,{0, 6, 2}}, {10,{0, 6, 2}}, {10,{0, 6, 2}}, {10,{0, 5, 2}}, {10,{0, 5, 2}}, {10,{0, 5, 2}}, {10,{0, 5, 2}}, {10,{0, 3, 3}}, {10,{0, 3, 3}}, {10,{0, 3, 3}}, {10,{0, 3, 3}}, {10,{0, 2, 3}}, {10,{0, 2, 3}}, {10,{0, 2, 3}}, {10,{0, 2, 3}}, {10,{0, 1, 4}}, {10,{0, 1, 4}}, {10,{0, 1, 4}}, {10,{0, 1, 4}}, {11,{0, 0,12}}, {11,{0, 0,12}}, {11,{0, 1, 5}}, {11,{0, 1, 5}}, {11,{0,23, 1}}, {11,{0,23, 1}}, {11,{0,24, 1}}, {11,{0,24, 1}}, {11,{1,29, 1}}, {11,{1,29, 1}}, {11,{1,30, 1}}, {11,{1,30, 1}}, {11,{1,31, 1}}, {11,{1,31, 1}}, {11,{1,32, 1}}, {11,{1,32, 1}}, {12,{0, 1, 6}}, {12,{0, 2, 4}}, {12,{0, 4, 3}}, {12,{0, 5, 3}}, {12,{0, 6, 3}}, {12,{0,10, 2}}, {12,{0,25, 1}}, {12,{0,26, 1}}, {12,{1,33, 1}}, {12,{1,34, 1}}, {12,{1,35, 1}}, {12,{1,36, 1}}, {12,{1,37, 1}}, {12,{1,38, 1}}, {12,{1,39, 1}}, {12,{1,40, 1}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, {10,{0, 0, 9}}, {10,{0, 0, 9}}, {10,{0, 0, 9}}, {10,{0, 0, 9}}, {10,{0, 0, 8}}, {10,{0, 0, 8}}, {10,{0, 0, 8}}, {10,{0, 0, 8}}, { 9,{1,24, 1}}, { 9,{1,24, 1}}, { 9,{1,24, 1}}, { 9,{1,24, 1}}, { 9,{1,24, 1}}, { 9,{1,24, 1}}, { 9,{1,24, 1}}, { 9,{1,24, 1}}, { 9,{1,23, 1}}, { 9,{1,23, 1}}, { 9,{1,23, 1}}, { 9,{1,23, 1}}, { 9,{1,23, 1}}, { 9,{1,23, 1}}, { 9,{1,23, 1}}, { 9,{1,23, 1}}, { 9,{1,22, 1}}, { 9,{1,22, 1}}, { 9,{1,22, 1}}, { 9,{1,22, 1}}, { 9,{1,22, 1}}, { 9,{1,22, 1}}, { 9,{1,22, 1}}, { 9,{1,22, 1}}, { 9,{1,21, 1}}, { 9,{1,21, 1}}, { 9,{1,21, 1}}, { 9,{1,21, 1}}, { 9,{1,21, 1}}, { 9,{1,21, 1}}, { 9,{1,21, 1}}, { 9,{1,21, 1}}, { 9,{1,20, 1}}, { 9,{1,20, 1}}, { 9,{1,20, 1}}, { 9,{1,20, 1}}, { 9,{1,20, 1}}, { 9,{1,20, 1}}, { 9,{1,20, 1}}, { 9,{1,20, 1}}, { 9,{1,19, 1}}, { 9,{1,19, 1}}, { 9,{1,19, 1}}, { 9,{1,19, 1}}, { 9,{1,19, 1}}, { 9,{1,19, 1}}, { 9,{1,19, 1}}, { 9,{1,19, 1}}, { 9,{1,18, 1}}, { 9,{1,18, 1}}, { 9,{1,18, 1}}, { 9,{1,18, 1}}, { 9,{1,18, 1}}, { 9,{1,18, 1}}, { 9,{1,18, 1}}, { 9,{1,18, 1}}, { 9,{1,17, 1}}, { 9,{1,17, 1}}, { 9,{1,17, 1}}, { 9,{1,17, 1}}, { 9,{1,17, 1}}, { 9,{1,17, 1}}, { 9,{1,17, 1}}, { 9,{1,17, 1}}, { 9,{1, 0, 2}}, { 9,{1, 0, 2}}, { 9,{1, 0, 2}}, { 9,{1, 0, 2}}, { 9,{1, 0, 2}}, { 9,{1, 0, 2}}, { 9,{1, 0, 2}}, { 9,{1, 0, 2}}, { 9,{0,22, 1}}, { 9,{0,22, 1}}, { 9,{0,22, 1}}, { 9,{0,22, 1}}, { 9,{0,22, 1}}, { 9,{0,22, 1}}, { 9,{0,22, 1}}, { 9,{0,22, 1}}, { 9,{0,21, 1}}, { 9,{0,21, 1}}, { 9,{0,21, 1}}, { 9,{0,21, 1}}, { 9,{0,21, 1}}, { 9,{0,21, 1}}, { 9,{0,21, 1}}, { 9,{0,21, 1}}, { 9,{0,20, 1}}, { 9,{0,20, 1}}, { 9,{0,20, 1}}, { 9,{0,20, 1}}, { 9,{0,20, 1}}, { 9,{0,20, 1}}, { 9,{0,20, 1}}, { 9,{0,20, 1}}, { 9,{0,19, 1}}, { 9,{0,19, 1}}, { 9,{0,19, 1}}, { 9,{0,19, 1}}, { 9,{0,19, 1}}, { 9,{0,19, 1}}, { 9,{0,19, 1}}, { 9,{0,19, 1}}, { 9,{0,18, 1}}, { 9,{0,18, 1}}, { 9,{0,18, 1}}, { 9,{0,18, 1}}, { 9,{0,18, 1}}, { 9,{0,18, 1}}, { 9,{0,18, 1}}, { 9,{0,18, 1}}, { 9,{0,17, 1}}, { 9,{0,17, 1}}, { 9,{0,17, 1}}, { 9,{0,17, 1}}, { 9,{0,17, 1}}, { 9,{0,17, 1}}, { 9,{0,17, 1}}, { 9,{0,17, 1}}, { 9,{0,16, 1}}, { 9,{0,16, 1}}, { 9,{0,16, 1}}, { 9,{0,16, 1}}, { 9,{0,16, 1}}, { 9,{0,16, 1}}, { 9,{0,16, 1}}, { 9,{0,16, 1}}, { 9,{0,15, 1}}, { 9,{0,15, 1}}, { 9,{0,15, 1}}, { 9,{0,15, 1}}, { 9,{0,15, 1}}, { 9,{0,15, 1}}, { 9,{0,15, 1}}, { 9,{0,15, 1}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 3, 2}}, { 9,{0, 3, 2}}, { 9,{0, 3, 2}}, { 9,{0, 3, 2}}, { 9,{0, 3, 2}}, { 9,{0, 3, 2}}, { 9,{0, 3, 2}}, { 9,{0, 3, 2}}, { 9,{0, 0, 7}}, { 9,{0, 0, 7}}, { 9,{0, 0, 7}}, { 9,{0, 0, 7}}, { 9,{0, 0, 7}}, { 9,{0, 0, 7}}, { 9,{0, 0, 7}}, { 9,{0, 0, 7}}, { 9,{0, 0, 6}}, { 9,{0, 0, 6}}, { 9,{0, 0, 6}}, { 9,{0, 0, 6}}, { 9,{0, 0, 6}}, { 9,{0, 0, 6}}, { 9,{0, 0, 6}}, { 9,{0, 0, 6}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,16, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,15, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,14, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,13, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,12, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,11, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1,10, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,14, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0,13, 1}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 2, 2}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 1, 3}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 8,{0, 0, 5}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 8, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 7, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 6, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,12, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,11, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0,10, 1}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 7,{0, 0, 4}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 4, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 3, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 9, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 8, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 7, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 6, 1}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 6,{0, 0, 3}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 5, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 4, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 5,{0, 3, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 3,{0, 1, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 2, 1}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}}, { 4,{0, 0, 2}} }, { { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, {11,{1, 0, 7}}, {11,{1, 0, 7}}, {11,{1, 0, 6}}, {11,{1, 0, 6}}, {11,{0, 0,22}}, {11,{0, 0,22}}, {11,{0, 0,21}}, {11,{0, 0,21}}, {10,{1, 2, 2}}, {10,{1, 2, 2}}, {10,{1, 2, 2}}, {10,{1, 2, 2}}, {10,{1, 1, 3}}, {10,{1, 1, 3}}, {10,{1, 1, 3}}, {10,{1, 1, 3}}, {10,{1, 0, 5}}, {10,{1, 0, 5}}, {10,{1, 0, 5}}, {10,{1, 0, 5}}, {10,{0,13, 1}}, {10,{0,13, 1}}, {10,{0,13, 1}}, {10,{0,13, 1}}, {10,{0, 5, 3}}, {10,{0, 5, 3}}, {10,{0, 5, 3}}, {10,{0, 5, 3}}, {10,{0, 8, 2}}, {10,{0, 8, 2}}, {10,{0, 8, 2}}, {10,{0, 8, 2}}, {10,{0, 4, 3}}, {10,{0, 4, 3}}, {10,{0, 4, 3}}, {10,{0, 4, 3}}, {10,{0, 3, 4}}, {10,{0, 3, 4}}, {10,{0, 3, 4}}, {10,{0, 3, 4}}, {10,{0, 2, 4}}, {10,{0, 2, 4}}, {10,{0, 2, 4}}, {10,{0, 2, 4}}, {10,{0, 1, 7}}, {10,{0, 1, 7}}, {10,{0, 1, 7}}, {10,{0, 1, 7}}, {10,{0, 0,20}}, {10,{0, 0,20}}, {10,{0, 0,20}}, {10,{0, 0,20}}, {10,{0, 0,19}}, {10,{0, 0,19}}, {10,{0, 0,19}}, {10,{0, 0,19}}, {11,{0, 0,23}}, {11,{0, 0,23}}, {11,{0, 0,24}}, {11,{0, 0,24}}, {11,{0, 1, 8}}, {11,{0, 1, 8}}, {11,{0, 9, 2}}, {11,{0, 9, 2}}, {11,{1, 3, 2}}, {11,{1, 3, 2}}, {11,{1, 4, 2}}, {11,{1, 4, 2}}, {11,{1,15, 1}}, {11,{1,15, 1}}, {11,{1,16, 1}}, {11,{1,16, 1}}, {12,{0, 0,25}}, {12,{0, 0,26}}, {12,{0, 0,27}}, {12,{0, 1, 9}}, {12,{0, 6, 3}}, {12,{0, 1,10}}, {12,{0, 2, 5}}, {12,{0, 7, 3}}, {12,{0,14, 1}}, {12,{1, 0, 8}}, {12,{1, 5, 2}}, {12,{1, 6, 2}}, {12,{1,17, 1}}, {12,{1,18, 1}}, {12,{1,19, 1}}, {12,{1,20, 1}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, { 0,{0, 0, 0}}, {10,{0, 0,18}}, {10,{0, 0,18}}, {10,{0, 0,18}}, {10,{0, 0,18}}, {10,{0, 0,17}}, {10,{0, 0,17}}, {10,{0, 0,17}}, {10,{0, 0,17}}, { 9,{1,14, 1}}, { 9,{1,14, 1}}, { 9,{1,14, 1}}, { 9,{1,14, 1}}, { 9,{1,14, 1}}, { 9,{1,14, 1}}, { 9,{1,14, 1}}, { 9,{1,14, 1}}, { 9,{1,13, 1}}, { 9,{1,13, 1}}, { 9,{1,13, 1}}, { 9,{1,13, 1}}, { 9,{1,13, 1}}, { 9,{1,13, 1}}, { 9,{1,13, 1}}, { 9,{1,13, 1}}, { 9,{1,12, 1}}, { 9,{1,12, 1}}, { 9,{1,12, 1}}, { 9,{1,12, 1}}, { 9,{1,12, 1}}, { 9,{1,12, 1}}, { 9,{1,12, 1}}, { 9,{1,12, 1}}, { 9,{1,11, 1}}, { 9,{1,11, 1}}, { 9,{1,11, 1}}, { 9,{1,11, 1}}, { 9,{1,11, 1}}, { 9,{1,11, 1}}, { 9,{1,11, 1}}, { 9,{1,11, 1}}, { 9,{1,10, 1}}, { 9,{1,10, 1}}, { 9,{1,10, 1}}, { 9,{1,10, 1}}, { 9,{1,10, 1}}, { 9,{1,10, 1}}, { 9,{1,10, 1}}, { 9,{1,10, 1}}, { 9,{1, 1, 2}}, { 9,{1, 1, 2}}, { 9,{1, 1, 2}}, { 9,{1, 1, 2}}, { 9,{1, 1, 2}}, { 9,{1, 1, 2}}, { 9,{1, 1, 2}}, { 9,{1, 1, 2}}, { 9,{1, 0, 4}}, { 9,{1, 0, 4}}, { 9,{1, 0, 4}}, { 9,{1, 0, 4}}, { 9,{1, 0, 4}}, { 9,{1, 0, 4}}, { 9,{1, 0, 4}}, { 9,{1, 0, 4}}, { 9,{0,12, 1}}, { 9,{0,12, 1}}, { 9,{0,12, 1}}, { 9,{0,12, 1}}, { 9,{0,12, 1}}, { 9,{0,12, 1}}, { 9,{0,12, 1}}, { 9,{0,12, 1}}, { 9,{0,11, 1}}, { 9,{0,11, 1}}, { 9,{0,11, 1}}, { 9,{0,11, 1}}, { 9,{0,11, 1}}, { 9,{0,11, 1}}, { 9,{0,11, 1}}, { 9,{0,11, 1}}, { 9,{0, 7, 2}}, { 9,{0, 7, 2}}, { 9,{0, 7, 2}}, { 9,{0, 7, 2}}, { 9,{0, 7, 2}}, { 9,{0, 7, 2}}, { 9,{0, 7, 2}}, { 9,{0, 7, 2}}, { 9,{0, 6, 2}}, { 9,{0, 6, 2}}, { 9,{0, 6, 2}}, { 9,{0, 6, 2}}, { 9,{0, 6, 2}}, { 9,{0, 6, 2}}, { 9,{0, 6, 2}}, { 9,{0, 6, 2}}, { 9,{0, 5, 2}}, { 9,{0, 5, 2}}, { 9,{0, 5, 2}}, { 9,{0, 5, 2}}, { 9,{0, 5, 2}}, { 9,{0, 5, 2}}, { 9,{0, 5, 2}}, { 9,{0, 5, 2}}, { 9,{0, 3, 3}}, { 9,{0, 3, 3}}, { 9,{0, 3, 3}}, { 9,{0, 3, 3}}, { 9,{0, 3, 3}}, { 9,{0, 3, 3}}, { 9,{0, 3, 3}}, { 9,{0, 3, 3}}, { 9,{0, 2, 3}}, { 9,{0, 2, 3}}, { 9,{0, 2, 3}}, { 9,{0, 2, 3}}, { 9,{0, 2, 3}}, { 9,{0, 2, 3}}, { 9,{0, 2, 3}}, { 9,{0, 2, 3}}, { 9,{0, 1, 6}}, { 9,{0, 1, 6}}, { 9,{0, 1, 6}}, { 9,{0, 1, 6}}, { 9,{0, 1, 6}}, { 9,{0, 1, 6}}, { 9,{0, 1, 6}}, { 9,{0, 1, 6}}, { 9,{0, 1, 5}}, { 9,{0, 1, 5}}, { 9,{0, 1, 5}}, { 9,{0, 1, 5}}, { 9,{0, 1, 5}}, { 9,{0, 1, 5}}, { 9,{0, 1, 5}}, { 9,{0, 1, 5}}, { 9,{0, 0,16}}, { 9,{0, 0,16}}, { 9,{0, 0,16}}, { 9,{0, 0,16}}, { 9,{0, 0,16}}, { 9,{0, 0,16}}, { 9,{0, 0,16}}, { 9,{0, 0,16}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 4, 2}}, { 9,{0, 0,15}}, { 9,{0, 0,15}}, { 9,{0, 0,15}}, { 9,{0, 0,15}}, { 9,{0, 0,15}}, { 9,{0, 0,15}}, { 9,{0, 0,15}}, { 9,{0, 0,15}}, { 9,{0, 0,14}}, { 9,{0, 0,14}}, { 9,{0, 0,14}}, { 9,{0, 0,14}}, { 9,{0, 0,14}}, { 9,{0, 0,14}}, { 9,{0, 0,14}}, { 9,{0, 0,14}}, { 9,{0, 0,13}}, { 9,{0, 0,13}}, { 9,{0, 0,13}}, { 9,{0, 0,13}}, { 9,{0, 0,13}}, { 9,{0, 0,13}}, { 9,{0, 0,13}}, { 9,{0, 0,13}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 8, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 7, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 6, 1}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{1, 0, 3}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0,10, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 9, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{0, 8, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{1, 9, 1}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 3, 2}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 1, 4}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,12}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,11}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 8,{0, 0,10}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 4, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{1, 3, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{0, 6, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{1, 5, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 7, 1}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 2, 2}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 1, 3}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 7,{0, 0, 9}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{1, 0, 2}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{0, 5, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 2, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{1, 1, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 4, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 3, 1}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 8}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 0, 7}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 1, 2}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 6,{0, 0, 6}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 2, 1}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 5}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 5,{0, 0, 4}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 4,{1, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 2,{0, 0, 1}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 3,{0, 0, 2}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 1, 1}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}}, { 4,{0, 0, 3}} } }; //modify .by gary static VLC coeff_VLC[2][2][64][64]={ { { { {31473601, 30}, {31489985, 30}, {31506369, 30}, {31522753, 30}, {31539137, 30}, {31555521, 30}, {31571905, 30}, {31588289, 30}, {31604673, 30}, {31621057, 30}, {31637441, 30}, {31653825, 30}, {31670209, 30}, {31686593, 30}, {31702977, 30}, {31719361, 30}, {31735745, 30}, {31752129, 30}, {31768513, 30}, {31784897, 30}, {31801281, 30}, {31817665, 30}, {31834049, 30}, {31850433, 30}, {31866817, 30}, {31883201, 30}, {31899585, 30}, {31915969, 30}, {31932353, 30}, {31948737, 30}, {31965121, 30}, {31981505, 30}, {31997889, 30}, {32014273, 30}, {32030657, 30}, {32047041, 30}, {32063425, 30}, {32079809, 30}, {32096193, 30}, {32112577, 30}, {32128961, 30}, {32145345, 30}, {32161729, 30}, {32178113, 30}, {32194497, 30}, {32210881, 30}, {32227265, 30}, {32243649, 30}, {32260033, 30}, {32276417, 30}, {32292801, 30}, {32309185, 30}, {32325569, 30}, {32341953, 30}, {32358337, 30}, {32374721, 30}, {32391105, 30}, {32407489, 30}, {32423873, 30}, {32440257, 30}, {32456641, 30}, {32473025, 30}, {32489409, 30}, { 0, 0} }, { {31473603, 30}, {31489987, 30}, {31506371, 30}, {31522755, 30}, {31539139, 30}, {31555523, 30}, {31571907, 30}, {31588291, 30}, {31604675, 30}, {31621059, 30}, {31637443, 30}, {31653827, 30}, {31670211, 30}, {31686595, 30}, {31702979, 30}, {31719363, 30}, {31735747, 30}, {31752131, 30}, {31768515, 30}, {31784899, 30}, {31801283, 30}, {31817667, 30}, {31834051, 30}, {31850435, 30}, {31866819, 30}, {31883203, 30}, {31899587, 30}, {31915971, 30}, {31932355, 30}, {31948739, 30}, {31965123, 30}, {31981507, 30}, {31997891, 30}, {32014275, 30}, {32030659, 30}, {32047043, 30}, {32063427, 30}, {32079811, 30}, {32096195, 30}, {32112579, 30}, {32128963, 30}, {32145347, 30}, {32161731, 30}, {32178115, 30}, {32194499, 30}, {32210883, 30}, {32227267, 30}, {32243651, 30}, {32260035, 30}, {32276419, 30}, {32292803, 30}, {32309187, 30}, {32325571, 30}, {32341955, 30}, {32358339, 30}, {32374723, 30}, {32391107, 30}, {32407491, 30}, {32423875, 30}, {32440259, 30}, {32456643, 30}, {32473027, 30}, {32489411, 30}, { 0, 0} }, { {31473605, 30}, {31489989, 30}, {31506373, 30}, {31522757, 30}, {31539141, 30}, {31555525, 30}, {31571909, 30}, {31588293, 30}, {31604677, 30}, {31621061, 30}, {31637445, 30}, {31653829, 30}, {31670213, 30}, {31686597, 30}, {31702981, 30}, {31719365, 30}, {31735749, 30}, {31752133, 30}, {31768517, 30}, {31784901, 30}, {31801285, 30}, {31817669, 30}, {31834053, 30}, {31850437, 30}, {31866821, 30}, {31883205, 30}, {31899589, 30}, {31915973, 30}, {31932357, 30}, {31948741, 30}, {31965125, 30}, {31981509, 30}, {31997893, 30}, {32014277, 30}, {32030661, 30}, {32047045, 30}, {32063429, 30}, {32079813, 30}, {32096197, 30}, {32112581, 30}, {32128965, 30}, {32145349, 30}, {32161733, 30}, {32178117, 30}, {32194501, 30}, {32210885, 30}, {32227269, 30}, {32243653, 30}, {32260037, 30}, {32276421, 30}, {32292805, 30}, {32309189, 30}, {32325573, 30}, {32341957, 30}, {32358341, 30}, {32374725, 30}, {32391109, 30}, {32407493, 30}, {32423877, 30}, {32440261, 30}, {32456645, 30}, {32473029, 30}, {32489413, 30}, { 0, 0} }, { {31473607, 30}, {31489991, 30}, {31506375, 30}, {31522759, 30}, {31539143, 30}, {31555527, 30}, {31571911, 30}, {31588295, 30}, {31604679, 30}, {31621063, 30}, {31637447, 30}, {31653831, 30}, {31670215, 30}, {31686599, 30}, {31702983, 30}, {31719367, 30}, {31735751, 30}, {31752135, 30}, {31768519, 30}, {31784903, 30}, {31801287, 30}, {31817671, 30}, {31834055, 30}, {31850439, 30}, {31866823, 30}, {31883207, 30}, {31899591, 30}, {31915975, 30}, {31932359, 30}, {31948743, 30}, {31965127, 30}, {31981511, 30}, {31997895, 30}, {32014279, 30}, {32030663, 30}, {32047047, 30}, {32063431, 30}, {32079815, 30}, {32096199, 30}, {32112583, 30}, {32128967, 30}, {32145351, 30}, {32161735, 30}, {32178119, 30}, {32194503, 30}, {32210887, 30}, {32227271, 30}, {32243655, 30}, {32260039, 30}, {32276423, 30}, {32292807, 30}, {32309191, 30}, {32325575, 30}, {32341959, 30}, {32358343, 30}, {32374727, 30}, {32391111, 30}, {32407495, 30}, {32423879, 30}, {32440263, 30}, {32456647, 30}, {32473031, 30}, {32489415, 30}, { 0, 0} }, { {31473609, 30}, {31489993, 30}, {31506377, 30}, {31522761, 30}, {31539145, 30}, {31555529, 30}, {31571913, 30}, {31588297, 30}, {31604681, 30}, {31621065, 30}, {31637449, 30}, {31653833, 30}, {31670217, 30}, {31686601, 30}, {31702985, 30}, {31719369, 30}, {31735753, 30}, {31752137, 30}, {31768521, 30}, {31784905, 30}, {31801289, 30}, {31817673, 30}, {31834057, 30}, {31850441, 30}, {31866825, 30}, {31883209, 30}, {31899593, 30}, {31915977, 30}, {31932361, 30}, {31948745, 30}, {31965129, 30}, {31981513, 30}, {31997897, 30}, {32014281, 30}, {32030665, 30}, {32047049, 30}, {32063433, 30}, {32079817, 30}, {32096201, 30}, {32112585, 30}, {32128969, 30}, {32145353, 30}, {32161737, 30}, {32178121, 30}, {32194505, 30}, {32210889, 30}, {32227273, 30}, {32243657, 30}, {32260041, 30}, {32276425, 30}, {32292809, 30}, {32309193, 30}, {32325577, 30}, {32341961, 30}, {32358345, 30}, {32374729, 30}, {32391113, 30}, {32407497, 30}, {32423881, 30}, {32440265, 30}, {32456649, 30}, {32473033, 30}, {32489417, 30}, { 0, 0} }, { {31473611, 30}, {31489995, 30}, {31506379, 30}, {31522763, 30}, {31539147, 30}, {31555531, 30}, {31571915, 30}, {31588299, 30}, {31604683, 30}, {31621067, 30}, {31637451, 30}, {31653835, 30}, {31670219, 30}, {31686603, 30}, {31702987, 30}, {31719371, 30}, {31735755, 30}, {31752139, 30}, {31768523, 30}, {31784907, 30}, {31801291, 30}, {31817675, 30}, {31834059, 30}, {31850443, 30}, {31866827, 30}, {31883211, 30}, {31899595, 30}, {31915979, 30}, {31932363, 30}, {31948747, 30}, {31965131, 30}, {31981515, 30}, {31997899, 30}, {32014283, 30}, {32030667, 30}, {32047051, 30}, {32063435, 30}, {32079819, 30}, {32096203, 30}, {32112587, 30}, {32128971, 30}, {32145355, 30}, {32161739, 30}, {32178123, 30}, {32194507, 30}, {32210891, 30}, {32227275, 30}, {32243659, 30}, {32260043, 30}, {32276427, 30}, {32292811, 30}, {32309195, 30}, {32325579, 30}, {32341963, 30}, {32358347, 30}, {32374731, 30}, {32391115, 30}, {32407499, 30}, {32423883, 30}, {32440267, 30}, {32456651, 30}, {32473035, 30}, {32489419, 30}, { 0, 0} }, { {31473613, 30}, {31489997, 30}, {31506381, 30}, {31522765, 30}, {31539149, 30}, {31555533, 30}, {31571917, 30}, {31588301, 30}, {31604685, 30}, {31621069, 30}, {31637453, 30}, {31653837, 30}, {31670221, 30}, {31686605, 30}, {31702989, 30}, {31719373, 30}, {31735757, 30}, {31752141, 30}, {31768525, 30}, {31784909, 30}, {31801293, 30}, {31817677, 30}, {31834061, 30}, {31850445, 30}, {31866829, 30}, {31883213, 30}, {31899597, 30}, {31915981, 30}, {31932365, 30}, {31948749, 30}, {31965133, 30}, {31981517, 30}, {31997901, 30}, {32014285, 30}, {32030669, 30}, {32047053, 30}, {32063437, 30}, {32079821, 30}, {32096205, 30}, {32112589, 30}, {32128973, 30}, {32145357, 30}, {32161741, 30}, {32178125, 30}, {32194509, 30}, {32210893, 30}, {32227277, 30}, {32243661, 30}, {32260045, 30}, {32276429, 30}, {32292813, 30}, {32309197, 30}, {32325581, 30}, {32341965, 30}, {32358349, 30}, {32374733, 30}, {32391117, 30}, {32407501, 30}, {32423885, 30}, {32440269, 30}, {32456653, 30}, {32473037, 30}, {32489421, 30}, { 0, 0} }, { {31473615, 30}, {31489999, 30}, {31506383, 30}, {31522767, 30}, {31539151, 30}, {31555535, 30}, {31571919, 30}, {31588303, 30}, {31604687, 30}, {31621071, 30}, {31637455, 30}, {31653839, 30}, {31670223, 30}, {31686607, 30}, {31702991, 30}, {31719375, 30}, {31735759, 30}, {31752143, 30}, {31768527, 30}, {31784911, 30}, {31801295, 30}, {31817679, 30}, {31834063, 30}, {31850447, 30}, {31866831, 30}, {31883215, 30}, {31899599, 30}, {31915983, 30}, {31932367, 30}, {31948751, 30}, {31965135, 30}, {31981519, 30}, {31997903, 30}, {32014287, 30}, {32030671, 30}, {32047055, 30}, {32063439, 30}, {32079823, 30}, {32096207, 30}, {32112591, 30}, {32128975, 30}, {32145359, 30}, {32161743, 30}, {32178127, 30}, {32194511, 30}, {32210895, 30}, {32227279, 30}, {32243663, 30}, {32260047, 30}, {32276431, 30}, {32292815, 30}, {32309199, 30}, {32325583, 30}, {32341967, 30}, {32358351, 30}, {32374735, 30}, {32391119, 30}, {32407503, 30}, {32423887, 30}, {32440271, 30}, {32456655, 30}, {32473039, 30}, {32489423, 30}, { 0, 0} }, { { 24641, 20}, {31490001, 30}, {31506385, 30}, {31522769, 30}, {31539153, 30}, {31555537, 30}, {31571921, 30}, {31588305, 30}, {31604689, 30}, {31621073, 30}, {31637457, 30}, {31653841, 30}, {31670225, 30}, {31686609, 30}, {31702993, 30}, {31719377, 30}, {31735761, 30}, {31752145, 30}, {31768529, 30}, {31784913, 30}, {31801297, 30}, {31817681, 30}, {31834065, 30}, {31850449, 30}, {31866833, 30}, {31883217, 30}, {31899601, 30}, {31915985, 30}, {31932369, 30}, {31948753, 30}, {31965137, 30}, {31981521, 30}, {31997905, 30}, {32014289, 30}, {32030673, 30}, {32047057, 30}, {32063441, 30}, {32079825, 30}, {32096209, 30}, {32112593, 30}, {32128977, 30}, {32145361, 30}, {32161745, 30}, {32178129, 30}, {32194513, 30}, {32210897, 30}, {32227281, 30}, {32243665, 30}, {32260049, 30}, {32276433, 30}, {32292817, 30}, {32309201, 30}, {32325585, 30}, {32341969, 30}, {32358353, 30}, {32374737, 30}, {32391121, 30}, {32407505, 30}, {32423889, 30}, {32440273, 30}, {32456657, 30}, {32473041, 30}, {32489425, 30}, { 0, 0} }, { { 24589, 20}, {31490003, 30}, {31506387, 30}, {31522771, 30}, {31539155, 30}, {31555539, 30}, {31571923, 30}, {31588307, 30}, {31604691, 30}, {31621075, 30}, {31637459, 30}, {31653843, 30}, {31670227, 30}, {31686611, 30}, {31702995, 30}, {31719379, 30}, {31735763, 30}, {31752147, 30}, {31768531, 30}, {31784915, 30}, {31801299, 30}, {31817683, 30}, {31834067, 30}, {31850451, 30}, {31866835, 30}, {31883219, 30}, {31899603, 30}, {31915987, 30}, {31932371, 30}, {31948755, 30}, {31965139, 30}, {31981523, 30}, {31997907, 30}, {32014291, 30}, {32030675, 30}, {32047059, 30}, {32063443, 30}, {32079827, 30}, {32096211, 30}, {32112595, 30}, {32128979, 30}, {32145363, 30}, {32161747, 30}, {32178131, 30}, {32194515, 30}, {32210899, 30}, {32227283, 30}, {32243667, 30}, {32260051, 30}, {32276435, 30}, {32292819, 30}, {32309203, 30}, {32325587, 30}, {32341971, 30}, {32358355, 30}, {32374739, 30}, {32391123, 30}, {32407507, 30}, {32423891, 30}, {32440275, 30}, {32456659, 30}, {32473043, 30}, {32489427, 30}, { 0, 0} }, { { 24591, 20}, {31490005, 30}, {31506389, 30}, {31522773, 30}, {31539157, 30}, {31555541, 30}, {31571925, 30}, {31588309, 30}, {31604693, 30}, {31621077, 30}, {31637461, 30}, {31653845, 30}, {31670229, 30}, {31686613, 30}, {31702997, 30}, {31719381, 30}, {31735765, 30}, {31752149, 30}, {31768533, 30}, {31784917, 30}, {31801301, 30}, {31817685, 30}, {31834069, 30}, {31850453, 30}, {31866837, 30}, {31883221, 30}, {31899605, 30}, {31915989, 30}, {31932373, 30}, {31948757, 30}, {31965141, 30}, {31981525, 30}, {31997909, 30}, {32014293, 30}, {32030677, 30}, {32047061, 30}, {32063445, 30}, {32079829, 30}, {32096213, 30}, {32112597, 30}, {32128981, 30}, {32145365, 30}, {32161749, 30}, {32178133, 30}, {32194517, 30}, {32210901, 30}, {32227285, 30}, {32243669, 30}, {32260053, 30}, {32276437, 30}, {32292821, 30}, {32309205, 30}, {32325589, 30}, {32341973, 30}, {32358357, 30}, {32374741, 30}, {32391125, 30}, {32407509, 30}, {32423893, 30}, {32440277, 30}, {32456661, 30}, {32473045, 30}, {32489429, 30}, { 0, 0} }, { { 12353, 19}, {31490007, 30}, {31506391, 30}, {31522775, 30}, {31539159, 30}, {31555543, 30}, {31571927, 30}, {31588311, 30}, {31604695, 30}, {31621079, 30}, {31637463, 30}, {31653847, 30}, {31670231, 30}, {31686615, 30}, {31702999, 30}, {31719383, 30}, {31735767, 30}, {31752151, 30}, {31768535, 30}, {31784919, 30}, {31801303, 30}, {31817687, 30}, {31834071, 30}, {31850455, 30}, {31866839, 30}, {31883223, 30}, {31899607, 30}, {31915991, 30}, {31932375, 30}, {31948759, 30}, {31965143, 30}, {31981527, 30}, {31997911, 30}, {32014295, 30}, {32030679, 30}, {32047063, 30}, {32063447, 30}, {32079831, 30}, {32096215, 30}, {32112599, 30}, {32128983, 30}, {32145367, 30}, {32161751, 30}, {32178135, 30}, {32194519, 30}, {32210903, 30}, {32227287, 30}, {32243671, 30}, {32260055, 30}, {32276439, 30}, {32292823, 30}, {32309207, 30}, {32325591, 30}, {32341975, 30}, {32358359, 30}, {32374743, 30}, {32391127, 30}, {32407511, 30}, {32423895, 30}, {32440279, 30}, {32456663, 30}, {32473047, 30}, {32489431, 30}, { 0, 0} }, { { 12355, 19}, {31490009, 30}, {31506393, 30}, {31522777, 30}, {31539161, 30}, {31555545, 30}, {31571929, 30}, {31588313, 30}, {31604697, 30}, {31621081, 30}, {31637465, 30}, {31653849, 30}, {31670233, 30}, {31686617, 30}, {31703001, 30}, {31719385, 30}, {31735769, 30}, {31752153, 30}, {31768537, 30}, {31784921, 30}, {31801305, 30}, {31817689, 30}, {31834073, 30}, {31850457, 30}, {31866841, 30}, {31883225, 30}, {31899609, 30}, {31915993, 30}, {31932377, 30}, {31948761, 30}, {31965145, 30}, {31981529, 30}, {31997913, 30}, {32014297, 30}, {32030681, 30}, {32047065, 30}, {32063449, 30}, {32079833, 30}, {32096217, 30}, {32112601, 30}, {32128985, 30}, {32145369, 30}, {32161753, 30}, {32178137, 30}, {32194521, 30}, {32210905, 30}, {32227289, 30}, {32243673, 30}, {32260057, 30}, {32276441, 30}, {32292825, 30}, {32309209, 30}, {32325593, 30}, {32341977, 30}, {32358361, 30}, {32374745, 30}, {32391129, 30}, {32407513, 30}, {32423897, 30}, {32440281, 30}, {32456665, 30}, {32473049, 30}, {32489433, 30}, { 0, 0} }, { { 6217, 18}, {31490011, 30}, {31506395, 30}, {31522779, 30}, {31539163, 30}, {31555547, 30}, {31571931, 30}, {31588315, 30}, {31604699, 30}, {31621083, 30}, {31637467, 30}, {31653851, 30}, {31670235, 30}, {31686619, 30}, {31703003, 30}, {31719387, 30}, {31735771, 30}, {31752155, 30}, {31768539, 30}, {31784923, 30}, {31801307, 30}, {31817691, 30}, {31834075, 30}, {31850459, 30}, {31866843, 30}, {31883227, 30}, {31899611, 30}, {31915995, 30}, {31932379, 30}, {31948763, 30}, {31965147, 30}, {31981531, 30}, {31997915, 30}, {32014299, 30}, {32030683, 30}, {32047067, 30}, {32063451, 30}, {32079835, 30}, {32096219, 30}, {32112603, 30}, {32128987, 30}, {32145371, 30}, {32161755, 30}, {32178139, 30}, {32194523, 30}, {32210907, 30}, {32227291, 30}, {32243675, 30}, {32260059, 30}, {32276443, 30}, {32292827, 30}, {32309211, 30}, {32325595, 30}, {32341979, 30}, {32358363, 30}, {32374747, 30}, {32391131, 30}, {32407515, 30}, {32423899, 30}, {32440283, 30}, {32456667, 30}, {32473051, 30}, {32489435, 30}, { 0, 0} }, { { 6219, 18}, {31490013, 30}, {31506397, 30}, {31522781, 30}, {31539165, 30}, {31555549, 30}, {31571933, 30}, {31588317, 30}, {31604701, 30}, {31621085, 30}, {31637469, 30}, {31653853, 30}, {31670237, 30}, {31686621, 30}, {31703005, 30}, {31719389, 30}, {31735773, 30}, {31752157, 30}, {31768541, 30}, {31784925, 30}, {31801309, 30}, {31817693, 30}, {31834077, 30}, {31850461, 30}, {31866845, 30}, {31883229, 30}, {31899613, 30}, {31915997, 30}, {31932381, 30}, {31948765, 30}, {31965149, 30}, {31981533, 30}, {31997917, 30}, {32014301, 30}, {32030685, 30}, {32047069, 30}, {32063453, 30}, {32079837, 30}, {32096221, 30}, {32112605, 30}, {32128989, 30}, {32145373, 30}, {32161757, 30}, {32178141, 30}, {32194525, 30}, {32210909, 30}, {32227293, 30}, {32243677, 30}, {32260061, 30}, {32276445, 30}, {32292829, 30}, {32309213, 30}, {32325597, 30}, {32341981, 30}, {32358365, 30}, {32374749, 30}, {32391133, 30}, {32407517, 30}, {32423901, 30}, {32440285, 30}, {32456669, 30}, {32473053, 30}, {32489437, 30}, { 0, 0} }, { { 3135, 17}, {31490015, 30}, {31506399, 30}, {31522783, 30}, {31539167, 30}, {31555551, 30}, {31571935, 30}, {31588319, 30}, {31604703, 30}, {31621087, 30}, {31637471, 30}, {31653855, 30}, {31670239, 30}, {31686623, 30}, {31703007, 30}, {31719391, 30}, {31735775, 30}, {31752159, 30}, {31768543, 30}, {31784927, 30}, {31801311, 30}, {31817695, 30}, {31834079, 30}, {31850463, 30}, {31866847, 30}, {31883231, 30}, {31899615, 30}, {31915999, 30}, {31932383, 30}, {31948767, 30}, {31965151, 30}, {31981535, 30}, {31997919, 30}, {32014303, 30}, {32030687, 30}, {32047071, 30}, {32063455, 30}, {32079839, 30}, {32096223, 30}, {32112607, 30}, {32128991, 30}, {32145375, 30}, {32161759, 30}, {32178143, 30}, {32194527, 30}, {32210911, 30}, {32227295, 30}, {32243679, 30}, {32260063, 30}, {32276447, 30}, {32292831, 30}, {32309215, 30}, {32325599, 30}, {32341983, 30}, {32358367, 30}, {32374751, 30}, {32391135, 30}, {32407519, 30}, {32423903, 30}, {32440287, 30}, {32456671, 30}, {32473055, 30}, {32489439, 30}, { 0, 0} }, { { 1583, 16}, {31490017, 30}, {31506401, 30}, {31522785, 30}, {31539169, 30}, {31555553, 30}, {31571937, 30}, {31588321, 30}, {31604705, 30}, {31621089, 30}, {31637473, 30}, {31653857, 30}, {31670241, 30}, {31686625, 30}, {31703009, 30}, {31719393, 30}, {31735777, 30}, {31752161, 30}, {31768545, 30}, {31784929, 30}, {31801313, 30}, {31817697, 30}, {31834081, 30}, {31850465, 30}, {31866849, 30}, {31883233, 30}, {31899617, 30}, {31916001, 30}, {31932385, 30}, {31948769, 30}, {31965153, 30}, {31981537, 30}, {31997921, 30}, {32014305, 30}, {32030689, 30}, {32047073, 30}, {32063457, 30}, {32079841, 30}, {32096225, 30}, {32112609, 30}, {32128993, 30}, {32145377, 30}, {32161761, 30}, {32178145, 30}, {32194529, 30}, {32210913, 30}, {32227297, 30}, {32243681, 30}, {32260065, 30}, {32276449, 30}, {32292833, 30}, {32309217, 30}, {32325601, 30}, {32341985, 30}, {32358369, 30}, {32374753, 30}, {32391137, 30}, {32407521, 30}, {32423905, 30}, {32440289, 30}, {32456673, 30}, {32473057, 30}, {32489441, 30}, { 0, 0} }, { { 811, 15}, {31490019, 30}, {31506403, 30}, {31522787, 30}, {31539171, 30}, {31555555, 30}, {31571939, 30}, {31588323, 30}, {31604707, 30}, {31621091, 30}, {31637475, 30}, {31653859, 30}, {31670243, 30}, {31686627, 30}, {31703011, 30}, {31719395, 30}, {31735779, 30}, {31752163, 30}, {31768547, 30}, {31784931, 30}, {31801315, 30}, {31817699, 30}, {31834083, 30}, {31850467, 30}, {31866851, 30}, {31883235, 30}, {31899619, 30}, {31916003, 30}, {31932387, 30}, {31948771, 30}, {31965155, 30}, {31981539, 30}, {31997923, 30}, {32014307, 30}, {32030691, 30}, {32047075, 30}, {32063459, 30}, {32079843, 30}, {32096227, 30}, {32112611, 30}, {32128995, 30}, {32145379, 30}, {32161763, 30}, {32178147, 30}, {32194531, 30}, {32210915, 30}, {32227299, 30}, {32243683, 30}, {32260067, 30}, {32276451, 30}, {32292835, 30}, {32309219, 30}, {32325603, 30}, {32341987, 30}, {32358371, 30}, {32374755, 30}, {32391139, 30}, {32407523, 30}, {32423907, 30}, {32440291, 30}, {32456675, 30}, {32473059, 30}, {32489443, 30}, { 0, 0} }, { { 223, 13}, {31490021, 30}, {31506405, 30}, {31522789, 30}, {31539173, 30}, {31555557, 30}, {31571941, 30}, {31588325, 30}, {31604709, 30}, {31621093, 30}, {31637477, 30}, {31653861, 30}, {31670245, 30}, {31686629, 30}, {31703013, 30}, {31719397, 30}, {31735781, 30}, {31752165, 30}, {31768549, 30}, {31784933, 30}, {31801317, 30}, {31817701, 30}, {31834085, 30}, {31850469, 30}, {31866853, 30}, {31883237, 30}, {31899621, 30}, {31916005, 30}, {31932389, 30}, {31948773, 30}, {31965157, 30}, {31981541, 30}, {31997925, 30}, {32014309, 30}, {32030693, 30}, {32047077, 30}, {32063461, 30}, {32079845, 30}, {32096229, 30}, {32112613, 30}, {32128997, 30}, {32145381, 30}, {32161765, 30}, {32178149, 30}, {32194533, 30}, {32210917, 30}, {32227301, 30}, {32243685, 30}, {32260069, 30}, {32276453, 30}, {32292837, 30}, {32309221, 30}, {32325605, 30}, {32341989, 30}, {32358373, 30}, {32374757, 30}, {32391141, 30}, {32407525, 30}, {32423909, 30}, {32440293, 30}, {32456677, 30}, {32473061, 30}, {32489445, 30}, { 0, 0} }, { { 53, 11}, {31490023, 30}, {31506407, 30}, {31522791, 30}, {31539175, 30}, {31555559, 30}, {31571943, 30}, {31588327, 30}, {31604711, 30}, {31621095, 30}, {31637479, 30}, {31653863, 30}, {31670247, 30}, {31686631, 30}, {31703015, 30}, {31719399, 30}, {31735783, 30}, {31752167, 30}, {31768551, 30}, {31784935, 30}, {31801319, 30}, {31817703, 30}, {31834087, 30}, {31850471, 30}, {31866855, 30}, {31883239, 30}, {31899623, 30}, {31916007, 30}, {31932391, 30}, {31948775, 30}, {31965159, 30}, {31981543, 30}, {31997927, 30}, {32014311, 30}, {32030695, 30}, {32047079, 30}, {32063463, 30}, {32079847, 30}, {32096231, 30}, {32112615, 30}, {32128999, 30}, {32145383, 30}, {32161767, 30}, {32178151, 30}, {32194535, 30}, {32210919, 30}, {32227303, 30}, {32243687, 30}, {32260071, 30}, {32276455, 30}, {32292839, 30}, {32309223, 30}, {32325607, 30}, {32341991, 30}, {32358375, 30}, {32374759, 30}, {32391143, 30}, {32407527, 30}, {32423911, 30}, {32440295, 30}, {32456679, 30}, {32473063, 30}, {32489447, 30}, { 0, 0} }, { { 65, 12}, { 49313, 21}, {31506409, 30}, {31522793, 30}, {31539177, 30}, {31555561, 30}, {31571945, 30}, {31588329, 30}, {31604713, 30}, {31621097, 30}, {31637481, 30}, {31653865, 30}, {31670249, 30}, {31686633, 30}, {31703017, 30}, {31719401, 30}, {31735785, 30}, {31752169, 30}, {31768553, 30}, {31784937, 30}, {31801321, 30}, {31817705, 30}, {31834089, 30}, {31850473, 30}, {31866857, 30}, {31883241, 30}, {31899625, 30}, {31916009, 30}, {31932393, 30}, {31948777, 30}, {31965161, 30}, {31981545, 30}, {31997929, 30}, {32014313, 30}, {32030697, 30}, {32047081, 30}, {32063465, 30}, {32079849, 30}, {32096233, 30}, {32112617, 30}, {32129001, 30}, {32145385, 30}, {32161769, 30}, {32178153, 30}, {32194537, 30}, {32210921, 30}, {32227305, 30}, {32243689, 30}, {32260073, 30}, {32276457, 30}, {32292841, 30}, {32309225, 30}, {32325609, 30}, {32341993, 30}, {32358377, 30}, {32374761, 30}, {32391145, 30}, {32407529, 30}, {32423913, 30}, {32440297, 30}, {32456681, 30}, {32473065, 30}, {32489449, 30}, { 0, 0} }, { { 13, 12}, { 24643, 20}, {31506411, 30}, {31522795, 30}, {31539179, 30}, {31555563, 30}, {31571947, 30}, {31588331, 30}, {31604715, 30}, {31621099, 30}, {31637483, 30}, {31653867, 30}, {31670251, 30}, {31686635, 30}, {31703019, 30}, {31719403, 30}, {31735787, 30}, {31752171, 30}, {31768555, 30}, {31784939, 30}, {31801323, 30}, {31817707, 30}, {31834091, 30}, {31850475, 30}, {31866859, 30}, {31883243, 30}, {31899627, 30}, {31916011, 30}, {31932395, 30}, {31948779, 30}, {31965163, 30}, {31981547, 30}, {31997931, 30}, {32014315, 30}, {32030699, 30}, {32047083, 30}, {32063467, 30}, {32079851, 30}, {32096235, 30}, {32112619, 30}, {32129003, 30}, {32145387, 30}, {32161771, 30}, {32178155, 30}, {32194539, 30}, {32210923, 30}, {32227307, 30}, {32243691, 30}, {32260075, 30}, {32276459, 30}, {32292843, 30}, {32309227, 30}, {32325611, 30}, {32341995, 30}, {32358379, 30}, {32374763, 30}, {32391147, 30}, {32407531, 30}, {32423915, 30}, {32440299, 30}, {32456683, 30}, {32473067, 30}, {32489451, 30}, { 0, 0} }, { { 15, 12}, { 12319, 19}, {31506413, 30}, {31522797, 30}, {31539181, 30}, {31555565, 30}, {31571949, 30}, {31588333, 30}, {31604717, 30}, {31621101, 30}, {31637485, 30}, {31653869, 30}, {31670253, 30}, {31686637, 30}, {31703021, 30}, {31719405, 30}, {31735789, 30}, {31752173, 30}, {31768557, 30}, {31784941, 30}, {31801325, 30}, {31817709, 30}, {31834093, 30}, {31850477, 30}, {31866861, 30}, {31883245, 30}, {31899629, 30}, {31916013, 30}, {31932397, 30}, {31948781, 30}, {31965165, 30}, {31981549, 30}, {31997933, 30}, {32014317, 30}, {32030701, 30}, {32047085, 30}, {32063469, 30}, {32079853, 30}, {32096237, 30}, {32112621, 30}, {32129005, 30}, {32145389, 30}, {32161773, 30}, {32178157, 30}, {32194541, 30}, {32210925, 30}, {32227309, 30}, {32243693, 30}, {32260077, 30}, {32276461, 30}, {32292845, 30}, {32309229, 30}, {32325613, 30}, {32341997, 30}, {32358381, 30}, {32374765, 30}, {32391149, 30}, {32407533, 30}, {32423917, 30}, {32440301, 30}, {32456685, 30}, {32473069, 30}, {32489453, 30}, { 0, 0} }, { { 65, 11}, { 3133, 17}, {31506415, 30}, {31522799, 30}, {31539183, 30}, {31555567, 30}, {31571951, 30}, {31588335, 30}, {31604719, 30}, {31621103, 30}, {31637487, 30}, {31653871, 30}, {31670255, 30}, {31686639, 30}, {31703023, 30}, {31719407, 30}, {31735791, 30}, {31752175, 30}, {31768559, 30}, {31784943, 30}, {31801327, 30}, {31817711, 30}, {31834095, 30}, {31850479, 30}, {31866863, 30}, {31883247, 30}, {31899631, 30}, {31916015, 30}, {31932399, 30}, {31948783, 30}, {31965167, 30}, {31981551, 30}, {31997935, 30}, {32014319, 30}, {32030703, 30}, {32047087, 30}, {32063471, 30}, {32079855, 30}, {32096239, 30}, {32112623, 30}, {32129007, 30}, {32145391, 30}, {32161775, 30}, {32178159, 30}, {32194543, 30}, {32210927, 30}, {32227311, 30}, {32243695, 30}, {32260079, 30}, {32276463, 30}, {32292847, 30}, {32309231, 30}, {32325615, 30}, {32341999, 30}, {32358383, 30}, {32374767, 30}, {32391151, 30}, {32407535, 30}, {32423919, 30}, {32440303, 30}, {32456687, 30}, {32473071, 30}, {32489455, 30}, { 0, 0} }, { { 67, 11}, { 809, 15}, { 49315, 21}, {31522801, 30}, {31539185, 30}, {31555569, 30}, {31571953, 30}, {31588337, 30}, {31604721, 30}, {31621105, 30}, {31637489, 30}, {31653873, 30}, {31670257, 30}, {31686641, 30}, {31703025, 30}, {31719409, 30}, {31735793, 30}, {31752177, 30}, {31768561, 30}, {31784945, 30}, {31801329, 30}, {31817713, 30}, {31834097, 30}, {31850481, 30}, {31866865, 30}, {31883249, 30}, {31899633, 30}, {31916017, 30}, {31932401, 30}, {31948785, 30}, {31965169, 30}, {31981553, 30}, {31997937, 30}, {32014321, 30}, {32030705, 30}, {32047089, 30}, {32063473, 30}, {32079857, 30}, {32096241, 30}, {32112625, 30}, {32129009, 30}, {32145393, 30}, {32161777, 30}, {32178161, 30}, {32194545, 30}, {32210929, 30}, {32227313, 30}, {32243697, 30}, {32260081, 30}, {32276465, 30}, {32292849, 30}, {32309233, 30}, {32325617, 30}, {32342001, 30}, {32358385, 30}, {32374769, 30}, {32391153, 30}, {32407537, 30}, {32423921, 30}, {32440305, 30}, {32456689, 30}, {32473073, 30}, {32489457, 30}, { 0, 0} }, { { 73, 10}, { 109, 12}, { 12317, 19}, {31522803, 30}, {31539187, 30}, {31555571, 30}, {31571955, 30}, {31588339, 30}, {31604723, 30}, {31621107, 30}, {31637491, 30}, {31653875, 30}, {31670259, 30}, {31686643, 30}, {31703027, 30}, {31719411, 30}, {31735795, 30}, {31752179, 30}, {31768563, 30}, {31784947, 30}, {31801331, 30}, {31817715, 30}, {31834099, 30}, {31850483, 30}, {31866867, 30}, {31883251, 30}, {31899635, 30}, {31916019, 30}, {31932403, 30}, {31948787, 30}, {31965171, 30}, {31981555, 30}, {31997939, 30}, {32014323, 30}, {32030707, 30}, {32047091, 30}, {32063475, 30}, {32079859, 30}, {32096243, 30}, {32112627, 30}, {32129011, 30}, {32145395, 30}, {32161779, 30}, {32178163, 30}, {32194547, 30}, {32210931, 30}, {32227315, 30}, {32243699, 30}, {32260083, 30}, {32276467, 30}, {32292851, 30}, {32309235, 30}, {32325619, 30}, {32342003, 30}, {32358387, 30}, {32374771, 30}, {32391155, 30}, {32407539, 30}, {32423923, 30}, {32440307, 30}, {32456691, 30}, {32473075, 30}, {32489459, 30}, { 0, 0} }, { { 75, 10}, { 161, 13}, { 3131, 17}, { 12315, 19}, { 49317, 21}, { 49319, 21}, { 49321, 21}, {31588341, 30}, {31604725, 30}, {31621109, 30}, {31637493, 30}, {31653877, 30}, {31670261, 30}, {31686645, 30}, {31703029, 30}, {31719413, 30}, {31735797, 30}, {31752181, 30}, {31768565, 30}, {31784949, 30}, {31801333, 30}, {31817717, 30}, {31834101, 30}, {31850485, 30}, {31866869, 30}, {31883253, 30}, {31899637, 30}, {31916021, 30}, {31932405, 30}, {31948789, 30}, {31965173, 30}, {31981557, 30}, {31997941, 30}, {32014325, 30}, {32030709, 30}, {32047093, 30}, {32063477, 30}, {32079861, 30}, {32096245, 30}, {32112629, 30}, {32129013, 30}, {32145397, 30}, {32161781, 30}, {32178165, 30}, {32194549, 30}, {32210933, 30}, {32227317, 30}, {32243701, 30}, {32260085, 30}, {32276469, 30}, {32292853, 30}, {32309237, 30}, {32325621, 30}, {32342005, 30}, {32358389, 30}, {32374773, 30}, {32391157, 30}, {32407541, 30}, {32423925, 30}, {32440309, 30}, {32456693, 30}, {32473077, 30}, {32489461, 30}, { 0, 0} }, { { 63, 9}, { 67, 12}, { 221, 13}, { 6215, 18}, { 6213, 18}, { 12313, 19}, { 12311, 19}, {31588343, 30}, {31604727, 30}, {31621111, 30}, {31637495, 30}, {31653879, 30}, {31670263, 30}, {31686647, 30}, {31703031, 30}, {31719415, 30}, {31735799, 30}, {31752183, 30}, {31768567, 30}, {31784951, 30}, {31801335, 30}, {31817719, 30}, {31834103, 30}, {31850487, 30}, {31866871, 30}, {31883255, 30}, {31899639, 30}, {31916023, 30}, {31932407, 30}, {31948791, 30}, {31965175, 30}, {31981559, 30}, {31997943, 30}, {32014327, 30}, {32030711, 30}, {32047095, 30}, {32063479, 30}, {32079863, 30}, {32096247, 30}, {32112631, 30}, {32129015, 30}, {32145399, 30}, {32161783, 30}, {32178167, 30}, {32194551, 30}, {32210935, 30}, {32227319, 30}, {32243703, 30}, {32260087, 30}, {32276471, 30}, {32292855, 30}, {32309239, 30}, {32325623, 30}, {32342007, 30}, {32358391, 30}, {32374775, 30}, {32391159, 30}, {32407543, 30}, {32423927, 30}, {32440311, 30}, {32456695, 30}, {32473079, 30}, {32489463, 30}, { 0, 0} }, { { 47, 8}, { 31, 11}, { 163, 13}, { 411, 14}, { 409, 14}, { 407, 14}, { 807, 15}, { 12309, 19}, { 12307, 19}, { 12305, 19}, { 49323, 21}, {31653881, 30}, {31670265, 30}, {31686649, 30}, {31703033, 30}, {31719417, 30}, {31735801, 30}, {31752185, 30}, {31768569, 30}, {31784953, 30}, {31801337, 30}, {31817721, 30}, {31834105, 30}, {31850489, 30}, {31866873, 30}, {31883257, 30}, {31899641, 30}, {31916025, 30}, {31932409, 30}, {31948793, 30}, {31965177, 30}, {31981561, 30}, {31997945, 30}, {32014329, 30}, {32030713, 30}, {32047097, 30}, {32063481, 30}, {32079865, 30}, {32096249, 30}, {32112633, 30}, {32129017, 30}, {32145401, 30}, {32161785, 30}, {32178169, 30}, {32194553, 30}, {32210937, 30}, {32227321, 30}, {32243705, 30}, {32260089, 30}, {32276473, 30}, {32292857, 30}, {32309241, 30}, {32325625, 30}, {32342009, 30}, {32358393, 30}, {32374777, 30}, {32391161, 30}, {32407545, 30}, {32423929, 30}, {32440313, 30}, {32456697, 30}, {32473081, 30}, {32489465, 30}, { 0, 0} }, { { 43, 7}, { 61, 9}, { 29, 11}, { 27, 11}, { 165, 13}, { 167, 13}, { 169, 13}, { 805, 15}, { 803, 15}, { 801, 15}, { 1581, 16}, { 114853, 22}, { 114855, 22}, { 114857, 22}, {31703035, 30}, {31719419, 30}, {31735803, 30}, {31752187, 30}, {31768571, 30}, {31784955, 30}, {31801339, 30}, {31817723, 30}, {31834107, 30}, {31850491, 30}, {31866875, 30}, {31883259, 30}, {31899643, 30}, {31916027, 30}, {31932411, 30}, {31948795, 30}, {31965179, 30}, {31981563, 30}, {31997947, 30}, {32014331, 30}, {32030715, 30}, {32047099, 30}, {32063483, 30}, {32079867, 30}, {32096251, 30}, {32112635, 30}, {32129019, 30}, {32145403, 30}, {32161787, 30}, {32178171, 30}, {32194555, 30}, {32210939, 30}, {32227323, 30}, {32243707, 30}, {32260091, 30}, {32276475, 30}, {32292859, 30}, {32309243, 30}, {32325627, 30}, {32342011, 30}, {32358395, 30}, {32374779, 30}, {32391163, 30}, {32407547, 30}, {32423931, 30}, {32440315, 30}, {32456699, 30}, {32473083, 30}, {32489467, 30}, { 0, 0} }, { { 31, 5}, { 41, 7}, { 59, 9}, { 71, 10}, { 69, 10}, { 25, 11}, { 23, 11}, { 21, 11}, { 19, 11}, { 17, 11}, { 171, 13}, { 1579, 16}, { 1577, 16}, { 3129, 17}, { 3127, 17}, { 6211, 18}, { 6209, 18}, { 6207, 18}, { 6205, 18}, { 6203, 18}, { 6201, 18}, { 6199, 18}, { 6197, 18}, { 24645, 20}, { 24647, 20}, { 49325, 21}, { 49327, 21}, {31916029, 30}, {31932413, 30}, {31948797, 30}, {31965181, 30}, {31981565, 30}, {31997949, 30}, {32014333, 30}, {32030717, 30}, {32047101, 30}, {32063485, 30}, {32079869, 30}, {32096253, 30}, {32112637, 30}, {32129021, 30}, {32145405, 30}, {32161789, 30}, {32178173, 30}, {32194557, 30}, {32210941, 30}, {32227325, 30}, {32243709, 30}, {32260093, 30}, {32276477, 30}, {32292861, 30}, {32309245, 30}, {32325629, 30}, {32342013, 30}, {32358397, 30}, {32374781, 30}, {32391165, 30}, {32407549, 30}, {32423933, 30}, {32440317, 30}, {32456701, 30}, {32473085, 30}, {32489469, 30}, { 0, 0} }, { { 5, 3}, { 13, 4}, { 29, 5}, { 27, 6}, { 25, 6}, { 23, 6}, { 39, 7}, { 37, 7}, { 35, 7}, { 33, 7}, { 45, 8}, { 43, 8}, { 41, 8}, { 57, 9}, { 55, 9}, { 67, 10}, { 65, 10}, { 63, 10}, { 61, 10}, { 59, 10}, { 57, 10}, { 55, 10}, { 53, 10}, { 69, 12}, { 71, 12}, { 173, 13}, { 175, 13}, { 117, 12}, { 237, 13}, { 477, 14}, { 923, 15}, { 921, 15}, { 919, 15}, { 1831, 16}, { 1829, 16}, { 1827, 16}, { 1825, 16}, { 3629, 17}, { 3627, 17}, { 3625, 17}, { 7225, 18}, { 7223, 18}, { 14403, 19}, { 14401, 19}, { 14399, 19}, { 14397, 19}, { 14395, 19}, { 14393, 19}, { 14391, 19}, { 14389, 19}, { 57413, 21}, { 57415, 21}, { 114861, 22}, { 114863, 22}, {32358399, 30}, {32374783, 30}, {32391167, 30}, {32407551, 30}, {32423935, 30}, {32440319, 30}, {32456703, 30}, {32473087, 30}, {32489471, 30}, { 0, 0} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 4, 3}, { 12, 4}, { 28, 5}, { 26, 6}, { 24, 6}, { 22, 6}, { 38, 7}, { 36, 7}, { 34, 7}, { 32, 7}, { 44, 8}, { 42, 8}, { 40, 8}, { 56, 9}, { 54, 9}, { 66, 10}, { 64, 10}, { 62, 10}, { 60, 10}, { 58, 10}, { 56, 10}, { 54, 10}, { 52, 10}, { 68, 12}, { 70, 12}, { 172, 13}, { 174, 13}, { 116, 12}, { 236, 13}, { 476, 14}, { 922, 15}, { 920, 15}, { 918, 15}, { 1830, 16}, { 1828, 16}, { 1826, 16}, { 1824, 16}, { 3628, 17}, { 3626, 17}, { 3624, 17}, { 7224, 18}, { 7222, 18}, { 14402, 19}, { 14400, 19}, { 14398, 19}, { 14396, 19}, { 14394, 19}, { 14392, 19}, { 14390, 19}, { 14388, 19}, { 57412, 21}, { 57414, 21}, { 114860, 22}, { 114862, 22}, {32350211, 30}, {32366595, 30}, {32382979, 30}, {32399363, 30}, {32415747, 30}, {32432131, 30}, {32448515, 30}, {32464899, 30}, {32481283, 30}, { 0, 0} }, { { 30, 5}, { 40, 7}, { 58, 9}, { 70, 10}, { 68, 10}, { 24, 11}, { 22, 11}, { 20, 11}, { 18, 11}, { 16, 11}, { 170, 13}, { 1578, 16}, { 1576, 16}, { 3128, 17}, { 3126, 17}, { 6210, 18}, { 6208, 18}, { 6206, 18}, { 6204, 18}, { 6202, 18}, { 6200, 18}, { 6198, 18}, { 6196, 18}, { 24644, 20}, { 24646, 20}, { 49324, 21}, { 49326, 21}, {31907845, 30}, {31924229, 30}, {31940613, 30}, {31956997, 30}, {31973381, 30}, {31989765, 30}, {32006149, 30}, {32022533, 30}, {32038917, 30}, {32055301, 30}, {32071685, 30}, {32088069, 30}, {32104453, 30}, {32120837, 30}, {32137221, 30}, {32153605, 30}, {32169989, 30}, {32186373, 30}, {32202757, 30}, {32219141, 30}, {32235525, 30}, {32251909, 30}, {32268293, 30}, {32284677, 30}, {32301061, 30}, {32317445, 30}, {32333829, 30}, {32350213, 30}, {32366597, 30}, {32382981, 30}, {32399365, 30}, {32415749, 30}, {32432133, 30}, {32448517, 30}, {32464901, 30}, {32481285, 30}, { 0, 0} }, { { 42, 7}, { 60, 9}, { 28, 11}, { 26, 11}, { 164, 13}, { 166, 13}, { 168, 13}, { 804, 15}, { 802, 15}, { 800, 15}, { 1580, 16}, { 114852, 22}, { 114854, 22}, { 114856, 22}, {31694855, 30}, {31711239, 30}, {31727623, 30}, {31744007, 30}, {31760391, 30}, {31776775, 30}, {31793159, 30}, {31809543, 30}, {31825927, 30}, {31842311, 30}, {31858695, 30}, {31875079, 30}, {31891463, 30}, {31907847, 30}, {31924231, 30}, {31940615, 30}, {31956999, 30}, {31973383, 30}, {31989767, 30}, {32006151, 30}, {32022535, 30}, {32038919, 30}, {32055303, 30}, {32071687, 30}, {32088071, 30}, {32104455, 30}, {32120839, 30}, {32137223, 30}, {32153607, 30}, {32169991, 30}, {32186375, 30}, {32202759, 30}, {32219143, 30}, {32235527, 30}, {32251911, 30}, {32268295, 30}, {32284679, 30}, {32301063, 30}, {32317447, 30}, {32333831, 30}, {32350215, 30}, {32366599, 30}, {32382983, 30}, {32399367, 30}, {32415751, 30}, {32432135, 30}, {32448519, 30}, {32464903, 30}, {32481287, 30}, { 0, 0} }, { { 46, 8}, { 30, 11}, { 162, 13}, { 410, 14}, { 408, 14}, { 406, 14}, { 806, 15}, { 12308, 19}, { 12306, 19}, { 12304, 19}, { 49322, 21}, {31645705, 30}, {31662089, 30}, {31678473, 30}, {31694857, 30}, {31711241, 30}, {31727625, 30}, {31744009, 30}, {31760393, 30}, {31776777, 30}, {31793161, 30}, {31809545, 30}, {31825929, 30}, {31842313, 30}, {31858697, 30}, {31875081, 30}, {31891465, 30}, {31907849, 30}, {31924233, 30}, {31940617, 30}, {31957001, 30}, {31973385, 30}, {31989769, 30}, {32006153, 30}, {32022537, 30}, {32038921, 30}, {32055305, 30}, {32071689, 30}, {32088073, 30}, {32104457, 30}, {32120841, 30}, {32137225, 30}, {32153609, 30}, {32169993, 30}, {32186377, 30}, {32202761, 30}, {32219145, 30}, {32235529, 30}, {32251913, 30}, {32268297, 30}, {32284681, 30}, {32301065, 30}, {32317449, 30}, {32333833, 30}, {32350217, 30}, {32366601, 30}, {32382985, 30}, {32399369, 30}, {32415753, 30}, {32432137, 30}, {32448521, 30}, {32464905, 30}, {32481289, 30}, { 0, 0} }, { { 62, 9}, { 66, 12}, { 220, 13}, { 6214, 18}, { 6212, 18}, { 12312, 19}, { 12310, 19}, {31580171, 30}, {31596555, 30}, {31612939, 30}, {31629323, 30}, {31645707, 30}, {31662091, 30}, {31678475, 30}, {31694859, 30}, {31711243, 30}, {31727627, 30}, {31744011, 30}, {31760395, 30}, {31776779, 30}, {31793163, 30}, {31809547, 30}, {31825931, 30}, {31842315, 30}, {31858699, 30}, {31875083, 30}, {31891467, 30}, {31907851, 30}, {31924235, 30}, {31940619, 30}, {31957003, 30}, {31973387, 30}, {31989771, 30}, {32006155, 30}, {32022539, 30}, {32038923, 30}, {32055307, 30}, {32071691, 30}, {32088075, 30}, {32104459, 30}, {32120843, 30}, {32137227, 30}, {32153611, 30}, {32169995, 30}, {32186379, 30}, {32202763, 30}, {32219147, 30}, {32235531, 30}, {32251915, 30}, {32268299, 30}, {32284683, 30}, {32301067, 30}, {32317451, 30}, {32333835, 30}, {32350219, 30}, {32366603, 30}, {32382987, 30}, {32399371, 30}, {32415755, 30}, {32432139, 30}, {32448523, 30}, {32464907, 30}, {32481291, 30}, { 0, 0} }, { { 74, 10}, { 160, 13}, { 3130, 17}, { 12314, 19}, { 49316, 21}, { 49318, 21}, { 49320, 21}, {31580173, 30}, {31596557, 30}, {31612941, 30}, {31629325, 30}, {31645709, 30}, {31662093, 30}, {31678477, 30}, {31694861, 30}, {31711245, 30}, {31727629, 30}, {31744013, 30}, {31760397, 30}, {31776781, 30}, {31793165, 30}, {31809549, 30}, {31825933, 30}, {31842317, 30}, {31858701, 30}, {31875085, 30}, {31891469, 30}, {31907853, 30}, {31924237, 30}, {31940621, 30}, {31957005, 30}, {31973389, 30}, {31989773, 30}, {32006157, 30}, {32022541, 30}, {32038925, 30}, {32055309, 30}, {32071693, 30}, {32088077, 30}, {32104461, 30}, {32120845, 30}, {32137229, 30}, {32153613, 30}, {32169997, 30}, {32186381, 30}, {32202765, 30}, {32219149, 30}, {32235533, 30}, {32251917, 30}, {32268301, 30}, {32284685, 30}, {32301069, 30}, {32317453, 30}, {32333837, 30}, {32350221, 30}, {32366605, 30}, {32382989, 30}, {32399373, 30}, {32415757, 30}, {32432141, 30}, {32448525, 30}, {32464909, 30}, {32481293, 30}, { 0, 0} }, { { 72, 10}, { 108, 12}, { 12316, 19}, {31514639, 30}, {31531023, 30}, {31547407, 30}, {31563791, 30}, {31580175, 30}, {31596559, 30}, {31612943, 30}, {31629327, 30}, {31645711, 30}, {31662095, 30}, {31678479, 30}, {31694863, 30}, {31711247, 30}, {31727631, 30}, {31744015, 30}, {31760399, 30}, {31776783, 30}, {31793167, 30}, {31809551, 30}, {31825935, 30}, {31842319, 30}, {31858703, 30}, {31875087, 30}, {31891471, 30}, {31907855, 30}, {31924239, 30}, {31940623, 30}, {31957007, 30}, {31973391, 30}, {31989775, 30}, {32006159, 30}, {32022543, 30}, {32038927, 30}, {32055311, 30}, {32071695, 30}, {32088079, 30}, {32104463, 30}, {32120847, 30}, {32137231, 30}, {32153615, 30}, {32169999, 30}, {32186383, 30}, {32202767, 30}, {32219151, 30}, {32235535, 30}, {32251919, 30}, {32268303, 30}, {32284687, 30}, {32301071, 30}, {32317455, 30}, {32333839, 30}, {32350223, 30}, {32366607, 30}, {32382991, 30}, {32399375, 30}, {32415759, 30}, {32432143, 30}, {32448527, 30}, {32464911, 30}, {32481295, 30}, { 0, 0} }, { { 66, 11}, { 808, 15}, { 49314, 21}, {31514641, 30}, {31531025, 30}, {31547409, 30}, {31563793, 30}, {31580177, 30}, {31596561, 30}, {31612945, 30}, {31629329, 30}, {31645713, 30}, {31662097, 30}, {31678481, 30}, {31694865, 30}, {31711249, 30}, {31727633, 30}, {31744017, 30}, {31760401, 30}, {31776785, 30}, {31793169, 30}, {31809553, 30}, {31825937, 30}, {31842321, 30}, {31858705, 30}, {31875089, 30}, {31891473, 30}, {31907857, 30}, {31924241, 30}, {31940625, 30}, {31957009, 30}, {31973393, 30}, {31989777, 30}, {32006161, 30}, {32022545, 30}, {32038929, 30}, {32055313, 30}, {32071697, 30}, {32088081, 30}, {32104465, 30}, {32120849, 30}, {32137233, 30}, {32153617, 30}, {32170001, 30}, {32186385, 30}, {32202769, 30}, {32219153, 30}, {32235537, 30}, {32251921, 30}, {32268305, 30}, {32284689, 30}, {32301073, 30}, {32317457, 30}, {32333841, 30}, {32350225, 30}, {32366609, 30}, {32382993, 30}, {32399377, 30}, {32415761, 30}, {32432145, 30}, {32448529, 30}, {32464913, 30}, {32481297, 30}, { 0, 0} }, { { 64, 11}, { 3132, 17}, {31498259, 30}, {31514643, 30}, {31531027, 30}, {31547411, 30}, {31563795, 30}, {31580179, 30}, {31596563, 30}, {31612947, 30}, {31629331, 30}, {31645715, 30}, {31662099, 30}, {31678483, 30}, {31694867, 30}, {31711251, 30}, {31727635, 30}, {31744019, 30}, {31760403, 30}, {31776787, 30}, {31793171, 30}, {31809555, 30}, {31825939, 30}, {31842323, 30}, {31858707, 30}, {31875091, 30}, {31891475, 30}, {31907859, 30}, {31924243, 30}, {31940627, 30}, {31957011, 30}, {31973395, 30}, {31989779, 30}, {32006163, 30}, {32022547, 30}, {32038931, 30}, {32055315, 30}, {32071699, 30}, {32088083, 30}, {32104467, 30}, {32120851, 30}, {32137235, 30}, {32153619, 30}, {32170003, 30}, {32186387, 30}, {32202771, 30}, {32219155, 30}, {32235539, 30}, {32251923, 30}, {32268307, 30}, {32284691, 30}, {32301075, 30}, {32317459, 30}, {32333843, 30}, {32350227, 30}, {32366611, 30}, {32382995, 30}, {32399379, 30}, {32415763, 30}, {32432147, 30}, {32448531, 30}, {32464915, 30}, {32481299, 30}, { 0, 0} }, { { 14, 12}, { 12318, 19}, {31498261, 30}, {31514645, 30}, {31531029, 30}, {31547413, 30}, {31563797, 30}, {31580181, 30}, {31596565, 30}, {31612949, 30}, {31629333, 30}, {31645717, 30}, {31662101, 30}, {31678485, 30}, {31694869, 30}, {31711253, 30}, {31727637, 30}, {31744021, 30}, {31760405, 30}, {31776789, 30}, {31793173, 30}, {31809557, 30}, {31825941, 30}, {31842325, 30}, {31858709, 30}, {31875093, 30}, {31891477, 30}, {31907861, 30}, {31924245, 30}, {31940629, 30}, {31957013, 30}, {31973397, 30}, {31989781, 30}, {32006165, 30}, {32022549, 30}, {32038933, 30}, {32055317, 30}, {32071701, 30}, {32088085, 30}, {32104469, 30}, {32120853, 30}, {32137237, 30}, {32153621, 30}, {32170005, 30}, {32186389, 30}, {32202773, 30}, {32219157, 30}, {32235541, 30}, {32251925, 30}, {32268309, 30}, {32284693, 30}, {32301077, 30}, {32317461, 30}, {32333845, 30}, {32350229, 30}, {32366613, 30}, {32382997, 30}, {32399381, 30}, {32415765, 30}, {32432149, 30}, {32448533, 30}, {32464917, 30}, {32481301, 30}, { 0, 0} }, { { 12, 12}, { 24642, 20}, {31498263, 30}, {31514647, 30}, {31531031, 30}, {31547415, 30}, {31563799, 30}, {31580183, 30}, {31596567, 30}, {31612951, 30}, {31629335, 30}, {31645719, 30}, {31662103, 30}, {31678487, 30}, {31694871, 30}, {31711255, 30}, {31727639, 30}, {31744023, 30}, {31760407, 30}, {31776791, 30}, {31793175, 30}, {31809559, 30}, {31825943, 30}, {31842327, 30}, {31858711, 30}, {31875095, 30}, {31891479, 30}, {31907863, 30}, {31924247, 30}, {31940631, 30}, {31957015, 30}, {31973399, 30}, {31989783, 30}, {32006167, 30}, {32022551, 30}, {32038935, 30}, {32055319, 30}, {32071703, 30}, {32088087, 30}, {32104471, 30}, {32120855, 30}, {32137239, 30}, {32153623, 30}, {32170007, 30}, {32186391, 30}, {32202775, 30}, {32219159, 30}, {32235543, 30}, {32251927, 30}, {32268311, 30}, {32284695, 30}, {32301079, 30}, {32317463, 30}, {32333847, 30}, {32350231, 30}, {32366615, 30}, {32382999, 30}, {32399383, 30}, {32415767, 30}, {32432151, 30}, {32448535, 30}, {32464919, 30}, {32481303, 30}, { 0, 0} }, { { 64, 12}, { 49312, 21}, {31498265, 30}, {31514649, 30}, {31531033, 30}, {31547417, 30}, {31563801, 30}, {31580185, 30}, {31596569, 30}, {31612953, 30}, {31629337, 30}, {31645721, 30}, {31662105, 30}, {31678489, 30}, {31694873, 30}, {31711257, 30}, {31727641, 30}, {31744025, 30}, {31760409, 30}, {31776793, 30}, {31793177, 30}, {31809561, 30}, {31825945, 30}, {31842329, 30}, {31858713, 30}, {31875097, 30}, {31891481, 30}, {31907865, 30}, {31924249, 30}, {31940633, 30}, {31957017, 30}, {31973401, 30}, {31989785, 30}, {32006169, 30}, {32022553, 30}, {32038937, 30}, {32055321, 30}, {32071705, 30}, {32088089, 30}, {32104473, 30}, {32120857, 30}, {32137241, 30}, {32153625, 30}, {32170009, 30}, {32186393, 30}, {32202777, 30}, {32219161, 30}, {32235545, 30}, {32251929, 30}, {32268313, 30}, {32284697, 30}, {32301081, 30}, {32317465, 30}, {32333849, 30}, {32350233, 30}, {32366617, 30}, {32383001, 30}, {32399385, 30}, {32415769, 30}, {32432153, 30}, {32448537, 30}, {32464921, 30}, {32481305, 30}, { 0, 0} }, { { 52, 11}, {31481883, 30}, {31498267, 30}, {31514651, 30}, {31531035, 30}, {31547419, 30}, {31563803, 30}, {31580187, 30}, {31596571, 30}, {31612955, 30}, {31629339, 30}, {31645723, 30}, {31662107, 30}, {31678491, 30}, {31694875, 30}, {31711259, 30}, {31727643, 30}, {31744027, 30}, {31760411, 30}, {31776795, 30}, {31793179, 30}, {31809563, 30}, {31825947, 30}, {31842331, 30}, {31858715, 30}, {31875099, 30}, {31891483, 30}, {31907867, 30}, {31924251, 30}, {31940635, 30}, {31957019, 30}, {31973403, 30}, {31989787, 30}, {32006171, 30}, {32022555, 30}, {32038939, 30}, {32055323, 30}, {32071707, 30}, {32088091, 30}, {32104475, 30}, {32120859, 30}, {32137243, 30}, {32153627, 30}, {32170011, 30}, {32186395, 30}, {32202779, 30}, {32219163, 30}, {32235547, 30}, {32251931, 30}, {32268315, 30}, {32284699, 30}, {32301083, 30}, {32317467, 30}, {32333851, 30}, {32350235, 30}, {32366619, 30}, {32383003, 30}, {32399387, 30}, {32415771, 30}, {32432155, 30}, {32448539, 30}, {32464923, 30}, {32481307, 30}, { 0, 0} }, { { 222, 13}, {31481885, 30}, {31498269, 30}, {31514653, 30}, {31531037, 30}, {31547421, 30}, {31563805, 30}, {31580189, 30}, {31596573, 30}, {31612957, 30}, {31629341, 30}, {31645725, 30}, {31662109, 30}, {31678493, 30}, {31694877, 30}, {31711261, 30}, {31727645, 30}, {31744029, 30}, {31760413, 30}, {31776797, 30}, {31793181, 30}, {31809565, 30}, {31825949, 30}, {31842333, 30}, {31858717, 30}, {31875101, 30}, {31891485, 30}, {31907869, 30}, {31924253, 30}, {31940637, 30}, {31957021, 30}, {31973405, 30}, {31989789, 30}, {32006173, 30}, {32022557, 30}, {32038941, 30}, {32055325, 30}, {32071709, 30}, {32088093, 30}, {32104477, 30}, {32120861, 30}, {32137245, 30}, {32153629, 30}, {32170013, 30}, {32186397, 30}, {32202781, 30}, {32219165, 30}, {32235549, 30}, {32251933, 30}, {32268317, 30}, {32284701, 30}, {32301085, 30}, {32317469, 30}, {32333853, 30}, {32350237, 30}, {32366621, 30}, {32383005, 30}, {32399389, 30}, {32415773, 30}, {32432157, 30}, {32448541, 30}, {32464925, 30}, {32481309, 30}, { 0, 0} }, { { 810, 15}, {31481887, 30}, {31498271, 30}, {31514655, 30}, {31531039, 30}, {31547423, 30}, {31563807, 30}, {31580191, 30}, {31596575, 30}, {31612959, 30}, {31629343, 30}, {31645727, 30}, {31662111, 30}, {31678495, 30}, {31694879, 30}, {31711263, 30}, {31727647, 30}, {31744031, 30}, {31760415, 30}, {31776799, 30}, {31793183, 30}, {31809567, 30}, {31825951, 30}, {31842335, 30}, {31858719, 30}, {31875103, 30}, {31891487, 30}, {31907871, 30}, {31924255, 30}, {31940639, 30}, {31957023, 30}, {31973407, 30}, {31989791, 30}, {32006175, 30}, {32022559, 30}, {32038943, 30}, {32055327, 30}, {32071711, 30}, {32088095, 30}, {32104479, 30}, {32120863, 30}, {32137247, 30}, {32153631, 30}, {32170015, 30}, {32186399, 30}, {32202783, 30}, {32219167, 30}, {32235551, 30}, {32251935, 30}, {32268319, 30}, {32284703, 30}, {32301087, 30}, {32317471, 30}, {32333855, 30}, {32350239, 30}, {32366623, 30}, {32383007, 30}, {32399391, 30}, {32415775, 30}, {32432159, 30}, {32448543, 30}, {32464927, 30}, {32481311, 30}, { 0, 0} }, { { 1582, 16}, {31481889, 30}, {31498273, 30}, {31514657, 30}, {31531041, 30}, {31547425, 30}, {31563809, 30}, {31580193, 30}, {31596577, 30}, {31612961, 30}, {31629345, 30}, {31645729, 30}, {31662113, 30}, {31678497, 30}, {31694881, 30}, {31711265, 30}, {31727649, 30}, {31744033, 30}, {31760417, 30}, {31776801, 30}, {31793185, 30}, {31809569, 30}, {31825953, 30}, {31842337, 30}, {31858721, 30}, {31875105, 30}, {31891489, 30}, {31907873, 30}, {31924257, 30}, {31940641, 30}, {31957025, 30}, {31973409, 30}, {31989793, 30}, {32006177, 30}, {32022561, 30}, {32038945, 30}, {32055329, 30}, {32071713, 30}, {32088097, 30}, {32104481, 30}, {32120865, 30}, {32137249, 30}, {32153633, 30}, {32170017, 30}, {32186401, 30}, {32202785, 30}, {32219169, 30}, {32235553, 30}, {32251937, 30}, {32268321, 30}, {32284705, 30}, {32301089, 30}, {32317473, 30}, {32333857, 30}, {32350241, 30}, {32366625, 30}, {32383009, 30}, {32399393, 30}, {32415777, 30}, {32432161, 30}, {32448545, 30}, {32464929, 30}, {32481313, 30}, { 0, 0} }, { { 3134, 17}, {31481891, 30}, {31498275, 30}, {31514659, 30}, {31531043, 30}, {31547427, 30}, {31563811, 30}, {31580195, 30}, {31596579, 30}, {31612963, 30}, {31629347, 30}, {31645731, 30}, {31662115, 30}, {31678499, 30}, {31694883, 30}, {31711267, 30}, {31727651, 30}, {31744035, 30}, {31760419, 30}, {31776803, 30}, {31793187, 30}, {31809571, 30}, {31825955, 30}, {31842339, 30}, {31858723, 30}, {31875107, 30}, {31891491, 30}, {31907875, 30}, {31924259, 30}, {31940643, 30}, {31957027, 30}, {31973411, 30}, {31989795, 30}, {32006179, 30}, {32022563, 30}, {32038947, 30}, {32055331, 30}, {32071715, 30}, {32088099, 30}, {32104483, 30}, {32120867, 30}, {32137251, 30}, {32153635, 30}, {32170019, 30}, {32186403, 30}, {32202787, 30}, {32219171, 30}, {32235555, 30}, {32251939, 30}, {32268323, 30}, {32284707, 30}, {32301091, 30}, {32317475, 30}, {32333859, 30}, {32350243, 30}, {32366627, 30}, {32383011, 30}, {32399395, 30}, {32415779, 30}, {32432163, 30}, {32448547, 30}, {32464931, 30}, {32481315, 30}, { 0, 0} }, { { 6218, 18}, {31481893, 30}, {31498277, 30}, {31514661, 30}, {31531045, 30}, {31547429, 30}, {31563813, 30}, {31580197, 30}, {31596581, 30}, {31612965, 30}, {31629349, 30}, {31645733, 30}, {31662117, 30}, {31678501, 30}, {31694885, 30}, {31711269, 30}, {31727653, 30}, {31744037, 30}, {31760421, 30}, {31776805, 30}, {31793189, 30}, {31809573, 30}, {31825957, 30}, {31842341, 30}, {31858725, 30}, {31875109, 30}, {31891493, 30}, {31907877, 30}, {31924261, 30}, {31940645, 30}, {31957029, 30}, {31973413, 30}, {31989797, 30}, {32006181, 30}, {32022565, 30}, {32038949, 30}, {32055333, 30}, {32071717, 30}, {32088101, 30}, {32104485, 30}, {32120869, 30}, {32137253, 30}, {32153637, 30}, {32170021, 30}, {32186405, 30}, {32202789, 30}, {32219173, 30}, {32235557, 30}, {32251941, 30}, {32268325, 30}, {32284709, 30}, {32301093, 30}, {32317477, 30}, {32333861, 30}, {32350245, 30}, {32366629, 30}, {32383013, 30}, {32399397, 30}, {32415781, 30}, {32432165, 30}, {32448549, 30}, {32464933, 30}, {32481317, 30}, { 0, 0} }, { { 6216, 18}, {31481895, 30}, {31498279, 30}, {31514663, 30}, {31531047, 30}, {31547431, 30}, {31563815, 30}, {31580199, 30}, {31596583, 30}, {31612967, 30}, {31629351, 30}, {31645735, 30}, {31662119, 30}, {31678503, 30}, {31694887, 30}, {31711271, 30}, {31727655, 30}, {31744039, 30}, {31760423, 30}, {31776807, 30}, {31793191, 30}, {31809575, 30}, {31825959, 30}, {31842343, 30}, {31858727, 30}, {31875111, 30}, {31891495, 30}, {31907879, 30}, {31924263, 30}, {31940647, 30}, {31957031, 30}, {31973415, 30}, {31989799, 30}, {32006183, 30}, {32022567, 30}, {32038951, 30}, {32055335, 30}, {32071719, 30}, {32088103, 30}, {32104487, 30}, {32120871, 30}, {32137255, 30}, {32153639, 30}, {32170023, 30}, {32186407, 30}, {32202791, 30}, {32219175, 30}, {32235559, 30}, {32251943, 30}, {32268327, 30}, {32284711, 30}, {32301095, 30}, {32317479, 30}, {32333863, 30}, {32350247, 30}, {32366631, 30}, {32383015, 30}, {32399399, 30}, {32415783, 30}, {32432167, 30}, {32448551, 30}, {32464935, 30}, {32481319, 30}, { 0, 0} }, { { 12354, 19}, {31481897, 30}, {31498281, 30}, {31514665, 30}, {31531049, 30}, {31547433, 30}, {31563817, 30}, {31580201, 30}, {31596585, 30}, {31612969, 30}, {31629353, 30}, {31645737, 30}, {31662121, 30}, {31678505, 30}, {31694889, 30}, {31711273, 30}, {31727657, 30}, {31744041, 30}, {31760425, 30}, {31776809, 30}, {31793193, 30}, {31809577, 30}, {31825961, 30}, {31842345, 30}, {31858729, 30}, {31875113, 30}, {31891497, 30}, {31907881, 30}, {31924265, 30}, {31940649, 30}, {31957033, 30}, {31973417, 30}, {31989801, 30}, {32006185, 30}, {32022569, 30}, {32038953, 30}, {32055337, 30}, {32071721, 30}, {32088105, 30}, {32104489, 30}, {32120873, 30}, {32137257, 30}, {32153641, 30}, {32170025, 30}, {32186409, 30}, {32202793, 30}, {32219177, 30}, {32235561, 30}, {32251945, 30}, {32268329, 30}, {32284713, 30}, {32301097, 30}, {32317481, 30}, {32333865, 30}, {32350249, 30}, {32366633, 30}, {32383017, 30}, {32399401, 30}, {32415785, 30}, {32432169, 30}, {32448553, 30}, {32464937, 30}, {32481321, 30}, { 0, 0} }, { { 12352, 19}, {31481899, 30}, {31498283, 30}, {31514667, 30}, {31531051, 30}, {31547435, 30}, {31563819, 30}, {31580203, 30}, {31596587, 30}, {31612971, 30}, {31629355, 30}, {31645739, 30}, {31662123, 30}, {31678507, 30}, {31694891, 30}, {31711275, 30}, {31727659, 30}, {31744043, 30}, {31760427, 30}, {31776811, 30}, {31793195, 30}, {31809579, 30}, {31825963, 30}, {31842347, 30}, {31858731, 30}, {31875115, 30}, {31891499, 30}, {31907883, 30}, {31924267, 30}, {31940651, 30}, {31957035, 30}, {31973419, 30}, {31989803, 30}, {32006187, 30}, {32022571, 30}, {32038955, 30}, {32055339, 30}, {32071723, 30}, {32088107, 30}, {32104491, 30}, {32120875, 30}, {32137259, 30}, {32153643, 30}, {32170027, 30}, {32186411, 30}, {32202795, 30}, {32219179, 30}, {32235563, 30}, {32251947, 30}, {32268331, 30}, {32284715, 30}, {32301099, 30}, {32317483, 30}, {32333867, 30}, {32350251, 30}, {32366635, 30}, {32383019, 30}, {32399403, 30}, {32415787, 30}, {32432171, 30}, {32448555, 30}, {32464939, 30}, {32481323, 30}, { 0, 0} }, { { 24590, 20}, {31481901, 30}, {31498285, 30}, {31514669, 30}, {31531053, 30}, {31547437, 30}, {31563821, 30}, {31580205, 30}, {31596589, 30}, {31612973, 30}, {31629357, 30}, {31645741, 30}, {31662125, 30}, {31678509, 30}, {31694893, 30}, {31711277, 30}, {31727661, 30}, {31744045, 30}, {31760429, 30}, {31776813, 30}, {31793197, 30}, {31809581, 30}, {31825965, 30}, {31842349, 30}, {31858733, 30}, {31875117, 30}, {31891501, 30}, {31907885, 30}, {31924269, 30}, {31940653, 30}, {31957037, 30}, {31973421, 30}, {31989805, 30}, {32006189, 30}, {32022573, 30}, {32038957, 30}, {32055341, 30}, {32071725, 30}, {32088109, 30}, {32104493, 30}, {32120877, 30}, {32137261, 30}, {32153645, 30}, {32170029, 30}, {32186413, 30}, {32202797, 30}, {32219181, 30}, {32235565, 30}, {32251949, 30}, {32268333, 30}, {32284717, 30}, {32301101, 30}, {32317485, 30}, {32333869, 30}, {32350253, 30}, {32366637, 30}, {32383021, 30}, {32399405, 30}, {32415789, 30}, {32432173, 30}, {32448557, 30}, {32464941, 30}, {32481325, 30}, { 0, 0} }, { { 24588, 20}, {31481903, 30}, {31498287, 30}, {31514671, 30}, {31531055, 30}, {31547439, 30}, {31563823, 30}, {31580207, 30}, {31596591, 30}, {31612975, 30}, {31629359, 30}, {31645743, 30}, {31662127, 30}, {31678511, 30}, {31694895, 30}, {31711279, 30}, {31727663, 30}, {31744047, 30}, {31760431, 30}, {31776815, 30}, {31793199, 30}, {31809583, 30}, {31825967, 30}, {31842351, 30}, {31858735, 30}, {31875119, 30}, {31891503, 30}, {31907887, 30}, {31924271, 30}, {31940655, 30}, {31957039, 30}, {31973423, 30}, {31989807, 30}, {32006191, 30}, {32022575, 30}, {32038959, 30}, {32055343, 30}, {32071727, 30}, {32088111, 30}, {32104495, 30}, {32120879, 30}, {32137263, 30}, {32153647, 30}, {32170031, 30}, {32186415, 30}, {32202799, 30}, {32219183, 30}, {32235567, 30}, {32251951, 30}, {32268335, 30}, {32284719, 30}, {32301103, 30}, {32317487, 30}, {32333871, 30}, {32350255, 30}, {32366639, 30}, {32383023, 30}, {32399407, 30}, {32415791, 30}, {32432175, 30}, {32448559, 30}, {32464943, 30}, {32481327, 30}, { 0, 0} }, { { 24640, 20}, {31481905, 30}, {31498289, 30}, {31514673, 30}, {31531057, 30}, {31547441, 30}, {31563825, 30}, {31580209, 30}, {31596593, 30}, {31612977, 30}, {31629361, 30}, {31645745, 30}, {31662129, 30}, {31678513, 30}, {31694897, 30}, {31711281, 30}, {31727665, 30}, {31744049, 30}, {31760433, 30}, {31776817, 30}, {31793201, 30}, {31809585, 30}, {31825969, 30}, {31842353, 30}, {31858737, 30}, {31875121, 30}, {31891505, 30}, {31907889, 30}, {31924273, 30}, {31940657, 30}, {31957041, 30}, {31973425, 30}, {31989809, 30}, {32006193, 30}, {32022577, 30}, {32038961, 30}, {32055345, 30}, {32071729, 30}, {32088113, 30}, {32104497, 30}, {32120881, 30}, {32137265, 30}, {32153649, 30}, {32170033, 30}, {32186417, 30}, {32202801, 30}, {32219185, 30}, {32235569, 30}, {32251953, 30}, {32268337, 30}, {32284721, 30}, {32301105, 30}, {32317489, 30}, {32333873, 30}, {32350257, 30}, {32366641, 30}, {32383025, 30}, {32399409, 30}, {32415793, 30}, {32432177, 30}, {32448561, 30}, {32464945, 30}, {32481329, 30}, { 0, 0} }, { {31465523, 30}, {31481907, 30}, {31498291, 30}, {31514675, 30}, {31531059, 30}, {31547443, 30}, {31563827, 30}, {31580211, 30}, {31596595, 30}, {31612979, 30}, {31629363, 30}, {31645747, 30}, {31662131, 30}, {31678515, 30}, {31694899, 30}, {31711283, 30}, {31727667, 30}, {31744051, 30}, {31760435, 30}, {31776819, 30}, {31793203, 30}, {31809587, 30}, {31825971, 30}, {31842355, 30}, {31858739, 30}, {31875123, 30}, {31891507, 30}, {31907891, 30}, {31924275, 30}, {31940659, 30}, {31957043, 30}, {31973427, 30}, {31989811, 30}, {32006195, 30}, {32022579, 30}, {32038963, 30}, {32055347, 30}, {32071731, 30}, {32088115, 30}, {32104499, 30}, {32120883, 30}, {32137267, 30}, {32153651, 30}, {32170035, 30}, {32186419, 30}, {32202803, 30}, {32219187, 30}, {32235571, 30}, {32251955, 30}, {32268339, 30}, {32284723, 30}, {32301107, 30}, {32317491, 30}, {32333875, 30}, {32350259, 30}, {32366643, 30}, {32383027, 30}, {32399411, 30}, {32415795, 30}, {32432179, 30}, {32448563, 30}, {32464947, 30}, {32481331, 30}, { 0, 0} }, { {31465525, 30}, {31481909, 30}, {31498293, 30}, {31514677, 30}, {31531061, 30}, {31547445, 30}, {31563829, 30}, {31580213, 30}, {31596597, 30}, {31612981, 30}, {31629365, 30}, {31645749, 30}, {31662133, 30}, {31678517, 30}, {31694901, 30}, {31711285, 30}, {31727669, 30}, {31744053, 30}, {31760437, 30}, {31776821, 30}, {31793205, 30}, {31809589, 30}, {31825973, 30}, {31842357, 30}, {31858741, 30}, {31875125, 30}, {31891509, 30}, {31907893, 30}, {31924277, 30}, {31940661, 30}, {31957045, 30}, {31973429, 30}, {31989813, 30}, {32006197, 30}, {32022581, 30}, {32038965, 30}, {32055349, 30}, {32071733, 30}, {32088117, 30}, {32104501, 30}, {32120885, 30}, {32137269, 30}, {32153653, 30}, {32170037, 30}, {32186421, 30}, {32202805, 30}, {32219189, 30}, {32235573, 30}, {32251957, 30}, {32268341, 30}, {32284725, 30}, {32301109, 30}, {32317493, 30}, {32333877, 30}, {32350261, 30}, {32366645, 30}, {32383029, 30}, {32399413, 30}, {32415797, 30}, {32432181, 30}, {32448565, 30}, {32464949, 30}, {32481333, 30}, { 0, 0} }, { {31465527, 30}, {31481911, 30}, {31498295, 30}, {31514679, 30}, {31531063, 30}, {31547447, 30}, {31563831, 30}, {31580215, 30}, {31596599, 30}, {31612983, 30}, {31629367, 30}, {31645751, 30}, {31662135, 30}, {31678519, 30}, {31694903, 30}, {31711287, 30}, {31727671, 30}, {31744055, 30}, {31760439, 30}, {31776823, 30}, {31793207, 30}, {31809591, 30}, {31825975, 30}, {31842359, 30}, {31858743, 30}, {31875127, 30}, {31891511, 30}, {31907895, 30}, {31924279, 30}, {31940663, 30}, {31957047, 30}, {31973431, 30}, {31989815, 30}, {32006199, 30}, {32022583, 30}, {32038967, 30}, {32055351, 30}, {32071735, 30}, {32088119, 30}, {32104503, 30}, {32120887, 30}, {32137271, 30}, {32153655, 30}, {32170039, 30}, {32186423, 30}, {32202807, 30}, {32219191, 30}, {32235575, 30}, {32251959, 30}, {32268343, 30}, {32284727, 30}, {32301111, 30}, {32317495, 30}, {32333879, 30}, {32350263, 30}, {32366647, 30}, {32383031, 30}, {32399415, 30}, {32415799, 30}, {32432183, 30}, {32448567, 30}, {32464951, 30}, {32481335, 30}, { 0, 0} }, { {31465529, 30}, {31481913, 30}, {31498297, 30}, {31514681, 30}, {31531065, 30}, {31547449, 30}, {31563833, 30}, {31580217, 30}, {31596601, 30}, {31612985, 30}, {31629369, 30}, {31645753, 30}, {31662137, 30}, {31678521, 30}, {31694905, 30}, {31711289, 30}, {31727673, 30}, {31744057, 30}, {31760441, 30}, {31776825, 30}, {31793209, 30}, {31809593, 30}, {31825977, 30}, {31842361, 30}, {31858745, 30}, {31875129, 30}, {31891513, 30}, {31907897, 30}, {31924281, 30}, {31940665, 30}, {31957049, 30}, {31973433, 30}, {31989817, 30}, {32006201, 30}, {32022585, 30}, {32038969, 30}, {32055353, 30}, {32071737, 30}, {32088121, 30}, {32104505, 30}, {32120889, 30}, {32137273, 30}, {32153657, 30}, {32170041, 30}, {32186425, 30}, {32202809, 30}, {32219193, 30}, {32235577, 30}, {32251961, 30}, {32268345, 30}, {32284729, 30}, {32301113, 30}, {32317497, 30}, {32333881, 30}, {32350265, 30}, {32366649, 30}, {32383033, 30}, {32399417, 30}, {32415801, 30}, {32432185, 30}, {32448569, 30}, {32464953, 30}, {32481337, 30}, { 0, 0} }, { {31465531, 30}, {31481915, 30}, {31498299, 30}, {31514683, 30}, {31531067, 30}, {31547451, 30}, {31563835, 30}, {31580219, 30}, {31596603, 30}, {31612987, 30}, {31629371, 30}, {31645755, 30}, {31662139, 30}, {31678523, 30}, {31694907, 30}, {31711291, 30}, {31727675, 30}, {31744059, 30}, {31760443, 30}, {31776827, 30}, {31793211, 30}, {31809595, 30}, {31825979, 30}, {31842363, 30}, {31858747, 30}, {31875131, 30}, {31891515, 30}, {31907899, 30}, {31924283, 30}, {31940667, 30}, {31957051, 30}, {31973435, 30}, {31989819, 30}, {32006203, 30}, {32022587, 30}, {32038971, 30}, {32055355, 30}, {32071739, 30}, {32088123, 30}, {32104507, 30}, {32120891, 30}, {32137275, 30}, {32153659, 30}, {32170043, 30}, {32186427, 30}, {32202811, 30}, {32219195, 30}, {32235579, 30}, {32251963, 30}, {32268347, 30}, {32284731, 30}, {32301115, 30}, {32317499, 30}, {32333883, 30}, {32350267, 30}, {32366651, 30}, {32383035, 30}, {32399419, 30}, {32415803, 30}, {32432187, 30}, {32448571, 30}, {32464955, 30}, {32481339, 30}, { 0, 0} }, { {31465533, 30}, {31481917, 30}, {31498301, 30}, {31514685, 30}, {31531069, 30}, {31547453, 30}, {31563837, 30}, {31580221, 30}, {31596605, 30}, {31612989, 30}, {31629373, 30}, {31645757, 30}, {31662141, 30}, {31678525, 30}, {31694909, 30}, {31711293, 30}, {31727677, 30}, {31744061, 30}, {31760445, 30}, {31776829, 30}, {31793213, 30}, {31809597, 30}, {31825981, 30}, {31842365, 30}, {31858749, 30}, {31875133, 30}, {31891517, 30}, {31907901, 30}, {31924285, 30}, {31940669, 30}, {31957053, 30}, {31973437, 30}, {31989821, 30}, {32006205, 30}, {32022589, 30}, {32038973, 30}, {32055357, 30}, {32071741, 30}, {32088125, 30}, {32104509, 30}, {32120893, 30}, {32137277, 30}, {32153661, 30}, {32170045, 30}, {32186429, 30}, {32202813, 30}, {32219197, 30}, {32235581, 30}, {32251965, 30}, {32268349, 30}, {32284733, 30}, {32301117, 30}, {32317501, 30}, {32333885, 30}, {32350269, 30}, {32366653, 30}, {32383037, 30}, {32399421, 30}, {32415805, 30}, {32432189, 30}, {32448573, 30}, {32464957, 30}, {32481341, 30}, { 0, 0} }, { {31465535, 30}, {31481919, 30}, {31498303, 30}, {31514687, 30}, {31531071, 30}, {31547455, 30}, {31563839, 30}, {31580223, 30}, {31596607, 30}, {31612991, 30}, {31629375, 30}, {31645759, 30}, {31662143, 30}, {31678527, 30}, {31694911, 30}, {31711295, 30}, {31727679, 30}, {31744063, 30}, {31760447, 30}, {31776831, 30}, {31793215, 30}, {31809599, 30}, {31825983, 30}, {31842367, 30}, {31858751, 30}, {31875135, 30}, {31891519, 30}, {31907903, 30}, {31924287, 30}, {31940671, 30}, {31957055, 30}, {31973439, 30}, {31989823, 30}, {32006207, 30}, {32022591, 30}, {32038975, 30}, {32055359, 30}, {32071743, 30}, {32088127, 30}, {32104511, 30}, {32120895, 30}, {32137279, 30}, {32153663, 30}, {32170047, 30}, {32186431, 30}, {32202815, 30}, {32219199, 30}, {32235583, 30}, {32251967, 30}, {32268351, 30}, {32284735, 30}, {32301119, 30}, {32317503, 30}, {32333887, 30}, {32350271, 30}, {32366655, 30}, {32383039, 30}, {32399423, 30}, {32415807, 30}, {32432191, 30}, {32448575, 30}, {32464959, 30}, {32481343, 30}, { 0, 0} } }, { { {32522177, 30}, {32538561, 30}, {32554945, 30}, {32571329, 30}, {32587713, 30}, {32604097, 30}, {32620481, 30}, {32636865, 30}, {32653249, 30}, {32669633, 30}, {32686017, 30}, {32702401, 30}, {32718785, 30}, {32735169, 30}, {32751553, 30}, {32767937, 30}, {32784321, 30}, {32800705, 30}, {32817089, 30}, {32833473, 30}, {32849857, 30}, {32866241, 30}, {32882625, 30}, {32899009, 30}, {32915393, 30}, {32931777, 30}, {32948161, 30}, {32964545, 30}, {32980929, 30}, {32997313, 30}, {33013697, 30}, {33030081, 30}, {33046465, 30}, {33062849, 30}, {33079233, 30}, {33095617, 30}, {33112001, 30}, {33128385, 30}, {33144769, 30}, {33161153, 30}, {33177537, 30}, {33193921, 30}, {33210305, 30}, {33226689, 30}, {33243073, 30}, {33259457, 30}, {33275841, 30}, {33292225, 30}, {33308609, 30}, {33324993, 30}, {33341377, 30}, {33357761, 30}, {33374145, 30}, {33390529, 30}, {33406913, 30}, {33423297, 30}, {33439681, 30}, {33456065, 30}, {33472449, 30}, {33488833, 30}, {33505217, 30}, {33521601, 30}, {33537985, 30}, {33554369, 30} }, { {32522179, 30}, {32538563, 30}, {32554947, 30}, {32571331, 30}, {32587715, 30}, {32604099, 30}, {32620483, 30}, {32636867, 30}, {32653251, 30}, {32669635, 30}, {32686019, 30}, {32702403, 30}, {32718787, 30}, {32735171, 30}, {32751555, 30}, {32767939, 30}, {32784323, 30}, {32800707, 30}, {32817091, 30}, {32833475, 30}, {32849859, 30}, {32866243, 30}, {32882627, 30}, {32899011, 30}, {32915395, 30}, {32931779, 30}, {32948163, 30}, {32964547, 30}, {32980931, 30}, {32997315, 30}, {33013699, 30}, {33030083, 30}, {33046467, 30}, {33062851, 30}, {33079235, 30}, {33095619, 30}, {33112003, 30}, {33128387, 30}, {33144771, 30}, {33161155, 30}, {33177539, 30}, {33193923, 30}, {33210307, 30}, {33226691, 30}, {33243075, 30}, {33259459, 30}, {33275843, 30}, {33292227, 30}, {33308611, 30}, {33324995, 30}, {33341379, 30}, {33357763, 30}, {33374147, 30}, {33390531, 30}, {33406915, 30}, {33423299, 30}, {33439683, 30}, {33456067, 30}, {33472451, 30}, {33488835, 30}, {33505219, 30}, {33521603, 30}, {33537987, 30}, {33554371, 30} }, { {32522181, 30}, {32538565, 30}, {32554949, 30}, {32571333, 30}, {32587717, 30}, {32604101, 30}, {32620485, 30}, {32636869, 30}, {32653253, 30}, {32669637, 30}, {32686021, 30}, {32702405, 30}, {32718789, 30}, {32735173, 30}, {32751557, 30}, {32767941, 30}, {32784325, 30}, {32800709, 30}, {32817093, 30}, {32833477, 30}, {32849861, 30}, {32866245, 30}, {32882629, 30}, {32899013, 30}, {32915397, 30}, {32931781, 30}, {32948165, 30}, {32964549, 30}, {32980933, 30}, {32997317, 30}, {33013701, 30}, {33030085, 30}, {33046469, 30}, {33062853, 30}, {33079237, 30}, {33095621, 30}, {33112005, 30}, {33128389, 30}, {33144773, 30}, {33161157, 30}, {33177541, 30}, {33193925, 30}, {33210309, 30}, {33226693, 30}, {33243077, 30}, {33259461, 30}, {33275845, 30}, {33292229, 30}, {33308613, 30}, {33324997, 30}, {33341381, 30}, {33357765, 30}, {33374149, 30}, {33390533, 30}, {33406917, 30}, {33423301, 30}, {33439685, 30}, {33456069, 30}, {33472453, 30}, {33488837, 30}, {33505221, 30}, {33521605, 30}, {33537989, 30}, {33554373, 30} }, { {32522183, 30}, {32538567, 30}, {32554951, 30}, {32571335, 30}, {32587719, 30}, {32604103, 30}, {32620487, 30}, {32636871, 30}, {32653255, 30}, {32669639, 30}, {32686023, 30}, {32702407, 30}, {32718791, 30}, {32735175, 30}, {32751559, 30}, {32767943, 30}, {32784327, 30}, {32800711, 30}, {32817095, 30}, {32833479, 30}, {32849863, 30}, {32866247, 30}, {32882631, 30}, {32899015, 30}, {32915399, 30}, {32931783, 30}, {32948167, 30}, {32964551, 30}, {32980935, 30}, {32997319, 30}, {33013703, 30}, {33030087, 30}, {33046471, 30}, {33062855, 30}, {33079239, 30}, {33095623, 30}, {33112007, 30}, {33128391, 30}, {33144775, 30}, {33161159, 30}, {33177543, 30}, {33193927, 30}, {33210311, 30}, {33226695, 30}, {33243079, 30}, {33259463, 30}, {33275847, 30}, {33292231, 30}, {33308615, 30}, {33324999, 30}, {33341383, 30}, {33357767, 30}, {33374151, 30}, {33390535, 30}, {33406919, 30}, {33423303, 30}, {33439687, 30}, {33456071, 30}, {33472455, 30}, {33488839, 30}, {33505223, 30}, {33521607, 30}, {33537991, 30}, {33554375, 30} }, { {32522185, 30}, {32538569, 30}, {32554953, 30}, {32571337, 30}, {32587721, 30}, {32604105, 30}, {32620489, 30}, {32636873, 30}, {32653257, 30}, {32669641, 30}, {32686025, 30}, {32702409, 30}, {32718793, 30}, {32735177, 30}, {32751561, 30}, {32767945, 30}, {32784329, 30}, {32800713, 30}, {32817097, 30}, {32833481, 30}, {32849865, 30}, {32866249, 30}, {32882633, 30}, {32899017, 30}, {32915401, 30}, {32931785, 30}, {32948169, 30}, {32964553, 30}, {32980937, 30}, {32997321, 30}, {33013705, 30}, {33030089, 30}, {33046473, 30}, {33062857, 30}, {33079241, 30}, {33095625, 30}, {33112009, 30}, {33128393, 30}, {33144777, 30}, {33161161, 30}, {33177545, 30}, {33193929, 30}, {33210313, 30}, {33226697, 30}, {33243081, 30}, {33259465, 30}, {33275849, 30}, {33292233, 30}, {33308617, 30}, {33325001, 30}, {33341385, 30}, {33357769, 30}, {33374153, 30}, {33390537, 30}, {33406921, 30}, {33423305, 30}, {33439689, 30}, {33456073, 30}, {33472457, 30}, {33488841, 30}, {33505225, 30}, {33521609, 30}, {33537993, 30}, {33554377, 30} }, { {32522187, 30}, {32538571, 30}, {32554955, 30}, {32571339, 30}, {32587723, 30}, {32604107, 30}, {32620491, 30}, {32636875, 30}, {32653259, 30}, {32669643, 30}, {32686027, 30}, {32702411, 30}, {32718795, 30}, {32735179, 30}, {32751563, 30}, {32767947, 30}, {32784331, 30}, {32800715, 30}, {32817099, 30}, {32833483, 30}, {32849867, 30}, {32866251, 30}, {32882635, 30}, {32899019, 30}, {32915403, 30}, {32931787, 30}, {32948171, 30}, {32964555, 30}, {32980939, 30}, {32997323, 30}, {33013707, 30}, {33030091, 30}, {33046475, 30}, {33062859, 30}, {33079243, 30}, {33095627, 30}, {33112011, 30}, {33128395, 30}, {33144779, 30}, {33161163, 30}, {33177547, 30}, {33193931, 30}, {33210315, 30}, {33226699, 30}, {33243083, 30}, {33259467, 30}, {33275851, 30}, {33292235, 30}, {33308619, 30}, {33325003, 30}, {33341387, 30}, {33357771, 30}, {33374155, 30}, {33390539, 30}, {33406923, 30}, {33423307, 30}, {33439691, 30}, {33456075, 30}, {33472459, 30}, {33488843, 30}, {33505227, 30}, {33521611, 30}, {33537995, 30}, {33554379, 30} }, { {32522189, 30}, {32538573, 30}, {32554957, 30}, {32571341, 30}, {32587725, 30}, {32604109, 30}, {32620493, 30}, {32636877, 30}, {32653261, 30}, {32669645, 30}, {32686029, 30}, {32702413, 30}, {32718797, 30}, {32735181, 30}, {32751565, 30}, {32767949, 30}, {32784333, 30}, {32800717, 30}, {32817101, 30}, {32833485, 30}, {32849869, 30}, {32866253, 30}, {32882637, 30}, {32899021, 30}, {32915405, 30}, {32931789, 30}, {32948173, 30}, {32964557, 30}, {32980941, 30}, {32997325, 30}, {33013709, 30}, {33030093, 30}, {33046477, 30}, {33062861, 30}, {33079245, 30}, {33095629, 30}, {33112013, 30}, {33128397, 30}, {33144781, 30}, {33161165, 30}, {33177549, 30}, {33193933, 30}, {33210317, 30}, {33226701, 30}, {33243085, 30}, {33259469, 30}, {33275853, 30}, {33292237, 30}, {33308621, 30}, {33325005, 30}, {33341389, 30}, {33357773, 30}, {33374157, 30}, {33390541, 30}, {33406925, 30}, {33423309, 30}, {33439693, 30}, {33456077, 30}, {33472461, 30}, {33488845, 30}, {33505229, 30}, {33521613, 30}, {33537997, 30}, {33554381, 30} }, { {32522191, 30}, {32538575, 30}, {32554959, 30}, {32571343, 30}, {32587727, 30}, {32604111, 30}, {32620495, 30}, {32636879, 30}, {32653263, 30}, {32669647, 30}, {32686031, 30}, {32702415, 30}, {32718799, 30}, {32735183, 30}, {32751567, 30}, {32767951, 30}, {32784335, 30}, {32800719, 30}, {32817103, 30}, {32833487, 30}, {32849871, 30}, {32866255, 30}, {32882639, 30}, {32899023, 30}, {32915407, 30}, {32931791, 30}, {32948175, 30}, {32964559, 30}, {32980943, 30}, {32997327, 30}, {33013711, 30}, {33030095, 30}, {33046479, 30}, {33062863, 30}, {33079247, 30}, {33095631, 30}, {33112015, 30}, {33128399, 30}, {33144783, 30}, {33161167, 30}, {33177551, 30}, {33193935, 30}, {33210319, 30}, {33226703, 30}, {33243087, 30}, {33259471, 30}, {33275855, 30}, {33292239, 30}, {33308623, 30}, {33325007, 30}, {33341391, 30}, {33357775, 30}, {33374159, 30}, {33390543, 30}, {33406927, 30}, {33423311, 30}, {33439695, 30}, {33456079, 30}, {33472463, 30}, {33488847, 30}, {33505231, 30}, {33521615, 30}, {33537999, 30}, {33554383, 30} }, { {32522193, 30}, {32538577, 30}, {32554961, 30}, {32571345, 30}, {32587729, 30}, {32604113, 30}, {32620497, 30}, {32636881, 30}, {32653265, 30}, {32669649, 30}, {32686033, 30}, {32702417, 30}, {32718801, 30}, {32735185, 30}, {32751569, 30}, {32767953, 30}, {32784337, 30}, {32800721, 30}, {32817105, 30}, {32833489, 30}, {32849873, 30}, {32866257, 30}, {32882641, 30}, {32899025, 30}, {32915409, 30}, {32931793, 30}, {32948177, 30}, {32964561, 30}, {32980945, 30}, {32997329, 30}, {33013713, 30}, {33030097, 30}, {33046481, 30}, {33062865, 30}, {33079249, 30}, {33095633, 30}, {33112017, 30}, {33128401, 30}, {33144785, 30}, {33161169, 30}, {33177553, 30}, {33193937, 30}, {33210321, 30}, {33226705, 30}, {33243089, 30}, {33259473, 30}, {33275857, 30}, {33292241, 30}, {33308625, 30}, {33325009, 30}, {33341393, 30}, {33357777, 30}, {33374161, 30}, {33390545, 30}, {33406929, 30}, {33423313, 30}, {33439697, 30}, {33456081, 30}, {33472465, 30}, {33488849, 30}, {33505233, 30}, {33521617, 30}, {33538001, 30}, {33554385, 30} }, { {32522195, 30}, {32538579, 30}, {32554963, 30}, {32571347, 30}, {32587731, 30}, {32604115, 30}, {32620499, 30}, {32636883, 30}, {32653267, 30}, {32669651, 30}, {32686035, 30}, {32702419, 30}, {32718803, 30}, {32735187, 30}, {32751571, 30}, {32767955, 30}, {32784339, 30}, {32800723, 30}, {32817107, 30}, {32833491, 30}, {32849875, 30}, {32866259, 30}, {32882643, 30}, {32899027, 30}, {32915411, 30}, {32931795, 30}, {32948179, 30}, {32964563, 30}, {32980947, 30}, {32997331, 30}, {33013715, 30}, {33030099, 30}, {33046483, 30}, {33062867, 30}, {33079251, 30}, {33095635, 30}, {33112019, 30}, {33128403, 30}, {33144787, 30}, {33161171, 30}, {33177555, 30}, {33193939, 30}, {33210323, 30}, {33226707, 30}, {33243091, 30}, {33259475, 30}, {33275859, 30}, {33292243, 30}, {33308627, 30}, {33325011, 30}, {33341395, 30}, {33357779, 30}, {33374163, 30}, {33390547, 30}, {33406931, 30}, {33423315, 30}, {33439699, 30}, {33456083, 30}, {33472467, 30}, {33488851, 30}, {33505235, 30}, {33521619, 30}, {33538003, 30}, {33554387, 30} }, { {32522197, 30}, {32538581, 30}, {32554965, 30}, {32571349, 30}, {32587733, 30}, {32604117, 30}, {32620501, 30}, {32636885, 30}, {32653269, 30}, {32669653, 30}, {32686037, 30}, {32702421, 30}, {32718805, 30}, {32735189, 30}, {32751573, 30}, {32767957, 30}, {32784341, 30}, {32800725, 30}, {32817109, 30}, {32833493, 30}, {32849877, 30}, {32866261, 30}, {32882645, 30}, {32899029, 30}, {32915413, 30}, {32931797, 30}, {32948181, 30}, {32964565, 30}, {32980949, 30}, {32997333, 30}, {33013717, 30}, {33030101, 30}, {33046485, 30}, {33062869, 30}, {33079253, 30}, {33095637, 30}, {33112021, 30}, {33128405, 30}, {33144789, 30}, {33161173, 30}, {33177557, 30}, {33193941, 30}, {33210325, 30}, {33226709, 30}, {33243093, 30}, {33259477, 30}, {33275861, 30}, {33292245, 30}, {33308629, 30}, {33325013, 30}, {33341397, 30}, {33357781, 30}, {33374165, 30}, {33390549, 30}, {33406933, 30}, {33423317, 30}, {33439701, 30}, {33456085, 30}, {33472469, 30}, {33488853, 30}, {33505237, 30}, {33521621, 30}, {33538005, 30}, {33554389, 30} }, { {32522199, 30}, {32538583, 30}, {32554967, 30}, {32571351, 30}, {32587735, 30}, {32604119, 30}, {32620503, 30}, {32636887, 30}, {32653271, 30}, {32669655, 30}, {32686039, 30}, {32702423, 30}, {32718807, 30}, {32735191, 30}, {32751575, 30}, {32767959, 30}, {32784343, 30}, {32800727, 30}, {32817111, 30}, {32833495, 30}, {32849879, 30}, {32866263, 30}, {32882647, 30}, {32899031, 30}, {32915415, 30}, {32931799, 30}, {32948183, 30}, {32964567, 30}, {32980951, 30}, {32997335, 30}, {33013719, 30}, {33030103, 30}, {33046487, 30}, {33062871, 30}, {33079255, 30}, {33095639, 30}, {33112023, 30}, {33128407, 30}, {33144791, 30}, {33161175, 30}, {33177559, 30}, {33193943, 30}, {33210327, 30}, {33226711, 30}, {33243095, 30}, {33259479, 30}, {33275863, 30}, {33292247, 30}, {33308631, 30}, {33325015, 30}, {33341399, 30}, {33357783, 30}, {33374167, 30}, {33390551, 30}, {33406935, 30}, {33423319, 30}, {33439703, 30}, {33456087, 30}, {33472471, 30}, {33488855, 30}, {33505239, 30}, {33521623, 30}, {33538007, 30}, {33554391, 30} }, { {32522201, 30}, {32538585, 30}, {32554969, 30}, {32571353, 30}, {32587737, 30}, {32604121, 30}, {32620505, 30}, {32636889, 30}, {32653273, 30}, {32669657, 30}, {32686041, 30}, {32702425, 30}, {32718809, 30}, {32735193, 30}, {32751577, 30}, {32767961, 30}, {32784345, 30}, {32800729, 30}, {32817113, 30}, {32833497, 30}, {32849881, 30}, {32866265, 30}, {32882649, 30}, {32899033, 30}, {32915417, 30}, {32931801, 30}, {32948185, 30}, {32964569, 30}, {32980953, 30}, {32997337, 30}, {33013721, 30}, {33030105, 30}, {33046489, 30}, {33062873, 30}, {33079257, 30}, {33095641, 30}, {33112025, 30}, {33128409, 30}, {33144793, 30}, {33161177, 30}, {33177561, 30}, {33193945, 30}, {33210329, 30}, {33226713, 30}, {33243097, 30}, {33259481, 30}, {33275865, 30}, {33292249, 30}, {33308633, 30}, {33325017, 30}, {33341401, 30}, {33357785, 30}, {33374169, 30}, {33390553, 30}, {33406937, 30}, {33423321, 30}, {33439705, 30}, {33456089, 30}, {33472473, 30}, {33488857, 30}, {33505241, 30}, {33521625, 30}, {33538009, 30}, {33554393, 30} }, { {32522203, 30}, {32538587, 30}, {32554971, 30}, {32571355, 30}, {32587739, 30}, {32604123, 30}, {32620507, 30}, {32636891, 30}, {32653275, 30}, {32669659, 30}, {32686043, 30}, {32702427, 30}, {32718811, 30}, {32735195, 30}, {32751579, 30}, {32767963, 30}, {32784347, 30}, {32800731, 30}, {32817115, 30}, {32833499, 30}, {32849883, 30}, {32866267, 30}, {32882651, 30}, {32899035, 30}, {32915419, 30}, {32931803, 30}, {32948187, 30}, {32964571, 30}, {32980955, 30}, {32997339, 30}, {33013723, 30}, {33030107, 30}, {33046491, 30}, {33062875, 30}, {33079259, 30}, {33095643, 30}, {33112027, 30}, {33128411, 30}, {33144795, 30}, {33161179, 30}, {33177563, 30}, {33193947, 30}, {33210331, 30}, {33226715, 30}, {33243099, 30}, {33259483, 30}, {33275867, 30}, {33292251, 30}, {33308635, 30}, {33325019, 30}, {33341403, 30}, {33357787, 30}, {33374171, 30}, {33390555, 30}, {33406939, 30}, {33423323, 30}, {33439707, 30}, {33456091, 30}, {33472475, 30}, {33488859, 30}, {33505243, 30}, {33521627, 30}, {33538011, 30}, {33554395, 30} }, { {32522205, 30}, {32538589, 30}, {32554973, 30}, {32571357, 30}, {32587741, 30}, {32604125, 30}, {32620509, 30}, {32636893, 30}, {32653277, 30}, {32669661, 30}, {32686045, 30}, {32702429, 30}, {32718813, 30}, {32735197, 30}, {32751581, 30}, {32767965, 30}, {32784349, 30}, {32800733, 30}, {32817117, 30}, {32833501, 30}, {32849885, 30}, {32866269, 30}, {32882653, 30}, {32899037, 30}, {32915421, 30}, {32931805, 30}, {32948189, 30}, {32964573, 30}, {32980957, 30}, {32997341, 30}, {33013725, 30}, {33030109, 30}, {33046493, 30}, {33062877, 30}, {33079261, 30}, {33095645, 30}, {33112029, 30}, {33128413, 30}, {33144797, 30}, {33161181, 30}, {33177565, 30}, {33193949, 30}, {33210333, 30}, {33226717, 30}, {33243101, 30}, {33259485, 30}, {33275869, 30}, {33292253, 30}, {33308637, 30}, {33325021, 30}, {33341405, 30}, {33357789, 30}, {33374173, 30}, {33390557, 30}, {33406941, 30}, {33423325, 30}, {33439709, 30}, {33456093, 30}, {33472477, 30}, {33488861, 30}, {33505245, 30}, {33521629, 30}, {33538013, 30}, {33554397, 30} }, { {32522207, 30}, {32538591, 30}, {32554975, 30}, {32571359, 30}, {32587743, 30}, {32604127, 30}, {32620511, 30}, {32636895, 30}, {32653279, 30}, {32669663, 30}, {32686047, 30}, {32702431, 30}, {32718815, 30}, {32735199, 30}, {32751583, 30}, {32767967, 30}, {32784351, 30}, {32800735, 30}, {32817119, 30}, {32833503, 30}, {32849887, 30}, {32866271, 30}, {32882655, 30}, {32899039, 30}, {32915423, 30}, {32931807, 30}, {32948191, 30}, {32964575, 30}, {32980959, 30}, {32997343, 30}, {33013727, 30}, {33030111, 30}, {33046495, 30}, {33062879, 30}, {33079263, 30}, {33095647, 30}, {33112031, 30}, {33128415, 30}, {33144799, 30}, {33161183, 30}, {33177567, 30}, {33193951, 30}, {33210335, 30}, {33226719, 30}, {33243103, 30}, {33259487, 30}, {33275871, 30}, {33292255, 30}, {33308639, 30}, {33325023, 30}, {33341407, 30}, {33357791, 30}, {33374175, 30}, {33390559, 30}, {33406943, 30}, {33423327, 30}, {33439711, 30}, {33456095, 30}, {33472479, 30}, {33488863, 30}, {33505247, 30}, {33521631, 30}, {33538015, 30}, {33554399, 30} }, { {32522209, 30}, {32538593, 30}, {32554977, 30}, {32571361, 30}, {32587745, 30}, {32604129, 30}, {32620513, 30}, {32636897, 30}, {32653281, 30}, {32669665, 30}, {32686049, 30}, {32702433, 30}, {32718817, 30}, {32735201, 30}, {32751585, 30}, {32767969, 30}, {32784353, 30}, {32800737, 30}, {32817121, 30}, {32833505, 30}, {32849889, 30}, {32866273, 30}, {32882657, 30}, {32899041, 30}, {32915425, 30}, {32931809, 30}, {32948193, 30}, {32964577, 30}, {32980961, 30}, {32997345, 30}, {33013729, 30}, {33030113, 30}, {33046497, 30}, {33062881, 30}, {33079265, 30}, {33095649, 30}, {33112033, 30}, {33128417, 30}, {33144801, 30}, {33161185, 30}, {33177569, 30}, {33193953, 30}, {33210337, 30}, {33226721, 30}, {33243105, 30}, {33259489, 30}, {33275873, 30}, {33292257, 30}, {33308641, 30}, {33325025, 30}, {33341409, 30}, {33357793, 30}, {33374177, 30}, {33390561, 30}, {33406945, 30}, {33423329, 30}, {33439713, 30}, {33456097, 30}, {33472481, 30}, {33488865, 30}, {33505249, 30}, {33521633, 30}, {33538017, 30}, {33554401, 30} }, { {32522211, 30}, {32538595, 30}, {32554979, 30}, {32571363, 30}, {32587747, 30}, {32604131, 30}, {32620515, 30}, {32636899, 30}, {32653283, 30}, {32669667, 30}, {32686051, 30}, {32702435, 30}, {32718819, 30}, {32735203, 30}, {32751587, 30}, {32767971, 30}, {32784355, 30}, {32800739, 30}, {32817123, 30}, {32833507, 30}, {32849891, 30}, {32866275, 30}, {32882659, 30}, {32899043, 30}, {32915427, 30}, {32931811, 30}, {32948195, 30}, {32964579, 30}, {32980963, 30}, {32997347, 30}, {33013731, 30}, {33030115, 30}, {33046499, 30}, {33062883, 30}, {33079267, 30}, {33095651, 30}, {33112035, 30}, {33128419, 30}, {33144803, 30}, {33161187, 30}, {33177571, 30}, {33193955, 30}, {33210339, 30}, {33226723, 30}, {33243107, 30}, {33259491, 30}, {33275875, 30}, {33292259, 30}, {33308643, 30}, {33325027, 30}, {33341411, 30}, {33357795, 30}, {33374179, 30}, {33390563, 30}, {33406947, 30}, {33423331, 30}, {33439715, 30}, {33456099, 30}, {33472483, 30}, {33488867, 30}, {33505251, 30}, {33521635, 30}, {33538019, 30}, {33554403, 30} }, { {32522213, 30}, {32538597, 30}, {32554981, 30}, {32571365, 30}, {32587749, 30}, {32604133, 30}, {32620517, 30}, {32636901, 30}, {32653285, 30}, {32669669, 30}, {32686053, 30}, {32702437, 30}, {32718821, 30}, {32735205, 30}, {32751589, 30}, {32767973, 30}, {32784357, 30}, {32800741, 30}, {32817125, 30}, {32833509, 30}, {32849893, 30}, {32866277, 30}, {32882661, 30}, {32899045, 30}, {32915429, 30}, {32931813, 30}, {32948197, 30}, {32964581, 30}, {32980965, 30}, {32997349, 30}, {33013733, 30}, {33030117, 30}, {33046501, 30}, {33062885, 30}, {33079269, 30}, {33095653, 30}, {33112037, 30}, {33128421, 30}, {33144805, 30}, {33161189, 30}, {33177573, 30}, {33193957, 30}, {33210341, 30}, {33226725, 30}, {33243109, 30}, {33259493, 30}, {33275877, 30}, {33292261, 30}, {33308645, 30}, {33325029, 30}, {33341413, 30}, {33357797, 30}, {33374181, 30}, {33390565, 30}, {33406949, 30}, {33423333, 30}, {33439717, 30}, {33456101, 30}, {33472485, 30}, {33488869, 30}, {33505253, 30}, {33521637, 30}, {33538021, 30}, {33554405, 30} }, { {32522215, 30}, {32538599, 30}, {32554983, 30}, {32571367, 30}, {32587751, 30}, {32604135, 30}, {32620519, 30}, {32636903, 30}, {32653287, 30}, {32669671, 30}, {32686055, 30}, {32702439, 30}, {32718823, 30}, {32735207, 30}, {32751591, 30}, {32767975, 30}, {32784359, 30}, {32800743, 30}, {32817127, 30}, {32833511, 30}, {32849895, 30}, {32866279, 30}, {32882663, 30}, {32899047, 30}, {32915431, 30}, {32931815, 30}, {32948199, 30}, {32964583, 30}, {32980967, 30}, {32997351, 30}, {33013735, 30}, {33030119, 30}, {33046503, 30}, {33062887, 30}, {33079271, 30}, {33095655, 30}, {33112039, 30}, {33128423, 30}, {33144807, 30}, {33161191, 30}, {33177575, 30}, {33193959, 30}, {33210343, 30}, {33226727, 30}, {33243111, 30}, {33259495, 30}, {33275879, 30}, {33292263, 30}, {33308647, 30}, {33325031, 30}, {33341415, 30}, {33357799, 30}, {33374183, 30}, {33390567, 30}, {33406951, 30}, {33423335, 30}, {33439719, 30}, {33456103, 30}, {33472487, 30}, {33488871, 30}, {33505255, 30}, {33521639, 30}, {33538023, 30}, {33554407, 30} }, { {32522217, 30}, {32538601, 30}, {32554985, 30}, {32571369, 30}, {32587753, 30}, {32604137, 30}, {32620521, 30}, {32636905, 30}, {32653289, 30}, {32669673, 30}, {32686057, 30}, {32702441, 30}, {32718825, 30}, {32735209, 30}, {32751593, 30}, {32767977, 30}, {32784361, 30}, {32800745, 30}, {32817129, 30}, {32833513, 30}, {32849897, 30}, {32866281, 30}, {32882665, 30}, {32899049, 30}, {32915433, 30}, {32931817, 30}, {32948201, 30}, {32964585, 30}, {32980969, 30}, {32997353, 30}, {33013737, 30}, {33030121, 30}, {33046505, 30}, {33062889, 30}, {33079273, 30}, {33095657, 30}, {33112041, 30}, {33128425, 30}, {33144809, 30}, {33161193, 30}, {33177577, 30}, {33193961, 30}, {33210345, 30}, {33226729, 30}, {33243113, 30}, {33259497, 30}, {33275881, 30}, {33292265, 30}, {33308649, 30}, {33325033, 30}, {33341417, 30}, {33357801, 30}, {33374185, 30}, {33390569, 30}, {33406953, 30}, {33423337, 30}, {33439721, 30}, {33456105, 30}, {33472489, 30}, {33488873, 30}, {33505257, 30}, {33521641, 30}, {33538025, 30}, {33554409, 30} }, { {32522219, 30}, {32538603, 30}, {32554987, 30}, {32571371, 30}, {32587755, 30}, {32604139, 30}, {32620523, 30}, {32636907, 30}, {32653291, 30}, {32669675, 30}, {32686059, 30}, {32702443, 30}, {32718827, 30}, {32735211, 30}, {32751595, 30}, {32767979, 30}, {32784363, 30}, {32800747, 30}, {32817131, 30}, {32833515, 30}, {32849899, 30}, {32866283, 30}, {32882667, 30}, {32899051, 30}, {32915435, 30}, {32931819, 30}, {32948203, 30}, {32964587, 30}, {32980971, 30}, {32997355, 30}, {33013739, 30}, {33030123, 30}, {33046507, 30}, {33062891, 30}, {33079275, 30}, {33095659, 30}, {33112043, 30}, {33128427, 30}, {33144811, 30}, {33161195, 30}, {33177579, 30}, {33193963, 30}, {33210347, 30}, {33226731, 30}, {33243115, 30}, {33259499, 30}, {33275883, 30}, {33292267, 30}, {33308651, 30}, {33325035, 30}, {33341419, 30}, {33357803, 30}, {33374187, 30}, {33390571, 30}, {33406955, 30}, {33423339, 30}, {33439723, 30}, {33456107, 30}, {33472491, 30}, {33488875, 30}, {33505259, 30}, {33521643, 30}, {33538027, 30}, {33554411, 30} }, { {32522221, 30}, {32538605, 30}, {32554989, 30}, {32571373, 30}, {32587757, 30}, {32604141, 30}, {32620525, 30}, {32636909, 30}, {32653293, 30}, {32669677, 30}, {32686061, 30}, {32702445, 30}, {32718829, 30}, {32735213, 30}, {32751597, 30}, {32767981, 30}, {32784365, 30}, {32800749, 30}, {32817133, 30}, {32833517, 30}, {32849901, 30}, {32866285, 30}, {32882669, 30}, {32899053, 30}, {32915437, 30}, {32931821, 30}, {32948205, 30}, {32964589, 30}, {32980973, 30}, {32997357, 30}, {33013741, 30}, {33030125, 30}, {33046509, 30}, {33062893, 30}, {33079277, 30}, {33095661, 30}, {33112045, 30}, {33128429, 30}, {33144813, 30}, {33161197, 30}, {33177581, 30}, {33193965, 30}, {33210349, 30}, {33226733, 30}, {33243117, 30}, {33259501, 30}, {33275885, 30}, {33292269, 30}, {33308653, 30}, {33325037, 30}, {33341421, 30}, {33357805, 30}, {33374189, 30}, {33390573, 30}, {33406957, 30}, {33423341, 30}, {33439725, 30}, {33456109, 30}, {33472493, 30}, {33488877, 30}, {33505261, 30}, {33521645, 30}, {33538029, 30}, {33554413, 30} }, { {32522223, 30}, {32538607, 30}, {32554991, 30}, {32571375, 30}, {32587759, 30}, {32604143, 30}, {32620527, 30}, {32636911, 30}, {32653295, 30}, {32669679, 30}, {32686063, 30}, {32702447, 30}, {32718831, 30}, {32735215, 30}, {32751599, 30}, {32767983, 30}, {32784367, 30}, {32800751, 30}, {32817135, 30}, {32833519, 30}, {32849903, 30}, {32866287, 30}, {32882671, 30}, {32899055, 30}, {32915439, 30}, {32931823, 30}, {32948207, 30}, {32964591, 30}, {32980975, 30}, {32997359, 30}, {33013743, 30}, {33030127, 30}, {33046511, 30}, {33062895, 30}, {33079279, 30}, {33095663, 30}, {33112047, 30}, {33128431, 30}, {33144815, 30}, {33161199, 30}, {33177583, 30}, {33193967, 30}, {33210351, 30}, {33226735, 30}, {33243119, 30}, {33259503, 30}, {33275887, 30}, {33292271, 30}, {33308655, 30}, {33325039, 30}, {33341423, 30}, {33357807, 30}, {33374191, 30}, {33390575, 30}, {33406959, 30}, {33423343, 30}, {33439727, 30}, {33456111, 30}, {33472495, 30}, {33488879, 30}, {33505263, 30}, {33521647, 30}, {33538031, 30}, {33554415, 30} }, { {32522225, 30}, {32538609, 30}, {32554993, 30}, {32571377, 30}, {32587761, 30}, {32604145, 30}, {32620529, 30}, {32636913, 30}, {32653297, 30}, {32669681, 30}, {32686065, 30}, {32702449, 30}, {32718833, 30}, {32735217, 30}, {32751601, 30}, {32767985, 30}, {32784369, 30}, {32800753, 30}, {32817137, 30}, {32833521, 30}, {32849905, 30}, {32866289, 30}, {32882673, 30}, {32899057, 30}, {32915441, 30}, {32931825, 30}, {32948209, 30}, {32964593, 30}, {32980977, 30}, {32997361, 30}, {33013745, 30}, {33030129, 30}, {33046513, 30}, {33062897, 30}, {33079281, 30}, {33095665, 30}, {33112049, 30}, {33128433, 30}, {33144817, 30}, {33161201, 30}, {33177585, 30}, {33193969, 30}, {33210353, 30}, {33226737, 30}, {33243121, 30}, {33259505, 30}, {33275889, 30}, {33292273, 30}, {33308657, 30}, {33325041, 30}, {33341425, 30}, {33357809, 30}, {33374193, 30}, {33390577, 30}, {33406961, 30}, {33423345, 30}, {33439729, 30}, {33456113, 30}, {33472497, 30}, {33488881, 30}, {33505265, 30}, {33521649, 30}, {33538033, 30}, {33554417, 30} }, { {32522227, 30}, {32538611, 30}, {32554995, 30}, {32571379, 30}, {32587763, 30}, {32604147, 30}, {32620531, 30}, {32636915, 30}, {32653299, 30}, {32669683, 30}, {32686067, 30}, {32702451, 30}, {32718835, 30}, {32735219, 30}, {32751603, 30}, {32767987, 30}, {32784371, 30}, {32800755, 30}, {32817139, 30}, {32833523, 30}, {32849907, 30}, {32866291, 30}, {32882675, 30}, {32899059, 30}, {32915443, 30}, {32931827, 30}, {32948211, 30}, {32964595, 30}, {32980979, 30}, {32997363, 30}, {33013747, 30}, {33030131, 30}, {33046515, 30}, {33062899, 30}, {33079283, 30}, {33095667, 30}, {33112051, 30}, {33128435, 30}, {33144819, 30}, {33161203, 30}, {33177587, 30}, {33193971, 30}, {33210355, 30}, {33226739, 30}, {33243123, 30}, {33259507, 30}, {33275891, 30}, {33292275, 30}, {33308659, 30}, {33325043, 30}, {33341427, 30}, {33357811, 30}, {33374195, 30}, {33390579, 30}, {33406963, 30}, {33423347, 30}, {33439731, 30}, {33456115, 30}, {33472499, 30}, {33488883, 30}, {33505267, 30}, {33521651, 30}, {33538035, 30}, {33554419, 30} }, { { 24587, 20}, {32538613, 30}, {32554997, 30}, {32571381, 30}, {32587765, 30}, {32604149, 30}, {32620533, 30}, {32636917, 30}, {32653301, 30}, {32669685, 30}, {32686069, 30}, {32702453, 30}, {32718837, 30}, {32735221, 30}, {32751605, 30}, {32767989, 30}, {32784373, 30}, {32800757, 30}, {32817141, 30}, {32833525, 30}, {32849909, 30}, {32866293, 30}, {32882677, 30}, {32899061, 30}, {32915445, 30}, {32931829, 30}, {32948213, 30}, {32964597, 30}, {32980981, 30}, {32997365, 30}, {33013749, 30}, {33030133, 30}, {33046517, 30}, {33062901, 30}, {33079285, 30}, {33095669, 30}, {33112053, 30}, {33128437, 30}, {33144821, 30}, {33161205, 30}, {33177589, 30}, {33193973, 30}, {33210357, 30}, {33226741, 30}, {33243125, 30}, {33259509, 30}, {33275893, 30}, {33292277, 30}, {33308661, 30}, {33325045, 30}, {33341429, 30}, {33357813, 30}, {33374197, 30}, {33390581, 30}, {33406965, 30}, {33423349, 30}, {33439733, 30}, {33456117, 30}, {33472501, 30}, {33488885, 30}, {33505269, 30}, {33521653, 30}, {33538037, 30}, {33554421, 30} }, { { 6195, 18}, {32538615, 30}, {32554999, 30}, {32571383, 30}, {32587767, 30}, {32604151, 30}, {32620535, 30}, {32636919, 30}, {32653303, 30}, {32669687, 30}, {32686071, 30}, {32702455, 30}, {32718839, 30}, {32735223, 30}, {32751607, 30}, {32767991, 30}, {32784375, 30}, {32800759, 30}, {32817143, 30}, {32833527, 30}, {32849911, 30}, {32866295, 30}, {32882679, 30}, {32899063, 30}, {32915447, 30}, {32931831, 30}, {32948215, 30}, {32964599, 30}, {32980983, 30}, {32997367, 30}, {33013751, 30}, {33030135, 30}, {33046519, 30}, {33062903, 30}, {33079287, 30}, {33095671, 30}, {33112055, 30}, {33128439, 30}, {33144823, 30}, {33161207, 30}, {33177591, 30}, {33193975, 30}, {33210359, 30}, {33226743, 30}, {33243127, 30}, {33259511, 30}, {33275895, 30}, {33292279, 30}, {33308663, 30}, {33325047, 30}, {33341431, 30}, {33357815, 30}, {33374199, 30}, {33390583, 30}, {33406967, 30}, {33423351, 30}, {33439735, 30}, {33456119, 30}, {33472503, 30}, {33488887, 30}, {33505271, 30}, {33521655, 30}, {33538039, 30}, {33554423, 30} }, { { 207, 13}, { 24585, 20}, {32555001, 30}, {32571385, 30}, {32587769, 30}, {32604153, 30}, {32620537, 30}, {32636921, 30}, {32653305, 30}, {32669689, 30}, {32686073, 30}, {32702457, 30}, {32718841, 30}, {32735225, 30}, {32751609, 30}, {32767993, 30}, {32784377, 30}, {32800761, 30}, {32817145, 30}, {32833529, 30}, {32849913, 30}, {32866297, 30}, {32882681, 30}, {32899065, 30}, {32915449, 30}, {32931833, 30}, {32948217, 30}, {32964601, 30}, {32980985, 30}, {32997369, 30}, {33013753, 30}, {33030137, 30}, {33046521, 30}, {33062905, 30}, {33079289, 30}, {33095673, 30}, {33112057, 30}, {33128441, 30}, {33144825, 30}, {33161209, 30}, {33177593, 30}, {33193977, 30}, {33210361, 30}, {33226745, 30}, {33243129, 30}, {33259513, 30}, {33275897, 30}, {33292281, 30}, {33308665, 30}, {33325049, 30}, {33341433, 30}, {33357817, 30}, {33374201, 30}, {33390585, 30}, {33406969, 30}, {33423353, 30}, {33439737, 30}, {33456121, 30}, {33472505, 30}, {33488889, 30}, {33505273, 30}, {33521657, 30}, {33538041, 30}, {33554425, 30} }, { { 11, 12}, { 799, 15}, {32555003, 30}, {32571387, 30}, {32587771, 30}, {32604155, 30}, {32620539, 30}, {32636923, 30}, {32653307, 30}, {32669691, 30}, {32686075, 30}, {32702459, 30}, {32718843, 30}, {32735227, 30}, {32751611, 30}, {32767995, 30}, {32784379, 30}, {32800763, 30}, {32817147, 30}, {32833531, 30}, {32849915, 30}, {32866299, 30}, {32882683, 30}, {32899067, 30}, {32915451, 30}, {32931835, 30}, {32948219, 30}, {32964603, 30}, {32980987, 30}, {32997371, 30}, {33013755, 30}, {33030139, 30}, {33046523, 30}, {33062907, 30}, {33079291, 30}, {33095675, 30}, {33112059, 30}, {33128443, 30}, {33144827, 30}, {33161211, 30}, {33177595, 30}, {33193979, 30}, {33210363, 30}, {33226747, 30}, {33243131, 30}, {33259515, 30}, {33275899, 30}, {33292283, 30}, {33308667, 30}, {33325051, 30}, {33341435, 30}, {33357819, 30}, {33374203, 30}, {33390587, 30}, {33406971, 30}, {33423355, 30}, {33439739, 30}, {33456123, 30}, {33472507, 30}, {33488891, 30}, {33505275, 30}, {33521659, 30}, {33538043, 30}, {33554427, 30} }, { { 51, 10}, { 9, 12}, { 797, 15}, { 795, 15}, { 793, 15}, { 1575, 16}, { 1573, 16}, { 1571, 16}, { 1569, 16}, { 3125, 17}, { 3123, 17}, { 3121, 17}, { 3119, 17}, { 3117, 17}, { 3115, 17}, { 3113, 17}, { 3111, 17}, { 6193, 18}, { 6191, 18}, { 6189, 18}, { 6187, 18}, { 6185, 18}, { 6183, 18}, { 6181, 18}, { 6179, 18}, { 12303, 19}, { 12301, 19}, { 12299, 19}, { 12297, 19}, { 24649, 20}, { 24651, 20}, { 24653, 20}, { 24655, 20}, { 49329, 21}, { 49331, 21}, { 49333, 21}, { 49335, 21}, { 49337, 21}, { 49339, 21}, { 49341, 21}, { 49343, 21}, {33193981, 30}, {33210365, 30}, {33226749, 30}, {33243133, 30}, {33259517, 30}, {33275901, 30}, {33292285, 30}, {33308669, 30}, {33325053, 30}, {33341437, 30}, {33357821, 30}, {33374205, 30}, {33390589, 30}, {33406973, 30}, {33423357, 30}, {33439741, 30}, {33456125, 30}, {33472509, 30}, {33488893, 30}, {33505277, 30}, {33521661, 30}, {33538045, 30}, {33554429, 30} }, { { 15, 5}, { 31, 7}, { 29, 7}, { 27, 7}, { 25, 7}, { 39, 8}, { 37, 8}, { 35, 8}, { 33, 8}, { 53, 9}, { 51, 9}, { 49, 9}, { 47, 9}, { 45, 9}, { 43, 9}, { 41, 9}, { 39, 9}, { 49, 10}, { 47, 10}, { 45, 10}, { 43, 10}, { 41, 10}, { 39, 10}, { 37, 10}, { 35, 10}, { 15, 11}, { 13, 11}, { 11, 11}, { 9, 11}, { 73, 12}, { 75, 12}, { 77, 12}, { 79, 12}, { 177, 13}, { 179, 13}, { 181, 13}, { 183, 13}, { 185, 13}, { 187, 13}, { 189, 13}, { 191, 13}, { 463, 14}, { 1823, 16}, { 1821, 16}, { 1819, 16}, { 1817, 16}, { 3623, 17}, { 3621, 17}, { 3619, 17}, { 3617, 17}, { 7221, 18}, { 7219, 18}, { 7217, 18}, { 7215, 18}, { 7213, 18}, { 7211, 18}, { 7209, 18}, { 7207, 18}, { 14385, 19}, { 14383, 19}, { 14381, 19}, { 14379, 19}, { 14377, 19}, { 14375, 19} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 14, 5}, { 30, 7}, { 28, 7}, { 26, 7}, { 24, 7}, { 38, 8}, { 36, 8}, { 34, 8}, { 32, 8}, { 52, 9}, { 50, 9}, { 48, 9}, { 46, 9}, { 44, 9}, { 42, 9}, { 40, 9}, { 38, 9}, { 48, 10}, { 46, 10}, { 44, 10}, { 42, 10}, { 40, 10}, { 38, 10}, { 36, 10}, { 34, 10}, { 14, 11}, { 12, 11}, { 10, 11}, { 8, 11}, { 72, 12}, { 74, 12}, { 76, 12}, { 78, 12}, { 176, 13}, { 178, 13}, { 180, 13}, { 182, 13}, { 184, 13}, { 186, 13}, { 188, 13}, { 190, 13}, { 462, 14}, { 1822, 16}, { 1820, 16}, { 1818, 16}, { 1816, 16}, { 3622, 17}, { 3620, 17}, { 3618, 17}, { 3616, 17}, { 7220, 18}, { 7218, 18}, { 7216, 18}, { 7214, 18}, { 7212, 18}, { 7210, 18}, { 7208, 18}, { 7206, 18}, { 14384, 19}, { 14382, 19}, { 14380, 19}, { 14378, 19}, { 14376, 19}, { 14374, 19} }, { { 50, 10}, { 8, 12}, { 796, 15}, { 794, 15}, { 792, 15}, { 1574, 16}, { 1572, 16}, { 1570, 16}, { 1568, 16}, { 3124, 17}, { 3122, 17}, { 3120, 17}, { 3118, 17}, { 3116, 17}, { 3114, 17}, { 3112, 17}, { 3110, 17}, { 6192, 18}, { 6190, 18}, { 6188, 18}, { 6186, 18}, { 6184, 18}, { 6182, 18}, { 6180, 18}, { 6178, 18}, { 12302, 19}, { 12300, 19}, { 12298, 19}, { 12296, 19}, { 24648, 20}, { 24650, 20}, { 24652, 20}, { 24654, 20}, { 49328, 21}, { 49330, 21}, { 49332, 21}, { 49334, 21}, { 49336, 21}, { 49338, 21}, { 49340, 21}, { 49342, 21}, {33185797, 30}, {33202181, 30}, {33218565, 30}, {33234949, 30}, {33251333, 30}, {33267717, 30}, {33284101, 30}, {33300485, 30}, {33316869, 30}, {33333253, 30}, {33349637, 30}, {33366021, 30}, {33382405, 30}, {33398789, 30}, {33415173, 30}, {33431557, 30}, {33447941, 30}, {33464325, 30}, {33480709, 30}, {33497093, 30}, {33513477, 30}, {33529861, 30}, {33546245, 30} }, { { 10, 12}, { 798, 15}, {32546823, 30}, {32563207, 30}, {32579591, 30}, {32595975, 30}, {32612359, 30}, {32628743, 30}, {32645127, 30}, {32661511, 30}, {32677895, 30}, {32694279, 30}, {32710663, 30}, {32727047, 30}, {32743431, 30}, {32759815, 30}, {32776199, 30}, {32792583, 30}, {32808967, 30}, {32825351, 30}, {32841735, 30}, {32858119, 30}, {32874503, 30}, {32890887, 30}, {32907271, 30}, {32923655, 30}, {32940039, 30}, {32956423, 30}, {32972807, 30}, {32989191, 30}, {33005575, 30}, {33021959, 30}, {33038343, 30}, {33054727, 30}, {33071111, 30}, {33087495, 30}, {33103879, 30}, {33120263, 30}, {33136647, 30}, {33153031, 30}, {33169415, 30}, {33185799, 30}, {33202183, 30}, {33218567, 30}, {33234951, 30}, {33251335, 30}, {33267719, 30}, {33284103, 30}, {33300487, 30}, {33316871, 30}, {33333255, 30}, {33349639, 30}, {33366023, 30}, {33382407, 30}, {33398791, 30}, {33415175, 30}, {33431559, 30}, {33447943, 30}, {33464327, 30}, {33480711, 30}, {33497095, 30}, {33513479, 30}, {33529863, 30}, {33546247, 30} }, { { 206, 13}, { 24584, 20}, {32546825, 30}, {32563209, 30}, {32579593, 30}, {32595977, 30}, {32612361, 30}, {32628745, 30}, {32645129, 30}, {32661513, 30}, {32677897, 30}, {32694281, 30}, {32710665, 30}, {32727049, 30}, {32743433, 30}, {32759817, 30}, {32776201, 30}, {32792585, 30}, {32808969, 30}, {32825353, 30}, {32841737, 30}, {32858121, 30}, {32874505, 30}, {32890889, 30}, {32907273, 30}, {32923657, 30}, {32940041, 30}, {32956425, 30}, {32972809, 30}, {32989193, 30}, {33005577, 30}, {33021961, 30}, {33038345, 30}, {33054729, 30}, {33071113, 30}, {33087497, 30}, {33103881, 30}, {33120265, 30}, {33136649, 30}, {33153033, 30}, {33169417, 30}, {33185801, 30}, {33202185, 30}, {33218569, 30}, {33234953, 30}, {33251337, 30}, {33267721, 30}, {33284105, 30}, {33300489, 30}, {33316873, 30}, {33333257, 30}, {33349641, 30}, {33366025, 30}, {33382409, 30}, {33398793, 30}, {33415177, 30}, {33431561, 30}, {33447945, 30}, {33464329, 30}, {33480713, 30}, {33497097, 30}, {33513481, 30}, {33529865, 30}, {33546249, 30} }, { { 6194, 18}, {32530443, 30}, {32546827, 30}, {32563211, 30}, {32579595, 30}, {32595979, 30}, {32612363, 30}, {32628747, 30}, {32645131, 30}, {32661515, 30}, {32677899, 30}, {32694283, 30}, {32710667, 30}, {32727051, 30}, {32743435, 30}, {32759819, 30}, {32776203, 30}, {32792587, 30}, {32808971, 30}, {32825355, 30}, {32841739, 30}, {32858123, 30}, {32874507, 30}, {32890891, 30}, {32907275, 30}, {32923659, 30}, {32940043, 30}, {32956427, 30}, {32972811, 30}, {32989195, 30}, {33005579, 30}, {33021963, 30}, {33038347, 30}, {33054731, 30}, {33071115, 30}, {33087499, 30}, {33103883, 30}, {33120267, 30}, {33136651, 30}, {33153035, 30}, {33169419, 30}, {33185803, 30}, {33202187, 30}, {33218571, 30}, {33234955, 30}, {33251339, 30}, {33267723, 30}, {33284107, 30}, {33300491, 30}, {33316875, 30}, {33333259, 30}, {33349643, 30}, {33366027, 30}, {33382411, 30}, {33398795, 30}, {33415179, 30}, {33431563, 30}, {33447947, 30}, {33464331, 30}, {33480715, 30}, {33497099, 30}, {33513483, 30}, {33529867, 30}, {33546251, 30} }, { { 24586, 20}, {32530445, 30}, {32546829, 30}, {32563213, 30}, {32579597, 30}, {32595981, 30}, {32612365, 30}, {32628749, 30}, {32645133, 30}, {32661517, 30}, {32677901, 30}, {32694285, 30}, {32710669, 30}, {32727053, 30}, {32743437, 30}, {32759821, 30}, {32776205, 30}, {32792589, 30}, {32808973, 30}, {32825357, 30}, {32841741, 30}, {32858125, 30}, {32874509, 30}, {32890893, 30}, {32907277, 30}, {32923661, 30}, {32940045, 30}, {32956429, 30}, {32972813, 30}, {32989197, 30}, {33005581, 30}, {33021965, 30}, {33038349, 30}, {33054733, 30}, {33071117, 30}, {33087501, 30}, {33103885, 30}, {33120269, 30}, {33136653, 30}, {33153037, 30}, {33169421, 30}, {33185805, 30}, {33202189, 30}, {33218573, 30}, {33234957, 30}, {33251341, 30}, {33267725, 30}, {33284109, 30}, {33300493, 30}, {33316877, 30}, {33333261, 30}, {33349645, 30}, {33366029, 30}, {33382413, 30}, {33398797, 30}, {33415181, 30}, {33431565, 30}, {33447949, 30}, {33464333, 30}, {33480717, 30}, {33497101, 30}, {33513485, 30}, {33529869, 30}, {33546253, 30} }, { {32514063, 30}, {32530447, 30}, {32546831, 30}, {32563215, 30}, {32579599, 30}, {32595983, 30}, {32612367, 30}, {32628751, 30}, {32645135, 30}, {32661519, 30}, {32677903, 30}, {32694287, 30}, {32710671, 30}, {32727055, 30}, {32743439, 30}, {32759823, 30}, {32776207, 30}, {32792591, 30}, {32808975, 30}, {32825359, 30}, {32841743, 30}, {32858127, 30}, {32874511, 30}, {32890895, 30}, {32907279, 30}, {32923663, 30}, {32940047, 30}, {32956431, 30}, {32972815, 30}, {32989199, 30}, {33005583, 30}, {33021967, 30}, {33038351, 30}, {33054735, 30}, {33071119, 30}, {33087503, 30}, {33103887, 30}, {33120271, 30}, {33136655, 30}, {33153039, 30}, {33169423, 30}, {33185807, 30}, {33202191, 30}, {33218575, 30}, {33234959, 30}, {33251343, 30}, {33267727, 30}, {33284111, 30}, {33300495, 30}, {33316879, 30}, {33333263, 30}, {33349647, 30}, {33366031, 30}, {33382415, 30}, {33398799, 30}, {33415183, 30}, {33431567, 30}, {33447951, 30}, {33464335, 30}, {33480719, 30}, {33497103, 30}, {33513487, 30}, {33529871, 30}, {33546255, 30} }, { {32514065, 30}, {32530449, 30}, {32546833, 30}, {32563217, 30}, {32579601, 30}, {32595985, 30}, {32612369, 30}, {32628753, 30}, {32645137, 30}, {32661521, 30}, {32677905, 30}, {32694289, 30}, {32710673, 30}, {32727057, 30}, {32743441, 30}, {32759825, 30}, {32776209, 30}, {32792593, 30}, {32808977, 30}, {32825361, 30}, {32841745, 30}, {32858129, 30}, {32874513, 30}, {32890897, 30}, {32907281, 30}, {32923665, 30}, {32940049, 30}, {32956433, 30}, {32972817, 30}, {32989201, 30}, {33005585, 30}, {33021969, 30}, {33038353, 30}, {33054737, 30}, {33071121, 30}, {33087505, 30}, {33103889, 30}, {33120273, 30}, {33136657, 30}, {33153041, 30}, {33169425, 30}, {33185809, 30}, {33202193, 30}, {33218577, 30}, {33234961, 30}, {33251345, 30}, {33267729, 30}, {33284113, 30}, {33300497, 30}, {33316881, 30}, {33333265, 30}, {33349649, 30}, {33366033, 30}, {33382417, 30}, {33398801, 30}, {33415185, 30}, {33431569, 30}, {33447953, 30}, {33464337, 30}, {33480721, 30}, {33497105, 30}, {33513489, 30}, {33529873, 30}, {33546257, 30} }, { {32514067, 30}, {32530451, 30}, {32546835, 30}, {32563219, 30}, {32579603, 30}, {32595987, 30}, {32612371, 30}, {32628755, 30}, {32645139, 30}, {32661523, 30}, {32677907, 30}, {32694291, 30}, {32710675, 30}, {32727059, 30}, {32743443, 30}, {32759827, 30}, {32776211, 30}, {32792595, 30}, {32808979, 30}, {32825363, 30}, {32841747, 30}, {32858131, 30}, {32874515, 30}, {32890899, 30}, {32907283, 30}, {32923667, 30}, {32940051, 30}, {32956435, 30}, {32972819, 30}, {32989203, 30}, {33005587, 30}, {33021971, 30}, {33038355, 30}, {33054739, 30}, {33071123, 30}, {33087507, 30}, {33103891, 30}, {33120275, 30}, {33136659, 30}, {33153043, 30}, {33169427, 30}, {33185811, 30}, {33202195, 30}, {33218579, 30}, {33234963, 30}, {33251347, 30}, {33267731, 30}, {33284115, 30}, {33300499, 30}, {33316883, 30}, {33333267, 30}, {33349651, 30}, {33366035, 30}, {33382419, 30}, {33398803, 30}, {33415187, 30}, {33431571, 30}, {33447955, 30}, {33464339, 30}, {33480723, 30}, {33497107, 30}, {33513491, 30}, {33529875, 30}, {33546259, 30} }, { {32514069, 30}, {32530453, 30}, {32546837, 30}, {32563221, 30}, {32579605, 30}, {32595989, 30}, {32612373, 30}, {32628757, 30}, {32645141, 30}, {32661525, 30}, {32677909, 30}, {32694293, 30}, {32710677, 30}, {32727061, 30}, {32743445, 30}, {32759829, 30}, {32776213, 30}, {32792597, 30}, {32808981, 30}, {32825365, 30}, {32841749, 30}, {32858133, 30}, {32874517, 30}, {32890901, 30}, {32907285, 30}, {32923669, 30}, {32940053, 30}, {32956437, 30}, {32972821, 30}, {32989205, 30}, {33005589, 30}, {33021973, 30}, {33038357, 30}, {33054741, 30}, {33071125, 30}, {33087509, 30}, {33103893, 30}, {33120277, 30}, {33136661, 30}, {33153045, 30}, {33169429, 30}, {33185813, 30}, {33202197, 30}, {33218581, 30}, {33234965, 30}, {33251349, 30}, {33267733, 30}, {33284117, 30}, {33300501, 30}, {33316885, 30}, {33333269, 30}, {33349653, 30}, {33366037, 30}, {33382421, 30}, {33398805, 30}, {33415189, 30}, {33431573, 30}, {33447957, 30}, {33464341, 30}, {33480725, 30}, {33497109, 30}, {33513493, 30}, {33529877, 30}, {33546261, 30} }, { {32514071, 30}, {32530455, 30}, {32546839, 30}, {32563223, 30}, {32579607, 30}, {32595991, 30}, {32612375, 30}, {32628759, 30}, {32645143, 30}, {32661527, 30}, {32677911, 30}, {32694295, 30}, {32710679, 30}, {32727063, 30}, {32743447, 30}, {32759831, 30}, {32776215, 30}, {32792599, 30}, {32808983, 30}, {32825367, 30}, {32841751, 30}, {32858135, 30}, {32874519, 30}, {32890903, 30}, {32907287, 30}, {32923671, 30}, {32940055, 30}, {32956439, 30}, {32972823, 30}, {32989207, 30}, {33005591, 30}, {33021975, 30}, {33038359, 30}, {33054743, 30}, {33071127, 30}, {33087511, 30}, {33103895, 30}, {33120279, 30}, {33136663, 30}, {33153047, 30}, {33169431, 30}, {33185815, 30}, {33202199, 30}, {33218583, 30}, {33234967, 30}, {33251351, 30}, {33267735, 30}, {33284119, 30}, {33300503, 30}, {33316887, 30}, {33333271, 30}, {33349655, 30}, {33366039, 30}, {33382423, 30}, {33398807, 30}, {33415191, 30}, {33431575, 30}, {33447959, 30}, {33464343, 30}, {33480727, 30}, {33497111, 30}, {33513495, 30}, {33529879, 30}, {33546263, 30} }, { {32514073, 30}, {32530457, 30}, {32546841, 30}, {32563225, 30}, {32579609, 30}, {32595993, 30}, {32612377, 30}, {32628761, 30}, {32645145, 30}, {32661529, 30}, {32677913, 30}, {32694297, 30}, {32710681, 30}, {32727065, 30}, {32743449, 30}, {32759833, 30}, {32776217, 30}, {32792601, 30}, {32808985, 30}, {32825369, 30}, {32841753, 30}, {32858137, 30}, {32874521, 30}, {32890905, 30}, {32907289, 30}, {32923673, 30}, {32940057, 30}, {32956441, 30}, {32972825, 30}, {32989209, 30}, {33005593, 30}, {33021977, 30}, {33038361, 30}, {33054745, 30}, {33071129, 30}, {33087513, 30}, {33103897, 30}, {33120281, 30}, {33136665, 30}, {33153049, 30}, {33169433, 30}, {33185817, 30}, {33202201, 30}, {33218585, 30}, {33234969, 30}, {33251353, 30}, {33267737, 30}, {33284121, 30}, {33300505, 30}, {33316889, 30}, {33333273, 30}, {33349657, 30}, {33366041, 30}, {33382425, 30}, {33398809, 30}, {33415193, 30}, {33431577, 30}, {33447961, 30}, {33464345, 30}, {33480729, 30}, {33497113, 30}, {33513497, 30}, {33529881, 30}, {33546265, 30} }, { {32514075, 30}, {32530459, 30}, {32546843, 30}, {32563227, 30}, {32579611, 30}, {32595995, 30}, {32612379, 30}, {32628763, 30}, {32645147, 30}, {32661531, 30}, {32677915, 30}, {32694299, 30}, {32710683, 30}, {32727067, 30}, {32743451, 30}, {32759835, 30}, {32776219, 30}, {32792603, 30}, {32808987, 30}, {32825371, 30}, {32841755, 30}, {32858139, 30}, {32874523, 30}, {32890907, 30}, {32907291, 30}, {32923675, 30}, {32940059, 30}, {32956443, 30}, {32972827, 30}, {32989211, 30}, {33005595, 30}, {33021979, 30}, {33038363, 30}, {33054747, 30}, {33071131, 30}, {33087515, 30}, {33103899, 30}, {33120283, 30}, {33136667, 30}, {33153051, 30}, {33169435, 30}, {33185819, 30}, {33202203, 30}, {33218587, 30}, {33234971, 30}, {33251355, 30}, {33267739, 30}, {33284123, 30}, {33300507, 30}, {33316891, 30}, {33333275, 30}, {33349659, 30}, {33366043, 30}, {33382427, 30}, {33398811, 30}, {33415195, 30}, {33431579, 30}, {33447963, 30}, {33464347, 30}, {33480731, 30}, {33497115, 30}, {33513499, 30}, {33529883, 30}, {33546267, 30} }, { {32514077, 30}, {32530461, 30}, {32546845, 30}, {32563229, 30}, {32579613, 30}, {32595997, 30}, {32612381, 30}, {32628765, 30}, {32645149, 30}, {32661533, 30}, {32677917, 30}, {32694301, 30}, {32710685, 30}, {32727069, 30}, {32743453, 30}, {32759837, 30}, {32776221, 30}, {32792605, 30}, {32808989, 30}, {32825373, 30}, {32841757, 30}, {32858141, 30}, {32874525, 30}, {32890909, 30}, {32907293, 30}, {32923677, 30}, {32940061, 30}, {32956445, 30}, {32972829, 30}, {32989213, 30}, {33005597, 30}, {33021981, 30}, {33038365, 30}, {33054749, 30}, {33071133, 30}, {33087517, 30}, {33103901, 30}, {33120285, 30}, {33136669, 30}, {33153053, 30}, {33169437, 30}, {33185821, 30}, {33202205, 30}, {33218589, 30}, {33234973, 30}, {33251357, 30}, {33267741, 30}, {33284125, 30}, {33300509, 30}, {33316893, 30}, {33333277, 30}, {33349661, 30}, {33366045, 30}, {33382429, 30}, {33398813, 30}, {33415197, 30}, {33431581, 30}, {33447965, 30}, {33464349, 30}, {33480733, 30}, {33497117, 30}, {33513501, 30}, {33529885, 30}, {33546269, 30} }, { {32514079, 30}, {32530463, 30}, {32546847, 30}, {32563231, 30}, {32579615, 30}, {32595999, 30}, {32612383, 30}, {32628767, 30}, {32645151, 30}, {32661535, 30}, {32677919, 30}, {32694303, 30}, {32710687, 30}, {32727071, 30}, {32743455, 30}, {32759839, 30}, {32776223, 30}, {32792607, 30}, {32808991, 30}, {32825375, 30}, {32841759, 30}, {32858143, 30}, {32874527, 30}, {32890911, 30}, {32907295, 30}, {32923679, 30}, {32940063, 30}, {32956447, 30}, {32972831, 30}, {32989215, 30}, {33005599, 30}, {33021983, 30}, {33038367, 30}, {33054751, 30}, {33071135, 30}, {33087519, 30}, {33103903, 30}, {33120287, 30}, {33136671, 30}, {33153055, 30}, {33169439, 30}, {33185823, 30}, {33202207, 30}, {33218591, 30}, {33234975, 30}, {33251359, 30}, {33267743, 30}, {33284127, 30}, {33300511, 30}, {33316895, 30}, {33333279, 30}, {33349663, 30}, {33366047, 30}, {33382431, 30}, {33398815, 30}, {33415199, 30}, {33431583, 30}, {33447967, 30}, {33464351, 30}, {33480735, 30}, {33497119, 30}, {33513503, 30}, {33529887, 30}, {33546271, 30} }, { {32514081, 30}, {32530465, 30}, {32546849, 30}, {32563233, 30}, {32579617, 30}, {32596001, 30}, {32612385, 30}, {32628769, 30}, {32645153, 30}, {32661537, 30}, {32677921, 30}, {32694305, 30}, {32710689, 30}, {32727073, 30}, {32743457, 30}, {32759841, 30}, {32776225, 30}, {32792609, 30}, {32808993, 30}, {32825377, 30}, {32841761, 30}, {32858145, 30}, {32874529, 30}, {32890913, 30}, {32907297, 30}, {32923681, 30}, {32940065, 30}, {32956449, 30}, {32972833, 30}, {32989217, 30}, {33005601, 30}, {33021985, 30}, {33038369, 30}, {33054753, 30}, {33071137, 30}, {33087521, 30}, {33103905, 30}, {33120289, 30}, {33136673, 30}, {33153057, 30}, {33169441, 30}, {33185825, 30}, {33202209, 30}, {33218593, 30}, {33234977, 30}, {33251361, 30}, {33267745, 30}, {33284129, 30}, {33300513, 30}, {33316897, 30}, {33333281, 30}, {33349665, 30}, {33366049, 30}, {33382433, 30}, {33398817, 30}, {33415201, 30}, {33431585, 30}, {33447969, 30}, {33464353, 30}, {33480737, 30}, {33497121, 30}, {33513505, 30}, {33529889, 30}, {33546273, 30} }, { {32514083, 30}, {32530467, 30}, {32546851, 30}, {32563235, 30}, {32579619, 30}, {32596003, 30}, {32612387, 30}, {32628771, 30}, {32645155, 30}, {32661539, 30}, {32677923, 30}, {32694307, 30}, {32710691, 30}, {32727075, 30}, {32743459, 30}, {32759843, 30}, {32776227, 30}, {32792611, 30}, {32808995, 30}, {32825379, 30}, {32841763, 30}, {32858147, 30}, {32874531, 30}, {32890915, 30}, {32907299, 30}, {32923683, 30}, {32940067, 30}, {32956451, 30}, {32972835, 30}, {32989219, 30}, {33005603, 30}, {33021987, 30}, {33038371, 30}, {33054755, 30}, {33071139, 30}, {33087523, 30}, {33103907, 30}, {33120291, 30}, {33136675, 30}, {33153059, 30}, {33169443, 30}, {33185827, 30}, {33202211, 30}, {33218595, 30}, {33234979, 30}, {33251363, 30}, {33267747, 30}, {33284131, 30}, {33300515, 30}, {33316899, 30}, {33333283, 30}, {33349667, 30}, {33366051, 30}, {33382435, 30}, {33398819, 30}, {33415203, 30}, {33431587, 30}, {33447971, 30}, {33464355, 30}, {33480739, 30}, {33497123, 30}, {33513507, 30}, {33529891, 30}, {33546275, 30} }, { {32514085, 30}, {32530469, 30}, {32546853, 30}, {32563237, 30}, {32579621, 30}, {32596005, 30}, {32612389, 30}, {32628773, 30}, {32645157, 30}, {32661541, 30}, {32677925, 30}, {32694309, 30}, {32710693, 30}, {32727077, 30}, {32743461, 30}, {32759845, 30}, {32776229, 30}, {32792613, 30}, {32808997, 30}, {32825381, 30}, {32841765, 30}, {32858149, 30}, {32874533, 30}, {32890917, 30}, {32907301, 30}, {32923685, 30}, {32940069, 30}, {32956453, 30}, {32972837, 30}, {32989221, 30}, {33005605, 30}, {33021989, 30}, {33038373, 30}, {33054757, 30}, {33071141, 30}, {33087525, 30}, {33103909, 30}, {33120293, 30}, {33136677, 30}, {33153061, 30}, {33169445, 30}, {33185829, 30}, {33202213, 30}, {33218597, 30}, {33234981, 30}, {33251365, 30}, {33267749, 30}, {33284133, 30}, {33300517, 30}, {33316901, 30}, {33333285, 30}, {33349669, 30}, {33366053, 30}, {33382437, 30}, {33398821, 30}, {33415205, 30}, {33431589, 30}, {33447973, 30}, {33464357, 30}, {33480741, 30}, {33497125, 30}, {33513509, 30}, {33529893, 30}, {33546277, 30} }, { {32514087, 30}, {32530471, 30}, {32546855, 30}, {32563239, 30}, {32579623, 30}, {32596007, 30}, {32612391, 30}, {32628775, 30}, {32645159, 30}, {32661543, 30}, {32677927, 30}, {32694311, 30}, {32710695, 30}, {32727079, 30}, {32743463, 30}, {32759847, 30}, {32776231, 30}, {32792615, 30}, {32808999, 30}, {32825383, 30}, {32841767, 30}, {32858151, 30}, {32874535, 30}, {32890919, 30}, {32907303, 30}, {32923687, 30}, {32940071, 30}, {32956455, 30}, {32972839, 30}, {32989223, 30}, {33005607, 30}, {33021991, 30}, {33038375, 30}, {33054759, 30}, {33071143, 30}, {33087527, 30}, {33103911, 30}, {33120295, 30}, {33136679, 30}, {33153063, 30}, {33169447, 30}, {33185831, 30}, {33202215, 30}, {33218599, 30}, {33234983, 30}, {33251367, 30}, {33267751, 30}, {33284135, 30}, {33300519, 30}, {33316903, 30}, {33333287, 30}, {33349671, 30}, {33366055, 30}, {33382439, 30}, {33398823, 30}, {33415207, 30}, {33431591, 30}, {33447975, 30}, {33464359, 30}, {33480743, 30}, {33497127, 30}, {33513511, 30}, {33529895, 30}, {33546279, 30} }, { {32514089, 30}, {32530473, 30}, {32546857, 30}, {32563241, 30}, {32579625, 30}, {32596009, 30}, {32612393, 30}, {32628777, 30}, {32645161, 30}, {32661545, 30}, {32677929, 30}, {32694313, 30}, {32710697, 30}, {32727081, 30}, {32743465, 30}, {32759849, 30}, {32776233, 30}, {32792617, 30}, {32809001, 30}, {32825385, 30}, {32841769, 30}, {32858153, 30}, {32874537, 30}, {32890921, 30}, {32907305, 30}, {32923689, 30}, {32940073, 30}, {32956457, 30}, {32972841, 30}, {32989225, 30}, {33005609, 30}, {33021993, 30}, {33038377, 30}, {33054761, 30}, {33071145, 30}, {33087529, 30}, {33103913, 30}, {33120297, 30}, {33136681, 30}, {33153065, 30}, {33169449, 30}, {33185833, 30}, {33202217, 30}, {33218601, 30}, {33234985, 30}, {33251369, 30}, {33267753, 30}, {33284137, 30}, {33300521, 30}, {33316905, 30}, {33333289, 30}, {33349673, 30}, {33366057, 30}, {33382441, 30}, {33398825, 30}, {33415209, 30}, {33431593, 30}, {33447977, 30}, {33464361, 30}, {33480745, 30}, {33497129, 30}, {33513513, 30}, {33529897, 30}, {33546281, 30} }, { {32514091, 30}, {32530475, 30}, {32546859, 30}, {32563243, 30}, {32579627, 30}, {32596011, 30}, {32612395, 30}, {32628779, 30}, {32645163, 30}, {32661547, 30}, {32677931, 30}, {32694315, 30}, {32710699, 30}, {32727083, 30}, {32743467, 30}, {32759851, 30}, {32776235, 30}, {32792619, 30}, {32809003, 30}, {32825387, 30}, {32841771, 30}, {32858155, 30}, {32874539, 30}, {32890923, 30}, {32907307, 30}, {32923691, 30}, {32940075, 30}, {32956459, 30}, {32972843, 30}, {32989227, 30}, {33005611, 30}, {33021995, 30}, {33038379, 30}, {33054763, 30}, {33071147, 30}, {33087531, 30}, {33103915, 30}, {33120299, 30}, {33136683, 30}, {33153067, 30}, {33169451, 30}, {33185835, 30}, {33202219, 30}, {33218603, 30}, {33234987, 30}, {33251371, 30}, {33267755, 30}, {33284139, 30}, {33300523, 30}, {33316907, 30}, {33333291, 30}, {33349675, 30}, {33366059, 30}, {33382443, 30}, {33398827, 30}, {33415211, 30}, {33431595, 30}, {33447979, 30}, {33464363, 30}, {33480747, 30}, {33497131, 30}, {33513515, 30}, {33529899, 30}, {33546283, 30} }, { {32514093, 30}, {32530477, 30}, {32546861, 30}, {32563245, 30}, {32579629, 30}, {32596013, 30}, {32612397, 30}, {32628781, 30}, {32645165, 30}, {32661549, 30}, {32677933, 30}, {32694317, 30}, {32710701, 30}, {32727085, 30}, {32743469, 30}, {32759853, 30}, {32776237, 30}, {32792621, 30}, {32809005, 30}, {32825389, 30}, {32841773, 30}, {32858157, 30}, {32874541, 30}, {32890925, 30}, {32907309, 30}, {32923693, 30}, {32940077, 30}, {32956461, 30}, {32972845, 30}, {32989229, 30}, {33005613, 30}, {33021997, 30}, {33038381, 30}, {33054765, 30}, {33071149, 30}, {33087533, 30}, {33103917, 30}, {33120301, 30}, {33136685, 30}, {33153069, 30}, {33169453, 30}, {33185837, 30}, {33202221, 30}, {33218605, 30}, {33234989, 30}, {33251373, 30}, {33267757, 30}, {33284141, 30}, {33300525, 30}, {33316909, 30}, {33333293, 30}, {33349677, 30}, {33366061, 30}, {33382445, 30}, {33398829, 30}, {33415213, 30}, {33431597, 30}, {33447981, 30}, {33464365, 30}, {33480749, 30}, {33497133, 30}, {33513517, 30}, {33529901, 30}, {33546285, 30} }, { {32514095, 30}, {32530479, 30}, {32546863, 30}, {32563247, 30}, {32579631, 30}, {32596015, 30}, {32612399, 30}, {32628783, 30}, {32645167, 30}, {32661551, 30}, {32677935, 30}, {32694319, 30}, {32710703, 30}, {32727087, 30}, {32743471, 30}, {32759855, 30}, {32776239, 30}, {32792623, 30}, {32809007, 30}, {32825391, 30}, {32841775, 30}, {32858159, 30}, {32874543, 30}, {32890927, 30}, {32907311, 30}, {32923695, 30}, {32940079, 30}, {32956463, 30}, {32972847, 30}, {32989231, 30}, {33005615, 30}, {33021999, 30}, {33038383, 30}, {33054767, 30}, {33071151, 30}, {33087535, 30}, {33103919, 30}, {33120303, 30}, {33136687, 30}, {33153071, 30}, {33169455, 30}, {33185839, 30}, {33202223, 30}, {33218607, 30}, {33234991, 30}, {33251375, 30}, {33267759, 30}, {33284143, 30}, {33300527, 30}, {33316911, 30}, {33333295, 30}, {33349679, 30}, {33366063, 30}, {33382447, 30}, {33398831, 30}, {33415215, 30}, {33431599, 30}, {33447983, 30}, {33464367, 30}, {33480751, 30}, {33497135, 30}, {33513519, 30}, {33529903, 30}, {33546287, 30} }, { {32514097, 30}, {32530481, 30}, {32546865, 30}, {32563249, 30}, {32579633, 30}, {32596017, 30}, {32612401, 30}, {32628785, 30}, {32645169, 30}, {32661553, 30}, {32677937, 30}, {32694321, 30}, {32710705, 30}, {32727089, 30}, {32743473, 30}, {32759857, 30}, {32776241, 30}, {32792625, 30}, {32809009, 30}, {32825393, 30}, {32841777, 30}, {32858161, 30}, {32874545, 30}, {32890929, 30}, {32907313, 30}, {32923697, 30}, {32940081, 30}, {32956465, 30}, {32972849, 30}, {32989233, 30}, {33005617, 30}, {33022001, 30}, {33038385, 30}, {33054769, 30}, {33071153, 30}, {33087537, 30}, {33103921, 30}, {33120305, 30}, {33136689, 30}, {33153073, 30}, {33169457, 30}, {33185841, 30}, {33202225, 30}, {33218609, 30}, {33234993, 30}, {33251377, 30}, {33267761, 30}, {33284145, 30}, {33300529, 30}, {33316913, 30}, {33333297, 30}, {33349681, 30}, {33366065, 30}, {33382449, 30}, {33398833, 30}, {33415217, 30}, {33431601, 30}, {33447985, 30}, {33464369, 30}, {33480753, 30}, {33497137, 30}, {33513521, 30}, {33529905, 30}, {33546289, 30} }, { {32514099, 30}, {32530483, 30}, {32546867, 30}, {32563251, 30}, {32579635, 30}, {32596019, 30}, {32612403, 30}, {32628787, 30}, {32645171, 30}, {32661555, 30}, {32677939, 30}, {32694323, 30}, {32710707, 30}, {32727091, 30}, {32743475, 30}, {32759859, 30}, {32776243, 30}, {32792627, 30}, {32809011, 30}, {32825395, 30}, {32841779, 30}, {32858163, 30}, {32874547, 30}, {32890931, 30}, {32907315, 30}, {32923699, 30}, {32940083, 30}, {32956467, 30}, {32972851, 30}, {32989235, 30}, {33005619, 30}, {33022003, 30}, {33038387, 30}, {33054771, 30}, {33071155, 30}, {33087539, 30}, {33103923, 30}, {33120307, 30}, {33136691, 30}, {33153075, 30}, {33169459, 30}, {33185843, 30}, {33202227, 30}, {33218611, 30}, {33234995, 30}, {33251379, 30}, {33267763, 30}, {33284147, 30}, {33300531, 30}, {33316915, 30}, {33333299, 30}, {33349683, 30}, {33366067, 30}, {33382451, 30}, {33398835, 30}, {33415219, 30}, {33431603, 30}, {33447987, 30}, {33464371, 30}, {33480755, 30}, {33497139, 30}, {33513523, 30}, {33529907, 30}, {33546291, 30} }, { {32514101, 30}, {32530485, 30}, {32546869, 30}, {32563253, 30}, {32579637, 30}, {32596021, 30}, {32612405, 30}, {32628789, 30}, {32645173, 30}, {32661557, 30}, {32677941, 30}, {32694325, 30}, {32710709, 30}, {32727093, 30}, {32743477, 30}, {32759861, 30}, {32776245, 30}, {32792629, 30}, {32809013, 30}, {32825397, 30}, {32841781, 30}, {32858165, 30}, {32874549, 30}, {32890933, 30}, {32907317, 30}, {32923701, 30}, {32940085, 30}, {32956469, 30}, {32972853, 30}, {32989237, 30}, {33005621, 30}, {33022005, 30}, {33038389, 30}, {33054773, 30}, {33071157, 30}, {33087541, 30}, {33103925, 30}, {33120309, 30}, {33136693, 30}, {33153077, 30}, {33169461, 30}, {33185845, 30}, {33202229, 30}, {33218613, 30}, {33234997, 30}, {33251381, 30}, {33267765, 30}, {33284149, 30}, {33300533, 30}, {33316917, 30}, {33333301, 30}, {33349685, 30}, {33366069, 30}, {33382453, 30}, {33398837, 30}, {33415221, 30}, {33431605, 30}, {33447989, 30}, {33464373, 30}, {33480757, 30}, {33497141, 30}, {33513525, 30}, {33529909, 30}, {33546293, 30} }, { {32514103, 30}, {32530487, 30}, {32546871, 30}, {32563255, 30}, {32579639, 30}, {32596023, 30}, {32612407, 30}, {32628791, 30}, {32645175, 30}, {32661559, 30}, {32677943, 30}, {32694327, 30}, {32710711, 30}, {32727095, 30}, {32743479, 30}, {32759863, 30}, {32776247, 30}, {32792631, 30}, {32809015, 30}, {32825399, 30}, {32841783, 30}, {32858167, 30}, {32874551, 30}, {32890935, 30}, {32907319, 30}, {32923703, 30}, {32940087, 30}, {32956471, 30}, {32972855, 30}, {32989239, 30}, {33005623, 30}, {33022007, 30}, {33038391, 30}, {33054775, 30}, {33071159, 30}, {33087543, 30}, {33103927, 30}, {33120311, 30}, {33136695, 30}, {33153079, 30}, {33169463, 30}, {33185847, 30}, {33202231, 30}, {33218615, 30}, {33234999, 30}, {33251383, 30}, {33267767, 30}, {33284151, 30}, {33300535, 30}, {33316919, 30}, {33333303, 30}, {33349687, 30}, {33366071, 30}, {33382455, 30}, {33398839, 30}, {33415223, 30}, {33431607, 30}, {33447991, 30}, {33464375, 30}, {33480759, 30}, {33497143, 30}, {33513527, 30}, {33529911, 30}, {33546295, 30} }, { {32514105, 30}, {32530489, 30}, {32546873, 30}, {32563257, 30}, {32579641, 30}, {32596025, 30}, {32612409, 30}, {32628793, 30}, {32645177, 30}, {32661561, 30}, {32677945, 30}, {32694329, 30}, {32710713, 30}, {32727097, 30}, {32743481, 30}, {32759865, 30}, {32776249, 30}, {32792633, 30}, {32809017, 30}, {32825401, 30}, {32841785, 30}, {32858169, 30}, {32874553, 30}, {32890937, 30}, {32907321, 30}, {32923705, 30}, {32940089, 30}, {32956473, 30}, {32972857, 30}, {32989241, 30}, {33005625, 30}, {33022009, 30}, {33038393, 30}, {33054777, 30}, {33071161, 30}, {33087545, 30}, {33103929, 30}, {33120313, 30}, {33136697, 30}, {33153081, 30}, {33169465, 30}, {33185849, 30}, {33202233, 30}, {33218617, 30}, {33235001, 30}, {33251385, 30}, {33267769, 30}, {33284153, 30}, {33300537, 30}, {33316921, 30}, {33333305, 30}, {33349689, 30}, {33366073, 30}, {33382457, 30}, {33398841, 30}, {33415225, 30}, {33431609, 30}, {33447993, 30}, {33464377, 30}, {33480761, 30}, {33497145, 30}, {33513529, 30}, {33529913, 30}, {33546297, 30} }, { {32514107, 30}, {32530491, 30}, {32546875, 30}, {32563259, 30}, {32579643, 30}, {32596027, 30}, {32612411, 30}, {32628795, 30}, {32645179, 30}, {32661563, 30}, {32677947, 30}, {32694331, 30}, {32710715, 30}, {32727099, 30}, {32743483, 30}, {32759867, 30}, {32776251, 30}, {32792635, 30}, {32809019, 30}, {32825403, 30}, {32841787, 30}, {32858171, 30}, {32874555, 30}, {32890939, 30}, {32907323, 30}, {32923707, 30}, {32940091, 30}, {32956475, 30}, {32972859, 30}, {32989243, 30}, {33005627, 30}, {33022011, 30}, {33038395, 30}, {33054779, 30}, {33071163, 30}, {33087547, 30}, {33103931, 30}, {33120315, 30}, {33136699, 30}, {33153083, 30}, {33169467, 30}, {33185851, 30}, {33202235, 30}, {33218619, 30}, {33235003, 30}, {33251387, 30}, {33267771, 30}, {33284155, 30}, {33300539, 30}, {33316923, 30}, {33333307, 30}, {33349691, 30}, {33366075, 30}, {33382459, 30}, {33398843, 30}, {33415227, 30}, {33431611, 30}, {33447995, 30}, {33464379, 30}, {33480763, 30}, {33497147, 30}, {33513531, 30}, {33529915, 30}, {33546299, 30} }, { {32514109, 30}, {32530493, 30}, {32546877, 30}, {32563261, 30}, {32579645, 30}, {32596029, 30}, {32612413, 30}, {32628797, 30}, {32645181, 30}, {32661565, 30}, {32677949, 30}, {32694333, 30}, {32710717, 30}, {32727101, 30}, {32743485, 30}, {32759869, 30}, {32776253, 30}, {32792637, 30}, {32809021, 30}, {32825405, 30}, {32841789, 30}, {32858173, 30}, {32874557, 30}, {32890941, 30}, {32907325, 30}, {32923709, 30}, {32940093, 30}, {32956477, 30}, {32972861, 30}, {32989245, 30}, {33005629, 30}, {33022013, 30}, {33038397, 30}, {33054781, 30}, {33071165, 30}, {33087549, 30}, {33103933, 30}, {33120317, 30}, {33136701, 30}, {33153085, 30}, {33169469, 30}, {33185853, 30}, {33202237, 30}, {33218621, 30}, {33235005, 30}, {33251389, 30}, {33267773, 30}, {33284157, 30}, {33300541, 30}, {33316925, 30}, {33333309, 30}, {33349693, 30}, {33366077, 30}, {33382461, 30}, {33398845, 30}, {33415229, 30}, {33431613, 30}, {33447997, 30}, {33464381, 30}, {33480765, 30}, {33497149, 30}, {33513533, 30}, {33529917, 30}, {33546301, 30} }, { {32514111, 30}, {32530495, 30}, {32546879, 30}, {32563263, 30}, {32579647, 30}, {32596031, 30}, {32612415, 30}, {32628799, 30}, {32645183, 30}, {32661567, 30}, {32677951, 30}, {32694335, 30}, {32710719, 30}, {32727103, 30}, {32743487, 30}, {32759871, 30}, {32776255, 30}, {32792639, 30}, {32809023, 30}, {32825407, 30}, {32841791, 30}, {32858175, 30}, {32874559, 30}, {32890943, 30}, {32907327, 30}, {32923711, 30}, {32940095, 30}, {32956479, 30}, {32972863, 30}, {32989247, 30}, {33005631, 30}, {33022015, 30}, {33038399, 30}, {33054783, 30}, {33071167, 30}, {33087551, 30}, {33103935, 30}, {33120319, 30}, {33136703, 30}, {33153087, 30}, {33169471, 30}, {33185855, 30}, {33202239, 30}, {33218623, 30}, {33235007, 30}, {33251391, 30}, {33267775, 30}, {33284159, 30}, {33300543, 30}, {33316927, 30}, {33333311, 30}, {33349695, 30}, {33366079, 30}, {33382463, 30}, {33398847, 30}, {33415231, 30}, {33431615, 30}, {33447999, 30}, {33464383, 30}, {33480767, 30}, {33497151, 30}, {33513535, 30}, {33529919, 30}, {33546303, 30} } } }, { { { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 4, 3}, { 28, 5}, { 22, 6}, { 34, 7}, { 32, 7}, { 26, 7}, { 36, 8}, { 40, 8}, { 50, 9}, { 48, 9}, { 46, 9}, { 50, 10}, { 48, 10}, { 14, 11}, { 176, 13}, { 116, 12}, { 476, 14}, { 918, 15}, { 1826, 16}, { 1824, 16}, { 1818, 16}, { 3620, 17}, { 3624, 17}, { 7218, 18}, { 7216, 18}, { 7214, 18}, { 14386, 19}, { 14384, 19}, { 28686, 20}, { 114864, 22}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 12, 4}, { 40, 7}, { 42, 8}, { 54, 9}, { 68, 10}, { 56, 10}, { 54, 10}, { 52, 10}, { 18, 11}, { 70, 12}, { 3118, 17}, { 6194, 18}, { 6192, 18}, { 12302, 19}, { 49328, 21}, { 14392, 19}, { 14390, 19}, { 14388, 19}, { 28690, 20}, { 57414, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 30, 5}, { 44, 8}, { 60, 10}, { 58, 10}, { 20, 11}, { 16, 11}, { 168, 13}, { 174, 13}, { 3122, 17}, { 3120, 17}, { 14396, 19}, { 14394, 19}, { 28692, 20}, { 28688, 20}, { 114856, 22}, { 114862, 22}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 26, 6}, { 56, 9}, { 24, 11}, { 22, 11}, { 800, 15}, { 794, 15}, { 1572, 16}, { 1576, 16}, { 12306, 19}, { 24646, 20}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 24, 6}, { 64, 10}, { 172, 13}, { 802, 15}, { 6212, 18}, { 6200, 18}, { 6198, 18}, { 6196, 18}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 42, 7}, { 62, 10}, { 406, 14}, { 3126, 17}, { 12308, 19}, { 12304, 19}, { 49320, 21}, { 49326, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 38, 7}, { 26, 11}, { 1578, 16}, { 6202, 18}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 36, 7}, { 68, 12}, { 6204, 18}, { 12310, 19}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 46, 8}, { 166, 13}, { 12312, 19}, { 114854, 22}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 62, 9}, { 170, 13}, { 49324, 21}, { 114858, 22}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 60, 9}, { 220, 13}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 58, 9}, { 808, 15}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 74, 10}, { 1580, 16}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 72, 10}, { 3128, 17}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 70, 10}, { 6208, 18}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 66, 10}, { 6206, 18}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 66, 11}, { 12314, 19}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 64, 11}, { 24644, 20}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 30, 11}, { 49318, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 28, 11}, { 49322, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 14, 12}, { 57358, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 12, 12}, { 57356, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 64, 12}, { 57408, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 66, 12}, { 57410, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 160, 13}, { 114848, 22}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 162, 13}, { 114850, 22}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 164, 13}, { 114852, 22}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 52, 11}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 108, 12}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 222, 13}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 410, 14}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 408, 14}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 810, 15}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 806, 15}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 804, 15}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 1582, 16}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 3134, 17}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 3132, 17}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 3130, 17}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 6218, 18}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 6216, 18}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 6214, 18}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 6210, 18}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 12354, 19}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 12352, 19}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 12318, 19}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 12316, 19}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 24590, 20}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 24588, 20}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 24640, 20}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 24642, 20}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 49312, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 49314, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 49316, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0, 0} } }, { { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 14, 5}, { 30, 7}, { 28, 7}, { 34, 8}, { 32, 8}, { 38, 8}, { 42, 9}, { 40, 9}, { 38, 9}, { 52, 9}, { 42, 10}, { 40, 10}, { 38, 10}, { 36, 10}, { 34, 10}, { 76, 12}, { 78, 12}, { 184, 13}, { 186, 13}, { 188, 13}, { 190, 13}, { 462, 14}, { 1822, 16}, { 1820, 16}, { 3618, 17}, { 3616, 17}, { 3622, 17}, { 7210, 18}, { 7208, 18}, { 7206, 18}, { 7220, 18}, { 14378, 19}, { 14376, 19}, { 14374, 19}, { 14372, 19}, { 14370, 19}, { 57420, 21}, { 57422, 21}, { 114872, 22}, { 114874, 22}, { 114876, 22}, { 114878, 22}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 24, 7}, { 44, 10}, { 8, 11}, { 72, 12}, { 74, 12}, { 180, 13}, { 182, 13}, { 3112, 17}, { 3110, 17}, { 3124, 17}, { 6186, 18}, { 6184, 18}, { 6182, 18}, { 6180, 18}, { 6178, 18}, { 24652, 20}, { 24654, 20}, { 49336, 21}, { 49338, 21}, { 49340, 21}, { 49342, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 44, 9}, { 10, 11}, { 796, 15}, { 1570, 16}, { 1568, 16}, { 1574, 16}, { 3114, 17}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 46, 10}, { 798, 15}, { 12296, 19}, { 24648, 20}, { 24650, 20}, { 49332, 21}, { 49334, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 12, 11}, { 6188, 18}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 10, 12}, { 12298, 19}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 8, 12}, { 57352, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 178, 13}, { 114866, 22}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 206, 13}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 792, 15}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 3116, 17}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 6190, 18}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 12300, 19}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 24586, 20}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 24584, 20}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 49330, 21}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} }, { { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128}, { 0,128} } } } }; #endif /* _MB_CODING_H_ */
9b01e98f2f7c4685f60afd9f31e461ed19adf8fa
b136f4f6387254706c289c930bea637a427a6de0
/WTDemo/Pods/Headers/Public/QLBusiness/QLBusiness.h
1a69df5b1c10de0aa3191f343b11be5b7084913d
[ "MIT" ]
permissive
aliang124/QLMerchantModel
1a3403960b822907d216327dbc59b917bde57b07
436dc746618b1773f126012ba861a5ddc48b3845
refs/heads/master
2020-04-16T01:24:00.917352
2019-02-16T01:54:07
2019-02-16T01:54:07
165,171,501
0
0
null
null
null
null
UTF-8
C
false
false
43
h
QLBusiness.h
../../../QLBusiness/QLBusiness/QLBusiness.h
679f648e0bd97d5521d5a0d24d0952b218c37eb8
595cb15c9c236adeec14c21f83170931428c635c
/alocacao_dinamica_matriz.c
ef6f7fda58e6d937db5641ebc39c064aad50099c
[]
no_license
pedrohcavalcante/SistemasOperacionais
6758083531b368b735df20bb7c4c00bad3917888
14684a568e10a03154937cb2ddbaf32c94697e71
refs/heads/master
2021-01-19T17:34:18.940718
2017-12-03T06:54:02
2017-12-03T06:54:02
101,070,822
0
1
null
2017-10-13T16:12:50
2017-08-22T14:18:28
C
UTF-8
C
false
false
429
c
alocacao_dinamica_matriz.c
#include <stdio.h> #include <stdlib.h> int **matriz_global; int main(int argc, char* argv[] ){ int M=atoi(argv[1]); int i, j; matriz_global = (int **)malloc(sizeof(int*)*M); for(i=0;i<M;i++) matriz_global[i] = (int*) malloc(sizeof(int)*M); for(i=0;i<M;i++) for(j=0;j<M;j++) matriz_global[i][j]=666; for(i=0;i<M;i++){ for(j=0;j<M;j++){ printf("%d ", matriz_global[i][j]); } printf("\n"); } return 0; }
92c0de22a7cb06106eb3b0bdfe231a522d753ee6
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/tengine/modules/ngx_http_tfs_module/extr_ngx_http_tfs_duplicate.c_ngx_http_tfs_dedup_get_handler.c
05cc057bd9f7e0b1cda3bc59da2d8b5c18ec0bf5
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
3,434
c
extr_ngx_http_tfs_duplicate.c_ngx_http_tfs_dedup_get_handler.c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ typedef struct TYPE_12__ TYPE_5__ ; typedef struct TYPE_11__ TYPE_4__ ; typedef struct TYPE_10__ TYPE_3__ ; typedef struct TYPE_9__ TYPE_2__ ; typedef struct TYPE_8__ TYPE_1__ ; /* Type definitions */ typedef int /*<<< orphan*/ u_char ; typedef int /*<<< orphan*/ ngx_int_t ; struct TYPE_9__ {int /*<<< orphan*/ log; int /*<<< orphan*/ pool; } ; typedef TYPE_2__ ngx_http_tfs_t ; struct TYPE_12__ {scalar_t__ len; int /*<<< orphan*/ * data; } ; struct TYPE_10__ {int /*<<< orphan*/ dup_version; int /*<<< orphan*/ file_ref_count; TYPE_5__ dup_file_name; TYPE_2__* data; } ; typedef TYPE_3__ ngx_http_tfs_dedup_ctx_t ; struct TYPE_11__ {int /*<<< orphan*/ version; TYPE_1__* value; } ; typedef TYPE_4__ ngx_http_tair_key_value_t ; typedef int /*<<< orphan*/ int32_t ; struct TYPE_8__ {scalar_t__ len; int /*<<< orphan*/ * data; } ; /* Variables and functions */ int /*<<< orphan*/ NGX_ERROR ; int /*<<< orphan*/ NGX_HTTP_ETAIR_SUCCESS ; int /*<<< orphan*/ NGX_HTTP_TFS_DUPLICATE_INITIAL_MAGIC_VERSION ; scalar_t__ NGX_HTTP_TFS_DUPLICATE_VALUE_BASE_SIZE ; int /*<<< orphan*/ NGX_LOG_DEBUG_HTTP ; int /*<<< orphan*/ NGX_OK ; int /*<<< orphan*/ ngx_http_tfs_dedup_callback (TYPE_3__*,int /*<<< orphan*/ ) ; int /*<<< orphan*/ ngx_log_debug3 (int /*<<< orphan*/ ,int /*<<< orphan*/ ,int /*<<< orphan*/ ,char*,TYPE_5__*,int /*<<< orphan*/ ,int /*<<< orphan*/ ) ; int /*<<< orphan*/ ngx_memcpy (int /*<<< orphan*/ *,int /*<<< orphan*/ *,scalar_t__) ; int /*<<< orphan*/ * ngx_pcalloc (int /*<<< orphan*/ ,scalar_t__) ; __attribute__((used)) static void ngx_http_tfs_dedup_get_handler(ngx_http_tair_key_value_t *kv, ngx_int_t rc, void *data) { u_char *p; ngx_http_tfs_t *t; ngx_http_tfs_dedup_ctx_t *ctx; ctx = data; t = ctx->data; if (rc == NGX_HTTP_ETAIR_SUCCESS) { p = kv->value->data; if (p != NULL && (kv->value->len > NGX_HTTP_TFS_DUPLICATE_VALUE_BASE_SIZE)) { ctx->file_ref_count = *(int32_t *)p; p += sizeof(int32_t); ctx->dup_file_name.len = kv->value->len - sizeof(int32_t); ctx->dup_file_name.data = ngx_pcalloc(t->pool, ctx->dup_file_name.len); if (ctx->dup_file_name.data == NULL) { rc = NGX_ERROR; } else { ngx_memcpy(ctx->dup_file_name.data, p, ctx->dup_file_name.len); rc = NGX_OK; } ctx->dup_version = kv->version; } else { rc = NGX_ERROR; } ngx_log_debug3(NGX_LOG_DEBUG_HTTP, t->log, 0, "get duplicate info: " "file name: %V, file ref count: %d, dup_version: %d", &ctx->dup_file_name, ctx->file_ref_count, ctx->dup_version); } else { rc = NGX_ERROR; ctx->dup_version = NGX_HTTP_TFS_DUPLICATE_INITIAL_MAGIC_VERSION; } ngx_http_tfs_dedup_callback(ctx, rc); }
7ccfb366b62eaf9ce0546a7ad04e8330da56dd63
a280aa9ac69d3834dc00219e9a4ba07996dfb4dd
/regularexpress/home/weilaidb/work/kernel/linux-3.0.8/arch/arm/plat-s5p/include/plat/system-reset.h
172c0d31b4df142f779dde7f6abf54c60cbb03b8
[]
no_license
weilaidb/PythonExample
b2cc6c514816a0e1bfb7c0cbd5045cf87bd28466
798bf1bdfdf7594f528788c4df02f79f0f7827ce
refs/heads/master
2021-01-12T13:56:19.346041
2017-07-22T16:30:33
2017-07-22T16:30:33
68,925,741
4
2
null
null
null
null
UTF-8
C
false
false
81
h
system-reset.h
void (*s5p_reset_hook)(void); static void arch_reset(char mode, const char *cmd)
2818526c0f15bbffef8d81546a64f2c48a481595
1ae5c0e38298fed2001944bddbcc511293c3d59f
/random.c
5a138e8f57845355dcf420f34559b2f00b8e294a
[]
no_license
lucasalj/frogger
ec603e1b47c75cea286083a28723a72159e80d43
a8364547defa0d8d425b17f56d536bf251b2ee89
refs/heads/master
2020-03-21T13:58:29.053447
2018-06-25T18:41:43
2018-06-25T18:41:43
138,635,090
0
1
null
null
null
null
UTF-8
C
false
false
824
c
random.c
#include "random.h" #define RANDOM_M 49381 #define RANDOM_I 8643 static uint16_t random_state; void random_init() { uint16_t i, j; random_state = 0; uint16_t UCSCTL4_old = UCSCTL4; uint16_t TA0CTL_old = TA0CTL; uint16_t TA0CCTL2_old = TA0CCTL2; TA0CTL = 0x00; UCSCTL4 = SELS__DCOCLK | SELA__VLOCLK; TA0CCTL2 = CAP | SCS | CM_1 | CCIS_1; TA0CTL = TASSEL__SMCLK | MC__CONTINUOUS; for (i = 0; i < 16; ++i) { uint16_t ones = 0; for (j = 0; j < 5; ++j) { while(!(CCIFG & TA0CCTL2)); TA0CCTL2 &= ~CCIFG; if(1 & TA0CCR2) { ones++; } } random_state >>= 1; if(ones >= 3) { random_state |= 0x8000; } } UCSCTL4 = UCSCTL4_old; TA0CTL = TA0CTL_old; TA0CCTL2 = TA0CCTL2_old; } uint16_t random() { random_state = RANDOM_M * random_state + RANDOM_I; return random_state; }
6f0ea71de581813609f93cd69bf4ef80af00867d
fa7ba9dc69c3d1c47f2caab8b6012c4003eff852
/source/htslib/htslib/synced_bcf_reader.h
2f79a2102ac96893102fabd15df3e84b54c5bb84
[ "MIT" ]
permissive
alexdobin/STAR
22d6c771b6346b8ec19f89751f21a56fd42549df
79affaae7d5e70221287762eab4e40679fad87f7
refs/heads/master
2023-08-23T07:32:52.945974
2023-08-15T19:21:58
2023-08-15T19:21:58
17,778,869
1,686
594
MIT
2023-08-16T15:49:57
2014-03-15T15:47:05
C
UTF-8
C
false
false
10,696
h
synced_bcf_reader.h
/* The synced_bcf_reader allows to keep multiple VCFs open and stream them using the next_line iterator in a seamless matter without worrying about chromosomes and synchronizing the sites. This is used by vcfcheck to compare multiple VCFs simultaneously and is used also for merging, creating intersections, etc. The synced_bcf_reader also provides API for reading indexed BCF/VCF, hiding differences in BCF/VCF opening, indexing and reading. Example of usage: bcf_srs_t *sr = bcf_sr_init(); for (i=0; i<nfiles; i++) bcf_sr_add_reader(sr,files[i]); while ( bcf_sr_next_line(sr) ) { for (i=0; i<nfiles; i++) { bcf1_t *line = bcf_sr_get_line(sr,i); ... } } bcf_sr_destroy(sr); */ #ifndef SYNCED_BCF_READER_H #define SYNCED_BCF_READER_H #include "hts.h" #include "vcf.h" #include "tbx.h" // How should be treated sites with the same position but different alleles #define COLLAPSE_NONE 0 // require the exact same set of alleles in all files #define COLLAPSE_SNPS 1 // allow different alleles, as long as they all are SNPs #define COLLAPSE_INDELS 2 // the same as above, but with indels #define COLLAPSE_ANY 4 // any combination of alleles can be returned by bcf_sr_next_line() #define COLLAPSE_SOME 8 // at least some of the ALTs must match #define COLLAPSE_BOTH (COLLAPSE_SNPS|COLLAPSE_INDELS) typedef struct _bcf_sr_regions_t { // for reading from tabix-indexed file (big data) tbx_t *tbx; // tabix index hts_itr_t *itr; // tabix iterator kstring_t line; // holder of the current line, set only when reading from tabix-indexed files htsFile *file; char *fname; int is_bin; // is open in binary mode (tabix access) char **als; // parsed alleles if targets_als set and _regions_match_alleles called kstring_t als_str; // block of parsed alleles int nals, mals; // number of set alleles and the size of allocated array int als_type; // alleles type, currently VCF_SNP or VCF_INDEL // user handler to deal with skipped regions without a counterpart in VCFs void (*missed_reg_handler)(struct _bcf_sr_regions_t *, void *); void *missed_reg_data; // for in-memory regions (small data) struct _region_t *regs; // the regions // shared by both tabix-index and in-memory regions void *seq_hash; // keys: sequence names, values: index to seqs char **seq_names; // sequence names int nseqs; // number of sequences (chromosomes) in the file int iseq; // current position: chr name, index to snames int start, end; // current position: start, end of the region (0-based) int prev_seq, prev_start; } bcf_sr_regions_t; typedef struct { htsFile *file; tbx_t *tbx_idx; hts_idx_t *bcf_idx; bcf_hdr_t *header; hts_itr_t *itr; const char *fname; bcf1_t **buffer; // cached VCF records. First is the current record synced across the reader int nbuffer, mbuffer; // number of cached records (including the current record); number of allocated records int nfilter_ids, *filter_ids; // -1 for ".", otherwise filter id as returned by bcf_id2int int type; int *samples, n_smpl; // list of columns in the order consistent with bcf_srs_t.samples } bcf_sr_t; typedef struct { // Parameters controlling the logic int collapse; // How should the duplicate sites be treated. One of the COLLAPSE_* types above. char *apply_filters; // If set, sites where none of the FILTER strings is listed // will be skipped. Active only at the time of // initialization, that is during the add_reader() // calls. Therefore, each reader can be initialized with different // filters. int require_index; // Some tools do not need random access int max_unpack; // When reading VCFs and knowing some fields will not be needed, boost performance of vcf_parse1 int *has_line; // Corresponds to return value of bcf_sr_next_line but is not limited by sizeof(int). Use bcf_sr_has_line macro to query. // Auxiliary data bcf_sr_t *readers; int nreaders; int streaming; // reading mode: index-jumping or streaming int explicit_regs; // was the list of regions se by bcf_sr_set_regions or guessed from tabix index? char **samples; // List of samples bcf_sr_regions_t *regions, *targets; // see bcf_sr_set_[targets|regions] for description int targets_als; // subset to targets not only by position but also by alleles? (todo) kstring_t tmps; int n_smpl; } bcf_srs_t; /** Init bcf_srs_t struct */ bcf_srs_t *bcf_sr_init(void); /** Destroy bcf_srs_t struct */ void bcf_sr_destroy(bcf_srs_t *readers); /** * bcf_sr_add_reader() - open new reader * @readers: holder of the open readers * @fname: the VCF file * * Returns 1 if the call succeeded, or 0 on error. * * See also the bcf_srs_t data structure for parameters controlling * the reader's logic. */ int bcf_sr_add_reader(bcf_srs_t *readers, const char *fname); void bcf_sr_remove_reader(bcf_srs_t *files, int i); /** * bcf_sr_next_line() - the iterator * @readers: holder of the open readers * * Returns the number of readers which have the current line * (bcf_sr_t.buffer[0]) set at this position. Use the bcf_sr_has_line macro to * determine which of the readers are set. */ int bcf_sr_next_line(bcf_srs_t *readers); #define bcf_sr_has_line(readers, i) (readers)->has_line[i] #define bcf_sr_get_line(_readers, i) ((_readers)->has_line[i] ? ((_readers)->readers[i].buffer[0]) : NULL) #define bcf_sr_region_done(_readers,i) (!(_readers)->has_line[i] && !(_readers)->readers[i].nbuffer ? 1 : 0) /** * bcf_sr_seek() - set all readers to selected position * @seq: sequence name; NULL to seek to start * @pos: 0-based coordinate */ int bcf_sr_seek(bcf_srs_t *readers, const char *seq, int pos); /** * bcf_sr_set_samples() - sets active samples * @readers: holder of the open readers * @samples: this can be one of: file name with one sample per line; * or column-separated list of samples; or '-' for a list of * samples shared by all files. If first character is the * exclamation mark, all but the listed samples are included. * @is_file: 0: list of samples; 1: file with sample names * * Returns 1 if the call succeeded, or 0 on error. */ int bcf_sr_set_samples(bcf_srs_t *readers, const char *samples, int is_file); /** * bcf_sr_set_targets(), bcf_sr_set_regions() - init targets/regions * @readers: holder of the open readers * @targets: list of regions, one-based and inclusive. * @is_fname: 0: targets is a comma-separated list of regions (chr,chr:from-to) * 1: targets is a tabix indexed file with a list of regions * (<chr,pos> or <chr,from,to>) * * Returns 0 if the call succeeded, or -1 on error. * * Both functions behave the same way, unlisted positions will be skipped by * bcf_sr_next_line(). However, there is an important difference: regions use * index to jump to desired positions while targets streams the whole files * and merely skip unlisted positions. * * Moreover, bcf_sr_set_targets() accepts an optional parameter $alleles which * is intepreted as a 1-based column index in the tab-delimited file where * alleles are listed. This in principle enables to perform the COLLAPSE_* * logic also with tab-delimited files. However, the current implementation * considers the alleles merely as a suggestion for prioritizing one of possibly * duplicate VCF lines. It is up to the caller to examine targets->als if * perfect match is sought after. Note that the duplicate positions in targets * file are currently not supported. */ int bcf_sr_set_targets(bcf_srs_t *readers, const char *targets, int is_file, int alleles); int bcf_sr_set_regions(bcf_srs_t *readers, const char *regions, int is_file); /* * bcf_sr_regions_init() * @regions: regions can be either a comma-separated list of regions * (chr|chr:pos|chr:from-to|chr:from-) or VCF, BED, or * tab-delimited file (the default). Uncompressed files * are stored in memory while bgzip-compressed and tabix-indexed * region files are streamed. * @is_file: 0: regions is a comma-separated list of regions * (chr|chr:pos|chr:from-to|chr:from-) * 1: VCF, BED or tab-delimited file * @chr, from, to: * Column indexes of chromosome, start position and end position * in the tab-delimited file. The positions are 1-based and * inclusive. * These parameters are ignored when reading from VCF, BED or * tabix-indexed files. When end position column is not present, * supply 'from' in place of 'to'. When 'to' is negative, first * abs(to) will be attempted and if that fails, 'from' will be used * instead. */ bcf_sr_regions_t *bcf_sr_regions_init(const char *regions, int is_file, int chr, int from, int to); void bcf_sr_regions_destroy(bcf_sr_regions_t *regions); /* * bcf_sr_regions_seek() - seek to the chromosome block * * Returns 0 on success or -1 on failure. Sets reg->seq appropriately and * reg->start,reg->end to -1. */ int bcf_sr_regions_seek(bcf_sr_regions_t *regions, const char *chr); /* * bcf_sr_regions_next() - retrieves next region. Returns 0 on success and -1 * when all regions have been read. The fields reg->seq, reg->start and * reg->end are filled with the genomic coordinates on succes or with * NULL,-1,-1 when no region is available. The coordinates are 0-based, * inclusive. */ int bcf_sr_regions_next(bcf_sr_regions_t *reg); /* * bcf_sr_regions_overlap() - checks if the interval <start,end> overlaps any of * the regions, the coordinates are 0-based, inclusive. The coordinate queries * must come in ascending order. * * Returns 0 if the position is in regions; -1 if the position is not in the * regions and more regions exist; -2 if not in the regions and there are no more * regions left. */ int bcf_sr_regions_overlap(bcf_sr_regions_t *reg, const char *seq, int start, int end); /* * bcf_sr_regions_flush() - calls repeatedly regs->missed_reg_handler() until * all remaining records are processed. */ void bcf_sr_regions_flush(bcf_sr_regions_t *regs); #endif
3834afe3c47ef54c2b10232f18af24eaa737e01e
f3c2026baf2ec2e56fc76181ff0e6d756a08e0d1
/oldstudycode/system/ipc/src/fifo_read.c
a5372eefb8d77f97b57a3e74a87fddc86cd6931b
[]
no_license
Lava-Liu/media
9572e8bece6187c26e122d02481a886e9a9f6f07
ab77d860889655c899206a032462266dd5a42d84
refs/heads/master
2023-02-04T16:25:50.091020
2019-12-12T01:27:31
2019-12-12T01:27:31
null
0
0
null
null
null
null
UTF-8
C
false
false
557
c
fifo_read.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <unistd.h> #include <fcntl.h> int main(int argc, char *argv[]) { if(argc < 2) { fprintf(stderr,"USage %s fifo\n",argv[0]); exit(1); } int fd = open(argv[1],O_RDONLY); if(fd < 0) { fprintf(stderr,"open : %s\n",strerror(errno)); exit(1); }else { printf("open success %d\n",fd); } char buffer[30]; if(read(fd,buffer,30)<0) { fprintf(stderr,"read : %s\n",strerror(errno)); exit(1); }else { printf("%s\n",buffer); } close(fd); return 0; }
985bd438871883762f92da8945e4938c860b1731
42357e6d94352a49574b8e91d12a4df32af80a19
/wk2/count.c
ca6543e3b249daab6dc73286e6fd54eac5b4ce3e
[]
no_license
gabeno/cs50
1b68e452303b9c9f30e20d89b8f24a95f16d165f
356ebab7c632adecf2eb1e3f7fdb2f546feba472
refs/heads/master
2021-01-23T03:13:29.340554
2014-04-16T21:13:23
2014-04-16T21:13:23
null
0
0
null
null
null
null
UTF-8
C
false
false
234
c
count.c
#include <stdio.h> int main(void) { // create an array of integers 1 through 5 int nums[5] = {1, 2, 3, 4, 5}; // print out each int on a new line for (int i = 0; i < 5; i++) { printf("%d\n", nums[i]); } }
f82cc55c3942cbcfd7eacb17bdb5b387502fda79
e7f314ab4fe6b063a026cb9af0eb0ad0933f335d
/vertex_fit/Pb_study/Nth10/pic/vzth1_sect5.C
cb123153a204adc6cba72005306c86fc0da77685
[]
no_license
orsosa/EG2_analysis
016f91bb3761b0cf309523837ebf2124944f8341
08cea395b98d050ea9ffbca866e267158578f147
refs/heads/master
2021-01-21T22:35:47.935595
2018-10-03T19:06:10
2018-10-03T19:06:10
102,161,447
0
0
null
null
null
null
UTF-8
C
false
false
41,768
c
vzth1_sect5.C
void vzth1_sect5() { //=========Macro generated from canvas: c/c //========= (Wed Mar 7 01:29:59 2018) by ROOT version 6.12/04 TCanvas *c = new TCanvas("c", "c",1,1,800,576); c->Range(-44.16667,-0.1272109,-10.83333,5.270825); c->SetFillColor(0); c->SetBorderMode(0); c->SetBorderSize(2); c->SetLogy(); c->SetTickx(1); c->SetTicky(1); c->SetLeftMargin(0.125); c->SetRightMargin(0.125); c->SetFrameBorderMode(0); c->SetFrameBorderMode(0); TH1F *hth1__52 = new TH1F("hth1__52","theta in [0.365000,0.430000]",500,-40,-15); hth1__52->SetBinContent(0,2242); hth1__52->SetBinContent(1,18); hth1__52->SetBinContent(2,23); hth1__52->SetBinContent(3,18); hth1__52->SetBinContent(4,24); hth1__52->SetBinContent(5,16); hth1__52->SetBinContent(6,21); hth1__52->SetBinContent(7,22); hth1__52->SetBinContent(8,21); hth1__52->SetBinContent(9,22); hth1__52->SetBinContent(10,31); hth1__52->SetBinContent(11,22); hth1__52->SetBinContent(12,24); hth1__52->SetBinContent(13,17); hth1__52->SetBinContent(14,18); hth1__52->SetBinContent(15,22); hth1__52->SetBinContent(16,21); hth1__52->SetBinContent(17,36); hth1__52->SetBinContent(18,23); hth1__52->SetBinContent(19,28); hth1__52->SetBinContent(20,42); hth1__52->SetBinContent(21,33); hth1__52->SetBinContent(22,29); hth1__52->SetBinContent(23,44); hth1__52->SetBinContent(24,50); hth1__52->SetBinContent(25,49); hth1__52->SetBinContent(26,44); hth1__52->SetBinContent(27,41); hth1__52->SetBinContent(28,66); hth1__52->SetBinContent(29,60); hth1__52->SetBinContent(30,69); hth1__52->SetBinContent(31,55); hth1__52->SetBinContent(32,67); hth1__52->SetBinContent(33,81); hth1__52->SetBinContent(34,80); hth1__52->SetBinContent(35,98); hth1__52->SetBinContent(36,112); hth1__52->SetBinContent(37,110); hth1__52->SetBinContent(38,120); hth1__52->SetBinContent(39,133); hth1__52->SetBinContent(40,134); hth1__52->SetBinContent(41,141); hth1__52->SetBinContent(42,137); hth1__52->SetBinContent(43,164); hth1__52->SetBinContent(44,137); hth1__52->SetBinContent(45,157); hth1__52->SetBinContent(46,177); hth1__52->SetBinContent(47,161); hth1__52->SetBinContent(48,177); hth1__52->SetBinContent(49,186); hth1__52->SetBinContent(50,182); hth1__52->SetBinContent(51,188); hth1__52->SetBinContent(52,190); hth1__52->SetBinContent(53,208); hth1__52->SetBinContent(54,215); hth1__52->SetBinContent(55,225); hth1__52->SetBinContent(56,239); hth1__52->SetBinContent(57,234); hth1__52->SetBinContent(58,271); hth1__52->SetBinContent(59,263); hth1__52->SetBinContent(60,296); hth1__52->SetBinContent(61,302); hth1__52->SetBinContent(62,295); hth1__52->SetBinContent(63,279); hth1__52->SetBinContent(64,251); hth1__52->SetBinContent(65,248); hth1__52->SetBinContent(66,251); hth1__52->SetBinContent(67,224); hth1__52->SetBinContent(68,239); hth1__52->SetBinContent(69,191); hth1__52->SetBinContent(70,205); hth1__52->SetBinContent(71,196); hth1__52->SetBinContent(72,190); hth1__52->SetBinContent(73,228); hth1__52->SetBinContent(74,203); hth1__52->SetBinContent(75,229); hth1__52->SetBinContent(76,219); hth1__52->SetBinContent(77,235); hth1__52->SetBinContent(78,248); hth1__52->SetBinContent(79,241); hth1__52->SetBinContent(80,286); hth1__52->SetBinContent(81,270); hth1__52->SetBinContent(82,331); hth1__52->SetBinContent(83,346); hth1__52->SetBinContent(84,398); hth1__52->SetBinContent(85,373); hth1__52->SetBinContent(86,448); hth1__52->SetBinContent(87,503); hth1__52->SetBinContent(88,570); hth1__52->SetBinContent(89,589); hth1__52->SetBinContent(90,666); hth1__52->SetBinContent(91,684); hth1__52->SetBinContent(92,734); hth1__52->SetBinContent(93,683); hth1__52->SetBinContent(94,652); hth1__52->SetBinContent(95,677); hth1__52->SetBinContent(96,576); hth1__52->SetBinContent(97,554); hth1__52->SetBinContent(98,505); hth1__52->SetBinContent(99,452); hth1__52->SetBinContent(100,397); hth1__52->SetBinContent(101,361); hth1__52->SetBinContent(102,363); hth1__52->SetBinContent(103,333); hth1__52->SetBinContent(104,347); hth1__52->SetBinContent(105,335); hth1__52->SetBinContent(106,339); hth1__52->SetBinContent(107,344); hth1__52->SetBinContent(108,356); hth1__52->SetBinContent(109,327); hth1__52->SetBinContent(110,358); hth1__52->SetBinContent(111,298); hth1__52->SetBinContent(112,304); hth1__52->SetBinContent(113,330); hth1__52->SetBinContent(114,303); hth1__52->SetBinContent(115,319); hth1__52->SetBinContent(116,330); hth1__52->SetBinContent(117,312); hth1__52->SetBinContent(118,329); hth1__52->SetBinContent(119,330); hth1__52->SetBinContent(120,287); hth1__52->SetBinContent(121,324); hth1__52->SetBinContent(122,317); hth1__52->SetBinContent(123,354); hth1__52->SetBinContent(124,352); hth1__52->SetBinContent(125,366); hth1__52->SetBinContent(126,322); hth1__52->SetBinContent(127,349); hth1__52->SetBinContent(128,382); hth1__52->SetBinContent(129,378); hth1__52->SetBinContent(130,366); hth1__52->SetBinContent(131,386); hth1__52->SetBinContent(132,412); hth1__52->SetBinContent(133,429); hth1__52->SetBinContent(134,448); hth1__52->SetBinContent(135,478); hth1__52->SetBinContent(136,528); hth1__52->SetBinContent(137,534); hth1__52->SetBinContent(138,566); hth1__52->SetBinContent(139,593); hth1__52->SetBinContent(140,649); hth1__52->SetBinContent(141,695); hth1__52->SetBinContent(142,705); hth1__52->SetBinContent(143,804); hth1__52->SetBinContent(144,860); hth1__52->SetBinContent(145,964); hth1__52->SetBinContent(146,1156); hth1__52->SetBinContent(147,1412); hth1__52->SetBinContent(148,1558); hth1__52->SetBinContent(149,1893); hth1__52->SetBinContent(150,2243); hth1__52->SetBinContent(151,2684); hth1__52->SetBinContent(152,3148); hth1__52->SetBinContent(153,3752); hth1__52->SetBinContent(154,4480); hth1__52->SetBinContent(155,5262); hth1__52->SetBinContent(156,6216); hth1__52->SetBinContent(157,7386); hth1__52->SetBinContent(158,8741); hth1__52->SetBinContent(159,9910); hth1__52->SetBinContent(160,11484); hth1__52->SetBinContent(161,13302); hth1__52->SetBinContent(162,14620); hth1__52->SetBinContent(163,15984); hth1__52->SetBinContent(164,17188); hth1__52->SetBinContent(165,18136); hth1__52->SetBinContent(166,19031); hth1__52->SetBinContent(167,19839); hth1__52->SetBinContent(168,20272); hth1__52->SetBinContent(169,20599); hth1__52->SetBinContent(170,20980); hth1__52->SetBinContent(171,20981); hth1__52->SetBinContent(172,21174); hth1__52->SetBinContent(173,21332); hth1__52->SetBinContent(174,21698); hth1__52->SetBinContent(175,21754); hth1__52->SetBinContent(176,21963); hth1__52->SetBinContent(177,21845); hth1__52->SetBinContent(178,22024); hth1__52->SetBinContent(179,21859); hth1__52->SetBinContent(180,22218); hth1__52->SetBinContent(181,21993); hth1__52->SetBinContent(182,21823); hth1__52->SetBinContent(183,22108); hth1__52->SetBinContent(184,21971); hth1__52->SetBinContent(185,21917); hth1__52->SetBinContent(186,21772); hth1__52->SetBinContent(187,21571); hth1__52->SetBinContent(188,21372); hth1__52->SetBinContent(189,21296); hth1__52->SetBinContent(190,21101); hth1__52->SetBinContent(191,20776); hth1__52->SetBinContent(192,20410); hth1__52->SetBinContent(193,19856); hth1__52->SetBinContent(194,19332); hth1__52->SetBinContent(195,18356); hth1__52->SetBinContent(196,18180); hth1__52->SetBinContent(197,16946); hth1__52->SetBinContent(198,15816); hth1__52->SetBinContent(199,14878); hth1__52->SetBinContent(200,13343); hth1__52->SetBinContent(201,11794); hth1__52->SetBinContent(202,10444); hth1__52->SetBinContent(203,8801); hth1__52->SetBinContent(204,7450); hth1__52->SetBinContent(205,6268); hth1__52->SetBinContent(206,5134); hth1__52->SetBinContent(207,4213); hth1__52->SetBinContent(208,3591); hth1__52->SetBinContent(209,2859); hth1__52->SetBinContent(210,2366); hth1__52->SetBinContent(211,2085); hth1__52->SetBinContent(212,1760); hth1__52->SetBinContent(213,1599); hth1__52->SetBinContent(214,1477); hth1__52->SetBinContent(215,1303); hth1__52->SetBinContent(216,1181); hth1__52->SetBinContent(217,1122); hth1__52->SetBinContent(218,1044); hth1__52->SetBinContent(219,1068); hth1__52->SetBinContent(220,1007); hth1__52->SetBinContent(221,947); hth1__52->SetBinContent(222,891); hth1__52->SetBinContent(223,933); hth1__52->SetBinContent(224,835); hth1__52->SetBinContent(225,845); hth1__52->SetBinContent(226,823); hth1__52->SetBinContent(227,831); hth1__52->SetBinContent(228,824); hth1__52->SetBinContent(229,872); hth1__52->SetBinContent(230,878); hth1__52->SetBinContent(231,915); hth1__52->SetBinContent(232,971); hth1__52->SetBinContent(233,1081); hth1__52->SetBinContent(234,1151); hth1__52->SetBinContent(235,1197); hth1__52->SetBinContent(236,1349); hth1__52->SetBinContent(237,1479); hth1__52->SetBinContent(238,1646); hth1__52->SetBinContent(239,1756); hth1__52->SetBinContent(240,1943); hth1__52->SetBinContent(241,2213); hth1__52->SetBinContent(242,2297); hth1__52->SetBinContent(243,2444); hth1__52->SetBinContent(244,2456); hth1__52->SetBinContent(245,2468); hth1__52->SetBinContent(246,2405); hth1__52->SetBinContent(247,2355); hth1__52->SetBinContent(248,2066); hth1__52->SetBinContent(249,1878); hth1__52->SetBinContent(250,1668); hth1__52->SetBinContent(251,1493); hth1__52->SetBinContent(252,1365); hth1__52->SetBinContent(253,1092); hth1__52->SetBinContent(254,1048); hth1__52->SetBinContent(255,933); hth1__52->SetBinContent(256,888); hth1__52->SetBinContent(257,891); hth1__52->SetBinContent(258,850); hth1__52->SetBinContent(259,814); hth1__52->SetBinContent(260,800); hth1__52->SetBinContent(261,815); hth1__52->SetBinContent(262,909); hth1__52->SetBinContent(263,928); hth1__52->SetBinContent(264,1029); hth1__52->SetBinContent(265,1074); hth1__52->SetBinContent(266,1229); hth1__52->SetBinContent(267,1511); hth1__52->SetBinContent(268,1641); hth1__52->SetBinContent(269,2079); hth1__52->SetBinContent(270,2598); hth1__52->SetBinContent(271,3265); hth1__52->SetBinContent(272,4435); hth1__52->SetBinContent(273,5522); hth1__52->SetBinContent(274,6962); hth1__52->SetBinContent(275,8929); hth1__52->SetBinContent(276,11207); hth1__52->SetBinContent(277,13899); hth1__52->SetBinContent(278,16464); hth1__52->SetBinContent(279,19297); hth1__52->SetBinContent(280,22313); hth1__52->SetBinContent(281,24643); hth1__52->SetBinContent(282,27038); hth1__52->SetBinContent(283,28122); hth1__52->SetBinContent(284,28242); hth1__52->SetBinContent(285,27655); hth1__52->SetBinContent(286,25821); hth1__52->SetBinContent(287,23688); hth1__52->SetBinContent(288,21035); hth1__52->SetBinContent(289,18424); hth1__52->SetBinContent(290,15793); hth1__52->SetBinContent(291,13081); hth1__52->SetBinContent(292,10847); hth1__52->SetBinContent(293,8755); hth1__52->SetBinContent(294,6820); hth1__52->SetBinContent(295,5312); hth1__52->SetBinContent(296,4181); hth1__52->SetBinContent(297,3209); hth1__52->SetBinContent(298,2619); hth1__52->SetBinContent(299,2089); hth1__52->SetBinContent(300,1758); hth1__52->SetBinContent(301,1489); hth1__52->SetBinContent(302,1322); hth1__52->SetBinContent(303,1125); hth1__52->SetBinContent(304,943); hth1__52->SetBinContent(305,920); hth1__52->SetBinContent(306,801); hth1__52->SetBinContent(307,759); hth1__52->SetBinContent(308,638); hth1__52->SetBinContent(309,584); hth1__52->SetBinContent(310,579); hth1__52->SetBinContent(311,518); hth1__52->SetBinContent(312,500); hth1__52->SetBinContent(313,479); hth1__52->SetBinContent(314,436); hth1__52->SetBinContent(315,445); hth1__52->SetBinContent(316,401); hth1__52->SetBinContent(317,392); hth1__52->SetBinContent(318,357); hth1__52->SetBinContent(319,342); hth1__52->SetBinContent(320,348); hth1__52->SetBinContent(321,326); hth1__52->SetBinContent(322,354); hth1__52->SetBinContent(323,293); hth1__52->SetBinContent(324,330); hth1__52->SetBinContent(325,296); hth1__52->SetBinContent(326,287); hth1__52->SetBinContent(327,292); hth1__52->SetBinContent(328,257); hth1__52->SetBinContent(329,291); hth1__52->SetBinContent(330,251); hth1__52->SetBinContent(331,238); hth1__52->SetBinContent(332,233); hth1__52->SetBinContent(333,237); hth1__52->SetBinContent(334,219); hth1__52->SetBinContent(335,216); hth1__52->SetBinContent(336,190); hth1__52->SetBinContent(337,173); hth1__52->SetBinContent(338,201); hth1__52->SetBinContent(339,182); hth1__52->SetBinContent(340,189); hth1__52->SetBinContent(341,199); hth1__52->SetBinContent(342,163); hth1__52->SetBinContent(343,164); hth1__52->SetBinContent(344,150); hth1__52->SetBinContent(345,158); hth1__52->SetBinContent(346,168); hth1__52->SetBinContent(347,147); hth1__52->SetBinContent(348,120); hth1__52->SetBinContent(349,122); hth1__52->SetBinContent(350,131); hth1__52->SetBinContent(351,137); hth1__52->SetBinContent(352,119); hth1__52->SetBinContent(353,104); hth1__52->SetBinContent(354,113); hth1__52->SetBinContent(355,127); hth1__52->SetBinContent(356,113); hth1__52->SetBinContent(357,82); hth1__52->SetBinContent(358,106); hth1__52->SetBinContent(359,112); hth1__52->SetBinContent(360,106); hth1__52->SetBinContent(361,71); hth1__52->SetBinContent(362,77); hth1__52->SetBinContent(363,76); hth1__52->SetBinContent(364,85); hth1__52->SetBinContent(365,68); hth1__52->SetBinContent(366,76); hth1__52->SetBinContent(367,62); hth1__52->SetBinContent(368,61); hth1__52->SetBinContent(369,63); hth1__52->SetBinContent(370,73); hth1__52->SetBinContent(371,75); hth1__52->SetBinContent(372,68); hth1__52->SetBinContent(373,62); hth1__52->SetBinContent(374,77); hth1__52->SetBinContent(375,62); hth1__52->SetBinContent(376,68); hth1__52->SetBinContent(377,70); hth1__52->SetBinContent(378,59); hth1__52->SetBinContent(379,50); hth1__52->SetBinContent(380,44); hth1__52->SetBinContent(381,48); hth1__52->SetBinContent(382,48); hth1__52->SetBinContent(383,53); hth1__52->SetBinContent(384,64); hth1__52->SetBinContent(385,52); hth1__52->SetBinContent(386,50); hth1__52->SetBinContent(387,44); hth1__52->SetBinContent(388,39); hth1__52->SetBinContent(389,50); hth1__52->SetBinContent(390,38); hth1__52->SetBinContent(391,43); hth1__52->SetBinContent(392,35); hth1__52->SetBinContent(393,40); hth1__52->SetBinContent(394,43); hth1__52->SetBinContent(395,34); hth1__52->SetBinContent(396,50); hth1__52->SetBinContent(397,39); hth1__52->SetBinContent(398,34); hth1__52->SetBinContent(399,41); hth1__52->SetBinContent(400,30); hth1__52->SetBinContent(401,26); hth1__52->SetBinContent(402,31); hth1__52->SetBinContent(403,29); hth1__52->SetBinContent(404,37); hth1__52->SetBinContent(405,30); hth1__52->SetBinContent(406,29); hth1__52->SetBinContent(407,28); hth1__52->SetBinContent(408,28); hth1__52->SetBinContent(409,41); hth1__52->SetBinContent(410,24); hth1__52->SetBinContent(411,30); hth1__52->SetBinContent(412,20); hth1__52->SetBinContent(413,28); hth1__52->SetBinContent(414,24); hth1__52->SetBinContent(415,21); hth1__52->SetBinContent(416,21); hth1__52->SetBinContent(417,19); hth1__52->SetBinContent(418,21); hth1__52->SetBinContent(419,19); hth1__52->SetBinContent(420,26); hth1__52->SetBinContent(421,24); hth1__52->SetBinContent(422,31); hth1__52->SetBinContent(423,24); hth1__52->SetBinContent(424,26); hth1__52->SetBinContent(425,23); hth1__52->SetBinContent(426,30); hth1__52->SetBinContent(427,26); hth1__52->SetBinContent(428,20); hth1__52->SetBinContent(429,27); hth1__52->SetBinContent(430,25); hth1__52->SetBinContent(431,22); hth1__52->SetBinContent(432,27); hth1__52->SetBinContent(433,17); hth1__52->SetBinContent(434,18); hth1__52->SetBinContent(435,23); hth1__52->SetBinContent(436,30); hth1__52->SetBinContent(437,17); hth1__52->SetBinContent(438,18); hth1__52->SetBinContent(439,18); hth1__52->SetBinContent(440,37); hth1__52->SetBinContent(441,15); hth1__52->SetBinContent(442,24); hth1__52->SetBinContent(443,22); hth1__52->SetBinContent(444,14); hth1__52->SetBinContent(445,27); hth1__52->SetBinContent(446,18); hth1__52->SetBinContent(447,15); hth1__52->SetBinContent(448,16); hth1__52->SetBinContent(449,26); hth1__52->SetBinContent(450,27); hth1__52->SetBinContent(451,15); hth1__52->SetBinContent(452,25); hth1__52->SetBinContent(453,17); hth1__52->SetBinContent(454,17); hth1__52->SetBinContent(455,15); hth1__52->SetBinContent(456,23); hth1__52->SetBinContent(457,25); hth1__52->SetBinContent(458,17); hth1__52->SetBinContent(459,19); hth1__52->SetBinContent(460,18); hth1__52->SetBinContent(461,24); hth1__52->SetBinContent(462,11); hth1__52->SetBinContent(463,19); hth1__52->SetBinContent(464,8); hth1__52->SetBinContent(465,21); hth1__52->SetBinContent(466,16); hth1__52->SetBinContent(467,14); hth1__52->SetBinContent(468,20); hth1__52->SetBinContent(469,24); hth1__52->SetBinContent(470,14); hth1__52->SetBinContent(471,17); hth1__52->SetBinContent(472,24); hth1__52->SetBinContent(473,19); hth1__52->SetBinContent(474,23); hth1__52->SetBinContent(475,21); hth1__52->SetBinContent(476,17); hth1__52->SetBinContent(477,14); hth1__52->SetBinContent(478,14); hth1__52->SetBinContent(479,13); hth1__52->SetBinContent(480,19); hth1__52->SetBinContent(481,18); hth1__52->SetBinContent(482,21); hth1__52->SetBinContent(483,17); hth1__52->SetBinContent(484,20); hth1__52->SetBinContent(485,11); hth1__52->SetBinContent(486,22); hth1__52->SetBinContent(487,19); hth1__52->SetBinContent(488,20); hth1__52->SetBinContent(489,14); hth1__52->SetBinContent(490,14); hth1__52->SetBinContent(491,13); hth1__52->SetBinContent(492,15); hth1__52->SetBinContent(493,19); hth1__52->SetBinContent(494,12); hth1__52->SetBinContent(495,11); hth1__52->SetBinContent(496,17); hth1__52->SetBinContent(497,10); hth1__52->SetBinContent(498,12); hth1__52->SetBinContent(499,13); hth1__52->SetBinContent(500,9); hth1__52->SetBinContent(501,102457); hth1__52->SetBinError(0,47.34976); hth1__52->SetBinError(1,4.242641); hth1__52->SetBinError(2,4.795832); hth1__52->SetBinError(3,4.242641); hth1__52->SetBinError(4,4.898979); hth1__52->SetBinError(5,4); hth1__52->SetBinError(6,4.582576); hth1__52->SetBinError(7,4.690416); hth1__52->SetBinError(8,4.582576); hth1__52->SetBinError(9,4.690416); hth1__52->SetBinError(10,5.567764); hth1__52->SetBinError(11,4.690416); hth1__52->SetBinError(12,4.898979); hth1__52->SetBinError(13,4.123106); hth1__52->SetBinError(14,4.242641); hth1__52->SetBinError(15,4.690416); hth1__52->SetBinError(16,4.582576); hth1__52->SetBinError(17,6); hth1__52->SetBinError(18,4.795832); hth1__52->SetBinError(19,5.291503); hth1__52->SetBinError(20,6.480741); hth1__52->SetBinError(21,5.744563); hth1__52->SetBinError(22,5.385165); hth1__52->SetBinError(23,6.63325); hth1__52->SetBinError(24,7.071068); hth1__52->SetBinError(25,7); hth1__52->SetBinError(26,6.63325); hth1__52->SetBinError(27,6.403124); hth1__52->SetBinError(28,8.124038); hth1__52->SetBinError(29,7.745967); hth1__52->SetBinError(30,8.306624); hth1__52->SetBinError(31,7.416198); hth1__52->SetBinError(32,8.185353); hth1__52->SetBinError(33,9); hth1__52->SetBinError(34,8.944272); hth1__52->SetBinError(35,9.899495); hth1__52->SetBinError(36,10.58301); hth1__52->SetBinError(37,10.48809); hth1__52->SetBinError(38,10.95445); hth1__52->SetBinError(39,11.53256); hth1__52->SetBinError(40,11.57584); hth1__52->SetBinError(41,11.87434); hth1__52->SetBinError(42,11.7047); hth1__52->SetBinError(43,12.80625); hth1__52->SetBinError(44,11.7047); hth1__52->SetBinError(45,12.52996); hth1__52->SetBinError(46,13.30413); hth1__52->SetBinError(47,12.68858); hth1__52->SetBinError(48,13.30413); hth1__52->SetBinError(49,13.63818); hth1__52->SetBinError(50,13.49074); hth1__52->SetBinError(51,13.71131); hth1__52->SetBinError(52,13.78405); hth1__52->SetBinError(53,14.42221); hth1__52->SetBinError(54,14.66288); hth1__52->SetBinError(55,15); hth1__52->SetBinError(56,15.45962); hth1__52->SetBinError(57,15.29706); hth1__52->SetBinError(58,16.46208); hth1__52->SetBinError(59,16.21727); hth1__52->SetBinError(60,17.20465); hth1__52->SetBinError(61,17.37815); hth1__52->SetBinError(62,17.17556); hth1__52->SetBinError(63,16.70329); hth1__52->SetBinError(64,15.84298); hth1__52->SetBinError(65,15.74802); hth1__52->SetBinError(66,15.84298); hth1__52->SetBinError(67,14.96663); hth1__52->SetBinError(68,15.45962); hth1__52->SetBinError(69,13.82027); hth1__52->SetBinError(70,14.31782); hth1__52->SetBinError(71,14); hth1__52->SetBinError(72,13.78405); hth1__52->SetBinError(73,15.09967); hth1__52->SetBinError(74,14.24781); hth1__52->SetBinError(75,15.13275); hth1__52->SetBinError(76,14.79865); hth1__52->SetBinError(77,15.32971); hth1__52->SetBinError(78,15.74802); hth1__52->SetBinError(79,15.52417); hth1__52->SetBinError(80,16.91153); hth1__52->SetBinError(81,16.43168); hth1__52->SetBinError(82,18.19341); hth1__52->SetBinError(83,18.60108); hth1__52->SetBinError(84,19.94994); hth1__52->SetBinError(85,19.31321); hth1__52->SetBinError(86,21.16601); hth1__52->SetBinError(87,22.42766); hth1__52->SetBinError(88,23.87467); hth1__52->SetBinError(89,24.26932); hth1__52->SetBinError(90,25.80698); hth1__52->SetBinError(91,26.15339); hth1__52->SetBinError(92,27.09243); hth1__52->SetBinError(93,26.13427); hth1__52->SetBinError(94,25.53429); hth1__52->SetBinError(95,26.01922); hth1__52->SetBinError(96,24); hth1__52->SetBinError(97,23.5372); hth1__52->SetBinError(98,22.47221); hth1__52->SetBinError(99,21.26029); hth1__52->SetBinError(100,19.92486); hth1__52->SetBinError(101,19); hth1__52->SetBinError(102,19.05256); hth1__52->SetBinError(103,18.24829); hth1__52->SetBinError(104,18.62794); hth1__52->SetBinError(105,18.30301); hth1__52->SetBinError(106,18.41195); hth1__52->SetBinError(107,18.54724); hth1__52->SetBinError(108,18.86796); hth1__52->SetBinError(109,18.08314); hth1__52->SetBinError(110,18.92089); hth1__52->SetBinError(111,17.26268); hth1__52->SetBinError(112,17.4356); hth1__52->SetBinError(113,18.1659); hth1__52->SetBinError(114,17.4069); hth1__52->SetBinError(115,17.86057); hth1__52->SetBinError(116,18.1659); hth1__52->SetBinError(117,17.66352); hth1__52->SetBinError(118,18.13836); hth1__52->SetBinError(119,18.1659); hth1__52->SetBinError(120,16.94107); hth1__52->SetBinError(121,18); hth1__52->SetBinError(122,17.80449); hth1__52->SetBinError(123,18.81489); hth1__52->SetBinError(124,18.76166); hth1__52->SetBinError(125,19.13113); hth1__52->SetBinError(126,17.94436); hth1__52->SetBinError(127,18.68154); hth1__52->SetBinError(128,19.54482); hth1__52->SetBinError(129,19.44222); hth1__52->SetBinError(130,19.13113); hth1__52->SetBinError(131,19.64688); hth1__52->SetBinError(132,20.29778); hth1__52->SetBinError(133,20.71232); hth1__52->SetBinError(134,21.16601); hth1__52->SetBinError(135,21.86321); hth1__52->SetBinError(136,22.97825); hth1__52->SetBinError(137,23.10844); hth1__52->SetBinError(138,23.79075); hth1__52->SetBinError(139,24.35159); hth1__52->SetBinError(140,25.47548); hth1__52->SetBinError(141,26.36285); hth1__52->SetBinError(142,26.55184); hth1__52->SetBinError(143,28.35489); hth1__52->SetBinError(144,29.32576); hth1__52->SetBinError(145,31.04835); hth1__52->SetBinError(146,34); hth1__52->SetBinError(147,37.57659); hth1__52->SetBinError(148,39.47151); hth1__52->SetBinError(149,43.50862); hth1__52->SetBinError(150,47.36032); hth1__52->SetBinError(151,51.80734); hth1__52->SetBinError(152,56.10704); hth1__52->SetBinError(153,61.25357); hth1__52->SetBinError(154,66.9328); hth1__52->SetBinError(155,72.53964); hth1__52->SetBinError(156,78.84161); hth1__52->SetBinError(157,85.94184); hth1__52->SetBinError(158,93.49332); hth1__52->SetBinError(159,99.54898); hth1__52->SetBinError(160,107.1634); hth1__52->SetBinError(161,115.3343); hth1__52->SetBinError(162,120.9132); hth1__52->SetBinError(163,126.4278); hth1__52->SetBinError(164,131.103); hth1__52->SetBinError(165,134.67); hth1__52->SetBinError(166,137.9529); hth1__52->SetBinError(167,140.851); hth1__52->SetBinError(168,142.3798); hth1__52->SetBinError(169,143.5235); hth1__52->SetBinError(170,144.8447); hth1__52->SetBinError(171,144.8482); hth1__52->SetBinError(172,145.5129); hth1__52->SetBinError(173,146.0548); hth1__52->SetBinError(174,147.3024); hth1__52->SetBinError(175,147.4924); hth1__52->SetBinError(176,148.1992); hth1__52->SetBinError(177,147.8005); hth1__52->SetBinError(178,148.4049); hth1__52->SetBinError(179,147.8479); hth1__52->SetBinError(180,149.057); hth1__52->SetBinError(181,148.3004); hth1__52->SetBinError(182,147.7261); hth1__52->SetBinError(183,148.6876); hth1__52->SetBinError(184,148.2262); hth1__52->SetBinError(185,148.0439); hth1__52->SetBinError(186,147.5534); hth1__52->SetBinError(187,146.8707); hth1__52->SetBinError(188,146.1917); hth1__52->SetBinError(189,145.9315); hth1__52->SetBinError(190,145.2618); hth1__52->SetBinError(191,144.1388); hth1__52->SetBinError(192,142.8636); hth1__52->SetBinError(193,140.9113); hth1__52->SetBinError(194,139.0396); hth1__52->SetBinError(195,135.4843); hth1__52->SetBinError(196,134.8332); hth1__52->SetBinError(197,130.1768); hth1__52->SetBinError(198,125.7617); hth1__52->SetBinError(199,121.9754); hth1__52->SetBinError(200,115.5119); hth1__52->SetBinError(201,108.6002); hth1__52->SetBinError(202,102.1959); hth1__52->SetBinError(203,93.81365); hth1__52->SetBinError(204,86.31338); hth1__52->SetBinError(205,79.1707); hth1__52->SetBinError(206,71.65194); hth1__52->SetBinError(207,64.90763); hth1__52->SetBinError(208,59.92495); hth1__52->SetBinError(209,53.46962); hth1__52->SetBinError(210,48.64155); hth1__52->SetBinError(211,45.6618); hth1__52->SetBinError(212,41.95235); hth1__52->SetBinError(213,39.9875); hth1__52->SetBinError(214,38.43176); hth1__52->SetBinError(215,36.09709); hth1__52->SetBinError(216,34.36568); hth1__52->SetBinError(217,33.49627); hth1__52->SetBinError(218,32.31099); hth1__52->SetBinError(219,32.68027); hth1__52->SetBinError(220,31.73326); hth1__52->SetBinError(221,30.77337); hth1__52->SetBinError(222,29.84962); hth1__52->SetBinError(223,30.54505); hth1__52->SetBinError(224,28.89637); hth1__52->SetBinError(225,29.06888); hth1__52->SetBinError(226,28.68798); hth1__52->SetBinError(227,28.82707); hth1__52->SetBinError(228,28.7054); hth1__52->SetBinError(229,29.52965); hth1__52->SetBinError(230,29.63106); hth1__52->SetBinError(231,30.24897); hth1__52->SetBinError(232,31.16087); hth1__52->SetBinError(233,32.87856); hth1__52->SetBinError(234,33.92639); hth1__52->SetBinError(235,34.59769); hth1__52->SetBinError(236,36.72874); hth1__52->SetBinError(237,38.45777); hth1__52->SetBinError(238,40.57093); hth1__52->SetBinError(239,41.90465); hth1__52->SetBinError(240,44.07947); hth1__52->SetBinError(241,47.04253); hth1__52->SetBinError(242,47.92703); hth1__52->SetBinError(243,49.43683); hth1__52->SetBinError(244,49.55805); hth1__52->SetBinError(245,49.67897); hth1__52->SetBinError(246,49.0408); hth1__52->SetBinError(247,48.52834); hth1__52->SetBinError(248,45.45327); hth1__52->SetBinError(249,43.3359); hth1__52->SetBinError(250,40.84116); hth1__52->SetBinError(251,38.63936); hth1__52->SetBinError(252,36.94591); hth1__52->SetBinError(253,33.04542); hth1__52->SetBinError(254,32.37283); hth1__52->SetBinError(255,30.54505); hth1__52->SetBinError(256,29.79933); hth1__52->SetBinError(257,29.84962); hth1__52->SetBinError(258,29.15476); hth1__52->SetBinError(259,28.53069); hth1__52->SetBinError(260,28.28427); hth1__52->SetBinError(261,28.5482); hth1__52->SetBinError(262,30.14963); hth1__52->SetBinError(263,30.46309); hth1__52->SetBinError(264,32.07803); hth1__52->SetBinError(265,32.77194); hth1__52->SetBinError(266,35.0571); hth1__52->SetBinError(267,38.87158); hth1__52->SetBinError(268,40.50926); hth1__52->SetBinError(269,45.59605); hth1__52->SetBinError(270,50.97058); hth1__52->SetBinError(271,57.14018); hth1__52->SetBinError(272,66.5958); hth1__52->SetBinError(273,74.31016); hth1__52->SetBinError(274,83.4386); hth1__52->SetBinError(275,94.49339); hth1__52->SetBinError(276,105.8631); hth1__52->SetBinError(277,117.894); hth1__52->SetBinError(278,128.3121); hth1__52->SetBinError(279,138.9136); hth1__52->SetBinError(280,149.3754); hth1__52->SetBinError(281,156.9809); hth1__52->SetBinError(282,164.4324); hth1__52->SetBinError(283,167.6962); hth1__52->SetBinError(284,168.0536); hth1__52->SetBinError(285,166.2979); hth1__52->SetBinError(286,160.6891); hth1__52->SetBinError(287,153.9091); hth1__52->SetBinError(288,145.0345); hth1__52->SetBinError(289,135.735); hth1__52->SetBinError(290,125.6702); hth1__52->SetBinError(291,114.3722); hth1__52->SetBinError(292,104.1489); hth1__52->SetBinError(293,93.56816); hth1__52->SetBinError(294,82.58329); hth1__52->SetBinError(295,72.88347); hth1__52->SetBinError(296,64.66065); hth1__52->SetBinError(297,56.64804); hth1__52->SetBinError(298,51.17617); hth1__52->SetBinError(299,45.70558); hth1__52->SetBinError(300,41.92851); hth1__52->SetBinError(301,38.58756); hth1__52->SetBinError(302,36.35932); hth1__52->SetBinError(303,33.54102); hth1__52->SetBinError(304,30.70831); hth1__52->SetBinError(305,30.3315); hth1__52->SetBinError(306,28.30194); hth1__52->SetBinError(307,27.54995); hth1__52->SetBinError(308,25.25866); hth1__52->SetBinError(309,24.16609); hth1__52->SetBinError(310,24.06242); hth1__52->SetBinError(311,22.75961); hth1__52->SetBinError(312,22.36068); hth1__52->SetBinError(313,21.88607); hth1__52->SetBinError(314,20.88061); hth1__52->SetBinError(315,21.09502); hth1__52->SetBinError(316,20.02498); hth1__52->SetBinError(317,19.79899); hth1__52->SetBinError(318,18.89444); hth1__52->SetBinError(319,18.49324); hth1__52->SetBinError(320,18.65476); hth1__52->SetBinError(321,18.05547); hth1__52->SetBinError(322,18.81489); hth1__52->SetBinError(323,17.11724); hth1__52->SetBinError(324,18.1659); hth1__52->SetBinError(325,17.20465); hth1__52->SetBinError(326,16.94107); hth1__52->SetBinError(327,17.08801); hth1__52->SetBinError(328,16.03122); hth1__52->SetBinError(329,17.05872); hth1__52->SetBinError(330,15.84298); hth1__52->SetBinError(331,15.42725); hth1__52->SetBinError(332,15.26434); hth1__52->SetBinError(333,15.3948); hth1__52->SetBinError(334,14.79865); hth1__52->SetBinError(335,14.69694); hth1__52->SetBinError(336,13.78405); hth1__52->SetBinError(337,13.15295); hth1__52->SetBinError(338,14.17745); hth1__52->SetBinError(339,13.49074); hth1__52->SetBinError(340,13.74773); hth1__52->SetBinError(341,14.10674); hth1__52->SetBinError(342,12.76715); hth1__52->SetBinError(343,12.80625); hth1__52->SetBinError(344,12.24745); hth1__52->SetBinError(345,12.56981); hth1__52->SetBinError(346,12.96148); hth1__52->SetBinError(347,12.12436); hth1__52->SetBinError(348,10.95445); hth1__52->SetBinError(349,11.04536); hth1__52->SetBinError(350,11.44552); hth1__52->SetBinError(351,11.7047); hth1__52->SetBinError(352,10.90871); hth1__52->SetBinError(353,10.19804); hth1__52->SetBinError(354,10.63015); hth1__52->SetBinError(355,11.26943); hth1__52->SetBinError(356,10.63015); hth1__52->SetBinError(357,9.055385); hth1__52->SetBinError(358,10.29563); hth1__52->SetBinError(359,10.58301); hth1__52->SetBinError(360,10.29563); hth1__52->SetBinError(361,8.42615); hth1__52->SetBinError(362,8.774964); hth1__52->SetBinError(363,8.717798); hth1__52->SetBinError(364,9.219544); hth1__52->SetBinError(365,8.246211); hth1__52->SetBinError(366,8.717798); hth1__52->SetBinError(367,7.874008); hth1__52->SetBinError(368,7.81025); hth1__52->SetBinError(369,7.937254); hth1__52->SetBinError(370,8.544004); hth1__52->SetBinError(371,8.660254); hth1__52->SetBinError(372,8.246211); hth1__52->SetBinError(373,7.874008); hth1__52->SetBinError(374,8.774964); hth1__52->SetBinError(375,7.874008); hth1__52->SetBinError(376,8.246211); hth1__52->SetBinError(377,8.3666); hth1__52->SetBinError(378,7.681146); hth1__52->SetBinError(379,7.071068); hth1__52->SetBinError(380,6.63325); hth1__52->SetBinError(381,6.928203); hth1__52->SetBinError(382,6.928203); hth1__52->SetBinError(383,7.28011); hth1__52->SetBinError(384,8); hth1__52->SetBinError(385,7.211103); hth1__52->SetBinError(386,7.071068); hth1__52->SetBinError(387,6.63325); hth1__52->SetBinError(388,6.244998); hth1__52->SetBinError(389,7.071068); hth1__52->SetBinError(390,6.164414); hth1__52->SetBinError(391,6.557439); hth1__52->SetBinError(392,5.91608); hth1__52->SetBinError(393,6.324555); hth1__52->SetBinError(394,6.557439); hth1__52->SetBinError(395,5.830952); hth1__52->SetBinError(396,7.071068); hth1__52->SetBinError(397,6.244998); hth1__52->SetBinError(398,5.830952); hth1__52->SetBinError(399,6.403124); hth1__52->SetBinError(400,5.477226); hth1__52->SetBinError(401,5.09902); hth1__52->SetBinError(402,5.567764); hth1__52->SetBinError(403,5.385165); hth1__52->SetBinError(404,6.082763); hth1__52->SetBinError(405,5.477226); hth1__52->SetBinError(406,5.385165); hth1__52->SetBinError(407,5.291503); hth1__52->SetBinError(408,5.291503); hth1__52->SetBinError(409,6.403124); hth1__52->SetBinError(410,4.898979); hth1__52->SetBinError(411,5.477226); hth1__52->SetBinError(412,4.472136); hth1__52->SetBinError(413,5.291503); hth1__52->SetBinError(414,4.898979); hth1__52->SetBinError(415,4.582576); hth1__52->SetBinError(416,4.582576); hth1__52->SetBinError(417,4.358899); hth1__52->SetBinError(418,4.582576); hth1__52->SetBinError(419,4.358899); hth1__52->SetBinError(420,5.09902); hth1__52->SetBinError(421,4.898979); hth1__52->SetBinError(422,5.567764); hth1__52->SetBinError(423,4.898979); hth1__52->SetBinError(424,5.09902); hth1__52->SetBinError(425,4.795832); hth1__52->SetBinError(426,5.477226); hth1__52->SetBinError(427,5.09902); hth1__52->SetBinError(428,4.472136); hth1__52->SetBinError(429,5.196152); hth1__52->SetBinError(430,5); hth1__52->SetBinError(431,4.690416); hth1__52->SetBinError(432,5.196152); hth1__52->SetBinError(433,4.123106); hth1__52->SetBinError(434,4.242641); hth1__52->SetBinError(435,4.795832); hth1__52->SetBinError(436,5.477226); hth1__52->SetBinError(437,4.123106); hth1__52->SetBinError(438,4.242641); hth1__52->SetBinError(439,4.242641); hth1__52->SetBinError(440,6.082763); hth1__52->SetBinError(441,3.872983); hth1__52->SetBinError(442,4.898979); hth1__52->SetBinError(443,4.690416); hth1__52->SetBinError(444,3.741657); hth1__52->SetBinError(445,5.196152); hth1__52->SetBinError(446,4.242641); hth1__52->SetBinError(447,3.872983); hth1__52->SetBinError(448,4); hth1__52->SetBinError(449,5.09902); hth1__52->SetBinError(450,5.196152); hth1__52->SetBinError(451,3.872983); hth1__52->SetBinError(452,5); hth1__52->SetBinError(453,4.123106); hth1__52->SetBinError(454,4.123106); hth1__52->SetBinError(455,3.872983); hth1__52->SetBinError(456,4.795832); hth1__52->SetBinError(457,5); hth1__52->SetBinError(458,4.123106); hth1__52->SetBinError(459,4.358899); hth1__52->SetBinError(460,4.242641); hth1__52->SetBinError(461,4.898979); hth1__52->SetBinError(462,3.316625); hth1__52->SetBinError(463,4.358899); hth1__52->SetBinError(464,2.828427); hth1__52->SetBinError(465,4.582576); hth1__52->SetBinError(466,4); hth1__52->SetBinError(467,3.741657); hth1__52->SetBinError(468,4.472136); hth1__52->SetBinError(469,4.898979); hth1__52->SetBinError(470,3.741657); hth1__52->SetBinError(471,4.123106); hth1__52->SetBinError(472,4.898979); hth1__52->SetBinError(473,4.358899); hth1__52->SetBinError(474,4.795832); hth1__52->SetBinError(475,4.582576); hth1__52->SetBinError(476,4.123106); hth1__52->SetBinError(477,3.741657); hth1__52->SetBinError(478,3.741657); hth1__52->SetBinError(479,3.605551); hth1__52->SetBinError(480,4.358899); hth1__52->SetBinError(481,4.242641); hth1__52->SetBinError(482,4.582576); hth1__52->SetBinError(483,4.123106); hth1__52->SetBinError(484,4.472136); hth1__52->SetBinError(485,3.316625); hth1__52->SetBinError(486,4.690416); hth1__52->SetBinError(487,4.358899); hth1__52->SetBinError(488,4.472136); hth1__52->SetBinError(489,3.741657); hth1__52->SetBinError(490,3.741657); hth1__52->SetBinError(491,3.605551); hth1__52->SetBinError(492,3.872983); hth1__52->SetBinError(493,4.358899); hth1__52->SetBinError(494,3.464102); hth1__52->SetBinError(495,3.316625); hth1__52->SetBinError(496,4.123106); hth1__52->SetBinError(497,3.162278); hth1__52->SetBinError(498,3.464102); hth1__52->SetBinError(499,3.605551); hth1__52->SetBinError(500,3); hth1__52->SetBinError(501,320.0891); hth1__52->SetEntries(1589626); TF1 *func123 = new TF1("func","gaus",-26.55,-25.15, TF1::EAddToList::kNo); func123->SetFillColor(19); func123->SetFillStyle(0); Int_t ci; // for color index setting TColor *color; // for color definition with alpha ci = TColor::GetColor("#ff0000"); func123->SetLineColor(ci); func123->SetLineWidth(3); func123->SetChisquare(733.1445); func123->SetNDF(25); func123->GetXaxis()->SetLabelFont(22); func123->GetXaxis()->SetLabelSize(0.03); func123->GetXaxis()->SetTitleSize(0.035); func123->GetXaxis()->SetTitleFont(22); func123->GetYaxis()->SetLabelFont(22); func123->GetYaxis()->SetLabelSize(0.03); func123->GetYaxis()->SetTitleSize(0.035); func123->GetYaxis()->SetTitleOffset(0); func123->GetYaxis()->SetTitleFont(22); func123->SetParameter(0,27167.57); func123->SetParError(0,56.07113); func123->SetParLimits(0,0,0); func123->SetParameter(1,-25.83133); func123->SetParError(1,0.0005154867); func123->SetParLimits(1,0,0); func123->SetParameter(2,0.3054227); func123->SetParError(2,0.0004743597); func123->SetParLimits(2,0,0); func123->SetParent(hth1__52); hth1__52->GetListOfFunctions()->Add(func123); TPaveStats *ptstats = new TPaveStats(0.78,0.835,0.98,0.995,"brNDC"); ptstats->SetName("stats"); ptstats->SetBorderSize(2); ptstats->SetFillColor(0); ptstats->SetTextAlign(12); ptstats->SetTextFont(22); TText *ptstats_LaTex = ptstats->AddText("hth1"); ptstats_LaTex->SetTextSize(0.0368); ptstats_LaTex = ptstats->AddText("Entries = 1589626"); ptstats_LaTex = ptstats->AddText("Mean = -29.39"); ptstats_LaTex = ptstats->AddText("Std Dev = 2.702"); ptstats->SetOptStat(1111); ptstats->SetOptFit(0); ptstats->Draw(); hth1__52->GetListOfFunctions()->Add(ptstats); ptstats->SetParent(hth1__52); hth1__52->SetLineWidth(2); hth1__52->GetXaxis()->SetTitle("vze"); hth1__52->GetXaxis()->SetLabelFont(22); hth1__52->GetXaxis()->SetLabelSize(0.03); hth1__52->GetXaxis()->SetTitleSize(0.035); hth1__52->GetXaxis()->SetTitleFont(22); hth1__52->GetYaxis()->SetTitle("dN/dz"); hth1__52->GetYaxis()->SetLabelFont(22); hth1__52->GetYaxis()->SetLabelSize(0.03); hth1__52->GetYaxis()->SetTitleSize(0.035); hth1__52->GetYaxis()->SetTitleOffset(0); hth1__52->GetYaxis()->SetTitleFont(22); hth1__52->GetZaxis()->SetLabelFont(22); hth1__52->GetZaxis()->SetLabelSize(0.03); hth1__52->GetZaxis()->SetTitleSize(0.035); hth1__52->GetZaxis()->SetTitleFont(22); hth1__52->Draw(""); TPaveText *pt = new TPaveText(0.01,0.9404546,0.4734673,0.995,"blNDC"); pt->SetName("title"); pt->SetBorderSize(0); pt->SetFillColor(0); pt->SetTextFont(22); TText *pt_LaTex = pt->AddText("theta in [0.365000,0.430000]"); pt->Draw(); c->Modified(); c->cd(); c->SetSelected(c); }
40a7f7a0d0d046c150745ec323ca4a4813299f69
8c6e91e49663a0c2c3772db615901a371e341602
/handouts/tree/tree/balance.h
d416216265f4cc31f42515a6fe4ef40782ce3cdb
[]
no_license
TobiasWrigstad/ioopm14
3ec965d2c8522fa27e05e9067216c133438f5c38
ca284930b8095d178af3a9550016d0d61fa65114
refs/heads/master
2016-09-01T21:07:18.290923
2015-08-24T13:14:54
2015-08-24T13:14:54
23,510,103
0
0
null
2014-12-17T08:07:54
2014-08-31T09:15:42
TeX
UTF-8
C
false
false
645
h
balance.h
#ifndef _balance_h_ #define _balance_h_ #include "node.h" /// Kontrollerar hur välbalanserat ett subträd är. \sa enum balance enum balance balance_check(node_s *n); /// Utför 0 till `ns_size` ombalanseringar av subträd rotade i `*ns[0..ns_size-1]`. /// /// \param ns en array av pekare till pekare till noder (se exempel) /// \param ns_size storleken på `ns` /// /// Låt `ns == [p1, p2, p3]` när `ns_size == 3`. Då skall gälla att /// antingen `&((*p1)->left) == p2` eller `&((*p1)->right == p2)`, och /// antingen `&((*p2)->left) == p3` eller `&((*p2)->right == p3)`. void balance_subtree(node_s **ns[], uint32_t ns_size); #endif
0117b621d487c95690e2f2b2c3f21b084d82515f
674110a627b14db7f74a0e470c4a905c2264aa78
/cpu/src/libmfxvplsw_caps_dec.h
cbfcee78dcc9c6d447df2d984d46d90881eca486
[ "MIT" ]
permissive
ajunlonglive/oneVPL-cpu
4e8d4250f185fa3cce6e6527219d874a93dacb8c
7b7efd66edd099801b1c7a4edb45d5494ec67d7e
refs/heads/master
2023-08-23T10:20:09.856703
2021-10-19T23:58:16
2021-11-01T23:18:10
null
0
0
null
null
null
null
UTF-8
C
false
false
3,066
h
libmfxvplsw_caps_dec.h
/*############################################################################ # Copyright (C) 2020 Intel Corporation # # SPDX-License-Identifier: MIT ############################################################################*/ //NOLINT(build/header_guard) #include "src/libmfxvplsw_caps.h" const mfxU32 decColorFmt_c00_p00_m00[] = { MFX_FOURCC_I420, MFX_FOURCC_I010, }; const DecMemDesc decMemDesc_c00_p00[] = { { MFX_RESOURCE_SYSTEM_SURFACE, { 64, 4096, 8 }, { 64, 4096, 8 }, {}, 2, (mfxU32 *)decColorFmt_c00_p00_m00, }, }; const DecProfile decProfile_c00[] = { { MFX_PROFILE_AV1_MAIN, {}, 1, (DecMemDesc *)decMemDesc_c00_p00, }, }; const mfxU32 decColorFmt_c01_p00_m00[] = { MFX_FOURCC_I420, }; const DecMemDesc decMemDesc_c01_p00[] = { { MFX_RESOURCE_SYSTEM_SURFACE, { 64, 4096, 8 }, { 64, 4096, 8 }, {}, 1, (mfxU32 *)decColorFmt_c01_p00_m00, }, }; const DecProfile decProfile_c01[] = { { MFX_PROFILE_AVC_HIGH, {}, 1, (DecMemDesc *)decMemDesc_c01_p00, }, }; const mfxU32 decColorFmt_c02_p00_m00[] = { MFX_FOURCC_I420, }; const DecMemDesc decMemDesc_c02_p00[] = { { MFX_RESOURCE_SYSTEM_SURFACE, { 64, 4096, 8 }, { 64, 4096, 8 }, {}, 1, (mfxU32 *)decColorFmt_c02_p00_m00, }, }; const mfxU32 decColorFmt_c02_p01_m00[] = { MFX_FOURCC_I010, }; const DecMemDesc decMemDesc_c02_p01[] = { { MFX_RESOURCE_SYSTEM_SURFACE, { 64, 4096, 8 }, { 64, 4096, 8 }, {}, 1, (mfxU32 *)decColorFmt_c02_p01_m00, }, }; const DecProfile decProfile_c02[] = { { MFX_PROFILE_HEVC_MAIN, {}, 1, (DecMemDesc *)decMemDesc_c02_p00, }, { MFX_PROFILE_HEVC_MAIN10, {}, 1, (DecMemDesc *)decMemDesc_c02_p01, }, }; const mfxU32 decColorFmt_c03_p00_m00[] = { MFX_FOURCC_I420, }; const DecMemDesc decMemDesc_c03_p00[] = { { MFX_RESOURCE_SYSTEM_SURFACE, { 64, 4096, 8 }, { 64, 4096, 8 }, {}, 1, (mfxU32 *)decColorFmt_c03_p00_m00, }, }; const DecProfile decProfile_c03[] = { { MFX_PROFILE_JPEG_BASELINE, {}, 1, (DecMemDesc *)decMemDesc_c03_p00, }, }; const DecCodec decCodec[] = { { MFX_CODEC_AV1, {}, MFX_LEVEL_AV1_53, 1, (DecProfile *)decProfile_c00, }, { MFX_CODEC_AVC, {}, MFX_LEVEL_AVC_52, 1, (DecProfile *)decProfile_c01, }, { MFX_CODEC_HEVC, {}, MFX_LEVEL_HEVC_51, 2, (DecProfile *)decProfile_c02, }, { MFX_CODEC_JPEG, {}, MFX_LEVEL_UNKNOWN, 1, (DecProfile *)decProfile_c03, }, }; const mfxDecoderDescription decoderDesc = { { 0, 1 }, {}, 4, (DecCodec *)decCodec, };
4f6f258de4fe487b4a466561185f0c12aa0f0716
c401d983c56d0c6f0519c9d97a737e8d0811c1ab
/final/polalib.h
c9c48c48c9dcd393d60af2eea58064d81cde9952
[]
no_license
NaJarann/PolaSH
cf20c6d67028eabfd09560abe67d4402314da8dd
83c0d95c3ffd3136dc3d19ea95a3046ca9e3f7eb
refs/heads/master
2020-05-17T22:29:57.353626
2010-11-03T22:02:45
2010-11-03T22:02:45
null
0
0
null
null
null
null
UTF-8
C
false
false
360
h
polalib.h
#ifndef _POLALIB_ #define _POLALIB_ #include <sys/types.h> #include <sys/stat.h> #include <string.h> #include <stdio.h> #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <syslog.h> int parser(char *cmd, int flags); int unpars_name(char *name, int inf, int sup, int plus); #endif
b9c56ffa1b2f3df4605bc0d222035964d41654c4
b6034192b353e6d3095a237ec71081ae2dac83c1
/outputs.c
01c5372959c89e1b18d03fb533002144571ddc84
[]
no_license
rhit-brothec1/ece230capstone
d09f95f610ff347e00354fe81dc473352367ac8d
6d35993a07bba8bf7a155a5d9e6c2e676a2ceed9
refs/heads/master
2023-03-10T14:05:43.145527
2021-02-23T15:54:49
2021-02-23T15:54:49
337,772,464
1
0
null
null
null
null
UTF-8
C
false
false
3,619
c
outputs.c
/* * outputs.c * * Description: Helper file for handling outputs. Also includes more in-depth * initialization * * Edited on: Feb 22, 2021 * Author: Cooper Brotherton and Jesus Capo */ #include <outputs.h> #include <ti/devices/msp432p4xx/driverlib/driverlib.h> /*! * \brief This function configures the external LEDs * * This function configures P3.0 and P3.5-3.7 as output pins. * * \return None */ void External_LED_init(void) { GPIO_setAsOutputPin(EXTERNAL_LED_PORT, EXTERNAL_LED_ALL_PINS); GPIO_setOutputLowOnPin(EXTERNAL_LED_PORT, EXTERNAL_LED_ALL_PINS); } Timer_A_PWMConfig servo_PWMConfig = { TIMER_A_CLOCKSOURCE_SMCLK, TIMER_A_CLOCKSOURCE_DIVIDER_2, SERVO_PERIOD, TIMER_A_CAPTURECOMPARE_REGISTER_1, TIMER_A_OUTPUTMODE_RESET_SET, MIDDLE_ANGLE }; /*! * \brief This function configures the servo * * This function sets P2.6 in PWM mode and generates a PWM signal using TimerA1.1 * * \return None */ void Servo_init(void) { GPIO_setAsPeripheralModuleFunctionOutputPin(SERVO_PORT, SERVO_PIN, GPIO_PRIMARY_MODULE_FUNCTION); Timer_A_generatePWM(TIMER_A1_BASE, &servo_PWMConfig); } void outputs_init(void) { External_LED_init(); Servo_init(); } void External_LED_turnonLED(int LED) { GPIO_setOutputLowOnPin(EXTERNAL_LED_PORT, EXTERNAL_LED_ALL_PINS); const int mask = LED == 0 ? 1 : 1 << LED + 4; GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, mask); } void External_LED_turnOff(void) { GPIO_setOutputLowOnPin(EXTERNAL_LED_PORT, EXTERNAL_LED_ALL_PINS); } void External_LED_turnOnHex(int value) { GPIO_setOutputLowOnPin(EXTERNAL_LED_PORT, EXTERNAL_LED_ALL_PINS); // Values are weird b/c the LEDs are 3.7, 3.6, 3.5, 3.0 switch (value) { case 0: break; case 1: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b00000001); break; case 2: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b00100000); break; case 3: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b00100001); break; case 4: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b01000000); break; case 5: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b01000001); break; case 6: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b01100000); break; case 7: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b01100001); break; case 8: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b10000000); break; case 9: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b10000001); break; case 10: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b10100000); break; case 11: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b10100001); break; case 12: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b11000000); break; case 13: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b11000001); break; case 14: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b11100000); break; case 15: GPIO_setOutputHighOnPin(EXTERNAL_LED_PORT, 0b11100001); break; } } void Servo_setAngle(int value) { int multiple = value / 910; servo_PWMConfig.dutyCycle = MAX_ANGLE - multiple * TEN_DEGREES; Timer_A_generatePWM(TIMER_A1_BASE, &servo_PWMConfig); }
4e2c8b4a33334e9eb13a9275ef2ef8dbd1528e08
cd78b4d3d43f555e4a84d02f1b1402372f598192
/trabalho/Trabalho/Trabalho.c
fd21e80d7e8c8789a49187f8d1d44c4f99bf8cb7
[]
no_license
PiresAlexandre/C_programing
ddbf5090296e2aafeaaf47d018cb9b85a77ca62a
f70acb663256eaca1b5b928890525d01b6dbb97a
refs/heads/master
2021-08-23T22:34:45.276496
2017-12-06T22:27:22
2017-12-06T22:27:22
null
0
0
null
null
null
null
UTF-8
C
false
false
747
c
Trabalho.c
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: main.c * Author: Alexandre * * Created on 30 de Novembro de 2017, 10:57 */ #include <stdio.h> #include <stdlib.h> #include "utils.h" #define TAM_MATRIZ 10 #define TOKENS 2 int main(int argc, char** argv) { char tokens[TOKENS]; //VETOR PARA GUARDAR OS TOKENS SELECIONADOS PELOS JOGADORES char matriz[TAM_MATRIZ][TAM_MATRIZ]; //MATRIZ token_escolhido(tokens); criarMatriz(matriz); apresentacao(); printMatriz(matriz); jogadas(matriz,tokens); return (EXIT_SUCCESS); }
ab4dd2e203aa6a34668a65a2dbef05c24516f1ef
83214753e9183327e98af0e6768e9be5385e5282
/kfedit/skill/cuixin-zhang/cuixin.c
5dc987a55c9519b70e6471b61ce09a7a87a89304
[]
no_license
MudRen/hymud
f5b3bb0e0232f23a48cb5f1db2e34f08be99614e
b9433df6cf48e936b07252b15b60806ff55bb2f3
refs/heads/main
2023-04-04T22:44:23.880558
2021-04-07T15:45:16
2021-04-07T15:45:16
318,484,633
1
5
null
null
null
null
GB18030
C
false
false
1,936
c
cuixin.c
// cuixin.c 催心掌「催心」 #include <ansi.h> inherit F_SSERVER; int perform(object me, object target) { int damage; string msg; if( !target ) target = offensive_target(me); if( !target || !target->is_character() || !me->is_fighting(target) ) return notify_fail("「催心」只能对战斗中的对手使用。\n"); if( me->query_temp("weapon")) return notify_fail("你拿着武器怎么能使用「催心」!\n"); if( (int)me->query_skill("cuixin-zhang", 1) < 150 ) return notify_fail(WHT"你的催心掌不够娴熟,还使不出「催心」。\n"NOR); if( (int)me->query_skill("force", 1) < 180 ) return notify_fail(RED"你的内功心法火候不够,使用「催心」会震伤自己的经脉。\n"NOR); if( !target->is_busy() ) return notify_fail(RED"「催心」只能趁忙乱中对对手使用。\n"NOR); if( (int)me->query("neili") < 800 ) return notify_fail("你内力不够了。\n"); msg = HIC "$N阴阴一笑,趁着$n忙乱中递出一掌。\n"NOR; msg += HIB "$N的掌势虽轻,但一股阴深的内力却直透$n心脉。\n"NOR; me->start_busy(2); me->start_perform(3, "催心"); me->add("neili", -300); damage = target->query("eff_qi")/2; if (damage>50000) damage=50000; if ( random(me->query("combat_exp")) > target->query("combat_exp")/3 ) { target->receive_damage("qi", damage/4); target->receive_wound("qi", damage/5); msg += HIR"$n只觉心脉一震,一口鲜血狂喷而出!!!\n"NOR; } else if (random(me->query("combat_exp")) > target->query("combat_exp")/3) { target->receive_damage("qi", damage/3); target->receive_wound("qi", damage/4); msg += HIR"$n急提一口真气护住心脉,一拼之下, 口中不由流出一丝鲜血!\n"NOR; } else { target->add("neili", -300); msg += HIY"$N只觉$n内力浑厚,劲力根本无法攻入。\n"NOR; } message_combatd(msg, me, target); return 1; }
51a204b7bf7f9b2810919cb5b250d2a2d4bfd78b
f3e94f6c6aa95ed4dd591ca34ea1f53a699840b1
/GBOX_CHOI/Image/archer2.h
b31de568b8c852db41c42d33acbcff23c7a61082
[]
no_license
sngn-libby/MiniGameProj
71067834ac139093b2396faa6f06a02bab5030d9
a73025d22288647ac2bc478cc65ac3d974674d05
refs/heads/master
2020-06-25T15:06:33.221546
2019-08-06T12:25:00
2019-08-06T12:25:00
199,346,544
0
0
null
null
null
null
UTF-8
C
false
false
6,271
h
archer2.h
const unsigned short archer2[]={ 0x1e, 0x1e, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x9a6f,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x5295, 0xb5ad,0x9aad,0x6237,0x6237,0x6237,0xd,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0xf3f5,0xbdef,0x501f, 0x6237,0x6237,0x6237,0x32a3,0x15,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0xfbf5,0x9a6d,0x1,0x6237,0x6237,0x6237,0x7bdf, 0x7bdf,0x8421,0x15,0x3a5f,0x2a65,0x801,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x92af,0x1,0x6237,0x6237,0x6237,0xbdef,0xbdef,0xbdef,0x294b, 0x73df,0x8c1f,0xbbd5,0xc5a9,0x5141,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x501d,0x6237,0x6237,0x6237,0x6237,0x7bdf,0x1,0x1,0x1,0x8463,0x73dd, 0x5141,0x4941,0x7243,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x92af,0x6237,0x6237,0x6237,0x6237,0x6237,0x5295,0x1,0x7bdf,0x2109,0x1,0x73df,0x5101,0x83db, 0x7281,0x5101,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x926f, 0x92ad,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x1,0x1,0x1,0x294b,0x6a85,0xbdef,0x5295,0x5141,0x7281, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x501f,0x1,0x6237, 0x6237,0x6237,0x6237,0xbdef,0x7bdf,0x1,0x1,0x4a53,0x1,0x4943,0x294b,0x1,0x7bdf,0x5101,0x6237,0x6237, 0x5295,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0xbdef,0xbded,0x1,0x6237,0x6237,0x6237, 0x5251,0x3a5f,0x8ae9,0xadf1,0x1,0x1,0x1,0x7bdf,0x1,0x7bdf,0x7bdf,0x6237,0x7bdf,0xbdef,0x5295,0x5101, 0x4945,0x7241,0x7281,0x7281,0x5141,0x7281,0x7281,0x5141,0xb5af,0x739d,0x5101,0x7281,0x7281,0x5141,0x5141,0x5101, 0x8423,0x73dd,0xbdef,0x7bdf,0xb5ad,0x7bdf,0x1,0x4a53,0x7bdf,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x501f,0x481d,0x6237,0x6237,0x6237,0x6237,0x1,0xb5ef,0x4a93,0x7bdd,0x5295, 0x2109,0x1,0xbdef,0x294b,0x7bdf,0xbdab,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x92af,0x1,0x6237,0x6237,0x6237,0x7bdf,0x6237,0x6237,0x6237,0x6237,0x5295,0x1,0x5295, 0x1,0x5295,0x6237,0x6237,0x6b5b,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x501f,0x6237,0x6237,0x6237,0x7bdf,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x4a53,0x1,0x8463,0x1, 0x73dd,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0xf3f7,0x6237, 0x6237,0x6237,0x7bdf,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x1,0x1,0x1,0x294b,0x7bdf, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0xf3f7,0x6237,0x6237,0x7bdf, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x1,0x1,0x1,0x5295,0x7bdf,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0xbdef,0x5295,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x294b,0x1,0x5295,0xbdef,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x481d,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x1,0x1,0x7bdf,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x501f,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x7bdf,0x1,0x73df,0x7bdf,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0xbdef,0x6319,0xbded,0x294b,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x7bdf,0x5295,0xb5ad, 0xbdef,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x7bdf,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x7bdf,0x1,0x7bdf,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x1,0x5295,0xbdef,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0xbdef,0x7bdf,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x1,0x5295,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x7bdf,0x318d,0x7bdf,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0xb5af,0x314f,0x5295,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237, 0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0x6237,0xbdef,0xbdef,0xbdef, 0x294b,0x2109,0x7bdf,0x6237};
3eed8c8f39750d064db1d5cf183c02412aa0f0ab
8c13b37eb9bf658dfbb047af3938c33adbf365a6
/_more/c/bad/stackerror2.c
0182073e584e3a35df4f2626f91ece6f510e9094
[]
no_license
ccccourse/co
7ade35efa2232542ae9f0f2a44558cc1609e984a
f43b995a37555b299e3d783fa25e859f82f3e16c
refs/heads/master
2023-03-17T01:12:27.006439
2022-06-24T02:12:28
2022-06-24T02:12:28
194,786,292
0
6
null
2019-07-02T04:08:16
2019-07-02T04:08:15
null
UTF-8
C
false
false
40
c
stackerror2.c
char *f() { char *a="hello"; return a; }
399d318f92131b65ef0e50ae1a1e5540c511342b
dd027f7636212e4e25b1d28b6472d96637f56014
/SoussiMohamedNour/QuestionFile.c
9c773c05a033ec05de31233f3c5001162d70edc4
[]
no_license
TristanMendes/ROBOTA-Cmyths
94d44afc891393df147ec648c4f8c2b6bd0038b5
3a8de9044858d1d758ff7b9402cc58c5d5400854
refs/heads/main
2023-04-02T10:04:54.444032
2021-04-10T10:15:35
2021-04-10T10:15:35
null
0
0
null
null
null
null
UTF-8
C
false
false
2,851
c
QuestionFile.c
#include "structs.h" #include "fn.h" int arr[3] = {1,7,13}; FILE *fp; int getRandom() { int num; srand(time(0)); num = (rand() % (3)); printf("%d\n",num); return arr[num]; } void openfile() { fp = fopen("ques.txt","r"); if(fp == NULL) { printf("Failed to open file . \n"); } else { printf("File opened . \n"); } } void loadtext() { int quline; int answer1line; int answer2line; int answer3line; int answer4line; int correctline; int i; i = 0; //i = quline; openfile(); quline = getRandom(); printf("random : %d \n",quline); answer1line = quline + 1; answer2line = quline + 2; answer3line = quline + 3; answer4line = quline + 4; correctline = quline + 5; while((i <= quline) && fgets(qa.questionText,max_length,fp) != NULL) { //printf("%d \n",i); if(i == quline-1) { printf("QUES : %s \n",qa.questionText); break; } else { i++; } } while( (i <= answer1line ) && (fgets(qa.answerA,max_length,fp) != NULL)) { //printf("%d \n",i); if ( i == answer1line-2) { //fscanf(fp,"%s",&qa.answerA); printf("A1: %s \n",qa.answerA); break; } else { i++; } } while((i <= answer2line) && fgets(qa.answerB,max_length,fp) != NULL) { if( i == answer2line - 3) { printf("A2 : %s \n",qa.answerB); break; } else { i++; } } while((i <= answer3line) && fgets(qa.answerC,max_length,fp) != NULL) { if( i == answer3line - 4) { printf("A3 : %s \n",qa.answerC); break; } else { i++; } } while((i <= answer4line) && fgets(qa.answerD,max_length,fp) != NULL) { if( i == answer4line - 5) { printf("A4 : %s \n",qa.answerD); break; } else { i++; } } while((i <= correctline) && fgets(qa.correctanswer,max_length,fp) != NULL) { if( i == correctline - 6) { printf("CORRECT ANSWER : %s \n",qa.correctanswer); break; } else { i++; } } //fclose(fp); } int answernumber() { int correctnumber; if(strcmp(qa.answerA,qa.correctanswer) == 0) { correctnumber = 1; } else if(strcmp(qa.answerB,qa.correctanswer) == 0) { correctnumber = 2; } else if(strcmp(qa.answerC,qa.correctanswer) == 0) { correctnumber = 3; } else if(strcmp(qa.answerD,qa.correctanswer) == 0) { correctnumber = 4; } return correctnumber; }
b6e8d251a5a2cf2cce3daf91b27f300f935a7655
bbe303cabbc8ea149418cc4a2baee533efb1c68d
/src/observers/observer_value.h
687a404d326a04ccb293358578f722fbcf694847
[]
no_license
mt-inside/coquette
41bb3a805021e62f9112132ea328d0ad43f45282
ab04c47207d38b5dcef4c19850bed894670d45f1
refs/heads/master
2021-01-17T05:56:40.399114
2012-07-01T02:22:58
2012-07-01T02:22:58
28,938,985
0
0
null
null
null
null
UTF-8
C
false
false
301
h
observer_value.h
#ifndef _INCLUDED_OBSERVER_VALUE_H #define _INCLUDED_OBSERVER_VALUE_H #include "observer_base.h" typedef struct _observer_value_t observer_value_t; extern observer_value_t *observer_value_new( engine_reg_t reg, observer_cb_t, void *ctxt ); #endif /* defined _INCLUDED_OBSERVER_VALUE_H */
1fa4748322c25355866310a8b115d6c4529588c0
5230d861ba84a784da096ed31d6dedcdcc8269a0
/push_swap_program/sources/push_b.c
7b0246080038478c68468581b69366fe00d61791
[]
no_license
ahaddad98/push_swap
8825073168693dc3ab8cce1bf0f674141a082b0e
9c54f8751e058677e538704c8909d61098218b7e
refs/heads/master
2023-04-25T16:42:38.078092
2021-05-20T21:25:25
2021-05-20T21:25:25
351,778,669
2
0
null
null
null
null
UTF-8
C
false
false
3,345
c
push_b.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* push_b.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: ahaddad <ahaddad@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/04/16 13:44:11 by ahaddad #+# #+# */ /* Updated: 2021/04/18 16:48:22 by ahaddad ### ########.fr */ /* */ /* ************************************************************************** */ #include "../../includes/push_swap.h" void is_empty_com(t_push_swap *push_swap, char **new_a) { int i; int j; new_a = malloc(sizeof(char *) * (count_line(push_swap->a) + 1)); i = 0; j = 1; while (push_swap->a[j]) { new_a[i] = ft_strdup(push_swap->a[j]); free(push_swap->a[i]); i++; j++; } free(push_swap->a[i]); new_a[i] = NULL; i = 0; while (new_a[i]) { push_swap->a[i] = ft_strdup(new_a[i]); i++; } push_swap->a[i] = NULL; if (new_a) ft_free_2dem_arr((void ***)&new_a); } void is_empty(t_push_swap *push_swap, char **new_a, char **new_b) { new_b = malloc(sizeof(char *) * 2); new_b[0] = ft_strdup(push_swap->a[0]); new_b[1] = NULL; push_swap->b = ft_strdup_2d(new_b); if (new_b) ft_free_2dem_arr((void ***)&new_b); if ((count_line(push_swap->a) - 1) <= 0) { if (push_swap->a) ft_free_2dem_arr((void ***)&push_swap->a); } else is_empty_com(push_swap, new_a); } void isnt_empty_com(t_push_swap *push_swap, char **new_a) { int i; int j; new_a = malloc(sizeof(char *) * (count_line(push_swap->a) + 1)); i = 0; j = 1; while (push_swap->a[j]) { new_a[i] = ft_strdup(push_swap->a[j]); free(push_swap->a[i]); i++; j++; } free(push_swap->a[i]); new_a[i] = NULL; i = 0; while (new_a[i]) { push_swap->a[i] = ft_strdup(new_a[i]); i++; } push_swap->a[i] = NULL; if (new_a) ft_free_2dem_arr((void ***)&new_a); } void isnt_empty(t_push_swap *push_swap, char **new_a, char **new_b, int i) { int j; j = 1; new_b = NULL; new_b = malloc(sizeof(char *) * (count_line(push_swap->b) + 2)); new_b[0] = ft_strdup(push_swap->a[0]); while (push_swap->b[++i]) { new_b[j] = ft_strdup(push_swap->b[i]); free(push_swap->b[i]); j++; } free(push_swap->b); new_b[j] = NULL; push_swap->b = ft_strdup_2d(new_b); if (new_b) ft_free_2dem_arr((void ***)&new_b); if ((count_line(push_swap->a) - 1) <= 0) { if (push_swap->a) ft_free_2dem_arr((void ***)&push_swap->a); } else is_empty_com(push_swap, new_a); } void push_b(t_push_swap *push_swap) { char **new_a; char **new_b; int i; i = -1; new_a = NULL; new_b = NULL; if (push_swap->a == NULL) { push_swap->checker = 1; return ; } if (!push_swap->b) is_empty(push_swap, new_a, new_b); else isnt_empty(push_swap, new_a, new_b, i); if (push_swap->check_flags == 2) ft_putendl_fd("\e[1;31mpb\e[0;27m", 1); else ft_putendl_fd("pb", 1); if (push_swap->check_flags == 3) print_a_b(push_swap); }
bf599835a5fb8fd5b455a9a8408f7905c512fd3e
8adab1e7c9a3db7906bb9f83b0e37d4abafdb50a
/tmk_core/protocol/news.c
4463e8dd4256814624173266b28cfb54c9d6631c
[ "GPL-2.0-only", "LicenseRef-scancode-other-copyleft", "BSD-3-Clause", "GPL-3.0-or-later", "LGPL-2.0-or-later", "LGPL-2.1-or-later", "LicenseRef-scancode-warranty-disclaimer", "GPL-1.0-or-later", "GPL-3.0-only", "GPL-2.0-or-later" ]
permissive
fzf/qmk_toolbox
d7975c0d6af28c19957b57c6f5976ad9b8173c4d
10d6b425bd24b45002555022baf16fb11254118b
refs/heads/master
2022-09-05T11:51:53.952007
2020-06-03T09:31:26
2020-06-03T09:32:27
269,046,233
0
0
MIT
2020-06-03T09:30:37
2020-06-03T09:30:36
null
UTF-8
C
false
false
5,344
c
news.c
/* Copyright 2012 Jun WAKO <wakojun@gmail.com> This software is licensed with a Modified BSD License. All of this is supposed to be Free Software, Open Source, DFSG-free, GPL-compatible, and OK to use in both free and proprietary applications. Additions and corrections to this file are welcome. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include <stdbool.h> #include <avr/io.h> #include <avr/interrupt.h> #include "news.h" void news_init(void) { NEWS_KBD_RX_INIT(); } // RX ring buffer #define RBUF_SIZE 8 static uint8_t rbuf[RBUF_SIZE]; static uint8_t rbuf_head = 0; static uint8_t rbuf_tail = 0; uint8_t news_recv(void) { uint8_t data = 0; if (rbuf_head == rbuf_tail) { return 0; } data = rbuf[rbuf_tail]; rbuf_tail = (rbuf_tail + 1) % RBUF_SIZE; return data; } // USART RX complete interrupt ISR(NEWS_KBD_RX_VECT) { uint8_t next = (rbuf_head + 1) % RBUF_SIZE; if (next != rbuf_tail) { rbuf[rbuf_head] = NEWS_KBD_RX_DATA; rbuf_head = next; } } /* SONY NEWS Keyboard Protocol =========================== Resources --------- Mouse protocol of NWA-5461(Japanese) http://groups.google.com/group/fj.sys.news/browse_thread/thread/a01b3e3ac6ae5b2d SONY NEWS Info(Japanese) http://katsu.watanabe.name/doc/sonynews/ Pinouts ------- EIA 232 male connector from NWP-5461 ------------- \ 1 2 3 4 5 / \ 6 7 8 9 / --------- 1 VCC 2 BZ(Speaker) 3 Keyboard Data(from keyboard MCU TxD) 4 NC 5 GND 6 Unknown Input(to keyboard MCU RxD via schmitt trigger) 7 Mouse Data(from Mouse Ext connector) 8 Unknown Input(to Keyboard MCU Input via diode and buffer) 9 FG NOTE: Two LED on keyboard are controlled by pin 6,8? EIA 232 male connector from NWP-411A ------------- \ 1 2 3 4 5 / \ 6 7 8 9 / --------- 1 VCC 2 BZ(Speaker) 3 Keyboard Data(from keyboard MCU TxD) 4 NC 5 GND 6 NC 7 Mouse Data(from Mouse Ext connector) 8 NC 9 FG NOTE: These are just from my guess and not confirmed. Signaling --------- ~~~~~~~~~~ ____XOO0X111X222X333X444X555X666X777~~~~ ~~~~~~~ Idle Start LSB MSB Stop Idle Idle: High Start bit: Low Stop bit: High Bit order: LSB first Baud rate: 9600 Interface: TTL level(5V) UART NOTE: This is observed on NWP-5461 with its DIP switch all OFF. Format ------ MSB LSB 7 6 5 4 3 2 1 0 bit | | | | | | | | | +-+-+-+-+-+-+-- scan code(00-7F) +---------------- break flag: sets when released Scan Codes ---------- SONY NEWS NWP-5461 ,---. ,------------------------, ,------------------------. ,---------. | 7A| | 01 | 02 | 03 | 04 | 05 | | 06 | 07 | 08 | 09 | 0A | | 68 | 69 | ,-----------. `---' `------------------------' `------------------------' `---------' | 64| 65| 52| ,-------------------------------------------------------------. ,---. ,---------------| | 0B| 0C| 0D| 0E| 0F| 10| 11| 12| 13| 14| 15| 16| 17| 18| 19 | | 6A| | 4B| 4C| 4D| 4E| |-------------------------------------------------------------| |---| |---------------| | 1A | 1B| 1C| 1D| 1E| 1F| 20| 21| 22| 23| 24| 25| 26| 27| | | 6B| | 4F| 50| 51| 56| |---------------------------------------------------------' | |---| |---------------| | 28 | 29| 2A| 2B| 2C| 2D| 2E| 2F| 30| 31| 32| 33| 34| 35 | | 6C| | 53| 54| 55| | |-------------------------------------------------------------| |---| |-----------| 5A| | 36 | 37| 38| 39| 3A| 3B| 3C| 3D| 3E| 3F| 40| 41| 42 | | 6D| | 57| 59| 58| | |-------------------------------------------------------------| |---| |---------------| | 43 | 44 | 45 | 46 | 47 | 48| 49| 4A | | 6E| | 66| 5B| 5C| 5D| `-------------------------------------------------------------' `---' `---------------' */
b3f014933aba97b208333526912e01ac0294dd79
36482c6822e33955c427c457ba8cfc3ef35e0660
/lib/CL/clGetPlatformIDs.c
10eadaaebeecbe41619f41670d2447213e6e5edd
[ "MIT" ]
permissive
ogmacorp/pocl
0e357c1927d316d01972c0e05c90940ace2d339e
8242f5df2a70c8632ac67e8bc400d1d5bdd9de8a
refs/heads/master
2020-04-05T23:04:37.050764
2016-07-06T14:37:13
2016-07-06T14:37:13
62,738,978
4
1
null
2016-07-06T17:06:29
2016-07-06T17:06:28
null
UTF-8
C
false
false
7,593
c
clGetPlatformIDs.c
/* OpenCL runtime library: clGetPlatformIDs() Copyright (c) 2011 Kalle Raiskila Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <assert.h> #include <string.h> #include "pocl_cl.h" #ifdef __GNUC__ #pragma GCC visibility push(hidden) #endif /* The "implementation" of the _cl_device_id struct. * Instantiated in clGetPlatformIDs.c * * TODO: the NULL entries are functions that lack implementation * (or even stubs) in pocl */ #ifdef BUILD_ICD struct _cl_icd_dispatch pocl_dispatch = { &POclGetPlatformIDs, &POclGetPlatformInfo, &POclGetDeviceIDs, &POclGetDeviceInfo, &POclCreateContext, &POclCreateContextFromType, &POclRetainContext, &POclReleaseContext, &POclGetContextInfo, &POclCreateCommandQueue, &POclRetainCommandQueue, /* 10 */ &POclReleaseCommandQueue, &POclGetCommandQueueInfo, NULL /*clSetCommandQueueProperty*/, &POclCreateBuffer, &POclCreateImage2D, &POclCreateImage3D, &POclRetainMemObject, &POclReleaseMemObject, &POclGetSupportedImageFormats, &POclGetMemObjectInfo, /* 20 */ &POclGetImageInfo, &POclCreateSampler, &POclRetainSampler, &POclReleaseSampler, &POclGetSamplerInfo, &POclCreateProgramWithSource, &POclCreateProgramWithBinary, &POclRetainProgram, &POclReleaseProgram, &POclBuildProgram, /* 30 */ &POclUnloadCompiler, &POclGetProgramInfo, &POclGetProgramBuildInfo, &POclCreateKernel, &POclCreateKernelsInProgram, &POclRetainKernel, &POclReleaseKernel, &POclSetKernelArg, &POclGetKernelInfo, &POclGetKernelWorkGroupInfo, /* 40 */ &POclWaitForEvents, &POclGetEventInfo, &POclRetainEvent, &POclReleaseEvent, &POclGetEventProfilingInfo, &POclFlush, &POclFinish, &POclEnqueueReadBuffer, &POclEnqueueWriteBuffer, &POclEnqueueCopyBuffer, /* 50 */ &POclEnqueueReadImage, &POclEnqueueWriteImage, &POclEnqueueCopyImage, &POclEnqueueCopyImageToBuffer, &POclEnqueueCopyBufferToImage, &POclEnqueueMapBuffer, &POclEnqueueMapImage, &POclEnqueueUnmapMemObject, &POclEnqueueNDRangeKernel, &POclEnqueueTask, /* 60 */ &POclEnqueueNativeKernel, &POclEnqueueMarker, &POclEnqueueWaitForEvents, &POclEnqueueBarrier, &POclGetExtensionFunctionAddress, NULL, /* &POclCreateFromGLBuffer, */ &POclCreateFromGLTexture2D, &POclCreateFromGLTexture3D, NULL, /* &POclCreateFromGLRenderbuffer, */ NULL, /* &POclGetGLObjectInfo, 70 */ NULL, /* &POclGetGLTextureInfo, */ NULL, /* &POclEnqueueAcquireGLObjects, */ NULL, /* &POclEnqueueReleaseGLObjects, */ NULL, /* &POclGetGLContextInfoKHR, */ NULL, /* &clUnknown75 */ NULL, /* &clUnknown76 */ NULL, /* &clUnknown77 */ NULL, /* &clUnknown78 */ NULL, /* &clUnknown79 */ NULL, /* &clUnknown80 */ &POclSetEventCallback, &POclCreateSubBuffer, &POclSetMemObjectDestructorCallback, &POclCreateUserEvent, &POclSetUserEventStatus, &POclEnqueueReadBufferRect, &POclEnqueueWriteBufferRect, &POclEnqueueCopyBufferRect, NULL, /* &POclCreateSubDevicesEXT, */ &POclRetainDevice, /* &POclRetainDeviceEXT, */ &POclReleaseDevice, /* &POclReleaseDeviceEXT, */ NULL, /* &clUnknown92 */ &POclCreateSubDevices, &POclRetainDevice, &POclReleaseDevice, &POclCreateImage, NULL, /* &POclCreateProgramWithBuiltInKernels, */ NULL, /* &POclCompileProgram, */ NULL, /* &POclLinkProgram, */ NULL, /* &POclUnloadPlatformCompiler, */ &POclGetKernelArgInfo, &POclEnqueueFillBuffer, &POclEnqueueFillImage, NULL, /* &POclEnqueueMigrateMemObjects, */ &POclEnqueueMarkerWithWaitList, NULL, /* &POclEnqueueBarrierWithWaitList, */ NULL, /* &POclGetExtensionFunctionAddressForPlatform, */ NULL, /* &POclCreateFromGLTexture, */ NULL, /* &clUnknown109 */ NULL, /* &clUnknown110 */ NULL, /* &clUnknown111 */ NULL, /* &clUnknown112 */ NULL, /* &clUnknown113 */ NULL, /* &clUnknown114 */ NULL, /* &clUnknown115 */ NULL, /* &clUnknown116 */ NULL, /* &clUnknown117 */ NULL, /* &clUnknown118 */ NULL, /* &clUnknown119 */ NULL, /* &clUnknown120 */ NULL, /* &clUnknown121 */ NULL, /* &clUnknown122 */ #if (OCL_ICD_IDENTIFIED_FUNCTIONS > 110) &POclCreateCommandQueueWithProperties, NULL, /* &POclCreatePipe,*/ NULL, /* &POclGetPipeInfo,*/ &POclSVMAlloc, &POclSVMFree, &POclEnqueueSVMFree, &POclEnqueueSVMMemcpy, &POclEnqueueSVMMemFill, &POclEnqueueSVMMap, &POclEnqueueSVMUnmap, NULL, /* clCreateSamplerWithProperties */ &POclSetKernelArgSVMPointer, &POclSetKernelExecInfo, NULL, /* &clUnknown136 */ NULL, /* &clUnknown137 */ NULL, /* &clUnknown138 */ NULL, /* &clUnknown139 */ NULL, /* &clUnknown140 */ NULL, /* &clUnknown141 */ NULL, /* &clUnknown142 */ NULL, /* &clUnknown143 */ NULL, /* &clUnknown144 */ NULL, /* &clUnknown145 */ NULL, /* &clUnknown146 */ NULL, /* &clUnknown147 */ NULL, /* &clUnknown148 */ NULL, /* &clUnknown149 */ NULL, /* &clUnknown150 */ NULL, /* &clUnknown151 */ NULL, /* &clUnknown152 */ NULL, /* &clUnknown153 */ NULL, /* &clUnknown154 */ NULL, /* &clUnknown155 */ NULL, /* &clUnknown156 */ NULL, /* &clUnknown157 */ NULL, /* &clUnknown158 */ NULL, /* &clUnknown159 */ NULL, /* &clUnknown160 */ NULL, /* &clUnknown161 */ NULL, /* &clUnknown162 */ NULL, /* &clUnknown163 */ NULL, /* &clUnknown164 */ NULL, /* &clUnknown165 */ #endif #if (OCL_ICD_IDENTIFIED_FUNCTIONS > 127) NULL, /* &clUnknown166 */ NULL, /* &clUnknown167 */ NULL, /* &clUnknown168 */ NULL, /* &clUnknown169 */ NULL, /* &clUnknown170 */ NULL, /* &clUnknown171 */ NULL, /* &clUnknown172 */ NULL, /* &clUnknown173 */ NULL, /* &clUnknown174 */ NULL, /* &clUnknown175 */ NULL, /* &clUnknown176 */ NULL, /* &clUnknown177 */ #endif }; struct _cl_platform_id _platforms[1] = {{&pocl_dispatch}}; #else struct _cl_platform_id _platforms[1] = {}; #endif #ifdef __GNUC__ #pragma GCC visibility pop #endif /* * Get the number of supported platforms on this system. * On POCL, this trivially reduces to 1 - POCL itself. */ CL_API_ENTRY cl_int CL_API_CALL POname(clGetPlatformIDs)(cl_uint num_entries, cl_platform_id * platforms, cl_uint * num_platforms) CL_API_SUFFIX__VERSION_1_0 { const unsigned num = 1; unsigned i; if (platforms != NULL) { if (num_entries < num) return CL_INVALID_VALUE; for (i=0; i<num; ++i) platforms[i] = &_platforms[i]; } if (num_platforms != NULL) *num_platforms = num; return CL_SUCCESS; } POsym(clGetPlatformIDs)
cbba4723ab9c08e265cab2fe8d340f0a7637a0b0
9de3f89b303eeacfee566fc85864d258c1da0417
/HardwareDriver/Usart3_Driver.c
815dc764731ad8757039fa57e3a827844bc0426f
[]
no_license
EmbeddedSystemClass/NCD_YGFXY_POCT_AutoMaticPart
5d0194794cb2483bf201749b4cdd2b03829375b5
416a9795e310305cc22bc1a250450373d198719d
refs/heads/master
2021-01-26T02:46:32.478025
2018-08-29T02:42:15
2018-08-29T02:42:15
null
0
0
null
null
null
null
GB18030
C
false
false
7,929
c
Usart3_Driver.c
/******************************************File Start********************************************** *FileName: *Description: *Author:xsx *Data: ****************************************************************************************************/ /***************************************************************************************************/ /******************************************Header List**********************************************/ /***************************************************************************************************/ #include "Usart3_Driver.h" #include "stdio.h" /***************************************************************************************************/ /******************************************Static Variables*****************************************/ /***************************************************************************************************/ static xQueueHandle xRxQueue; //接收队列 static xQueueHandle xTxQueue; //发送队列 /***************************************************************************************************/ /******************************************Static Methods*******************************************/ /***************************************************************************************************/ static void Usart3_Os_Init(void); static void ConfigUsart3(void); static portBASE_TYPE prvUsart3_ISR_NonNakedBehaviour( void ); /***************************************************************************************************/ /***************************************************************************************************/ /******************************************Main Body************************************************/ /***************************************************************************************************/ /***************************************************************************************************/ /***************************************************************************************************/ /*************************************************************************************************** *FunctionName:Usart3_Os_Init *Description:串口3的队列互斥量创建 *Input:None *Output:None *Author:xsx *Data:2016年4月29日11:50:51 ***************************************************************************************************/ static void Usart3_Os_Init(void) { xRxQueue = xQueueCreate( xRxQueue3_Len, ( unsigned portBASE_TYPE ) sizeof( signed portCHAR ) ); xTxQueue = xQueueCreate( xTxQueue3_Len, ( unsigned portBASE_TYPE ) sizeof( signed portCHAR ) ); } /*************************************************************************************************** *FunctionName:ConfigUsart3 *Description:串口3的端口初始化和配置 *Input:None *Output:None *Author:xsx *Data:2016年4月29日11:52:08 ***************************************************************************************************/ static void ConfigUsart3(void) { USART_InitTypeDef USART_InitStructure; GPIO_InitTypeDef GPIO_InitStructure; NVIC_InitTypeDef NVIC_InitStructure; RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOD, ENABLE); RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE); RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE); GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF; GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz; GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; GPIO_Init(GPIOD, &GPIO_InitStructure); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; GPIO_Init(GPIOB, &GPIO_InitStructure); GPIO_PinAFConfig(GPIOB, GPIO_PinSource10, GPIO_AF_USART3); GPIO_PinAFConfig(GPIOD, GPIO_PinSource9, GPIO_AF_USART3); USART_InitStructure.USART_BaudRate = 9600; USART_InitStructure.USART_WordLength = USART_WordLength_8b; USART_InitStructure.USART_StopBits = USART_StopBits_1; USART_InitStructure.USART_Parity = USART_Parity_No; USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx; USART_Init(USART3, &USART_InitStructure); USART_Cmd(USART3, ENABLE); USART_ITConfig(USART3, USART_IT_RXNE, ENABLE); NVIC_InitStructure.NVIC_IRQChannel = USART3_IRQn; NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 12; NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0; NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; NVIC_Init(&NVIC_InitStructure); } /*************************************************************************************************** *FunctionName:Usart3_Init *Description:串口3外部调用初始化函数 *Input:None *Output:None *Author:xsx *Data:2016年4月29日11:28:56 ***************************************************************************************************/ void Usart3_Init(void) { Usart3_Os_Init(); ConfigUsart3(); } /*************************************************************************************************** *FunctionName:USART3_IRQHandler *Description:串口3的中断函数 *Input:None *Output:None *Author:xsx *Data:2016年4月29日11:29:13 ***************************************************************************************************/ void USART3_IRQHandler(void) { prvUsart3_ISR_NonNakedBehaviour(); } /*************************************************************************************************** *FunctionName:prvUsart3_ISR_NonNakedBehaviour *Description:串口3的中断服务函数 *Input:None *Output:None *Author:xsx *Data:2016年4月29日11:29:32 ***************************************************************************************************/ __attribute__((__noinline__)) static portBASE_TYPE prvUsart3_ISR_NonNakedBehaviour( void ) { signed portCHAR cChar; portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE; portBASE_TYPE retstatus; if(USART_GetITStatus(USART3 , USART_IT_TXE) == SET) { portENTER_CRITICAL(); retstatus = xQueueReceiveFromISR( xTxQueue, &cChar, &xHigherPriorityTaskWoken ); portEXIT_CRITICAL(); if (retstatus == pdTRUE) USART_SendData(USART3, cChar); else USART_ITConfig(USART3, USART_IT_TXE, DISABLE); } if(USART_GetITStatus(USART3, USART_IT_RXNE) == SET) { cChar = USART_ReceiveData(USART3); portENTER_CRITICAL(); xQueueSendFromISR(xRxQueue, &cChar, &xHigherPriorityTaskWoken); portEXIT_CRITICAL(); } return ( xHigherPriorityTaskWoken ); } /*************************************************************************************************** *FunctionName:EnableUsart6TXInterrupt *Description:开启一次发送中断(发送队列中数据) *Input:None *Output:None *Author:xsx *Data:2016年4月29日11:18:28 ***************************************************************************************************/ void EnableUsart3TXInterrupt(void) { USART_ITConfig(USART3, USART_IT_TXE, ENABLE); } /*************************************************************************************************** *FunctionName:GetUsart3RXQueue, GetUsart3TXQueue,GetUsart3Mutex *Description:获取串口3的发送接收队列,和队列互斥量 *Input:None *Output:None *Author:xsx *Data:2016年4月29日11:22:06 ***************************************************************************************************/ xQueueHandle GetUsart3RXQueue(void) { return xRxQueue; } xQueueHandle GetUsart3TXQueue(void) { return xTxQueue; } int fputc(int ch, FILE *f) { // Place your implementation of fputc here // e.g. write a character to the USART USART_SendData(USART1, (uint8_t) ch); // Loop until the end of transmission while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET) {;} return ch; } /****************************************end of file************************************************/
5ac7445736fbd2edecde2a5bf6d6044f71bab907
c838510da78f9176fc47bcd86a22d4891fcd810e
/14/y11.c
79c563d6b21df8a5ecb0830f731e4b6c73721345
[]
no_license
vasily256/c-programming-a-modern-approach
430980f28630be057db5474b5089bbbe26577687
b4e605a28be0ca1039bce71dfb9d725f884482e0
refs/heads/master
2022-12-14T03:16:09.164930
2018-09-27T18:01:11
2018-09-27T18:01:11
null
0
0
null
null
null
null
UTF-8
C
false
false
175
c
y11.c
#include <stdio.h> #define ERROR(str,index) fprintf(stderr, str, index) int main(void) { int index = 10; ERROR("Range error: index = %d\n", index); return 0; }
c272362fda41a82958538361304395b9ae1121bc
f861df0e6a1fca7e0015b2f4b308b9cb71512faa
/MyPGP/libraries/sdes.h
975c03e28e662517156485222a6c1a79c14b5299
[]
no_license
AlexRockzLz/Cryptografia
a1f29fbc0348f35f59371e11f7768474cbcd1dac
09ddb55e99a610049a7f7ed58433ceda4e5de7ac
refs/heads/master
2021-01-13T00:48:56.303231
2015-11-15T22:37:36
2015-11-15T22:37:36
46,239,151
0
0
null
null
null
null
UTF-8
C
false
false
3,809
h
sdes.h
#include "llave.h" static unsigned char sbox0[4][4] = { 1, 0, 3, 2, 3, 2, 1, 0, 0, 2, 1, 3, 3, 1, 3, 2 }; static unsigned char sbox1[4][4] = { 0, 1, 2, 3, 2, 0, 1, 3, 3, 0, 1, 0, 2, 1, 0, 3 }; /*Permutacion Inicial*/ unsigned char IP(unsigned char B){ TByte a=UStoB(0),b=UStoB(B); #ifdef DEBUG printf("\n\tINITIAL PERMUTATION\n"); #endif a.p0=b.p1; a.p1=b.p5; a.p2=b.p2; a.p3=b.p0; a.p4=b.p3; a.p5=b.p7; a.p6=b.p4; a.p7=b.p6; return BtoUS(a); } /*Expansion de llave*/ unsigned char EP(unsigned char B){ TByte a,b=UStoB(B); a.p1=a.p7=b.p4; a.p2=a.p4=b.p5; a.p3=a.p5=b.p6; a.p0=a.p6=b.p7; return BtoUS(a); } /*Inversa de la Permutacion Inicial*/ unsigned char invIP(unsigned char B){ TByte a=UStoB(0),b=UStoB(B); #ifdef DEBUG printf("\n\tINVERSE PERMUTATION\n"); #endif a.p0=b.p3; a.p1=b.p0; a.p2=b.p2; a.p3=b.p4; a.p4=b.p6; a.p5=b.p1; a.p6=b.p7; a.p7=b.p5; return BtoUS(a); } /*Permutacion sobre 4 bits*/ unsigned char P4(unsigned char B){ TByte a,b=UStoB(B); a.p4=b.p5; a.p5=b.p7; a.p6=b.p6; a.p7=b.p4; return BtoUS(a)&0x0F; } /*Funcion de Complejidad FK*/ unsigned char fk(unsigned char IP,unsigned char k){ unsigned char B,sres=0; int r0,c0,r1,c1,s0,s1; TByte b; #ifdef DEBUG printf("\n\tFK FUNCTION\n"); #endif /*Aplicamos EP a lo recibido por la funcion IP*/ B=EP(IP); #ifdef DEBUG printTByte("\t\tEP:",UStoB(B),8); #endif /*Xor con la llave*/ B=k^B; #ifdef DEBUG printTByte("\t\tKEY:",UStoB(k),8); printTByte("\t\tXOR:",UStoB(B),8); #endif /*pasamos el valor de B al tipo de dato TByte para operar mas facilmente*/ b=UStoB(B); /*Basados en el TByte armamos los numeros correspondientes a filas y columnas*/ r0=b.p0*2 + b.p3; c0=b.p1*2 + b.p2; r1=b.p4*2 + b.p7; c1=b.p5*2 + b.p6; #ifdef SBOXINDEX printf("\t\tSBOX INDEX(%d,%d):(%d,%d)\n",c0,r0,c1,r1); #endif /*Sustituimos basados en las Sbox*/ s0=sbox0[r0][c0]; s1=sbox1[r1][c1]; #ifdef SBOXSHOW printf("\t\tSBOX (%d):(%d)\n",s0,s1); #endif /*creamos la palabra de 4 bits*/ sres=(s0<<2|s1);//s&(unsigned char)0x0F; #ifdef DEBUG printTByte("\t\tSBOX RESULT:",UStoB(sres),4); #endif /*Permutamos a 4 bits*/ sres=P4(sres); #ifdef DEBUG printTByte("\t\tP4:",UStoB(sres),4); #endif /*xor con los 4 bits mas significativos de IP*/ sres=(IP&0xF0)^(sres)<<4; #ifdef DEBUG printTByte("\t\tXOR:",UStoB(sres>>4),4); #endif /*Retornamos el valor del XOR anterior como mas significativo con los 4 bits menos significativos de la IP*/ return sres|(0x0F & IP);/*Nota: usamos la mascara anterior para quitar la parte mas significativa de IP*/ } unsigned char SW(unsigned char B){ /*Aplicamos mascaras para que la parte mas y menos significativa de 4 bits por bloque sean removidas para despues poder aplicar corrimiento y sumar*/ #ifdef DEBUG printf("\n\tSWITCH FUNCTION\n"); #endif return ((B & 0x0F)<<4) + ((B & 0xF0)>>4); } unsigned char SDES(unsigned char m, unsigned char k1 ,unsigned char k2){ unsigned char c; #ifdef DEBUG printf("SDES ENCRYPTION/DECRIPTION\n"); printTByte("\tSIMBOL:",UStoB(m),8); #endif c=IP(m); #ifdef DEBUG printTByte("\t\tIP:",UStoB(c),8); #endif c=fk(c,(unsigned char)k1); #ifdef DEBUG printTByte("\tFK(1):",UStoB(c),8); #endif c=SW(c); #ifdef DEBUG printTByte("\t\tSW:",UStoB(c),8); #endif c=fk(c,(unsigned char)k2); #ifdef DEBUG printTByte("\tFK(2):",UStoB(c),8); #endif c=invIP(c); #ifdef DEBUG printTByte("\t\tIP-1:",UStoB(c),8); putchar('\n'); #endif return c; }
07ba76fccda531d3f44a30021ef5ba0e1c042e0a
0c9f3d9fb0b1a55d77d367a7a28628dd387d6ab3
/Include/GenLibName.h
8b67241c152f6d65fd1152c8f08baa0ca7edf74a
[]
no_license
Cavaler/OwnLib
edd4b651ffbad14457d117d8224338856a263dc2
51260f479317627fe9b9fe025444a0422a1165bb
refs/heads/master
2023-03-27T17:57:33.746464
2021-03-31T13:50:35
2021-03-31T13:50:35
72,223,928
0
0
null
null
null
null
UTF-8
C
false
false
938
h
GenLibName.h
#ifdef _DLL #define LIB_RUNTIME "MD" #else #define LIB_RUNTIME "MT" #endif #ifdef _DEBUG #define LIB_DEBUG "d" #else #define LIB_DEBUG "" #endif #ifdef __INTEL_COMPILER #define LIB_COMPILER "I" #else #define LIB_COMPILER "8" #endif #ifdef _UNICODE #define LIB_UNICODE "U" #else #define LIB_UNICODE "" #endif #ifdef _WIN64 #define LIB_PLATFORM "x64" #else #define LIB_PLATFORM "" #endif #ifndef LIB_APPEND #define LIB_APPEND "" #endif // Corresponding user macros: // $(LibSuffix) LIB_RUNTIME LIB_DEBUG LIB_COMPILER LIB_UNICODE // $(LibPlatform) LIB_PLATFORM // $(LibAppend) LIB_APPEND #define LIB_SPEC LIB_RUNTIME LIB_DEBUG LIB_COMPILER LIB_UNICODE LIB_PLATFORM LIB_APPEND #pragma comment(lib, LIB_NAME LIB_SPEC ".lib") #undef LIB_PLATFORM #undef LIB_RUNTIME #undef LIB_DEBUG #undef LIB_COMPILER #undef LIB_UNICODE #undef LIB_SPEC #undef LIB_NAME #undef LIB_APPEND
7c90c0b2e07cc27e5cfd48611f0d70fd0d912ed7
75113ad608d65b2bc7b82bbaf82a800ea018ba8e
/day10/ex06/main.c
b2cc12a74bdac9b94a447bd72bc517e99d29ebf7
[]
no_license
jujunul/42-transfer
40ecbdaf3e6827f0fa0649a620aa4345e4c35d3e
5199e6a4b35794143954cc798fd3b5e75708a987
refs/heads/master
2021-01-14T09:08:18.021127
2016-09-22T17:26:59
2016-09-22T17:26:59
68,454,139
0
1
null
null
null
null
UTF-8
C
false
false
1,909
c
main.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: juthierr <juthierr@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/09/12 14:14:03 by juthierr #+# #+# */ /* Updated: 2016/09/12 21:11:12 by juthierr ### ########.fr */ /* */ /* ************************************************************************** */ #include "fonctions.h" int doop(int a, int calc, int b) { int result; int (*p[5]) (int, int); p[0] = add; p[1] = less; p[2] = multi; p[3] = div; p[4] = mod; if (calc == -1) return (0); result = (*p[calc])(a, b); return (result); } int ft_test(char **argv) { int calc; calc = -1; if (argv[2][0] == '+' && argv[2][1] == '\0') calc = 0; if (argv[2][0] == '-' && argv[2][1] == '\0') calc = 1; if (argv[2][0] == '*' && argv[2][1] == '\0') calc = 2; if (argv[2][0] == '/' && argv[2][1] == '\0') calc = 3; if (argv[2][0] == '%' && argv[2][1] == '\0') calc = 4; if (argv[2][0] == '/' && ft_atoi(argv[3]) == 0) { calc = -1; ft_putstr("Stop : division by zero"); } if (argv[2][0] == '%' && ft_atoi(argv[3]) == 0) { calc = -1; ft_putstr("Stop : modulo by zero"); } return (calc); } int main(int argc, char **argv) { int calc; if (argc == 4) { calc = ft_test(argv); ft_putnbr(doop(ft_atoi(argv[1]), calc, ft_atoi(argv[3]))); ft_putchar('\n'); } return (0); }
c1fc5a99e05bb7a79e1b0a7f83eab8eb5b2118b8
306a349b03ad2bef3a4c953f78298842b8e30222
/AppWarrior/Headers/UMessageSys.h
23b07993ccdeaea543cd9667986930805eb5a7ed
[]
no_license
Schala/GLoarbLine
812fcc0f0b6d99fde7be880b3bf903903cfa17bc
9e700253050afd3b0968a424f320a3908eeb17e9
refs/heads/master
2021-01-10T15:33:39.220985
2016-04-12T00:13:28
2016-04-12T00:13:28
55,819,341
0
1
null
null
null
null
UTF-8
C
false
false
2,791
h
UMessageSys.h
/* (c)2003 Hotsprings Inc. Licensed under GPL - see LICENSE in HotlineSources diresctory */ #pragma once #include "typedefs.h" #include "MoreTypes.h" /* * Types */ typedef class TMessageSysObj *TMessageSys; // message system class UMessageSys { public: static TMessageSys New(); static void Dispose(TMessageSys inSys); static void SetDefaultProc(TMessageSys inSys, TMessageProc inProc, void *inContext); static void GetDefaultProc(TMessageSys inSys, TMessageProc& outProc, void*& outContext); static void Post(TMessageSys inSys, Uint32 inMsg, const void *inData = nil, Uint32 inDataSize = 0, Int16 inPriority = priority_Normal, TMessageProc inProc = nil, void *inContext = nil, void *inObject = nil); static void Replace(TMessageSys inSys, Uint32 inMsg, const void *inData = nil, Uint32 inDataSize = 0, Int16 inPriority = priority_Normal, TMessageProc inProc = nil, void *inContext = nil, void *inObject = nil); static void Flush(TMessageSys inSys, TMessageProc inProc, void *inContext, void *inObject = nil); static bool Peek(TMessageSys inSys, Uint32 inMsg, void *outData, Uint32& ioDataSize, TMessageProc inProc, void *inContext, void *inObject = nil); static bool Execute(TMessageSys inSys, const Uint32 inTypeList[] = nil); }; // object interface class TMessageSysObj { public: void SetDefaultProc(TMessageProc inProc, void *inContext) { UMessageSys::SetDefaultProc(this, inProc, inContext); } void GetDefaultProc(TMessageProc& outProc, void*& outContext) { UMessageSys::GetDefaultProc(this, outProc, outContext); } void Post(Uint32 inMsg, const void *inData = nil, Uint32 inDataSize = 0, Int16 inPriority = priority_Normal, TMessageProc inProc = nil, void *inContext = nil, void *inObject = nil) { UMessageSys::Post(this, inMsg, inData, inDataSize, inPriority, inProc, inContext, inObject); } void Replace(Uint32 inMsg, const void *inData = nil, Uint32 inDataSize = 0, Int16 inPriority = priority_Normal, TMessageProc inProc = nil, void *inContext = nil, void *inObject = nil) { UMessageSys::Replace(this, inMsg, inData, inDataSize, inPriority, inProc, inContext, inObject); } void Flush(TMessageProc inProc, void *inContext, void *inObject = nil) { UMessageSys::Flush(this, inProc, inContext, inObject); } bool Peek(Uint32 inMsg, void *outData, Uint32& ioDataSize, TMessageProc inProc, void *inContext, void *inObject = nil) { return UMessageSys::Peek(this, inMsg, outData, ioDataSize, inProc, inContext, inObject); } bool Execute(const Uint32 inTypeList[]) { return UMessageSys::Execute(this, inTypeList); } void operator delete(void *p) { UMessageSys::Dispose((TMessageSys)p); } protected: TMessageSysObj() {} // force creation via UMessageSys };
1fbc20130e7f6d4772deb9f20a8080ab8a8ec592
6b80448c76a99f3f022379f0e2dcad4c57f1498b
/Modul.h
5d6b5727dca057a390d9776e46c94b7f2d95b382
[]
no_license
nolfino/Inselbus
d3cb1577f9b0e1e7cd55924b5b6a8cda05d8e77c
b145db4170f092466e012d0352d8a0e05acae054
refs/heads/master
2021-01-01T05:35:33.730331
2015-04-29T16:06:50
2015-04-29T16:06:50
34,803,773
0
0
null
null
null
null
UTF-8
C
false
false
1,289
h
Modul.h
/* * Modul.h * * Created on: 28.04.2015 * Author: nolfic */ #ifndef MODUL_H_ #define MODUL_H_ #include <stdint.h> #include <stdbool.h> #include "inc/hw_ints.h" #include "inc/hw_memmap.h" #include "driverlib/debug.h" #include "driverlib/gpio.h" #include "driverlib/interrupt.h" #include "driverlib/pin_map.h" #include "driverlib/rom.h" #include "driverlib/rom_map.h" #include "driverlib/sysctl.h" #include "driverlib/uart.h" typedef struct { unsigned char deviceAddress; unsigned char setLayer; unsigned char lpduMaxLength; unsigned char auxiliaryControls; unsigned char dc24v; unsigned char chipID; unsigned int firmwareVersion0; unsigned int firmwareVersion1; unsigned char reserved; unsigned char cimiVersion; unsigned int cimiCapabilities0; unsigned int cimiCapabilities1; }ModOut; typedef struct { unsigned char deviceAddress; unsigned char setLayer; unsigned char lpduMaxLength; unsigned char auxiliaryControls; unsigned char dc24v; unsigned char chipID; unsigned int firmwareVersion0; unsigned int firmwareVersion1; unsigned char reserved; unsigned char cimiVersion; unsigned int cimiCapabilities0; unsigned int cimiCapabilities1; }ModIn; ModOut out; ModIn in; void prepareMessage(uint8_t *pointer, uint8_t length); #endif /* MODUL_H_ */
eb95aa494a94ed56df7f82f9a19ae38eeee5abaf
3cf3dfe89dfb13c1fc5f8b4e858ef5932abb1170
/week 9 Ex/2학기 9주차 예제/2학기 9주차 예제/2.c
ee2add742cd981f2f3424af510dd0242b115ebdb
[]
no_license
ppeanut450/C_Programming_2
f2d2f4fc0b3e3854af0bb411e66b774fee2820db
37a30e29c4531e214056885991ad20e0a3290ce1
refs/heads/master
2023-01-19T20:06:27.139825
2020-11-30T15:49:20
2020-12-01T15:49:20
301,815,011
1
0
null
null
null
null
UHC
C
false
false
589
c
2.c
#include <stdio.h> int main(void) { FILE* fp; char fname[100]; int number, count = 0; char name[20]; float score, total = 0.0; printf("성적 파일 이름을 입력하시오: "); scanf_s("%s", fname, 100); fopen_s(&fp, fname, "rt"); if (fp == NULL) { fprintf(stderr, "성적 파일 %s을 열 수 없습니다.\n", fname); exit(1); } // 파일에서 성적을 읽어서 평균을 구한다. while (!feof(fp)) { fscanf_s(fp, "%d %s %f", &number, name, 20, &score); total += score; count++; } printf("평균 = %f\n", total / count); fclose(fp); return 0; }
b664935f1cfd921e9cdade238d6fb70fdccddec0
d2e0fb3fdad7fc2cb70894591d358f40d8db13d2
/libc/src/unistd/access.c
9017c6f20132c0da47f334dd6b5cc53c371d3363
[ "ISC", "MIT" ]
permissive
dennis95/dennix
54c568485862a0799664033eb0717abb028d3924
f898bb2d27346f6257df1650a002ee929e66e7fa
refs/heads/master
2023-08-17T06:54:17.274650
2023-07-10T16:06:35
2023-07-10T16:06:35
55,073,371
168
15
null
null
null
null
UTF-8
C
false
false
1,554
c
access.c
/* Copyright (c) 2016, 2019, 2022 Dennis Wölfing * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* libc/src/unistd/access.c * Checks accessibility of a file. (POSIX2008, called from C89) */ #define stat __stat #include <errno.h> #include <stdbool.h> #include <unistd.h> #include <sys/stat.h> int __access(const char* path, int mode) { struct stat st; if (stat(path, &st) < 0) { return -1; } bool accessible = true; if (mode & R_OK) { accessible &= !!(st.st_mode & (S_IRUSR | S_IRGRP | S_IROTH)); } if (mode & W_OK) { accessible &= !!(st.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)); } if (mode & X_OK) { accessible &= !!(st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)); } if (!accessible) { errno = EACCES; return -1; } return 0; } __weak_alias(__access, access);
cd0be900820f552dcd79bd233621cc1e368f1b36
4966e982ccbb880f6a3d8687ff9ff4b9858206df
/kern/trap/TDispatch/import.h
e9da65051c0106b74214f4ab16aed6e040893b6d
[]
no_license
atramui11/synthesizer
daa39da4fe75568751e2bb1eff505e327a47ddf7
2a3ab715bc8a2f808391a1fe5ee1383907ee7b46
refs/heads/master
2021-10-22T13:52:02.743210
2019-03-11T10:09:34
2019-03-11T10:09:34
174,971,949
1
0
null
null
null
null
UTF-8
C
false
false
373
h
import.h
#ifndef _KERN_TRAP_TDISPATCH_H_ #define _KERN_TRAP_TDISPATCH_H_ #ifdef _KERN_ unsigned int syscall_get_arg1(tf_t *tf); void syscall_set_errno(tf_t *tf, unsigned int errno); void sys_puts(tf_t *tf); void sys_readline(tf_t *tf); void sys_spawn(tf_t *tf); void sys_yield(tf_t *tf); void sys_playsound(tf_t *tf); #endif /* _KERN_ */ #endif /* !_KERN_TRAP_TDISPATCH_H_ */
5d9a54df7d498dcb509e41ab7b91514810590470
9c80c5800b3071f9ad878ea4073b76f0b4708086
/source/kernel/arch/i386/src/spinlock.c
1dd5be3261c04d9df4097c368c179a4393706ed9
[]
no_license
csko/yaosp
1cab3862bca704380dc4762596a99e37ad816abc
f1040e652baf1dad3d94f7c917de66cb7ec73cf6
refs/heads/master
2021-01-01T16:55:49.010870
2010-12-15T14:34:30
2010-12-15T14:34:30
3,518,474
3
1
null
null
null
null
UTF-8
C
false
false
2,032
c
spinlock.c
/* Spinlock implementation * * Copyright (c) 2008, 2009 Zoltan Kovacs * * This program is free software; you can redistribute it and/or modify * it under the terms of version 2 of the GNU General Public License * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include <macros.h> #include <arch/spinlock.h> #include <arch/interrupt.h> #include <console.h> int init_spinlock( spinlock_t* lock, const char* name ) { lock->name = name; lock->enable_interrupts = false; #ifdef ENABLE_SMP atomic_set( &lock->locked, 0 ); #endif /* ENABLE_SMP */ return 0; } void spinlock( spinlock_t* lock ) { ASSERT( is_interrupts_disabled() ); #ifdef ENABLE_SMP while ( atomic_swap( &lock->locked, 1 ) == 1 ) { __asm__ __volatile__( "pause" ); } #endif /* ENABLE_SMP */ } void spinunlock( spinlock_t* lock ) { ASSERT( is_interrupts_disabled() ); #ifdef ENABLE_SMP atomic_set( &lock->locked, 0 ); #endif /* ENABLE_SMP */ } void spinlock_disable( spinlock_t* lock ) { bool ints; ints = disable_interrupts(); #ifdef ENABLE_SMP spinlock( lock ); #endif /* ENABLE_SMP */ lock->enable_interrupts = ints; } void spinunlock_enable( spinlock_t* lock ) { bool ints; ints = lock->enable_interrupts; #ifdef ENABLE_SMP spinunlock( lock ); #endif /* ENABLE_SMP */ if ( ints ) { enable_interrupts(); } } bool spinlock_is_locked( spinlock_t* lock ) { #ifdef ENABLE_SMP return ( atomic_get( &lock->locked ) == 1 ); #else return is_interrupts_disabled(); #endif /* ENABLE_SMP */ }
16a85795e0df095c7c35478cb3172e1342ae517e
01ad01b088e7a73a05e1ebef6781f931b72adb84
/c/infect.c
79bbb740e0d19b38a989c5162a972b347deb0244
[]
no_license
NotHawthorne/Woody_Woodpacker
21ac8d8733e1741c1ec94c028c0d7ed34676c155
65e18e1fce78737313f8943f4989ac686d560154
refs/heads/master
2021-02-28T20:52:42.870984
2020-03-11T21:00:12
2020-03-11T21:00:12
245,731,650
0
0
null
null
null
null
UTF-8
C
false
false
3,219
c
infect.c
#include "woody.h" #define _BUFFER_SIZE 256 const uint8_t buffer[_BUFFER_SIZE] = { 0xb8, 0x01, 0x00, 0x00, 0x00, 0xbf, 0x01, 0x00, 0x00, 0x00, 0x48, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x05, 0xe9, 0xca, 0xfa, 0xbe, 0xba, 0x2e, 0x2e, 0x2e, 0x2e, 0x57, 0x4f, 0x4f, 0x44, 0x59, 0x2e, 0x2e, 0x2e, 0x2e, 0x0a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; static int load_file(char *fname, struct s_woody *w) { Elf64_Shdr *sect; Elf64_Shdr *strtab; //Elf64_Shdr new; void *tst; unsigned long new_os; int fd; if ((w->fd = open(fname, O_RDONLY)) < 0 || (fstat(w->fd, &w->s) < 0)) return (0); w->header = mmap(0, w->s.st_size, PROT_WRITE, MAP_PRIVATE, w->fd, 0); printf("%ld\n", w->header->e_entry); printf("%d\n", w->header->e_shnum); tst = w->header; sect = tst + w->header->e_shoff; strtab = &sect[w->header->e_shstrndx]; char *strs = tst + strtab->sh_offset; new_os = 0; for (int i = 0; i != w->header->e_shnum; i++) { new_os = (sect->sh_offset + sect->sh_size); printf("%s %lu %ld\n", (char*)(strs + sect->sh_name), sect->sh_offset, sect->sh_addr); sect++; } w->header->e_entry = w->header->e_shentsize + 8; w->header->e_shoff += _BUFFER_SIZE; fd = open("new", O_CREAT | O_RDWR); write(fd, (void*)w->header, w->header->e_entry); write(fd, buffer, _BUFFER_SIZE); write(fd, ((void*)w->header) + w->header->e_entry, w->s.st_size - w->header->e_entry); printf("%ld %ld\n", w->s.st_size, w->header->e_entry); close(fd); /*new.sh_name = 0x0; new.sh_type = SHT_PROGBITS; new.sh_flags = SHF_EXECINSTR; new.sh_addr = sect->sh_addr + sect->sh_size; new.sh_offset*/ printf("PUT NEW SECTION HEADER AT OFFSET %lu\n", w->header->e_entry); return (1); } int infect(char *fname) { //Elf64_Ehdr *h; //Elf64_Shdr *s; struct s_woody w; return (load_file(fname, &w)); } int main(int argc, char **argv) { if (argc != 2) return (0); return (infect(argv[1])); }
92a3679f933f7bb10345f24766fc0fdc64f4e2c2
088d8fb9cdb82ac5a1f6139f7b22f4b29fa28694
/Factori/Factori/Prime.h
a8c8c6a811d7eedc22c6c078d7ec9c75b8339d6b
[]
no_license
nasrak62/Operating_Systems_Ex2
ec65914aff8842f22f5fc4dbaa35967f79765a79
0eaf620afda83d418b350e0049183d0a29af3ad2
refs/heads/main
2023-02-23T14:59:48.302197
2021-01-17T16:15:29
2021-01-17T16:15:29
312,782,504
0
0
null
null
null
null
UTF-8
C
false
false
101
h
Prime.h
#ifndef PRIME #define PRIME int how_many_prime_factors(int n); int* primeFactors(int n); #endif
b6f036639129137c48a54c5092d723284c61fba7
200bf261ea23c0950d35f4008b6562bbc9fcce2a
/include/scanfile.h
1d2742fdc40f4bae2520a52aecba3e3f51424831
[]
no_license
Berna96/thesisLT
e1e7f3ef490baa1c67bbc31d2bf6ce9112711e73
032b3ff06e009d2565efc53e43c0fb014534df64
refs/heads/master
2021-04-09T14:52:51.899111
2018-09-07T10:12:52
2018-09-07T10:12:52
125,550,168
0
0
null
2018-09-06T19:05:49
2018-03-16T17:41:31
C
UTF-8
C
false
false
1,888
h
scanfile.h
#include "utility.h" typedef struct ports_infos{ int num_ports; char** port; } ports_info; ports_info* scan_file(FILE* file){ char buffer_tmp[101]; int index=0; int int_index=0; int len_ports=0; ports_info *ports; unsigned int len_buf=0; char * buffer; ports=(ports_info *)ec_malloc(sizeof(ports_info)); while(!feof(file)){ if (fgets(buffer_tmp,100,file)==NULL) break; len_buf=len_buf+strlen(buffer_tmp); } //ATTENZIONE: il buffer contiene come ultimo carattere \n e quindi la //lunghezza vera è len(buff)-1 buffer=ec_malloc(sizeof(char)*(len_buf)); fseek(file, 0, SEEK_SET); while(!feof(file)){ if (fgets(buffer_tmp,100,file)==NULL) break; strcat(buffer,buffer_tmp); } *(buffer+len_buf-1)='\0'; strcat(buffer, ";"); //len_buf--; //calcolo del numero di porte for(int i=0; i<len_buf;i++){ if(buffer[i]==';') ports->num_ports++; } //prima allocazione ports->port=(char **)ec_malloc(sizeof(char *)*(ports->num_ports+1)); *(ports->port+ports->num_ports)='\0'; //calcolo lunghezza delle porte e allocazione for(int i=0; i<len_buf;i++){ if(buffer[i]!=';'){ len_ports++; }else{ *(ports->port+index)=(char *)ec_malloc(sizeof(char)*(len_ports+1)); *(*(ports->port+index)+len_ports)='\0'; index++; len_ports=0; } } index=0; int_index=0; //inizializzazione for(int i=0; i<len_buf;i++){ if(buffer[i]!=';'){ *(*(ports->port+index)+int_index)=buffer[i]; int_index++; }else{ index++; int_index=0; } } return ports; }
76a8c292488761a15730a6c42c3b644f98de9ee6
da38acd830cfc4e1eb151b062d4271a5bd434d5c
/I.P_2/Marcio/Projeto I.P2/Avaliações.h
2526b198c3cdb97e366ebde08b0f8d18da9afbc1
[]
no_license
GustC/Listas
c310dce81003f6f507833643c48006ca88c57c0b
1e38a7f9f0c5b226c1b2ee8ca73a4e5d9630b20e
refs/heads/master
2021-07-09T10:46:55.849285
2021-04-23T12:29:17
2021-04-23T12:29:17
65,264,657
0
0
null
null
null
null
UTF-8
C
false
false
322
h
Avaliações.h
#include <stdio.h> #include <stdlib.h> #include <ctype.h> #include "structs.h" void menuAvaliacoes(FILE* avaliacoes, FILE* produtos, FILE*usuarios,int log); void avaliacao(FILE* avaliacoes, FILE* produtos, FILE*usuarios,int log); void manutencao4(FILE* avaliacoes); int buscaAvaliacao(FILE* arq, int codigoAux);
e4f23b9ae4b64b7d80c45e2120e138e03d9bbd83
89cae07469e9a4344efe5b27a1571925c6ce7a47
/Pods/Headers/Public/KinveyKit/KinveyHeaderInfo.h
c48b49d0f1cc154e36b90ada6f4fcee7967912b8
[]
no_license
IsaacQiao/SportsLFG
40ffdfc3e6e2cdfeb0e359d6d8534d4a95e0e3d5
6894b4f537cbf0a98f928e3cc633a837829f0f53
refs/heads/master
2020-03-22T07:07:36.799085
2018-05-09T01:37:52
2018-05-09T01:37:52
45,280,310
1
0
null
2015-10-30T22:46:14
2015-10-30T22:46:14
null
UTF-8
C
false
false
72
h
KinveyHeaderInfo.h
../../../KinveyKit/KinveyKit-1.39.0/include/KinveyKit/KinveyHeaderInfo.h
0b1f633467066a9688a6b5a4e062fd178088186e
0c30afc8da712c95cf912cba5a7859af52420c17
/crypto/http/http_lib.c
5da5b1e724f5200f2cd4d123b6a6b393423b57c1
[ "Apache-2.0", "LicenseRef-scancode-proprietary-license" ]
permissive
freetls/freetls
5531b779301ad688a534baf807a92c24a3c6d3fb
246efec78a3bee4d9170232a1e5bbddf5a84893e
refs/heads/master
2022-12-07T09:38:17.068362
2020-08-29T13:39:26
2020-08-29T13:39:26
291,015,706
3
0
Apache-2.0
2020-08-31T09:27:34
2020-08-28T10:14:18
C
UTF-8
C
false
false
4,908
c
http_lib.c
/* * Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html */ #include <openssl/http.h> #include <openssl/httperr.h> #include <openssl/err.h> #include <string.h> #include "internal/cryptlib.h" /* for ossl_assert() */ #include "http_local.h" /* * Parse a URL and split it up into host, port and path components and * whether it indicates SSL/TLS. Return 1 on success, 0 on error. */ int OSSL_HTTP_parse_url(const char *url, char **phost, char **pport, char **ppath, int *pssl) { char *p, *buf; char *host; const char *port = OSSL_HTTP_PORT; size_t https_len = strlen(OSSL_HTTPS_NAME); if (!ossl_assert(https_len >= strlen(OSSL_HTTP_NAME))) return 0; if (url == NULL) { HTTPerr(0, ERR_R_PASSED_NULL_PARAMETER); return 0; } if (phost != NULL) *phost = NULL; if (pport != NULL) *pport = NULL; if (ppath != NULL) *ppath = NULL; if (pssl != NULL) *pssl = 0; /* dup the buffer since we are going to mess with it */ if ((buf = OPENSSL_strdup(url)) == NULL) goto err; /* Check for initial colon */ p = strchr(buf, ':'); if (p == NULL || (size_t)(p - buf) > https_len) { p = buf; } else { *(p++) = '\0'; if (strcmp(buf, OSSL_HTTPS_NAME) == 0) { if (pssl != NULL) *pssl = 1; port = OSSL_HTTPS_PORT; } else if (strcmp(buf, OSSL_HTTP_NAME) != 0) { goto parse_err; } /* Check for double slash */ if ((p[0] != '/') || (p[1] != '/')) goto parse_err; p += 2; } host = p; /* Check for trailing part of path */ p = strchr(p, '/'); if (ppath != NULL && (*ppath = OPENSSL_strdup(p == NULL ? "/" : p)) == NULL) goto err; if (p != NULL) *p = '\0'; /* Set start of path to 0 so hostname[:port] is valid */ p = host; if (host[0] == '[') { /* ipv6 literal */ host++; p = strchr(host, ']'); if (p == NULL) goto parse_err; *p = '\0'; p++; } /* Look for optional ':' for port number */ if ((p = strchr(p, ':'))) { *p = '\0'; port = p + 1; } if (phost != NULL && (*phost = OPENSSL_strdup(host)) == NULL) goto err; if (pport != NULL && (*pport = OPENSSL_strdup(port)) == NULL) goto err; OPENSSL_free(buf); return 1; parse_err: HTTPerr(0, HTTP_R_ERROR_PARSING_URL); err: if (ppath != NULL) { OPENSSL_free(*ppath); *ppath = NULL; } if (pport != NULL) { OPENSSL_free(*pport); *pport = NULL; } if (phost != NULL) { OPENSSL_free(*phost); *phost = NULL; } OPENSSL_free(buf); return 0; } int http_use_proxy(const char *no_proxy, const char *server) { size_t sl; const char *found = NULL; if (!ossl_assert(server != NULL)) return 0; sl = strlen(server); /* * using environment variable names, both lowercase and uppercase variants, * compatible with other HTTP client implementations like wget, curl and git */ if (no_proxy == NULL) no_proxy = getenv("no_proxy"); if (no_proxy == NULL) no_proxy = getenv(OPENSSL_NO_PROXY); if (no_proxy != NULL) found = strstr(no_proxy, server); while (found != NULL && ((found != no_proxy && found[-1] != ' ' && found[-1] != ',') || (found[sl] != '\0' && found[sl] != ' ' && found[sl] != ','))) found = strstr(found + 1, server); return found == NULL; } const char *http_adapt_proxy(const char *proxy, const char *no_proxy, const char *server, int use_ssl) { const int http_len = strlen(OSSL_HTTP_PREFIX); const int https_len = strlen(OSSL_HTTPS_PREFIX); /* * using environment variable names, both lowercase and uppercase variants, * compatible with other HTTP client implementations like wget, curl and git */ if (proxy == NULL) proxy = getenv(use_ssl ? "https_proxy" : "http_proxy"); if (proxy == NULL) proxy = getenv(use_ssl ? OPENSSL_HTTP_PROXY : OPENSSL_HTTPS_PROXY); if (proxy == NULL) return NULL; /* skip any leading "http://" or "https://" */ if (strncmp(proxy, OSSL_HTTP_PREFIX, http_len) == 0) proxy += http_len; else if (strncmp(proxy, OSSL_HTTPS_PREFIX, https_len) == 0) proxy += https_len; if (*proxy == '\0' || !http_use_proxy(no_proxy, server)) return NULL; return proxy; }
ae365551e0a62b6b0f6e02bca7966e24f681dddd
d9e92d64502972c9abad081cf2594d4a4fe01512
/algoritmos_ordenamiento/shells.c
943d22aa89edae5b3f5345d4fa6a82f9354e17d7
[]
no_license
gpeFC/estructuras_datos
f74937c348622c88cec9985f04820b1dfd2dfc50
6f7c01b83bd8f8ede352c2704aeb45b02ecc795d
refs/heads/master
2021-01-17T13:09:53.886629
2014-06-14T09:58:52
2014-06-14T09:58:52
null
0
0
null
null
null
null
UTF-8
C
false
false
1,186
c
shells.c
#include <time.h> #include <stdio.h> int m[100000]; double duration; clock_t start,finish; //int rndm(int n){ // if (n==19){ // return 1; // } // else{ // return rand(n)%10; // } //} long double metricaOrdenamiento(int num){ int i, arreglo[num]; long double start, finish, duracion; srand(time(NULL)); for(i=0;i<num;i++) arreglo[i] = rand() % 1000+1; start = clock(); ordenaBurbuja(arreglo, num); finish = clock(); duracion = (long double)((finish-start))/CLOCKS_PER_SEC; return duracion; } int t,i,j; int main(){ srand(time(NULL)); //system("cls"); printf ("\n"); for (i=0;i<100000;i++){ m[i]=rand()%100; printf ("%d ", m[i]); } printf ("\n"); start=clock(); //shell sort int k=50000; while (k>=1) { for (i=k;i<100000;i++) { int v=m[i]; int j=i-k; while ((j>=0)&&(m[j]>v)) { m[j+k]=m[j]; j-=k; } m[j+k]=v; } k/=2; } finish=clock(); //imprime shell for (i=0;i<100000;i++){ printf ("%d ", m[i]); } printf ("\n"); printf ("\n"); duration=finish-start; int dn; dn=duration/CLOCKS_PER_SEC; printf("%d\n", dn); // getchar(); return 0; }
311a07f7b40ad4702eb21cc295adffbb2eb347e1
033153e36ef0ed2077aee2b4644f421dabb6db5a
/firmware/dspic/lib/currentmonitor/ltc4151.h
a0847e23f6e37997444195be72a39c10b4609252
[]
no_license
pastjean/fujin
5de8874d8c096b09d0c2e8ca11eaf059a440d26c
9302a7cdc15813f13f7b49b7b60e4e0b29337f0f
refs/heads/master
2021-01-13T02:38:03.119982
2013-08-22T21:56:53
2013-08-22T21:56:53
3,367,353
0
1
null
null
null
null
UTF-8
C
false
false
301
h
ltc4151.h
#ifndef __LTC4151_H #define __LTC4151_H #include "../../globaldef.h" #include "../../hardware_profile.h" typedef struct{ uint8_t port; }ltc4151_s; float ltc4151_read_voltage(ltc4151_s*); float ltc4151_read_current(ltc4151_s*); void ltc4151_init(ltc4151_s*,int i2c_port); #endif // __LTC4151_H
4ff094ed05cbda4b016941f71d768fd27834d06c
76f0efb245ff0013e0428ee7636e72dc288832ab
/out/Default/gen/chrome/browser/jni_headers/chrome/jni/PermissionUpdateInfoBarDelegate_jni.h
9992093ce0214545cad4c3fd83ab7f6eb860e41b
[]
no_license
dckristiono/chromium
e8845d2a8754f39e0ca1d3d3d44d01231957367c
8ad7c1bd5778bfda3347cf6b30ef60d3e4d7c0b9
refs/heads/master
2020-04-22T02:34:41.775069
2016-08-24T14:05:09
2016-08-24T14:05:09
66,465,243
0
2
null
null
null
null
UTF-8
C
false
false
5,283
h
PermissionUpdateInfoBarDelegate_jni.h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This file is autogenerated by // base/android/jni_generator/jni_generator.py // For // org/chromium/chrome/browser/infobar/PermissionUpdateInfoBarDelegate #ifndef org_chromium_chrome_browser_infobar_PermissionUpdateInfoBarDelegate_JNI #define org_chromium_chrome_browser_infobar_PermissionUpdateInfoBarDelegate_JNI #include <jni.h> #include "../../../../../../../../base/android/jni_generator/jni_generator_helper.h" #include "base/android/jni_int_wrapper.h" // Step 1: forward declarations. namespace { const char kPermissionUpdateInfoBarDelegateClassPath[] = "org/chromium/chrome/browser/infobar/PermissionUpdateInfoBarDelegate"; // Leaking this jclass as we cannot use LazyInstance from some threads. base::subtle::AtomicWord g_PermissionUpdateInfoBarDelegate_clazz __attribute__((unused)) = 0; #define PermissionUpdateInfoBarDelegate_clazz(env) base::android::LazyGetClass(env, kPermissionUpdateInfoBarDelegateClassPath, &g_PermissionUpdateInfoBarDelegate_clazz) } // namespace // Step 2: method stubs. extern "C" __attribute__((visibility("default"))) void Java_org_chromium_chrome_browser_infobar_PermissionUpdateInfoBarDelegate_nativeOnPermissionResult(JNIEnv* env, jobject jcaller, jlong nativePermissionUpdateInfoBarDelegate, jboolean allPermissionsGranted) { PermissionUpdateInfoBarDelegate* native = reinterpret_cast<PermissionUpdateInfoBarDelegate*>(nativePermissionUpdateInfoBarDelegate); CHECK_NATIVE_PTR(env, jcaller, native, "OnPermissionResult"); return native->OnPermissionResult(env, base::android::JavaParamRef<jobject>(env, jcaller), allPermissionsGranted); } static base::subtle::AtomicWord g_PermissionUpdateInfoBarDelegate_create = 0; static base::android::ScopedJavaLocalRef<jobject> Java_PermissionUpdateInfoBarDelegate_create(JNIEnv* env, jlong nativePtr, const base::android::JavaRefOrBare<jobject>& webContents, const base::android::JavaRefOrBare<jobjectArray>& permissions) { CHECK_CLAZZ(env, PermissionUpdateInfoBarDelegate_clazz(env), PermissionUpdateInfoBarDelegate_clazz(env), NULL); jmethodID method_id = base::android::MethodID::LazyGet< base::android::MethodID::TYPE_STATIC>( env, PermissionUpdateInfoBarDelegate_clazz(env), "create", "(" "J" "Lorg/chromium/content_public/browser/WebContents;" "[Ljava/lang/String;" ")" "Lorg/chromium/chrome/browser/infobar/PermissionUpdateInfoBarDelegate;", &g_PermissionUpdateInfoBarDelegate_create); jobject ret = env->CallStaticObjectMethod(PermissionUpdateInfoBarDelegate_clazz(env), method_id, nativePtr, webContents.obj(), permissions.obj()); jni_generator::CheckException(env); return base::android::ScopedJavaLocalRef<jobject>(env, ret); } static base::subtle::AtomicWord g_PermissionUpdateInfoBarDelegate_onNativeDestroyed = 0; static void Java_PermissionUpdateInfoBarDelegate_onNativeDestroyed(JNIEnv* env, const base::android::JavaRefOrBare<jobject>& obj) { CHECK_CLAZZ(env, obj.obj(), PermissionUpdateInfoBarDelegate_clazz(env)); jmethodID method_id = base::android::MethodID::LazyGet< base::android::MethodID::TYPE_INSTANCE>( env, PermissionUpdateInfoBarDelegate_clazz(env), "onNativeDestroyed", "(" ")" "V", &g_PermissionUpdateInfoBarDelegate_onNativeDestroyed); env->CallVoidMethod(obj.obj(), method_id); jni_generator::CheckException(env); } static base::subtle::AtomicWord g_PermissionUpdateInfoBarDelegate_requestPermissions = 0; static void Java_PermissionUpdateInfoBarDelegate_requestPermissions(JNIEnv* env, const base::android::JavaRefOrBare<jobject>& obj) { CHECK_CLAZZ(env, obj.obj(), PermissionUpdateInfoBarDelegate_clazz(env)); jmethodID method_id = base::android::MethodID::LazyGet< base::android::MethodID::TYPE_INSTANCE>( env, PermissionUpdateInfoBarDelegate_clazz(env), "requestPermissions", "(" ")" "V", &g_PermissionUpdateInfoBarDelegate_requestPermissions); env->CallVoidMethod(obj.obj(), method_id); jni_generator::CheckException(env); } // Step 3: RegisterNatives. static const JNINativeMethod kMethodsPermissionUpdateInfoBarDelegate[] = { { "nativeOnPermissionResult", "(" "J" "Z" ")" "V", reinterpret_cast<void*>(Java_org_chromium_chrome_browser_infobar_PermissionUpdateInfoBarDelegate_nativeOnPermissionResult) }, }; static bool RegisterNativesImpl(JNIEnv* env) { if (base::android::IsManualJniRegistrationDisabled()) return true; const int kMethodsPermissionUpdateInfoBarDelegateSize = arraysize(kMethodsPermissionUpdateInfoBarDelegate); if (env->RegisterNatives(PermissionUpdateInfoBarDelegate_clazz(env), kMethodsPermissionUpdateInfoBarDelegate, kMethodsPermissionUpdateInfoBarDelegateSize) < 0) { jni_generator::HandleRegistrationError( env, PermissionUpdateInfoBarDelegate_clazz(env), __FILE__); return false; } return true; } #endif // org_chromium_chrome_browser_infobar_PermissionUpdateInfoBarDelegate_JNI
32ca0f9d9d52bb72c6943f8348d2b93efdeade90
9d0c1da53da9e60d4a891d7edb7a02c31c8d26b9
/libkdenetwork/libgpg-error-copy/mkerrcodes.c
95fcb8429ed4f2f607522a436671ab15a8de36a6
[]
no_license
serghei/kde3-kdepim
7e6d4a0188c35a2c9c17babd317bfe3c0f1377d2
a1980f1560de118f19f54a5eff5bae87a6aa4784
refs/heads/master
2021-01-17T10:03:14.624954
2018-11-04T21:31:00
2018-11-04T21:31:00
3,688,187
0
0
null
null
null
null
UTF-8
C
false
false
2,897
c
mkerrcodes.c
/* mkerrcodes.c - Generate list of system error values. Copyright (C) 2004 g10 Code GmbH This file is part of libgpg-error. libgpg-error is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. libgpg-error is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with libgpg-error; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* This file must not include config.h, as that is for the host system, while this file will be run on the build system. */ #include <stdio.h> #include "mkerrcodes.h" static const char header[] = "/* errnos.h - List of system error values.\n" " Copyright (C) 2004 g10 Code GmbH\n" " This file is part of libgpg-error.\n" "\n" " libgpg-error is free software; you can redistribute it and/or\n" " modify it under the terms of the GNU Lesser General Public License\n" " as published by the Free Software Foundation; either version 2.1 of\n" " the License, or (at your option) any later version.\n" "\n" " libgpg-error is distributed in the hope that it will be useful, but\n" " WITHOUT ANY WARRANTY; without even the implied warranty of\n" " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" " Lesser General Public License for more details.\n" "\n" " You should have received a copy of the GNU Lesser General Public\n" " License along with libgpg-error; if not, write to the Free\n" " Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA\n" " 02111-1307, USA. */\n" "\n"; int main(int argc, char **argv) { int sorted; int i; printf("%s", header); do { sorted = 1; for(i = 0; i < sizeof(err_table) / sizeof(err_table[0]) - 1; i++) if(err_table[i].err > err_table[i + 1].err) { int err = err_table[i].err; const char *err_sym = err_table[i].err_sym; err_table[i].err = err_table[i + 1].err; err_table[i].err_sym = err_table[i + 1].err_sym; err_table[i + 1].err = err; err_table[i + 1].err_sym = err_sym; sorted = 0; } } while(!sorted); for(i = 0; i < sizeof(err_table) / sizeof(err_table[0]); i++) printf("%i\t%s\n", err_table[i].err, err_table[i].err_sym); return 0; }
74d07a88937a4486d3998c20992d18b83d9102e2
70afedd5d25fcddc3237a8d78d7535797d6108c7
/protocom/protocom.c
439edf1d958a5278532912c9ccc7c826ac33865b
[]
no_license
sjyfok/workrsl
da762a013164732d0e4443a6bba403874b7f9838
edaeb0dd3b00782bc2376f65097969599c6ae062
refs/heads/master
2021-01-21T06:38:52.667963
2017-03-24T13:11:37
2017-03-24T13:11:37
83,263,671
0
0
null
null
null
null
GB18030
C
false
false
4,792
c
protocom.c
#include "app.h" #include "isr.h" #include "crc.h" #include "protocom.h" /*GetFrmInerLen *获得帧内包含的长度值 长度值低字节在前 高字节在后 *输入长度相对帧头的偏移长度域占用的字节个数 *返回帧中包含的长度值 */ uint32_t GetFrmInerLen_Small(ptrPROTORX Protorx) { int len, i = 0; uint16_t head = *Protorx->pHead; uint16_t Buf_len = Protorx->BufLen; uint8_t *rxbuf = Protorx->pRxBuf; uint16_t offset = Protorx->len_offset; uint16_t cnt = Protorx->len_bycnt; head += offset; head &= Buf_len-1; len = 0; for (i = 0; i < cnt; i ++) { len |= rxbuf[head]<<(i<<3); head ++; head &= Buf_len-1; // len <<= 8; // len |= rxbuf[head]; // head ++; // head &= Buf_len-1; } return len; } /*GetFrmInerLen_Big *获得帧内包含的长度值 长度值高字节在前,低字节在后 *输入长度相对帧头的偏移长度域占用的字节个数 *返回帧中包含的长度值 */ uint32_t GetFrmInerLen_Big(ptrPROTORX Protorx) { int len, i = 0; uint16_t head = *Protorx->pHead; uint16_t Buf_len = Protorx->BufLen; uint8_t *rxbuf = Protorx->pRxBuf; uint16_t offset = Protorx->len_offset; uint16_t cnt = Protorx->len_bycnt; head += offset; head &= Buf_len-1; len = 0; for (i = 0; i < cnt; i ++) { len <<= 8; len |= rxbuf[head]; head ++; head &= Buf_len-1; } return len; } /**************************************************************************************************** ** Function Name: ProtoRx ** Input Parameters : uint8_t *pRet 用来返回正确数据,返回值为0时有效 PROTORX Protorx 协议描述 函数根据此做处理 ** Output Parameters: None ** Descriptions: 接收处理,先要扫描包头,之后寻找包尾,然后校验,校验成功后, ** 将接收的数据去掉头和尾后返回给调用者 ** Return 1:没有找到完整的帧 0: 找到完整的帧 ****************************************************************************************************/ int ProtoRx(uint8_t *pRet, uint16_t *pLen, ptrPROTORX Protorx, uint16_t ret_buf_sz) { uint16_t Head = *Protorx->pHead; uint16_t Tail = *Protorx->pEnd; uint16_t Buf_len = Protorx->BufLen; uint16_t defval = Protorx->def_val; uint8_t *rxbuf = Protorx->pRxBuf; *pLen = 0; //缓存的数据长度可以进行处理 if (((Tail-Head)&(Buf_len -1)) > defval) { int i = 0; while(i < Protorx->HeadCnt) { if (rxbuf[Head] != Protorx->FrmHead[i]) { break; } i ++; Head ++; Head &= (Buf_len -1); } if (i >= Protorx->HeadCnt) //找到帧头 { //寻找帧尾 while(((Tail-Head)&(Buf_len-1)) >= Protorx->HeadCnt) //可以进行找包尾 { uint16_t tHead = Head; i = 0; while(i < Protorx->HeadCnt) { if (rxbuf[tHead] != Protorx->FrmEnd[i]) { break; } i ++; tHead ++; tHead &= (Buf_len -1); } if (i >= Protorx->HeadCnt) //找到帧尾 { //判断帧尾是否是真正的帧尾 int tmplen = tHead - *Protorx->pHead; //整个一包数据的长度 int frmlen = 0; tmplen &= (Buf_len -1); tmplen -= Protorx->ext_len; frmlen = (int)Protorx->GetInnerLen(Protorx); if (frmlen > Buf_len || frmlen > ret_buf_sz) { //找到的帧的长度超过队列的长度 找到的不是正确的帧 Head = *Protorx->pHead; *Protorx->pHead = (Head+1)&(Buf_len -1); break; } else { if (tmplen < frmlen) { //尚未收满一帧数据 接着收 Head ++; Head &= (Buf_len -1); } else if (tmplen == frmlen) //正好收到完整一包 { //copy 数据进行校验 uint16_t idx = (*Protorx->pHead)+Protorx->HeadCnt; i = 0; idx &= (Buf_len -1); while (idx != Head) { pRet[i++] = Protorx->pRxBuf[idx]; idx ++; idx &= (Buf_len-1); } if (Protorx->checksum != 0) { if (Protorx->checksum (pRet, i) == 0) { *Protorx->pHead = tHead; *pLen = i; return 0; } else { Head = *Protorx->pHead; *Protorx->pHead = (Head+1)&(Buf_len -1); break; } } else { *Protorx->pHead = tHead; *pLen = i; return 0; } } else //头尾之间的数据太长 作废找到的头重新扫描 { Head = *Protorx->pHead; *Protorx->pHead = (Head+1)&(Buf_len -1); break; } } } else //没有找到帧尾修改头指针 { Head ++; Head &= (Buf_len -1); } } } else //没有找到头 { // Head = *Protorx->pHead; *Protorx->pHead = (Head+1)&(Buf_len -1); } } return 1; }
d1caea9b742cdba286f2f3547ceb1b7fa13a6636
e18002aa1862d074b53017ae138304edbb3e4009
/glue.c
c433e9cf660fe5cabad1a68fa6128e9f16154736
[]
no_license
Jaavidd/BMP_IMAGE_Project
d1caa0026675aa1c46a6669cbdb2249b31d1723a
c59a7a8f5535378c2d73ada7c7fa0bcc0fa77e92
refs/heads/master
2021-10-11T08:16:09.430186
2019-01-23T17:35:24
2019-01-23T17:35:24
167,222,733
3
0
null
null
null
null
UTF-8
C
false
false
1,690
c
glue.c
#include <stdio.h> #include <string.h> #include<stdlib.h> #include"resize.h" int main(int argc, char const *argv[]) { FILE_INFORMATION *bmp; int NumberOfImages= 0; for(int i = 1; i < argc ; i++){ NumberOfImages++; } FILE *file = fopen(argv[1],"r"); bmp = read_from_file(file,bmp); FILE *new = fopen("glue.bmp","wb+"); bmp->height = (-1)*bmp->height; bmp->header = (unsigned char*)malloc(bmp->offset*sizeof(unsigned char)); int width = NumberOfImages*bmp->width; bmp->size = 4*(width*bmp->height)+bmp->offset; bmp->size = bmp->size - bmp->offset; fseek(file,0,SEEK_SET); fwrite(&bmp->first_header,2,1,new); fwrite(&bmp->size,4,1,new); fseek(file,6,SEEK_SET); fread(bmp->header,12,1,file); fwrite(bmp->header,12,1,new); fseek(file,18,SEEK_SET); fwrite(&width,4,1,new); fseek(file,22,SEEK_SET); fread(bmp->header,bmp->offset - 22,1,file); fwrite(bmp->header,bmp->offset - 22,1,new); free(bmp->header); fclose(file); unsigned char *arr[NumberOfImages]; for (int i=0; i<NumberOfImages; i++) arr[i] = (unsigned char *)malloc(bmp->size * sizeof(unsigned char)); bmp->pixels = (unsigned char *)malloc(4*(width*bmp->height)*sizeof(unsigned char)); for(int i = 1 ; i <= NumberOfImages; i++){ file = fopen(argv[i],"rb"); fseek(file,bmp->offset,SEEK_SET); fread(arr[i-1],bmp->size,1,file); fclose(file); } // printf("%d--- %d----- %d\n",bmp->height,bmp->width,width); for(int i = 0 ; i < bmp->height ; i++){ for(int j = 0;j < NumberOfImages; j++){ fwrite(&arr[j][i*bmp->width*4],bmp->width*4,1,new); } } return 0; }
c2355e85347a4eb06250a3bc7567c4fc4ab7dcd6
63ddad57622b47a7f21d11db485b109668edd9bb
/projectOS.c
1b8526cab603e67eb85934600d29d1d598feb087
[]
no_license
shuklaamar/ProjectOS
8c7d4a140147bfb01b42370eb0cbd50e173e4fe8
941af8db16abf586dc07b7e65815718f72ddfbb1
refs/heads/master
2020-05-03T14:12:49.081223
2019-04-10T15:09:42
2019-04-10T15:09:42
178,671,142
0
0
null
null
null
null
UTF-8
C
false
false
2,930
c
projectOS.c
#include<bits/stdc++.h> using namespace std; struct process{ int at,bt,pr,pno,wt; }; int main(){ int n; cout<<"Enter the no of processes"<<":"; cin>>n; if(n<0){ cout<<""<<endl<<"**************************************"<<endl<<""<<endl; cout<<"Negative No of processes is not possible"<<endl; cout<<""<<endl<<"**************************************"<<endl; _exit(0); } struct process pro[n]; int arr[n],bur[n],pri[n],prn[n]; for(int k=1;k<=n;k++){ cout<<"Enter the arrival time of the process"<<"P"<<k<<":"; cin>>arr[k]; if(arr[k]>=0){ pro[k].at=arr[k]; } else{ cout<<""<<endl<<"**************************************"<<endl<<""<<endl; cout<<"Negative arrival is not possible"<<endl; cout<<""<<endl<<"**************************************"<<endl; _exit(0); } } for(int i=1;i<=n;i++){ int local=i; for(int k=i+1;k<=n;k++){ if(pro[k].at<pro[local].at){ local=k; } } int temp; temp=pro[i].pr; pro[i].pr=pro[local].pr; pro[local].pr=pro[i].pr; temp=pro[i].at; pro[i].at=pro[local].at; pro[local].at=pro[i].at; temp=pro[i].bt; pro[i].bt=pro[local].bt; pro[local].bt=pro[i].bt; temp=pro[i].wt; pro[i].wt=pro[local].wt; pro[local].wt=pro[i].wt; } for(int k=1;k<=n;k++){ cout<<"Enter the burst time of the process"<<"P"<<k<<":"; cin>>bur[k]; if(bur[k]>=0){ pro[k].bt=bur[k]; } else{ cout<<""<<endl<<"**************************************"<<endl<<" "<<endl; cout<<"Negative burst is not possible"<<endl; cout<<""<<endl<<"**************************************"<<endl; _exit(0); } } for(int k=1;k<=n;k++){ pro[k].pno=k; } int sum=0,sor; for(int k=1;k<=n;k++){ sum+=pro[k].bt; } for(int k=1;k<sum;k++){ for(int i=1;i<=n;i++){ if(pro[i].at<=k){ pro[i].wt=k-pro[i].at; } } for(int k=1;k<=n;k++){ pro[k].pr=(1+(pro[k].wt/pro[k].bt)); } } for(int i=1;i<=n;i++){ int local=i; for(int k=1+i;k<=n;k++){ if(pro[k].pr>pro[local].pr){ local=k; } } int temp; temp=pro[i].pr; pro[i].pr=pro[local].pr; pro[local].pr=pro[i].pr; temp=pro[i].at; pro[i].at=pro[local].at; pro[local].at=pro[i].at; temp=pro[i].bt; pro[i].bt=pro[local].bt; pro[local].bt=pro[i].bt; temp=pro[i].wt; pro[i].wt=pro[local].wt; pro[local].wt=pro[i].wt; } int avg_tat=pro[1].pr; int avg_wt; for(int i=1;i<=n;i++){ avg_wt=pro[i].wt+pro[i+1].wt; } if(avg_wt>0){ cout<<endl<<"Average waiting time of the processes is:"<avg_wt/n<<endl; } else{ cout<<"Average waiting time of the processes is:"<<(-avg_wt)/n<<endl; } if(avg_wt>0){ cout<<"Average turn arround time of the processes is:"<<avg_tat<<endl; } else{ cout<<"Average turn arround time of the processes is:"<<avg_tat<<endl; } }
e1b7264be63ece87c9248a2f473462e5935ac331
06e55a2acbc378c83010d3365514272790f739bf
/sources/common/ring_buffer.c
2f083e534ed6d5eb109264ed8a4aa10d1c02f56e
[ "MIT" ]
permissive
arturnse/embedded-api
c586ec3671140e3595ee8c789075194deb010dfc
da3c95fadfcd86a55453a97aea638a3a566278ec
refs/heads/master
2020-03-29T22:29:27.587921
2018-10-13T02:43:56
2018-10-13T02:43:56
150,423,820
0
0
null
null
null
null
UTF-8
C
false
false
6,857
c
ring_buffer.c
#include <string.h> #include "common/ring_buffer.h" #define RINGBUFF_SZ(__rb) ( (uint32_t)((__rb)->sz) / (uint32_t)((__rb)->eSz) ) static INLINE uint32_t _ringbuff_updateIndex( uint32_t pId, uint32_t pUpdateSz, uint32_t pMaxSz ) { pId += pUpdateSz; if( pId >= pMaxSz ) { pId -= pMaxSz; } return pId; } uint32_t RingBuff_Init(ringbuff_t *pRb, void * const pBuff, uint32_t pSz, uint8_t pElSz ) { if( pRb == NULL ) { return 0; } if( pBuff == NULL ) { return 0; } if( pSz < pElSz ) { return 0; } if( pSz == 0 ) { return 0; } if( pElSz == 0 ) { return 0; } pRb->data = pBuff; pRb->sz = (pSz - (pSz%pElSz)); //unaliged elements are NOT accepted pRb->eSz = pElSz; pRb->head = pRb->tail = pRb->full = 0; pRb->init = true; return pRb->sz/pRb->eSz; } uint32_t RingBuff_WrOne(ringbuff_t *pRb, void * const pEl, bool_t pOw ) { uint8_t *ptr; if( pRb == NULL ) { return 0; } if( !pRb->init ) { return 0; } if( RingBuff_IsFull(pRb) ) { if( !pOw ) { //não adiciona o item return 0; } else { //sobrescreve o início do buffer pRb->head = _ringbuff_updateIndex( pRb->head, pRb->eSz, pRb->sz ); } } ptr = &((uint8_t*)pRb->data)[pRb->tail]; memcpy(ptr, pEl, pRb->eSz); pRb->tail = _ringbuff_updateIndex(pRb->tail, pRb->eSz, pRb->sz); pRb->full = pRb->head == pRb->tail; return 1; } uint32_t RingBuff_WrMany(ringbuff_t *pRb, const void * const pWrBuff, uint32_t pN, bool_t pOw ) { uint32_t ii; uint8_t *ptr = (uint8_t *)pWrBuff; if( pWrBuff == NULL ) { return 0; } if( pRb == NULL ) { return 0; } if( !pRb->init ) { return 0; } for(ii=0; ii < pN; ii++) { if( 0 == RingBuff_WrOne(pRb, &ptr[(ii*pRb->eSz)], pOw) ) { break; } } return ii; } uint32_t RingBuff_WrMany2(ringbuff_t *pRb, const void *pWrBuff, uint32_t pN, bool_t pOw ) { uint8_t *ptr = (uint8_t *)pWrBuff; uint32_t ii = 0; if( !pOw ) { //não adiciona alem da conta pN = MIN( RingBuff_Free(pRb), pN ); } while(pN--) { if( RingBuff_WrOne( pRb, ptr, pOw ) ) { ptr = (uint8_t*)ptr + pRb->eSz; ii++; } else { break; } } return ii; } uint32_t RingBuff_RdOnePtr(ringbuff_t *pRb, void **pEl) { uint8_t *ptr; if( pRb == NULL ) { return 0; } if( RingBuff_IsEmpty(pRb) ) { return 0; } ptr = &((uint8_t*)pRb->data)[pRb->head]; pRb->head = _ringbuff_updateIndex(pRb->head, pRb->eSz, pRb->sz); pRb->full = 0; if( pEl == NULL ) { } else { *pEl = (void *)ptr; } return 1; } uint32_t RingBuff_RdOne(ringbuff_t *pRb, void *pEl) { uint8_t *ptr; if( pRb == NULL ) { return 0; } if( RingBuff_IsEmpty(pRb) ) { return 0; } ptr = &((uint8_t*)pRb->data)[pRb->head]; pRb->head = _ringbuff_updateIndex(pRb->head, pRb->eSz, pRb->sz); pRb->full = 0; if( pEl == NULL ) { } else { memcpy(pEl, ptr, pRb->eSz); } return 1; } uint32_t RingBuff_RdAdvance(ringbuff_t *pRb, void *pRdBuff, uint32_t pN) { ringbuff_t rb; memcpy(&rb, pRb, sizeof(rb)); return RingBuff_RdMany( &rb, pRdBuff, pN ); } uint32_t RingBuff_RdMany(ringbuff_t *pRb, void *pRdBuff, uint32_t pN) { uint32_t result; uint8_t *ptr = pRdBuff; uint32_t cpSz; if( pRdBuff == NULL ) { return RingBuff_Discard( pRb, pN ); } if( pRb == NULL ) { return 0; } if( !pRb->init ) { return 0; } result = pN = MIN( pN, RingBuff_Used(pRb) ); //segmenta em duas partes: ate o final do buffer e então do início ate o meio. // assim: h = head t = tail // // |=====t---------------------h=======| pega o tail ate o final // |h====t-----------------------------| pega o início ate o head // |----ht-----------------------------| if( pRb->head + (pRb->eSz * pN) > pRb->sz ) { ptr = &((uint8_t*)pRb->data)[pRb->head]; cpSz = pRb->sz - pRb->head; memcpy(pRdBuff, ptr, cpSz); //por isso o buffer precisa estar alinhado! pRb->head = _ringbuff_updateIndex(pRb->head, cpSz, pRb->sz ); pRb->full = 0; pRdBuff = &(((uint8_t*)pRdBuff)[cpSz]); //numero de elementos retirados: pN -= (cpSz/pRb->eSz); } ptr = &((uint8_t*)pRb->data)[pRb->head]; cpSz = (pN*pRb->eSz); memcpy(pRdBuff, ptr, cpSz); pRb->head = _ringbuff_updateIndex(pRb->head, cpSz, pRb->sz ); if( pN > 0 ) { pRb->full = 0; } return result; } uint32_t RingBuff_Discard(ringbuff_t *pRb, uint32_t pN) { if( pRb == NULL ) { return 0; } pN = MIN( pN, RingBuff_Used(pRb) ); pRb->head = _ringbuff_updateIndex(pRb->head, pN*pRb->eSz, pRb->sz ); if( pN > 0 ) { pRb->full = 0; } return pN; } void RingBuff_Flush(ringbuff_t *pRb) { if( pRb == NULL ) { return; } pRb->head = pRb->tail = pRb->full = 0; return; } uint32_t RingBuff_Used(ringbuff_t *pRb) { if( pRb == NULL ) { return 0; } if( !pRb->init ) { return 0; } if( (pRb->head == pRb->tail) && !(pRb->full) ) { return 0; } else if(pRb->tail > pRb->head) { return ((pRb->tail - pRb->head) / pRb->eSz); } else { return ((pRb->sz - (pRb->head - pRb->tail)) / pRb->eSz); } } uint32_t RingBuff_Free(ringbuff_t *pRb) { if( pRb == NULL ) { return 0; } if( !pRb->init ) { return 0; } return RINGBUFF_SZ(pRb) - RingBuff_Used(pRb); } bool_t RingBuff_IsEmpty(ringbuff_t *pRb) { return (bool_t)(RingBuff_Used(pRb) == 0); } bool_t RingBuff_IsFull(ringbuff_t *pRb) { return (bool_t)(RingBuff_Sz(pRb) == RingBuff_Used(pRb)); } uint32_t RingBuff_Sz(ringbuff_t *pRb) { if( pRb == NULL ) { return 0; } else if( !pRb->init ) { return 0; } else { return RINGBUFF_SZ(pRb); } }
dbb8e2b20f3914b2bf9bc89bf5c73fc7718ea4d1
7921848312d2b540a4fd74293125503e9d8e9bf8
/share/include/mpif90_IRIX64_SGI.h
5f040d8f929410a9c6b4824d904be1f54c4458cf
[ "BSD-2-Clause" ]
permissive
rmahfuz/RAM-SCB
7cfeba71432c1be9765038f124c6b619789d4440
7f5b72d3aeb8a73d2c3c180f3fe3e668f3e86e82
refs/heads/master
2020-03-25T01:06:17.871794
2018-07-23T21:15:31
2018-07-23T21:15:31
143,222,042
0
0
null
2018-08-02T00:32:07
2018-08-02T00:32:07
null
UTF-8
C
false
false
9,073
h
mpif90_IRIX64_SGI.h
!DIR$ ID "@(#)mpi/include/mpif.h 31.6 05/27/98 13:24:49" ! ! (C) COPYRIGHT SILICON GRAPHICS, INC. ! UNPUBLISHED PROPRIETARY INFORMATION. ! ALL RIGHTS RESERVED. ! ! ! --------------------------------------- ! This is mpif.h for IRIX and PVP systems ! --------------------------------------- ! ! Copyright Notice ! + 1993 University of Chicago ! + 1993 Mississippi State University character*100 MPI_HEADER_FILE parameter (MPI_HEADER_FILE = 'mpif90_IRIX64_SGI.h') integer MPI_VERSION integer MPI_SUBVERSION parameter (MPI_VERSION = 1) parameter (MPI_SUBVERSION = 2) ! MPI_Status integer MPI_SOURCE integer MPI_TAG integer MPI_ERROR integer MPI_STATUS_SIZE parameter (MPI_SOURCE = 1) parameter (MPI_TAG = 2) parameter (MPI_ERROR = 3) parameter (MPI_STATUS_SIZE = 6) ! MPI_Comm integer MPI_COMM_NULL integer MPI_COMM_WORLD integer MPI_COMM_SELF parameter (MPI_COMM_NULL = 0) parameter (MPI_COMM_WORLD = 1) parameter (MPI_COMM_SELF = 2) ! MPI_Errhandler integer MPI_ERRHANDLER_NULL integer MPI_ERRORS_ARE_FATAL integer MPI_ERRORS_RETURN parameter (MPI_ERRHANDLER_NULL = 0) parameter (MPI_ERRORS_ARE_FATAL = 1) parameter (MPI_ERRORS_RETURN = 2) ! MPI_Group integer MPI_GROUP_NULL integer MPI_GROUP_EMPTY parameter (MPI_GROUP_NULL = 0) parameter (MPI_GROUP_EMPTY = 1) ! MPI_Request integer MPI_REQUEST_NULL parameter (MPI_REQUEST_NULL = 0) ! MPI_Op integer MPI_OP_NULL integer MPI_MAX integer MPI_MIN integer MPI_SUM integer MPI_PROD integer MPI_LAND integer MPI_BAND integer MPI_LOR integer MPI_BOR integer MPI_LXOR integer MPI_BXOR integer MPI_MAXLOC integer MPI_MINLOC parameter (MPI_OP_NULL = 0) parameter (MPI_MAX = 1) parameter (MPI_MIN = 2) parameter (MPI_SUM = 3) parameter (MPI_PROD = 4) parameter (MPI_LAND = 5) parameter (MPI_BAND = 6) parameter (MPI_LOR = 7) parameter (MPI_BOR = 8) parameter (MPI_LXOR = 9) parameter (MPI_BXOR = 10) parameter (MPI_MAXLOC = 11) parameter (MPI_MINLOC = 12) ! MPI_Datatype integer MPI_DATATYPE_NULL integer MPI_CHAR integer MPI_SHORT integer MPI_INT integer MPI_LONG integer MPI_UNSIGNED_CHAR integer MPI_UNSIGNED_SHORT integer MPI_UNSIGNED integer MPI_UNSIGNED_LONG integer MPI_FLOAT integer MPI_DOUBLE integer MPI_LONG_DOUBLE integer MPI_LONG_LONG integer MPI_LONG_LONG_INT integer MPI_INTEGER integer MPI_REAL integer MPI_DOUBLE_PRECISION integer MPI_COMPLEX integer MPI_DOUBLE_COMPLEX integer MPI_LOGICAL integer MPI_CHARACTER integer MPI_INTEGER1 integer MPI_INTEGER2 integer MPI_INTEGER4 integer MPI_INTEGER8 integer MPI_REAL4 integer MPI_REAL8 integer MPI_REAL16 integer MPI_BYTE integer MPI_PACKED integer MPI_UB integer MPI_LB integer MPI_FLOAT_INT integer MPI_DOUBLE_INT integer MPI_LONG_INT integer MPI_2INT integer MPI_SHORT_INT integer MPI_LONG_DOUBLE_INT integer MPI_2REAL integer MPI_2DOUBLE_PRECISION integer MPI_2INTEGER parameter (MPI_DATATYPE_NULL = 0) parameter (MPI_CHAR = 1) parameter (MPI_SHORT = 2) parameter (MPI_INT = 3) parameter (MPI_LONG = 4) parameter (MPI_UNSIGNED_CHAR = 5) parameter (MPI_UNSIGNED_SHORT = 6) parameter (MPI_UNSIGNED = 7) parameter (MPI_UNSIGNED_LONG = 8) parameter (MPI_FLOAT = 9) parameter (MPI_DOUBLE = 10) parameter (MPI_LONG_DOUBLE = 11) parameter (MPI_LONG_LONG = 12) parameter (MPI_LONG_LONG_INT = 12) parameter (MPI_INTEGER = 13) parameter (MPI_REAL = 14+iRealPrec) parameter (MPI_DOUBLE_PRECISION = 15) parameter (MPI_COMPLEX = 16+iRealPrec) parameter (MPI_DOUBLE_COMPLEX = 17) parameter (MPI_LOGICAL = 18) parameter (MPI_CHARACTER = 19) parameter (MPI_INTEGER1 = 20) parameter (MPI_INTEGER2 = 21) parameter (MPI_INTEGER4 = 22) parameter (MPI_INTEGER8 = 23) parameter (MPI_REAL4 = 24) parameter (MPI_REAL8 = 25) parameter (MPI_REAL16 = 26) parameter (MPI_BYTE = 27) parameter (MPI_PACKED = 28) parameter (MPI_UB = 29) parameter (MPI_LB = 30) parameter (MPI_FLOAT_INT = 31) parameter (MPI_DOUBLE_INT = 32) parameter (MPI_LONG_INT = 33) parameter (MPI_2INT = 34) parameter (MPI_SHORT_INT = 35) parameter (MPI_LONG_DOUBLE_INT = 36) parameter (MPI_2REAL = 37) parameter (MPI_2DOUBLE_PRECISION= 38) parameter (MPI_2INTEGER = 39) ! MPI-1 error codes and classes integer MPI_SUCCESS integer MPI_ERR_BUFFER integer MPI_ERR_COUNT integer MPI_ERR_TYPE integer MPI_ERR_TAG integer MPI_ERR_COMM integer MPI_ERR_RANK integer MPI_ERR_REQUEST integer MPI_ERR_ROOT integer MPI_ERR_GROUP integer MPI_ERR_OP integer MPI_ERR_TOPOLOGY integer MPI_ERR_DIMS integer MPI_ERR_ARG integer MPI_ERR_UNKNOWN integer MPI_ERR_TRUNCATE integer MPI_ERR_OTHER integer MPI_ERR_INTERN integer MPI_ERR_IN_STATUS integer MPI_ERR_PENDING parameter (MPI_SUCCESS = 0) parameter (MPI_ERR_BUFFER = 1) parameter (MPI_ERR_COUNT = 2) parameter (MPI_ERR_TYPE = 3) parameter (MPI_ERR_TAG = 4) parameter (MPI_ERR_COMM = 5) parameter (MPI_ERR_RANK = 6) parameter (MPI_ERR_REQUEST = 7) parameter (MPI_ERR_ROOT = 8) parameter (MPI_ERR_GROUP = 9) parameter (MPI_ERR_OP = 10) parameter (MPI_ERR_TOPOLOGY = 11) parameter (MPI_ERR_DIMS = 12) parameter (MPI_ERR_ARG = 13) parameter (MPI_ERR_UNKNOWN = 14) parameter (MPI_ERR_TRUNCATE = 15) parameter (MPI_ERR_OTHER = 16) parameter (MPI_ERR_INTERN = 17) parameter (MPI_ERR_IN_STATUS = 18) parameter (MPI_ERR_PENDING = 19) ! MPI-2 error codes and classes integer MPI_ERR_ACCESS integer MPI_ERR_AMODE integer MPI_ERR_ASSERT integer MPI_ERR_BAD_FILE integer MPI_ERR_BASE integer MPI_ERR_CONVERSION integer MPI_ERR_DISP integer MPI_ERR_DUP_DATAREP integer MPI_ERR_FILE_EXISTS integer MPI_ERR_FILE_IN_USE integer MPI_ERR_FILE integer MPI_ERR_INFO_KEY integer MPI_ERR_INFO_NOKEY integer MPI_ERR_INFO_VALUE integer MPI_ERR_INFO integer MPI_ERR_IO integer MPI_ERR_KEYVAL integer MPI_ERR_LOCKTYPE integer MPI_ERR_NAME integer MPI_ERR_NO_MEM integer MPI_ERR_NOT_SAME integer MPI_ERR_NO_SPACE integer MPI_ERR_NO_SUCH_FILE integer MPI_ERR_PORT integer MPI_ERR_QUOTA integer MPI_ERR_READ_ONLY integer MPI_ERR_RMA_CONFLICT integer MPI_ERR_RMA_SYNC integer MPI_ERR_SERVICE integer MPI_ERR_SIZE integer MPI_ERR_SPAWN integer MPI_ERR_UNSUPPORTED_DATAREP integer MPI_ERR_UNSUPPORTED_OPERATION integer MPI_ERR_WIN parameter (MPI_ERR_ACCESS = 28) parameter (MPI_ERR_AMODE = 29) parameter (MPI_ERR_ASSERT = 30) parameter (MPI_ERR_BAD_FILE = 31) parameter (MPI_ERR_BASE = 32) parameter (MPI_ERR_CONVERSION = 33) parameter (MPI_ERR_DISP = 34) parameter (MPI_ERR_DUP_DATAREP = 35) parameter (MPI_ERR_FILE_EXISTS = 36) parameter (MPI_ERR_FILE_IN_USE = 37) parameter (MPI_ERR_FILE = 38) parameter (MPI_ERR_INFO_KEY = 39) parameter (MPI_ERR_INFO_NOKEY = 40) parameter (MPI_ERR_INFO_VALUE = 41) parameter (MPI_ERR_INFO = 42) parameter (MPI_ERR_IO = 43) parameter (MPI_ERR_KEYVAL = 44) parameter (MPI_ERR_LOCKTYPE = 45) parameter (MPI_ERR_NAME = 46) parameter (MPI_ERR_NO_MEM = 47) parameter (MPI_ERR_NOT_SAME = 48) parameter (MPI_ERR_NO_SPACE = 49) parameter (MPI_ERR_NO_SUCH_FILE = 50) parameter (MPI_ERR_PORT = 51) parameter (MPI_ERR_QUOTA = 52) parameter (MPI_ERR_READ_ONLY = 53) parameter (MPI_ERR_RMA_CONFLICT = 54) parameter (MPI_ERR_RMA_SYNC = 55) parameter (MPI_ERR_SERVICE = 56) parameter (MPI_ERR_SIZE = 57) parameter (MPI_ERR_SPAWN = 58) parameter (MPI_ERR_UNSUPPORTED_DATAREP = 59) parameter (MPI_ERR_UNSUPPORTED_OPERATION= 60) parameter (MPI_ERR_WIN = 61) integer MPI_ERR_LASTCODE parameter (MPI_ERR_LASTCODE = 100) ! Permanent keyvals integer MPI_KEYVAL_INVALID integer MPI_TAG_UB integer MPI_HOST integer MPI_IO integer MPI_WTIME_IS_GLOBAL parameter (MPI_KEYVAL_INVALID = 0) parameter (MPI_TAG_UB = 5) parameter (MPI_HOST = 6) parameter (MPI_IO = 7) parameter (MPI_WTIME_IS_GLOBAL = 8) ! Results of the compare operations integer MPI_IDENT integer MPI_CONGRUENT integer MPI_SIMILAR integer MPI_UNEQUAL parameter (MPI_IDENT = 0) parameter (MPI_CONGRUENT = 1) parameter (MPI_SIMILAR = 2) parameter (MPI_UNEQUAL = 3) ! Topology types integer MPI_GRAPH integer MPI_CART parameter (MPI_GRAPH = 1) parameter (MPI_CART = 2) ! Misc constants integer MPI_MAX_PROCESSOR_NAME parameter (MPI_MAX_PROCESSOR_NAME = 256) integer MPI_MAX_ERROR_STRING parameter (MPI_MAX_ERROR_STRING = 256) integer MPI_BSEND_OVERHEAD parameter (MPI_BSEND_OVERHEAD = 32) integer MPI_UNDEFINED parameter (MPI_UNDEFINED = -3) integer MPI_ANY_SOURCE parameter (MPI_ANY_SOURCE = -2) integer MPI_PROC_NULL parameter (MPI_PROC_NULL = -1) integer MPI_ANY_TAG parameter (MPI_ANY_TAG = -1) ! Misc Fortran declarations integer MPI_BOTTOM ! pointer (MPI_BOTTOM_PTR, MPI_BOTTOM) ! data MPI_BOTTOM_PTR / 0 / external MPI_NULL_COPY_FN, MPI_NULL_DELETE_FN, MPI_DUP_FN double precision MPI_WTIME, MPI_WTICK external MPI_WTIME, MPI_WTICK ! MPI-2 integer MPI_FUNDAMENTAL parameter (MPI_FUNDAMENTAL = -1) ! Kind values for MPI-2 integer MPI_OFFSET_KIND parameter (MPI_OFFSET_KIND = 8)
bc5baf8bc569fc4fde85aed835f08f843c9e91f0
0b3b9eb82fbe382613bfab308e957d083ab86989
/layout/src/sample04.c
4a98db0fb17dac683d74a43dee9a9b1990d8bf00
[]
no_license
cprieto/learning_gtk
53c287f894cc40a5fb72009a1e68911469a72cc1
c81a9bce541d7c588e01adca3f4e78421be2a7d6
refs/heads/master
2020-12-30T14:19:27.368852
2017-05-15T06:51:58
2017-05-15T06:51:58
91,304,358
0
0
null
null
null
null
UTF-8
C
false
false
1,633
c
sample04.c
#include <gtk/gtk.h> // This sample is for showing layout with GtkGrid static void activate (GtkApplication *app, gpointer data) { GtkWindow *window = gtk_application_window_new (app); gtk_window_set_title (GTK_WINDOW (window), "Boxes layout"); gtk_window_set_default_size (GTK_WINDOW (window), 200, 50); // This is the grid container GtkGrid *grid = gtk_grid_new (); gtk_container_add (GTK_CONTAINER (window), GTK_WIDGET (grid)); GtkButton *button = gtk_button_new_with_label ("Button 1"); gtk_grid_attach (GTK_GRID (grid), GTK_WIDGET (button), 0, 0, 1, 1); button = gtk_button_new_with_label ("Button 2"); gtk_grid_attach (GTK_GRID (grid), GTK_WIDGET (button), 1, 0, 3, 1); button = gtk_button_new_with_label ("Button 3"); gtk_grid_attach (GTK_GRID (grid), GTK_WIDGET (button), 0, 1, 1, 2); button = gtk_button_new_with_label ("Button 4"); gtk_grid_attach (GTK_GRID (grid), GTK_WIDGET (button), 1, 1, 3, 1); button = gtk_button_new_with_label ("Button 5"); gtk_grid_attach (GTK_GRID (grid), GTK_WIDGET (button), 2, 2, 1, 1); button = gtk_button_new_with_label ("Button 6"); gtk_grid_attach (GTK_GRID (grid), GTK_WIDGET (button), 3, 2, 1, 1); gtk_widget_show_all (GTK_WIDGET (window)); } int main (int argc, char **argv) { GtkApplication *application = gtk_application_new ("org.gtk.sample.layout.grid", G_APPLICATION_FLAGS_NONE); g_signal_connect (application, "activate", G_CALLBACK (activate), NULL); int status = g_application_run (G_APPLICATION(application), argc, argv); g_object_unref (application); return status; }
5ee626b6fdcede22c4d149a78cfa05531d3626fe
b72830060331b594191dec76bed1ee12836db02e
/SJDDisplayDocInMyViewerWsp/SJDPartExampleFrm/ImportedInterfaces/intel_a/CATBoolean.h
062bbb5f070c61231867e8c3a9eea18e503aa9b2
[]
no_license
Locke-Shi/CAAV5
287ed8349774ebd14c891534474e17acaf77cfe5
58001200081c58521ca05082a37b714e2c16c369
refs/heads/master
2023-03-05T07:14:53.849566
2021-02-20T02:45:57
2021-02-20T02:45:57
318,120,847
2
2
null
null
null
null
UTF-8
C
false
false
64
h
CATBoolean.h
#include "D:\DS\B19_32\.\System\PublicInterfaces\CATBoolean.h"
573c45540ad597cfb2438ce36f68e57bcb76e00f
57f9dba762eb9d6771b1e4d35b4aeda88f232833
/rockerthatrocks/pset2/caesar.c
2f120df422f1ccbfee810373197e57b69dcc97c6
[]
no_license
siddhantkhandelwal/cs50-assignments
ea0a94b07704d552c8c362a1ddd2cb379c3ed72c
2c99d5c58412174052484fc8d036fecf2b9962cd
refs/heads/master
2020-04-04T11:05:48.400676
2018-11-09T19:16:03
2018-11-09T19:16:03
155,878,938
1
16
null
2018-11-09T19:16:04
2018-11-02T14:40:02
C
UTF-8
C
false
false
646
c
caesar.c
#include <cs50.h> #include <stdio.h> #include <string.h> #include <ctype.h> int main(int argc, string argv[]) { if(argc == 1) return 1; int k=0; for(int i = 0; argv[1][i] != '\0'; i++) k = k*10 + argv[1][i] - '0'; k = k % 26; string plaintext = get_string("plaintext: "); int n = strlen(plaintext); for(int i = 0; i < n; i++) { if(isupper(plaintext[i])) plaintext[i] = (((plaintext[i] - 'A') + k ) % 26 ) + 'A'; else if(islower(plaintext[i])) plaintext[i] = (((plaintext[i] - 'a') + k ) % 26 ) + 'a'; } printf("ciphertext: %s\n", plaintext); }
5b31cd301165fb79b6aa56ea830d59faf34b46b7
72b8c7cc3a40f1e945738ac1d8bae3b6ecdef016
/C/10988.c
cad6706edd1fcbfd4ce8c300db96e47e47900b8c
[]
no_license
rheehot/BaekJoon-Algorithm
f3774825ba67da3f1128ec3b9e150c55c1d95327
326259f0e5a23a0d58c4666760659d1e1ce8cf18
refs/heads/master
2022-04-06T09:28:01.241305
2020-03-02T15:45:50
2020-03-02T15:45:50
null
0
0
null
null
null
null
UTF-8
C
false
false
297
c
10988.c
#include <stdio.h> #include<string.h> int main() { int i; int hoi = 1; char str[101] = { 0, }; int len; gets(str); len = strlen(str); for (i = 0; i < len; i++) { if (str[i] != str[len - 1 - i]) { hoi = 0; break; } } if (hoi==1) { printf("1"); } else { printf("0"); } }
1f93c8cd00aa593f8c7e0c6eb02383cc34977697
3b13b538a6daf4b14dec23c27e40adfccfb0d104
/R.D.B.A Studio/R.D.B.A Studio/UnityConfigureVersion.gen.h
3edf50dd5a6044943ae8ab7b5cdfddb7d4edec03
[]
no_license
CirnuRobert/Isac_Studio
11e52fe9d63e5133f0201c377a0bc2f73c030c24
cf5aa929de03e7a4b4649a9b62e978a31441062d
refs/heads/master
2021-01-09T15:03:19.279655
2020-02-22T13:54:35
2020-02-22T13:54:35
242,347,997
0
0
null
null
null
null
UTF-8
C
false
false
279
h
UnityConfigureVersion.gen.h
#pragma once // Generated by build script, do not edit! #define UNITY_VERSION "2018.4.11f1" #define UNITY_VERSION_DIGITS "2018.4.11" #define UNITY_VERSION_SUFFIX "f1" #define UNITY_VERSION_VER 2018 #define UNITY_VERSION_MAJ 4 #define UNITY_VERSION_MIN 11 #define UNITY_IS_BETA 0
eaed6d0d9a7bf26633c1479fc7ed82263486584f
75f81fe64efecd48bfee51ed71518c1ca3e45227
/happhub/HapphubPublisherBase/src/BufferIO.h
0a96c716f085641b0d647fc4db65275cc682c57b
[]
no_license
cpopescu/whispercast-extra
054ddf58f51cd1b70165a6538d02964f2e04701d
a49f1d4337a5d59100a946bdec8c0eb53d3cf527
refs/heads/master
2020-04-11T09:54:21.590571
2013-05-24T15:29:18
2013-05-24T15:29:18
2,916,974
0
0
null
null
null
null
UTF-8
C
false
false
402
h
BufferIO.h
#include "Log.h" extern "C" { #include "libavcodec/avcodec.h" typedef struct { uint8_t* data; int size; int length; int position; } Buffer; int buffer_create(Buffer** buffer); void buffer_destroy(Buffer** buffer); int buffer_read(void* opaque, uint8_t *buf, int size); int buffer_write(void* opaque, uint8_t *buf, int size); int64_t buffer_seek(void* opaque, int64_t pos, int whence); }
ecf4ed1c43ba7894b6c7075c3fe09fc3159116f0
9e62d6a96f67aba07858c75e5f37e2446a7c4638
/examples/random/src/random.c
9c78cbe15c3155a86c1181f2ba264d9e270b8523
[]
no_license
yspede0000/first
7dd50e100a7099154ec1760a8a8d843babcdf30f
52720f06841174e285f45ef55dd2b13bac4d58e7
refs/heads/master
2021-01-19T05:25:05.807692
2012-12-05T17:50:51
2012-12-05T17:50:51
null
0
0
null
null
null
null
UTF-8
C
false
false
1,432
c
random.c
/* ============================================================================ Name : random.c Author : Version : Copyright : Your copyright notice Description : Hello World in C, Ansi-style ============================================================================ */ #include<stdio.h> #include<stdlib.h> #include<time.h> int members = 0; int value = 0; int x,y=0; int main(void) { // get the numbers for the class (scanf) printf("how many class members 6-15: "); scanf("%d", &members); printf("how many members in every group: "); scanf("%d", &value); // get random numbers from the input { int array[members]; int i; for (i = 0; i <= members; i++) array[i] = i; srand((unsigned) time(NULL )); for (i = 0; i <= members; i++) { int index1 = i; int index2 = rand() % members; int temp; temp = array[index1]; array[index1] = array[index2]; array[index2] = temp; } { // print the numbers in groups. // for (i=0; i<=value; i++) // printf("member[%d] = %d",i,array[i]); // for (b = 0; b < members; b++, printf("\n")) // for (a = 0; a < value; a++) // for (i=0; i<=5; i++) // printf("%d ",array[i]); for (i=0; i<=members; i++){ printf("%d ",array[i]); } printf("\n"); for (i=0; i<=members; i++){ printf("%d ",array[i]); } // print where the last group members will be return (0); } } }
4cad2ddb3cf604cb69ae2315cbc764bbd65763c2
66330fc1f4d31f0d10ab5777edddb3f401c463a2
/cw07/zad1/barber.c
c5b7c0364c44369df97b8a4f730b6cbe12197cca
[]
no_license
MiRudnik/Operating-Systems-AGH
791740a6a3c0ab54d851b8e33fdb19b645037589
dc02858b57b8b259372ff260bc1c77f52fa17043
refs/heads/master
2020-04-29T17:05:10.609933
2019-03-18T13:01:32
2019-03-18T13:01:32
176,286,370
0
0
null
null
null
null
UTF-8
C
false
false
5,865
c
barber.c
#define _GNU_SOURCE #define _POSIX_C_SOURCE 199309L #include <stdio.h> #include <stdlib.h> #include <time.h> #include <unistd.h> #include <sys/sem.h> #include <sys/shm.h> #include <sys/ipc.h> #include <sys/types.h> #include <sys/wait.h> #include <signal.h> #include "shmSpecs.h" int shmid = -1; // shared memory identifier Shm *shm; // pointer to shared memory int semid = -1; // semaphore group identifier void handleSIGTERM(int signo){ printf("Received SIGTERM.\nClosing barber shop. Come back tomorrow!\n"); exit(2); } void cleanup(){ if(shmid != -1){ shmdt(shm); if (shmctl(shmid, IPC_RMID, NULL) < 0) printf("Error while removing shared memory!\n"); } if(semid != -1){ if (semctl(semid, 0, IPC_RMID, NULL) < 0) printf("Error while removing semaphores!\n"); } } double get_timestamp(){ struct timespec stamp; clock_gettime(CLOCK_MONOTONIC,&stamp); return (double)stamp.tv_sec + 1.0e-9*stamp.tv_nsec; } void set_semaphores(){ semctl(semid,SLEEP,SETVAL,0); semctl(semid,ARRIVE,SETVAL,1); semctl(semid,QUEUE,SETVAL,1); semctl(semid,INVITE,SETVAL,0); semctl(semid,READY,SETVAL,0); semctl(semid,SHAVING,SETVAL,0); } void block_semaphore(int sem){ struct sembuf operation; operation.sem_num = sem; operation.sem_op = -1; operation.sem_flg = 0; semop(semid,&operation,1); } void unblock_semaphore(int sem){ struct sembuf operation; operation.sem_num = sem; operation.sem_op = 1; operation.sem_flg = 0; semop(semid,&operation,1); } //________________________________MAIN_____________________________________ int main(int argc, char **argv){ atexit(cleanup); signal(SIGTERM,handleSIGTERM); sigset_t mask; sigemptyset(&mask); sigaddset(&mask,SIGINT); sigprocmask(SIG_BLOCK,&mask,NULL); // blocking SIGINT if(argc != 2){ printf("Pass number of seats as only argument!\n"); return EXIT_FAILURE; } int seats = (int) strtol(argv[1],NULL,10); if(seats > MAXSEATS || seats < 1){ printf("Wrong number of seats! (Maximum is %d)\n",MAXSEATS); return EXIT_FAILURE; } char* path = getenv("HOME"); if(path == NULL){ printf("Couldnt get $HOME value!\n"); return EXIT_FAILURE; } key_t shmkey = ftok(path,PROJECTID); shmid = shmget(shmkey,sizeof(Shm),IPC_CREAT | IPC_EXCL | 0666); if(shmid < 0){ printf("Couldnt create shared memory segment!\n"); return EXIT_FAILURE; } shm = (Shm*) shmat(shmid,NULL,0); if(shm < 0){ printf("Couldnt get a pointer to the shared memory!\n"); return EXIT_FAILURE; } shm->clients_sitting = 0; shm->seats = seats; shm->barber_asleep = 0; key_t semkey = ftok("./", PROJECTID); semid = semget(semkey, 6, IPC_CREAT | IPC_EXCL | 0666); if(semid < 0){ printf("Couldnt create semaphores!\n"); return EXIT_FAILURE; } set_semaphores(); // SLEEP 0, ARRIVE 1, QUEUE 1, INVITE 0, READY 0, SHAVING 0 - starting values printf("Opening barber shop with %d seats.\n",seats); while(1){ block_semaphore(ARRIVE); // block arriving, now I'm looking for clients block_semaphore(QUEUE); // I need to check for clients if(shm->clients_sitting == 0){ // no clients waiting unblock_semaphore(QUEUE); // clients can queue now printf("[%f] Barber: Falling asleep.\n",get_timestamp()); shm->barber_asleep = 1; // going to sleep unblock_semaphore(ARRIVE); // let client enter and wake me up block_semaphore(SLEEP); // waiting for client to wake me up printf("[%f] Barber: Waking up.\n",get_timestamp()); shm->barber_asleep = 0; // client woke me up unblock_semaphore(ARRIVE); // let others check on me since I'm starting working printf("[%f] Barber: Inviting client %d for shaving.\n",get_timestamp(),shm->current_client); unblock_semaphore(INVITE); // invite client to the chair block_semaphore(READY); // wait for client to sit printf("[%f] Barber: Starting shaving client %d.\n",get_timestamp(),shm->current_client); printf("[%f] Barber: Finishing shaving client %d.\n",get_timestamp(),shm->current_client); unblock_semaphore(SHAVING); // I finished shaving, client can leave } else{ // clients waiting shm->current_client = shm->fifo[0]; // getting current client and moving queue for(int i=0; i<shm->clients_sitting-1; i++) shm->fifo[i] = shm->fifo[i+1]; shm->clients_sitting--; printf("[%f] Barber: Inviting client %d for shaving.\n",get_timestamp(),shm->current_client); unblock_semaphore(QUEUE); // clients can queue now unblock_semaphore(ARRIVE); // let others check on me since I'm starting working kill(shm->current_client,SIGUSR1); block_semaphore(READY); // wait for client to sit printf("[%f] Barber: Starting shaving client %d.\n",get_timestamp(),shm->current_client); printf("[%f] Barber: Finishing shaving client %d.\n",get_timestamp(),shm->current_client); unblock_semaphore(SHAVING); // I finished shaving, client can leave } } return EXIT_SUCCESS; }
cfc968a4ee872d3a863c61423c135bdcd4f9598a
c2cedcf36667730f558ab354bea4505b616c90d2
/players/guilds/dopplegangers/room/barbarian_entrance.c
6623c3677a623463a40e5822f58690b91a7b42b7
[]
no_license
wugouzi/Nirvlp312mudlib
965ed876c7080ab00e28c5d8cd5ea9fc9e46258f
616cad7472279cc97c9693f893940f5336916ff8
refs/heads/master
2023-03-16T03:45:05.510851
2017-09-21T17:05:00
2017-09-21T17:05:00
null
0
0
null
null
null
null
UTF-8
C
false
false
9,768
c
barbarian_entrance.c
/* * Mystic guild faction (Dopplegangers) entrance * Rumplemintz */ #pragma strong_types #include <ansi.h> #include "/sys/wizlevels.h" #include "../def.h" inherit "room/room"; void reset(int arg) { if (arg) return; set_light(1); short_desc = "The Doppleganger Mystics' Faction"; long_desc = "You have entered the Doppleganger Barbarian Faction.\n" + "Type 'list' for a list of commands.\n"; dest_dir = ({ "/players/grimm/rooms/haphaz_a13", "east", GUILD_DIR + "room/barbarian_guildhall", "west", }); } void init() { ::init(); add_action("west", "west"); /* Barbarian Faction member check */ add_action("list", "list"); add_action("unjoin", "unjoin"); add_action("join", "join"); add_action("swap", "swap"); add_action("cost", "cost"); add_action("advance", "advance"); } int west() { string proom; object badge; badge = present("V-GUILD", this_player()); proom = "/players/guilds/dopplegangers/room/barbarian_guildhall"; if ((int)this_player()->query_level() < WL_WIZARD) { if (!badge || !badge->query_faction("barbarian") || (string)this_player()->query_guild_name() != "doppleganger") { write("You are not a member of the Barbarian Faction.\n" + "You cannot enter that room.\n"); if (find_object(proom)) tell_room(find_object(proom), this_player()->query_name() + " tried to enter the room " + "but got kicked out!\n"); return 1; } } return 0; } int list() { write(" Commands you can do:\n"+ " -----------------------------------------------------\n"+ " Advance .. Advance your level in the faction\n"+ " Cost ..... Check the costs in coins of advancing\n"+ " Join ..... Join the faction\n"+ " List ..... This menu\n"+ " Swap ..... Swap <x> experience for <x> faction experience\n"+ " Unjoin ... Unjoin the faction (loosing all faction rank!)\n"+ " -----------------------------------------------------\n\n"); return 1; } int join() { object badge; badge = present("V-GUILD", this_player()); if (this_player()->query_npc()) return 0; if (!badge || (string)this_player()->query_guild_name() != "doppleganger") { write("You are not a member of the Dopplegangers!\n"); return 1; } if (badge->query_faction("barbarian") || badge->query_faction("mystic")) { write("You are already a member of a Doppleganger faction.\n"); return 1; } if ((int)this_player()->query_guild_rank() < 9) { write("You must be guild level 9 in the Dopplegangers Guild to join.\n"); return 1; } if ((int)this_player()->query_guild_exp() < 200000) { write("You must first prove yourself worthy.\n" + "You must ask the Sage of Reeseport for help by typing:\n" + "\"judge me worthy\"\nIn the Sage's house.\n"); return 1; } write("You have just joined the Barbarian Faction!!!\n"); this_player()->set_guild_rank(10); badge->set_faction("barbarian"); badge->reset(); badge->save_me(1); command("renew", this_player()); write_file(GUILD_LOG + "join", capitalize((string)this_player()->query_real_name()) + " joined the Barbarian Faction - Time: " + ctime() + "\n" + "-------------------------------------------------\n"); CHAND->channel_message("dopplegangersB", this_player()->query_name() + " just joined the Barbarian Faction!!!", HIB + "[Grimm's Assistant]: " + NORM); say(this_player()->query_name() + " just joined the Doppleganger Barbarian Faction!!!\n"); return 1; } void unjoin() { object badge; badge = present("V-GUILD", this_player()); if (!badge->query_faction("barbarian")) { write("You are not a member of the Barbarian Faction!\n"); return; } write("WARNING: This will remove all Barbarian Faction status.\n" + " You will lose all of your swapped guild experience\n" + " above guild level 9.\n" + "Are you sure you want to do this? (Y or N)\n"); write("->> "); input_to("unjoin_decision"); } int unjoin_decision(string str) { object badge; if (!str || str == "N" || str == "no" || str == "No") { write("Aborting...\n"); return 1; } badge = present("V-GUILD", this_player()); CHAND->channel_message("dopplegangersB", this_player()->query_name() + " just left the Barbarian Faction!!!", HIB + "[Grimm's Assistant]: " + NORM); write_file(GUILD_LOG + "unjoin", capitalize((string)this_player()->query_real_name()) + " unjoined the Barbarian Faction - Time: " + ctime() + "\n" + "Guild Exp: " + this_player()->query_guild_exp() + "\n" + "Guild Rank: " + this_player()->query_guild_rank() + "\n" + "----------------------------------------------------\n"); badge->remove_faction("barbarian"); badge->set_guild_exp(180000); this_player()->set_guild_rank(9); badge->reset(); badge->save_me(1); command("renew", this_player()); say(this_player()->query_name() + " has left the Barbarian Faction.\n"); return 1; } int cost() { object badge; badge = present("V-GUILD", this_player()); if (!badge || !badge->query_faction("barbarian")) { write("You are not a member of the Barbarian Faction yet...type \"join\".\n"); return 1; } write( " Costs to advance in the faction (in exp)\n"+ " ----------------------------------------\n"+ " Level 10 ......................... Given\n"+ " Level 11 ........................ 250000\n"+ " Level 12 ........................ 300000\n"+ " Level 13 ........................ 350000\n"+ " Level 14 ........................ 400000\n"+ " Level 15 ........................ 450000\n"+ " ----------------------------------------\n"+ " You currently have: " + this_player()->query_guild_exp() + "\n\n"); return 1; } int swap(string str) { int amount, minexp; object badge; badge = present("V-GUILD", this_player()); if (!badge || !badge->query_faction("barbarian")) { write("You are not a member of the Barbarian Faction yet...type \"join\".\n"); return 1; } if (!str) { write("How much experience do you want to swap to guild experience?\n"); return 1; } if (sscanf(str, "%d", amount) != 1) { write("Usage: swap <amount>\n"); return 1; } if (amount <= 0) { write("You must swap a positive amount.\n"); return 1; } #if 0 if ((int)this_player()->query_extra_level() < 1) minexp = (int)this_player()->query_exp() - (int)call_other("room/adv_guild", "get_next_exp", (int)this_player()->query_level() - 1); else minexp = (int)this_player()->query_exp() - (int)call_other("room/exlv_guild", "get_next_exp", (int)this_player()->query_extra_level() - 1); if (amount < -minexp) { #else if (amount > (int)this_player()->query_free_exp()) { #endif write("You don't have enough experience available to swap that much.\n"); write("You may swap a total of " + #if 0 ((int)this_player()->query_exp() - minexp) + #else (int)this_player()->query_free_exp() + #endif ".\n"); return 1; } write_file(GUILD_LOG + "swap", capitalize((string)this_player()->query_real_name()) + " just swapped " + amount + " exp.\n" + "Remaining XP: " + this_player()->query_exp() + "\n" + "The time is : " + ctime(time()) + "\n" + "---------------------------------------------------\n\n"); this_player()->add_exp(-amount); this_player()->add_guild_exp(amount); write("Thank you for using Dopplerz 'R Us Franchised Swapping Credit " + "Union.\n"); return 1; } int advance() { int minexp; object badge; badge = present("V-GUILD", this_player()); if (!badge || !badge->query_faction("barbarian")) { write("You are not a member of the Barbarian Faction yet...type \"join\".\n"); return 1; } switch(this_player()->query_guild_rank()) { case 10: minexp = 250000; break; case 11: minexp = 300000; break; case 12: minexp = 350000; break; case 13: minexp = 400000; break; case 14: minexp = 450000; break; default: write("You are at the highest level in the Barbarian Faction.\n"); return 1; break; } if ((int)this_player()->query_guild_exp() < minexp) { write("You do not have enough guild experience to advance.\n"); return 1; } this_player()->add_guild_rank(1); CHAND->channel_message("dopplegangerB", this_player()->query_name() + " just advanced to level " + this_player()->query_guild_rank() + " in the guild!!\n", HIB + "[Grimm's Assistant]: " + NORM); write_file(GUILD_LOG + "advance", capitalize((string)this_player()->query_real_name()) + " just advanced to level " + this_player()->query_guild_rank() + ".\n" + "The time is : " + ctime(time()) + "\n" + "------------------------------------------------------\n\n"); return 1; }
4ef163ff3e004678996ac953aa4991a9307cd77f
8689c495e95f0b5e6be57f51d83f7a2fc4a68dc7
/0x03-more_functions_nested_loops/5-more_numbers.c
1d893b21a4893504d43f5adfbecb5d0ae472fdc0
[]
no_license
Cu7ious/holbertonschool-low_level_programming
f3ead9ec3cf0e14fa3963e264970d5963b90d5e0
a1240df0736c00e08d6ac9b51a4d77020167d6ba
refs/heads/master
2018-11-22T09:48:56.868713
2018-09-04T05:58:04
2018-09-04T05:58:04
117,904,323
1
1
null
null
null
null
UTF-8
C
false
false
486
c
5-more_numbers.c
#include "holberton.h" /** * printer - prints the line of numbers * followed by a new line * @n: the length of a line * * Return: void */ void printer(int n) { int i; for (i = 0; i <= n; i++) { if (i > 9) _putchar(i / 10 + '0'); _putchar(i % 10 + '0'); } _putchar('\n'); } /** * more_numbers - 10 times the numbers, from 0 to 14 * followed by a new line * * Return: void */ void more_numbers(void) { int i = 0; while (i < 10) { printer(14); i++; } }
c218c1930c15403c8a1c5188f03db89b10d945f5
e9dffcf439beb832f9cec338a7bb5d5408e1988a
/Zadanie11-6.c
d55e02760cdb94995aabcefc71cc540e728df37e
[]
no_license
Djuliadark/Pilugina-Julia
2311eb2a3f6f33356c7dc3cc518e5d471d5e1cfc
a25f9b0d2ab852a568532c322a357f9996b9ef1f
refs/heads/master
2023-02-15T17:50:37.872872
2021-01-17T20:31:48
2021-01-17T20:31:48
297,639,105
0
0
null
null
null
null
UTF-8
C
false
false
503
c
Zadanie11-6.c
#include<stdio.h> #include<math.h> int main() { int A,n,m,k; printf ("Число A = "); scanf ("%d", &A); n = A/10; k = A/100; m = A % 2; if (n == 0) {printf ("Число однозначное\n");} if ((n > 0) && (k < 0)) { printf ("Число двузначное\n");} if (k != 0) { printf ("Число трёхзначное\n");} if (m == 0) {printf ("чётное\n");} if (m == 1) {printf ("не чётное\n");} return 0; }
c8909f30fffa0a74aaa228f7313b8a01e9065723
8d2018fed61fb1e6eb052a09393744757165fc11
/libft/ft_memalloc.c
a82eb024b5c10a1616ebffbaf4d671ac52b29159
[]
no_license
BiswashBaral/Get_next_line
33bfcbbbef2e4fdda19dc9f60490a08246505cff
1681d9493b56a8311b8cf6ec754c3f6c7ca2867d
refs/heads/master
2020-04-14T04:21:50.495349
2019-04-08T00:32:14
2019-04-08T00:32:14
163,633,934
0
0
null
null
null
null
UTF-8
C
false
false
1,046
c
ft_memalloc.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memalloc.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: ndanilov <ndanilov@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/10/22 21:50:46 by amedvede #+# #+# */ /* Updated: 2018/12/06 23:13:35 by ndanilov ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void *ft_memalloc(size_t size) { void *mem; mem = malloc(size); if (!mem) return (NULL); ft_bzero(mem, size); return (mem); }
175d55c52230881fa4789547de4f2f513de3f1ff
4c0e8088a8cc86ba78d24af49c03eb1a141a6be8
/pset2/caesar.c
0e73c40b5b2e3382fdb3536cc5767ae27e447626
[]
no_license
rhasnainanwar/CS50
297d037765752baaf3bb253b68e9a8b107c6ab47
2f3d5cef8c9e2a7cd653d3cd1d80c58ad5bab2d6
refs/heads/master
2021-09-04T20:31:40.677404
2018-01-22T07:05:37
2018-01-22T07:05:37
94,614,846
1
0
null
null
null
null
UTF-8
C
false
false
1,047
c
caesar.c
#include <stdio.h> #include <string.h> #include <ctype.h> #include <cs50.h> string cipher(string, int); int main(int argc, string argv[]){ if(argc != 2){ printf("INVALID STATEMENT\n"); return 1; } int key = (int)strtol(argv[1], (char **)NULL, 10); //ASCII adjustment printf("plaintext: "); string message = get_string(); printf("ciphertext: %s\n", cipher(message, key) ); //printing the encrypted message return 0; } string cipher(string message, int key){ // int length = strlen(message); for(int i = 0; message[i] != '\0'; i++){ if( isalpha(message[i]) ){ if( isupper( message[i] ) ){ message[i] += key; //adding key while( message[i] > 'Z') //if exceeding ASCII, go round // for UPPER message[i] -= 26; } else if( islower( message[i] ) ){ message[i] += key; //adding key while( !isalpha( message[i] )) //if exceeding ASCII, go round // for UPPER message[i] -= 26; } } } return message; }
8ce5af080420dcab86ecd5101ed5a054ab091051
8e1d0140c59ccb625e5cdd0156c1af964a4008ee
/first continue.c
694c2e17313d4ab92d653c1ecd6c873ebb39031d
[]
no_license
Sowad17/1st-semester
3dfe2b5fb5fdc307674579c11e32c9ede5352995
6dbbcd81103cb31e56d8a22ee9f7f88425c93dad
refs/heads/master
2020-03-11T15:38:57.496587
2018-04-23T09:58:33
2018-04-23T09:58:33
130,091,384
1
0
null
null
null
null
UTF-8
C
false
false
333
c
first continue.c
#include<stdio.h> int main() { int total , i, j; total=0; do { printf("enter the next number (0 to stop): "); scanf("%d",&i); printf("Enter Number again :"); scanf("%d",&j); if(i !=j) { printf("Mismatch\n"); continue; } total=total+i; } while(i); printf("total is %d \n",total); return 0; }
d5f10f232b5147b74f9adb52cef3972a0018d348
3a45c504486fd68916ac7a78d3ea67e05f644c2e
/Configurable/config.h
c746572960f868b0f1fb06f865a8692c28af862a
[ "MIT" ]
permissive
Speedphoenix/Speedphoenix-Engine
90ed48757b90941dcf4e473047e3ba4313cf74c0
be495ed6f4a87e4609a3d34f083d1573ee01c6d7
refs/heads/master
2021-06-12T01:55:54.483619
2019-12-13T12:22:44
2019-12-13T12:22:44
149,338,958
0
0
null
null
null
null
UTF-8
C
false
false
1,233
h
config.h
#ifndef CONFIG_H_INCLUDED #define CONFIG_H_INCLUDED /** This file contains constants and others stuff to configure the game */ //from allegro5 #include "allegro5/keycodes.h" #include "allegro5/events.h" /******************************************************************** CONFIGURABLE CONSTANTS ********************************************************************/ const double negligibleDistance = 0.25; //in pixels const double minLapse = 0.001; /******************************************************************** ALLEG ********************************************************************/ const int defaultDispWidth = 1200; const int defaultDispHeight = 800; /******************************************************************** CAMERA ********************************************************************/ const double maxCameraZoom = 2.0; //for the moment const double minCameraZoom = 0.5; /******************************************************************** IMAGES ********************************************************************/ #ifndef RES_DIR //might want to put this one as a game-specific config # define RES_DIR "res/" #endif // RES_DIR #endif // CONFIG_H_INCLUDED
8785141221cc345d0440d8b167b7013ac490ab3b
4f64c791ce7deb0e6b110f5c8481741850ab8d1d
/User/User_APP/show_BMP.h
a214cd6dafc20b1a9e181dcd5f1a39580694c5ce
[]
no_license
RtuQ/ChatterM
1ee0bfef8ba9130d0c605cb4c0b3e4624489f850
b2b846f2062bf6ed65ca9d9ca13dad9e981a745f
refs/heads/master
2020-05-15T12:52:36.900814
2019-04-19T16:01:18
2019-04-19T16:01:37
182,273,735
0
0
null
null
null
null
UTF-8
C
false
false
92
h
show_BMP.h
#ifndef _show_BMP_H #define _show_BMP_H #include "includes.h" void show_BMP(void); #endif
a002817810888ac5f67790d64834d4a5fafca205
51198be0ea26e74b8e726926c59aee82980a5111
/Project 3 PThreads/proj3_B.c
1ad5c4037dfb64a0478a0bf53c375f9ad05b38f5
[]
no_license
BlairTodd97/Operating-Systems
b430a60174153c8feaa5f979d09d316167d15e86
a1e96bf48c68c3189194379fe3e5c6c452f6648d
refs/heads/main
2023-07-10T06:12:49.923690
2021-08-18T00:52:08
2021-08-18T00:52:08
395,157,734
0
0
null
null
null
null
UTF-8
C
false
false
1,487
c
proj3_B.c
// Blair Todd // CS 4328 // Project 3 // #include <stdio.h> #include <math.h> #include <unistd.h> #include <pthread.h> void *get25percent(char id); struct Award{ int scholarship; int withdrawn; }; struct Award account; //shared memory pthread_mutex_t mutex; int main(){ pthread_t studentA; pthread_t studentB; pthread_t studentC; account.scholarship = 4000; account.withdrawn = 0; pthread_create(&studentA, NULL, (void*(*)(void*)) get25percent, (void*) 'A'); pthread_create(&studentB, NULL, (void*(*)(void*)) get25percent, (void*) 'B'); pthread_create(&studentC, NULL, (void*(*)( void*))get25percent, (void*) 'C'); pthread_join(studentA, NULL); pthread_join(studentB, NULL); pthread_join(studentC, NULL); printf("Total given out:%d \n", account.withdrawn); pthread_exit(0); } void *get25percent(char id){ int myTotal = 0; int temp; pthread_mutex_lock(&mutex); while(account.scholarship > 0){ temp = ceil(account.scholarship * 0.25); account.scholarship = account.scholarship - temp; myTotal = myTotal + temp; printf(" %c = %d\n", id, temp); sleep(1); //delay output of thread pthread_mutex_unlock(&mutex); } account.withdrawn += myTotal; }
0ca3d2ee17bec262a55d900cdd8781fafb6b53db
6d0d470e9e9c03b7a46db50af2b3f4ec6cdaf9b4
/client/cloud/cloud.c
dc514d3c0a55eb85190a0db793c5aa1ac26c172d
[]
no_license
tolairy/TCBackup
802387de1b29c28795e7ac8123b9d01779de6846
3e49cf43a0bb734bc776677f503fd42e4360deed
refs/heads/master
2020-04-22T23:19:12.084989
2015-03-27T05:56:39
2015-03-27T05:56:39
20,062,495
0
1
null
null
null
null
UTF-8
C
false
false
3,215
c
cloud.c
#include "../global.h" #ifdef CLOUD_TEST_ #include <pthread.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <semaphore.h> #include "../src/store.h" #include "cloud.h" #include "baidu/api.h" #endif #define NAME_LENGTH 32 static SyncQueue *upload_queue = NULL; static SyncQueue *download_queue = NULL; static pthread_t upload_thread; static pthread_t download_thread; float bandwidth = 0; double upload_time_first = 0; double upload_time_second = 0; void * handle_upload(void *arg) { TIMER_DECLARE(start,end); TIMER_START(start); char local_path[FILE_NAME_LEN]; char cloud_path[FILE_NAME_LEN]; while (1) { char *name = (char *)(sync_queue_pop(upload_queue)); if (strcmp(name, "end") == 0) { free(name); break; } printf("upload %s left %d\n", name, sync_queue_size(upload_queue)); strcpy(local_path, TmpPath); strcat(local_path, name); strcpy(cloud_path, cloud_dir); strcat(cloud_path, name); if (OVERHEAD) { struct stat buf; stat(local_path, &buf); if (upload_queue->queue.last == NULL || strcmp((char *)(((upload_queue->queue).last)->data),"end") != 0){ usleep(1000*1000*((float)buf.st_size)/(1024*1024*bandwidth)); } else { upload_time_second += ((float)buf.st_size)/(1024*1024*bandwidth); } free(name); continue; } put_to_cloud(cloud_path, local_path); free(name); } TIMER_END(end); TIMER_DIFF(upload_time_first,start,end); return NULL; } void * handle_download(void *arg) { char local_path[FILE_NAME_LEN]; char cloud_path[FILE_NAME_LEN]; while (1) { char *name =(char *)sync_queue_pop(download_queue); if (strcmp(name, "end") == 0) { free(name); break; } strcpy(local_path, TmpPath); strcat(local_path, name); strcpy(cloud_path, cloud_dir); strcat(cloud_path, name); get_from_cloud(cloud_path, local_path); free(name); } return NULL; } void cloud_upload_init() { init_bcs(); upload_queue = sync_queue_new(); int res = pthread_create(&upload_thread, NULL, handle_upload, NULL); if (res != 0) { err_msg1( "create upload thread error!"); return ; } } bool cloud_upload(char *name) { char *buf = (char *)malloc(NAME_LENGTH); memset(buf, 0, NAME_LENGTH); strcpy(buf, name); sync_queue_push(upload_queue, buf); return true; } void cloud_upload_destory() { char *destory = "end"; cloud_upload(destory); pthread_join(upload_thread, NULL); sync_queue_free(upload_queue); free_bcs(); } void cloud_download_init() { init_bcs(); download_queue = sync_queue_new(); int res = pthread_create(&download_thread, NULL, handle_download, NULL); if (res != 0) { err_msg1( "create upload thread error!"); return ; } } bool cloud_download(char *name) { char *buf = (char *)malloc(NAME_LENGTH); memset(buf, 0, NAME_LENGTH); strcpy(buf, name); sync_queue_push(download_queue, buf); return true; } void cloud_download_destory() { char *destory = "end"; cloud_download(destory); pthread_join(download_thread, NULL); sync_queue_free(download_queue); free_bcs(); } #ifdef CLOUD_TEST int main() { segment_name segment; strcpy(segment, "12162561777"); delete_file(segment); //terminate_cloud_download(); } #endif
e4efb52c286e9767b6bda9b05c0354e20e3b13a9
6e663a586f4844250bce8b4fa9040b17b1e7206c
/Application_Example/server-coordinator/include/cluster_id.h
4e610a179ee1fcaf3e8ceb158536e6940eceb6aa
[ "MIT" ]
permissive
rishabh00/generic-ZCL
8957d7cc2831c43a61e09ef29aa8030db426704e
5d709e9973b233c22732764e47fd0a6f46fe2577
refs/heads/master
2020-03-27T14:52:05.123727
2018-11-03T17:10:04
2018-11-03T17:10:04
146,683,436
2
1
MIT
2018-08-30T19:57:50
2018-08-30T02:15:24
null
UTF-8
C
false
false
2,127
h
cluster_id.h
/******************************************************************************* * Description: * @file : cluster_id.h * @brief : validates cluster id and attribute id * Author - HolyDevil * ******************************************************************************* * * History * * Jan/23/2017, Holydevil, Created for training purpose * ******************************************************************************/ #ifndef CLUSTER_ID_H #define CLUSTER_ID_H /******************************************************************************* * Define ******************************************************************************/ #define SUPPORTED_CLUSTER 15 /****************************************************************************** * Enums ******************************************************************************/ typedef enum { ZCL_CLUSTERID_BASIC = 0x0000, ZCL_CLUSTERID_POWER = 0x0001, ZCL_CLUSTERID_DEVICE_TEMPERATURE = 0x0002, ZCL_CLUSTERID_IDENTIFY = 0x0003, ZCL_CLUSTERID_ONOFF = 0x0006, ZCL_CLUSTERID_LEVEL_CONTROL = 0x0008, ZCL_CLUSTERID_ALARM = 0x0009, ZCL_CLUSTERID_TIME = 0x000a, ZCL_CLUSTERID_LOCATION = 0x000b, ZCL_CLUSTERID_COMMISIONING = 0x0015, ZCL_CLUSTERID_ANALOG_INPUT = 0x000c, ZCL_CLUSTERID_ANALOG_OUTPUT = 0x000d, ZCL_CLUSTERID_BINARY_INPUT = 0x000f, ZCL_CLUSTERID_BINARY_OUTPUT = 0x0010 } ZCL_Cluster_Id; /****************************************************************************** * Function Prototype ******************************************************************************/ /****************************************************************************** ** @brief Checks that the given atribute belongs to the given cluster and checks as well that the cluster is defined or not * @param _clusterId holds the cluster Id * @param _attr holds the attribute Id * @return SUCCESSFUL ** ******************************************************************************/ int validateClusterId ( uint16_t _clusterId, uint16_t _attr ); #endif /* '#endif' of CLUSTERID_H */
d6361d0244285c651587c668b0fa689ed6b9cdb4
a2503513eab1a355166bf6a8ce498c06c274e15f
/day05/myfun.c
9924b51118c9447cac615d03708d0f63c32b54d0
[]
no_license
pb1903/c
f4f4a983de7f37c49b5e05635319b8c03ca6d309
e9bd44b4832c82e28cab34224e92e578c596de29
refs/heads/master
2020-07-28T20:44:40.889943
2019-09-19T11:08:45
2019-09-19T11:08:45
209,531,899
0
0
null
null
null
null
UTF-8
C
false
false
202
c
myfun.c
int my_add(int a, int b) { return a+b; } int my_sub(int a, int b) { return a-b; } int my_mul(int a, int b) { return a*b; } int my_div(int a, int b) { return a/b; }
cfa0da419ad83f1eda6c50c764eb97f3f0dac025
92e78fbc204a39931a2b1928606f12110ddd0829
/inc/COMMAND_TYPE.h
21ee29b56f82d3c43a51a1e4351b670deaae63de
[]
no_license
zachcooper/Blast-Commander_v3
fd4225207973f0d9d090198cf4ea9e810b0a4f1d
31828ff2ea43e80a7f3ba839896f1257ba14aedb
refs/heads/master
2020-03-15T23:57:41.682014
2018-05-14T03:33:56
2018-05-14T03:33:56
132,404,491
0
1
null
2018-05-12T00:32:10
2018-05-07T03:53:00
Makefile
UTF-8
C
false
false
132
h
COMMAND_TYPE.h
#ifndef __COMMAND_TYPE_h_ #define __COMMAND_TYPE_h_ enum COMMAND_TYPE { follow, intercept, }; #endif // #ifndef __Entity381_h_
41589d7a9115f85b0b0ab97d6a7e4203590dc48b
da1ac633acc9948d2a78152db79d96d41f820dc0
/common/serialize.c
517f2d0d1b85367ef01c3112d3f60f6360c145d2
[]
no_license
lanzhuning/goodao
eba05e6864b016bd103d1d135d2e7056a9c94b40
9f08414fc05242f40034df7adeb9ecc7254b0f36
refs/heads/master
2020-05-29T16:06:40.665508
2019-05-29T16:03:16
2019-05-29T16:03:16
189,240,151
0
0
null
null
null
null
UTF-8
C
false
false
567
c
serialize.c
#include <zconf.h> #include "type.h" #include <stdlib.h> Uchar * ser_value(int *pInt, size_t i); Uchar *ser_int(int i) { return ser_value(&i, sizeof(i)); } Uchar *ser_value(int *pInt, size_t size) { Uchar *result = malloc(size); for (int i = 1; i <= size; i++) { result[size - i] = (0xff) & (*pInt >> (8 * (i - 1))); } return result; } Int un_ser_int(Uchar *arr) { Int result = 0; for (int index = 0; index < 4; ++index) { result = result << (8); result = result | *(arr + index); } return result; }
d17be5c33b46ae362f9eae3128d040c57daa8a08
5f7dfaebfe3ab3934727ffae8302d6799b53fc77
/src/load.c
3937518b2f6ef52c3c120534fa8c80bf1c4e8995
[]
no_license
zalupa-v-rot/lisp
368e839da5b7a91c33ec3b32a4a3e37e2e240c9e
1404cbc6ca65b6f845d7e05d529722fa6b175164
refs/heads/master
2022-12-07T20:53:45.755190
2020-08-19T23:09:50
2020-08-19T23:09:50
288,858,125
0
0
null
null
null
null
UTF-8
C
false
false
4,339
c
load.c
/* ------------------------------------------------------------------------- */ /* в принципе, можно вынести read_file() в отдельный модуль, но это ничего не поменяет. потому как функция load_file() не относится ни к lisp.c ни к inter.c ни к parse. а точнее к последним двум вместе. поэтому функция такой урод. */ #include "./load.h" #include "./parse.h" #include "./inter.h" #include "./clear.h" #include "./memory.h" /* ------------------------------------------------------------------------- */ void load_file(struct error_stack **pcnterr, const struct scell *pname) { struct inter *pcontext = container_of(pcnterr, struct inter, perr); char * volatile pfdata = NULL, * volatile pfname = NULL; IOFILE fd; uintp vfsize, vrealsize; struct error_node senode; io_nullinit(&fd); if (ERROR_CATCH(pcontext->perr, &senode)) { if (pfdata != NULL) { memfree(pcontext->pm, pfdata); } if (pfname != NULL) { memfree(pcontext->pm, pfname); } io_close(&fd); ERROR_SILENT(pcontext->perr); return; } pfname = string_to_cstr(pcontext->pm, &pname->u.sobject); if (io_open(&fd, pfname, "rb") || io_sizeb(&fd, &vrealsize)) { ERROR(pcontext->perr, FAILED_TO_OPEN_FILE); } pfdata = memalloc(pcontext->pm, vrealsize/CHAR_BIT); if (vrealsize == 0 || (vfsize = io_readb(&fd, bitptr(pfdata, BM_IO|BM_LSF), BM_IO|BM_LSF, vrealsize)) != vrealsize) { ERROR(pcontext->perr, FAILED_TO_READ_FILE); } if (io_close(&fd)) { ERROR(pcontext->perr, FAILED_TO_CLOSE_FILE); } if (load_data(pcontext, pfdata, vfsize/CHAR_BIT, pfname)) { ERROR(pcontext->perr, TRACE); } memfree(pcontext->pm, pfdata); memfree(pcontext->pm, pfname); ERROR_LEAVE(pcontext->perr); return; } int load_data(struct inter *pcontext, const char *pfdata, uintp vfsize, const char *pfname) { int vcode; assert(pfdata != NULL); assert(vfsize != 0); assert(pfname != NULL); { uintp vparsepos, vparseline, vparsecolumn; struct parse spar; struct scell sroot; parse_init(&spar, pcontext->pm, pcontext->perr); for (vparsepos = vparseline = vparsecolumn = 0; ; ) { vcode = parse(&spar, pfdata+vparsepos, vfsize-vparsepos, &sroot); if (parse_line(&spar) == 0) { vparsecolumn += parse_column(&spar); } else { vparsecolumn = parse_column(&spar); vparseline += parse_line(&spar); } if (vcode) { fprintf(stderr, "%s: parsing error: %u \"%s\" line: %u" " column: %u %s:%u:\n", pfname, error_code(pcontext->perr), error_str(pcontext->perr), (uint)vparseline, (uint)vparsecolumn, error_srcfile(pcontext->perr), error_srcline(pcontext->perr)); break; } if (TYPEGET(sroot.vtype) != TYPE_NIL) { /* { дебажное !!! */ /* struct mstat_std smstat; */ /* mstat_std(pcontext->pm->phead, &smstat); */ /* printf("_memory usage: sexp %"PRIuPTR", str %"PRIuPTR", strtotal %"PRIuPTR", func %"PRIuPTR", var %"PRIuPTR"\n", */ /* smstat.vsexp, */ /* smstat.vstr, */ /* smstat.vstrtotal, */ /* smstat.vfunc, */ /* smstat.vvar); */ /* } */ if (vcode = inter(pcontext, &sroot)) { fprintf(stderr, "%s: interpretation error: %u \"%s\" %s:%u:\n", pfname, error_code(pcontext->perr), error_str(pcontext->perr), error_srcfile(pcontext->perr), error_srcline(pcontext->perr)); } #ifdef OPTION_HOOK_INTER_RET if (pcontext->pf_hook_inter_ret != NULL) { pcontext->pf_hook_inter_ret(pcontext, pfname, &sroot, pcontext->ptr); } #endif clear_scell(pcontext->pm, &sroot); if (vcode) { break; } } if ((vparsepos += parse_ending(&spar)) == vfsize) { break; } } } return vcode; } /* ------------------------------------------------------------------------- */
34bedd78fa97f5236a7de5874c890058970298ed
8d753bb8f19b5b1f526b0688d3cb199b396ed843
/osp_sai_2.1.8/system/proto/authd/include/authd.h
d10c961b30b7fc4e3ffd27b0dcca820e79ffb7f2
[]
no_license
bonald/vim_cfg
f166e5ff650db9fa40b564d05dc5103552184db8
2fee6115caec25fd040188dda0cb922bfca1a55f
refs/heads/master
2023-01-23T05:33:00.416311
2020-11-19T02:09:18
2020-11-19T02:09:18
null
0
0
null
null
null
null
UTF-8
C
false
false
2,102
h
authd.h
#ifndef __AUTHD_H__ #define __AUTHD_H__ #define M_TRIM_CR(szLine) \ do { \ char *_p = szLine + strlen(szLine) - 1; \ if (*_p == '\n') { \ *_p = '\0'; \ _p--; \ } \ if (*_p == '\r') { \ *_p = '\0'; \ } \ } while (0); \ int32 authd_tbl_init(); int32 authd_proc_startup_done(); struct auth_be_op_s; typedef struct { ctc_task_t *pConnect; /* read / write task */ ctc_task_t *pTimeout; /* timeout task */ void *pObj; /* object for auth backend */ u_int32_t nServerId; /* server index for retry */ u_int32_t nRetries; /* retry round */ struct auth_be_op_s *pCBS; /* callback functions */ } auth_handle_t; typedef void (*AUTH_RESULT_CB)(tbl_auth_session_t *pSess, int nRet, char *pszFmt, ...); /* auth backend operation callbacks */ struct auth_be_op_s { /* init handle */ int (*init)(auth_handle_t *h); /* 0 for success */ /* connect to auth server */ #define M_AUTH_CONNECT_FAILED 0x01 /* connect failed */ #define M_AUTH_CONNECT_INPROGRESS 0x02 /* connect in progress */ #define M_AUTH_CONNECT_SUCCESS 0x04 /* connect success */ int (*do_connect)(auth_handle_t *h, tbl_auth_server_t *pSrv); /* release handle */ void (*release)(auth_handle_t *h); #define M_AUTH_SEND_FAILED 0x01 #define M_AUTH_SEND_SUCCESS 0x02 /* send auth request */ int (*send_request)(auth_handle_t *h, tbl_auth_session_t *pSess, tbl_auth_server_t *pSrv); /* process auth reply * ppSess is return var */ #define M_AUTH_ERROR 0x01 /* auth operation error */ #define M_AUTH_FAILED 0x02 /* auth failed */ #define M_AUTH_INPROGRESS 0x04 /* auth in progress */ #define M_AUTH_SUCCESS 0x08 /* auth success */ int (*process_reply)(tbl_auth_server_t *pSrv, AUTH_RESULT_CB pCB); void (*get_error_msg)(auth_handle_t *h, char *pszErrBuf, size_t nBufSz); }; typedef struct auth_be_op_s auth_be_op_t; uint8 aaa_map_privilege(uint32 privilege); uint8 aaa_remap_privilege(uint8 privilege); #endif /* !__AUTHD_H__ */
091fd1ecc2971d02f84ce218df1f95a3724a1c83
db3a44d16243dd87edf80df08fda86a454ab6858
/score.c
883add02959cfb06644bdaba0f8b0aaf4e0f88ad
[]
no_license
lzientek/choplifter
d9c9a7793d7ef584e5ee721d4bd6e214d543a0a7
2a761f437a1a10edcb58af13f0eac19ce3e69624
refs/heads/master
2020-04-14T17:27:55.988629
2014-03-07T20:19:22
2014-03-07T20:19:22
null
0
0
null
null
null
null
ISO-8859-1
C
false
false
1,814
c
score.c
#include "score.h" void score_board(SDL_Surface *screen) { //écriture du score dans le fichier FILE* fichier=NULL; char score[15][10]={'0'}; int i=0; fichier=fopen("sup.score","r"); if (fichier != NULL) { while (i<15) { if(fgets(score[i], 10, fichier) == NULL ) score[i][0]='0'; i++; } } fclose(fichier); //init affichage du score TTF_Font* arcade_font = NULL; arcade_font=TTF_OpenFont("ARCADECLASSIC.TTF", 20); SDL_Color color = {20, 20, 20}; Text scoreText[15]; for(i=0;i<15;i++) { if(score[i][0]!='0') score[i][strlen(score[i])-1] =0; scoreText[i].text = score[i]; text_init(&scoreText[i], arcade_font,color); scoreText[i].position.x=WIDTH/2-scoreText[i].src->w/2; scoreText[i].position.y=i*22+50; } //init screen game over int goon=1; SDL_Surface* image=IMG_Load("assets/score.png"); SDL_Rect position; position.x=0; position.y=0; SDL_BlitSurface(image, NULL, screen, &position); for(i=0;i<15;i++) display_text(&scoreText[i],screen); SDL_Flip(screen); SDL_Delay(2000); SDL_Event event; while(goon) { SDL_WaitEvent(&event); switch (event.type) { case SDL_KEYDOWN: goon=0; break; default: break; } } TTF_CloseFont(arcade_font); SDL_FreeSurface(image); for(i=0;i<15;i++) SDL_FreeSurface(scoreText[i].src); }
7e705b1c0c52a752c02756a4314da136dd680403
898ec2e27fa62d5fadfb22d3b801685870694116
/advection.h
0859a765ea450228bc953ef8ad20b75cd9885fc3
[]
no_license
ythaha/Citcom2D_Property_MPI
3b347d50c7eb15ab0ec0152b6dfe8a4f6711914e
bd9e85d23490dfe176c072286c120db629aac327
refs/heads/main
2023-08-24T16:32:57.717693
2021-09-30T06:25:30
2021-09-30T06:25:30
null
0
0
null
null
null
null
UTF-8
C
false
false
682
h
advection.h
struct ADVECTION { int ADVECTION; double gamma; double timestep; double fine_tune_dt; double dt_reduced; double fixed_timestep; double max_dimensionless_time; int markers_g, markers, markers1, markers_uplimit, markers_per_ele; double marker_maxdist, marker_mindist; int markerIX, markerIZ; int min_timesteps; int max_timesteps; int max_total_timesteps; int timesteps; int total_timesteps; int temp_iterations; int max_substeps; int sub_iterations; int last_sub_iterations; double vel_substep_aggression; double temp_updatedness; double visc_updatedness; double lid_defining_velocity; double sub_layer_sample_level; } advection;
e4923e6c6cf6bb42654a4c1baa33083acde3b9c9
d580aeb44c09b1d853557af11859759704b27c40
/src/inc/CcidLocalAccess.h
72e3cd379228f079de8bf5356cc10ed17d40a79c
[]
no_license
giapdangle/nitrokey-pro-firmware
4b35c4e28b7ba26e1f311e476d64b9adec651aec
e37b6e3345285c6b03773c06fa75abc1435fc9d4
refs/heads/master
2020-12-30T22:45:06.907246
2015-04-27T08:42:36
2015-04-27T08:42:36
35,319,558
0
0
null
2015-05-09T07:24:18
2015-05-09T07:24:18
null
UTF-8
C
false
false
3,828
h
CcidLocalAccess.h
/* * Author: Copyright (C) Rudolf Boeddeker Date: 2010-02-01 * * This file is part of Nitrokey. * * Nitrokey is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * Nitrokey is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Nitrokey. If not, see <http://www.gnu.org/licenses/>. */ #ifndef CCID_LOCAL_ACCESS #define CCID_LOCAL_ACCESS #include "stm32f10x.h" //#ifdef NOT_USED #define APDU_ANSWER_T0_COMMAND_CORRECT 0x6100 /* Command correct, xx bytes available in response (normally used under T=0 or for commands under any protocol with long response data that cannot be transmitted in one response) */ #define APDU_ANSWER_SEL_FILE_TERM_STATE 0x6285 /* Selected file in termination state */ #define APDU_ANSWER_MEMORY_FAILURE 0x6581 /* Memory failure */ #define APDU_ANSWER_WRONG_LENGTH 0x6700 /* Wrong length (Lc and/or Le) */ #define APDU_ANSWER_SEC_MSG_NOT_SUPPORTED 0x6882 /* Secure messaging not supported */ #define APDU_ANSWER_LAST_CHAIN_CMD_EXPECTED 0x6884 /* Last command of the chain expected */ #define APDU_ANSWER_SEC_STATUS_NOT_SATISFIED 0x6982 /* Security status not satisfied */ #define APDU_ANSWER_AUTH_METHOD_BLOCKED 0x6983 /* Authentication method blocked */ #define APDU_ANSWER_USE_CONDIT_NOT_SATISFIED 0x6985 /* Condition of use not satisfied */ #define APDU_ANSWER_SM_DATA_MISSING 0x6987 /* Expected SM data objects missing (e.g. SM-key, SSC) */ #define APDU_ANSWER_SM_WRONG_DATA 0x6988 /* SM data objects incorrect (e.g. wrong TLV-structure in command data) */ #define APDU_ANSWER_WRONG_DATA_FIELD 0x6A80 /* Incorrect parameters in the data field */ #define APDU_ANSWER_REF_DATA_NOT_FOUND 0x6A88 /* Referenced data not found */ #define APDU_ANSWER_WRONG_P1_P2 0x6B00 /* Wrong parameters P1-P2 */ #define APDU_ANSWER_INS_NOT_SUPPORTED 0x6D00 /* Instruction (INS) not supported */ #define APDU_ANSWER_CLA_NOT_SUPPORTED 0x6E00 /* Class (CLA) not supported */ //#endif #define APDU_ANSWER_COMMAND_CORRECT 0x9000 /* Command correct */ #define APDU_ANSWER_RECEIVE_CRC_ERROR 0xA000 /* Receive CRC error */ #define APDU_ANSWER_RECEIVE_INCORRECT 0xA001 /* Receive wrong answer struct */ #define APDU_ANSWER_CHAINED_DATA 0xA002 /* Receive chained data */ #define APDU_MAX_RESPONSE_LEN 500 // Definitions for APDU #define ISO7816_APDU_MAX_RESPONSE_LEN 500 #define ISO7816_APDU_SEND_HEADER_LEN 5 #define ISO7816_MAX_APDU_DATA 500 #define ISO7816_APDU_OFERHEAD 4 // for Le+Lc and checksum void CcidLocalAccessTest (void); int getAID(void); uint32_t getSerialNumber(void); uint8_t getByteOfData(uint8_t x); uint8_t cardAuthenticate(uint8_t *password); uint8_t userAuthenticate(uint8_t *password); uint8_t changeUserPin(uint8_t* password, uint8_t* new_password); uint8_t changeAdminPin(uint8_t* password, uint8_t* new_password); uint8_t getPasswordRetryCount(void); uint8_t getUserPasswordRetryCount(void); uint32_t getRandomNumber (uint32_t Size_u32, uint8_t *Data_pu8); uint8_t isAesSupported(void); uint8_t sendAESMasterKey (int nLen, unsigned char *pcMasterKey); uint8_t testScAesKey(int nLen, unsigned char *pcKey); uint8_t testSendUserPW2 (unsigned char *pcPW); unsigned int CcidReset(void); #endif /* CCID_LOCAL_ACCESS */
4987153cc104165ecf0a5f505d84d5a847e3cd2d
7cdf6eefb56a560fda892ad98d401345798a1317
/lbr.c
2d5be90acc033d5c7421f152b6ee5576ee7ee619
[]
no_license
albertnetymk/lfmr
183b63017b24cce4acbc4991f4a6c558429e614a
54c506a3555d049da536f1b2292c77eae9c12aa9
refs/heads/master
2021-01-20T00:51:35.002810
2017-06-17T13:37:38
2017-06-17T13:37:38
82,101,017
1
0
null
null
null
null
UTF-8
C
false
false
439
c
lbr.c
/****************************************************************************** * * LBR = lock-based reclamation. No deferred deletion is needed, so provide * dummy functions. * *****************************************************************************/ void mr_init() { /* Do nothing. */ return; } void mr_thread_exit() { /* Do nothing. */ return; } void mr_reinitialize() { /* Do nothing. */ return; }
0349178e71a4bb3c843a465a6c6d504db1e580fb
54050062fa8ea6252e2218031dc5a7572da94667
/7进程间通信--管道/pipe_2.c
7eeacce5c8f80f2fda500b0f3c658e96c87780ce
[]
no_license
aylizhiyuan/ARM-FOUR
6428f12e68be29c5cd24acec2074c41f35724ad2
6689f76a1050702bab9d3d8457f2b57376862e94
refs/heads/master
2020-04-07T04:25:50.601147
2019-07-18T03:05:49
2019-07-18T03:05:49
158,055,353
10
0
null
null
null
null
UTF-8
C
false
false
752
c
pipe_2.c
#include "stdio.h" #include "unistd.h" #include "stdlib.h" int main(){ int fd[2]; int ret; char writebuf[] = "hello liunx"; char readbuf[128] = {0}; //创建一个管道,会返回两个文件描述符 fd[0] fd[1] ret = pipe(fd); if(ret < 0){ printf("create pipe failure\n"); return -1; } printf("create pipe success fd[0]=%d,fd[1]=%d\n",fd[0],fd[1]); //先使用write函数将字符串内容写入管道中去 write(fd[1],writebuf,sizeof(writebuf)); //再使用read函数将管道内的字符串写入到readbuf中去 read(fd[0],readbuf,128); printf("readbuf=%s\n",readbuf); //写完之后,关闭这两个文件描述符 close(fd[0]); close(fd[1]); return 0; }
2e5977fb3e6f24f4af213e99f4e530721e3c81dd
be81f77592404e96e869d157acb6345027802282
/tunerservice/tunerservice/jni/euinstallersat/installation/comp/sdm/hsvdvbsi/src/locals_mdt.h
de7056ab26b483aa0d2b4db31a083fc31c973624
[]
no_license
GongHuixue/2k15_asta_app
a5f39ca515958ad38a50b6a42a46b3fdb0d86b09
99ee7b8795db43374a19b0b439e90c3a63866862
refs/heads/master
2021-01-24T20:01:59.468015
2018-08-26T03:29:39
2018-08-26T03:29:39
123,243,941
0
0
null
null
null
null
UTF-8
C
false
false
883
h
locals_mdt.h
#if !defined(MEMBERVARS) && !defined(LOCAL_UNDEFINES) #include <time.h> /********************************************************************************** * Description: Decodes MJD Date *[In] : Date in MJD format (16 bit) *[Out] : year (Corresponding year) *[Out] : month (Corresponding month) *[Out] : day (Corresponding day) *Returns : None ***********************************************************************************/ #define BCD2DEC(_bcd) (int)(((((unsigned int)(_bcd)) >> 4) * 10) + (_bcd) % 16) #endif //INCLUDES and DEFINES #if defined(MEMBERVARS) inline void decode_bcd_time(uint32_t bcd, int *hr, int *min, int *sec); void module__init(void){ } #endif //MEMBERVARS #if defined(LOCAL_UNDEFINES) #ifdef BCD2DEC(_bcd) #undef BCD2DEC(_bcd) #endif //BCD2DEC(_bcd) #endif //LOCAL_UNDEFINES
7f5b9892cd99897d2fb4940d032981bd1de7efd4
94dc3b1638a10a1ff0bf49e5ccf52cad4ec779c3
/Q1.c
2879942de21e344e064942055d6e5f4b3f2a5ca3
[]
no_license
omerpaz1/C_Projects
0cfd837675e49dea5eb522c5271f4c0c9f348253
08ce758083f081c74ccc337851e8889fecbdd59c
refs/heads/master
2020-04-06T09:13:15.403554
2018-11-13T06:57:37
2018-11-13T06:57:37
157,179,694
0
1
null
null
null
null
UTF-8
C
false
false
1,014
c
Q1.c
#include <stdio.h> main() { int count= 0; // count how mach number i get. int sum= 0; // sum all the nums. int num = 0; // the numer from the user double average= 0; int pure = 0; printf("Welcome, please enter the weights of each ingredient:\n"); scanf("%d", &num); // scaning the first num. sum=+num; // sum the first num. while (num > -1){ // while the user didnt push -(num) count++ and sum the num. scanf("%d", &num); count++; sum=sum+num; } if (num <-1){ // if he put a negative number i remove heis value from the sum. sum= sum - num; } if (count <3){ // if there is low then 3 nums. printf("Not enough ingredients.\n"); return 0; } if (count >10){ // if there is more them 10 nums. printf("Too many ingredients.\n"); return 0; } average= (double)sum/count; //calculate the average of the numbers. pure= count*10; // claculate the prercent of the pure. printf("The final product weighs %.3f pounds and is %d percent pure.\n",average , pure); return 0; }
b583a4111428568d17f61d0694197613b895a202
50050a77cda137f135aabd7039f312da707374b2
/TsunamiCS1Master/twiLib.h
6b1c8bc08da0afe421446378f8a91abbc6e259a4
[]
no_license
BrutalistInstruments/Tsunami-CS-1
3c5b8bb3cc812660f33cac1841d6beffdbb2502a
0e1885daa967ed4d4b49a9ff564cd63d0252c0e2
refs/heads/master
2021-06-22T10:01:22.373043
2020-09-07T16:29:19
2020-09-07T16:29:19
203,443,177
10
0
null
null
null
null
UTF-8
C
false
false
1,489
h
twiLib.h
/* * twiLib.h * * Created: 12/23/2019 1:01:17 PM * Author: Hal * this library servers mainly to interact with with eeprom. */ #include <avr/io.h> #include "globalVariables.h" #define SCL_CLOCK 100000 // I2C clock in Hz - 100KHz #define TW_STATUS TWSR //define for Two wire status Register #define TW_START 0x08 #define TW_REP_START 0x10 #define TW_MT_SLA_ACK 0x18 //master transmit SLaddress Acknowledge #define TW_MT_SLA_NACK 0x20 //master transmit SLAdress Not Acknowledge #define TW_MR_SLA_ACK 0x40//master receive SLAddress Acknowledge #define TW_MR_DATA_NACK 0x58//master receive Data Not Acknowledge #define TW_MT_DATA_ACK 0x28 #define EEPROMADDRESSWRITEA 0b10100000 //512K bit block A #define EEPROMADDRESSWRITEB 0b10101000 //512K bit block B #define EEPROMADDRESSREADA 0b10100001 #define EEPROMADDRESSREADB 0b10101001 #define F_CPU 16000000UL #ifndef TWILIB_H_ #define TWILIB_H_ void twi_init(); uint8_t twi_start(uint8_t address); void twi_start_wait(uint8_t address); uint8_t twi_rep_start(uint8_t address); void twi_stop(); uint8_t twi_write(uint8_t data ); uint8_t twi_readAck(); uint8_t twi_readNak(); void eepromSavePattern(Pattern inPattern, uint8_t patternNumber); void eepromLoadPattern(Pattern *currentPattern, uint8_t patternNumber); void factoryResetEeprom(Pattern inPattern); uint8_t readEEpromChar(uint16_t readAddress); void globalWrite(Globals *currentGlobals); void globalLoad(Globals *currentGlobals, uint8_t factoryReset); #endif /* TWILIB_H_ */
cb2b7f5011d3c9c13fcc538ea91962472bcec517
6063df3e6a3a0baf4e8e21ef6f5d4420e14617ab
/srcs/value.c
4d852bbe72000413265b816d70eca55c85cfb2fe
[]
no_license
AtheDev/Push_swap
551bb93230727372f897f437aecb834ec1023507
2e266273f88d843c21d9c7103546fff56ae65dbe
refs/heads/master
2023-05-01T16:04:57.852648
2021-05-24T09:15:02
2021-05-24T09:15:02
368,321,124
1
0
null
null
null
null
UTF-8
C
false
false
2,321
c
value.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* value.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adupuy <adupuy@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/05/18 19:18:06 by adupuy #+# #+# */ /* Updated: 2021/05/23 12:29:02 by adupuy ### ########.fr */ /* */ /* ************************************************************************** */ #include "push_swap.h" void save_value(int *value_beside, int *pos, int num, int count) { *value_beside = num; *pos = count; } int search_value_just_above(int *value_beside, int *pos, int value, t_stack *b) { t_list *lst; int num; int count; int ret; lst = b->stack; count = 0; ret = 1; while (b->stack != NULL) { num = ft_atoi(b->stack->content); if (value < num) { if (ret == 1 || (ret == 0 && num < *value_beside)) save_value(value_beside, pos, num, count); ret = 0; } count++; b->stack = b->stack->next; } b->stack = lst; return (2); } int search_value_just_below(int *value_beside, int *pos, int value, t_stack *b) { t_list *lst; int num; int count; int ret; lst = b->stack; count = 0; ret = 1; while (b->stack != NULL) { num = ft_atoi(b->stack->content); if (value > num) { if (ret == 1 || (ret == 0 && num > *value_beside)) save_value(value_beside, pos, num, count); ret = 0; } count++; b->stack = b->stack->next; } b->stack = lst; if (ret == 1) return (search_value_just_above(value_beside, pos, value, b)); return (ret); } void search_pos_value(int *pos, int value, t_stack *l) { t_list *lst; int num; int count; lst = l->stack; count = 0; while (l->stack != NULL) { num = ft_atoi(l->stack->content); if (num == value) { *pos = count + 1; break ; } count++; l->stack = l->stack->next; } l->stack = lst; }
ebebde530ff0c3ab0dfba3fe047692b5fae0a1db
5eff7a36d9a9917dce9111f0c3074375fe6f7656
/lib/mesa/src/intel/vulkan/grl/include/affinespace.h
36ebae0ede62662a0c7d6c9d4fa78023913d009d
[]
no_license
openbsd/xenocara
cb392d02ebba06f6ff7d826fd8a89aa3b8401779
a012b5de33ea0b977095d77316a521195b26cc6b
refs/heads/master
2023-08-25T12:16:58.862008
2023-08-12T16:16:25
2023-08-12T16:16:25
66,967,384
177
66
null
2023-07-22T18:12:37
2016-08-30T18:36:01
C
UTF-8
C
false
false
5,391
h
affinespace.h
// // Copyright (C) 2009-2021 Intel Corporation // // SPDX-License-Identifier: MIT // // #pragma once #include "GRLRTASCommon.h" GRL_NAMESPACE_BEGIN(GRL) GRL_NAMESPACE_BEGIN(RTAS) inline float3 GRL_OVERLOADABLE cross(const float3 a, const float3 b) { float3 res = { a.y * b.z - a.z * b.y, a.z * b.x - a.x * b.z, a.x * b.y - a.y * b.x }; return res; } struct LinearSpace3f { float3 vx; float3 vy; float3 vz; }; /* compute the determinant of the matrix */ GRL_INLINE struct LinearSpace3f LinearSpace3f_Constructor(const float3 vx, const float3 vy, const float3 vz) { struct LinearSpace3f xfm; xfm.vx = vx; xfm.vy = vy; xfm.vz = vz; return xfm; } /* compute the determinant of the matrix */ GRL_INLINE float LinearSpace3f_det(struct LinearSpace3f xfm) { return dot(xfm.vx, cross(xfm.vy, xfm.vz)); } /* compute transposed matrix */ GRL_INLINE struct LinearSpace3f LinearSpace3f_transpose(struct LinearSpace3f in) { float3 x = { in.vx.x, in.vy.x, in.vz.x }; float3 y = { in.vx.y, in.vy.y, in.vz.y }; float3 z = { in.vx.z, in.vy.z, in.vz.z }; return LinearSpace3f_Constructor(x, y, z); } /* compute adjoint matrix */ GRL_INLINE const struct LinearSpace3f LinearSpace3f_adjoint(struct LinearSpace3f in) { return LinearSpace3f_transpose(LinearSpace3f_Constructor(cross(in.vy, in.vz), cross(in.vz, in.vx), cross(in.vx, in.vy))); } /* compute inverse matrix */ GRL_INLINE struct LinearSpace3f LinearSpace3f_invert(struct LinearSpace3f in) { const float det = LinearSpace3f_det(in); const struct LinearSpace3f adj = LinearSpace3f_adjoint(in); return LinearSpace3f_Constructor(adj.vx / det, adj.vy / det, adj.vz / det); } GRL_INLINE float3 GRL_OVERLOADABLE xfmPoint(struct LinearSpace3f xfm, float3 p) { return xfm.vx * p.x + xfm.vy * p.y + xfm.vz * p.z; } struct AffineSpace3f { struct LinearSpace3f l; float3 p; }; GRL_INLINE struct AffineSpace3f AffineSpace3f_Constructor(struct LinearSpace3f l, float3 p) { struct AffineSpace3f out; out.l = l; out.p = p; return out; } GRL_INLINE struct AffineSpace3f AffineSpace3f_load_row_major(const float *in) { struct AffineSpace3f out; out.l.vx.x = in[0]; out.l.vx.y = in[4]; out.l.vx.z = in[8]; out.l.vy.x = in[1]; out.l.vy.y = in[5]; out.l.vy.z = in[9]; out.l.vz.x = in[2]; out.l.vz.y = in[6]; out.l.vz.z = in[10]; out.p.x = in[3]; out.p.y = in[7]; out.p.z = in[11]; return out; } // squared proportion of oriented transformed cube to aa box that would contain it. // the smaller it is the more overhead transformation produces GRL_INLINE float transformation_bbox_surf_overhead(const float* Transform) { // We use an abs-matrix to transform the AABB extent vector, which is enough to compute the area // New AABB is center +- Extent. // // For derivation see: // https://zeux.io/2010/10/17/aabb-from-obb-with-component-wise-abs/ // // take the cube of side 1 and see how big aabb containing it transformed is vs just surface of transformed float ex = fabs(Transform[0]) + fabs(Transform[1]) + fabs(Transform[2]); float ey = fabs(Transform[4]) + fabs(Transform[5]) + fabs(Transform[6]); float ez = fabs(Transform[8]) + fabs(Transform[9]) + fabs(Transform[10]); // we will compare squared sizes ex = ex * ex; ey = ey * ey; ez = ez * ez; // surface of aabb containing oriented box; float aabb_sq_half_surf = ex * ey + ey * ez + ez * ex; // ^2 lengths of transformed <1,0,0>, <0,1,0>, <0,0,1> float obx = Transform[0] * Transform[0] + Transform[4] * Transform[4] + Transform[8] * Transform[8]; float oby = Transform[1] * Transform[1] + Transform[5] * Transform[5] + Transform[9] * Transform[9]; float obz = Transform[2] * Transform[2] + Transform[6] * Transform[6] + Transform[10] * Transform[10]; float obb_sq_half_surf = obx * oby + oby * obz + obz * obx; return obb_sq_half_surf / aabb_sq_half_surf; // ex = 2.0 // ey = 2.0 // ez = 2.0 // ex = 4.0 // ey = 4.0 // ez = 4.0 // aabb_half_surf = 16+16 *2.0 + 2.0*2.0+ 2.0*2.0; = 12; // aabb_sq_half_surf = 144; // // obx = 4.0; // oby = 4.0; // obz = 4.0; // obb_sq_half_surf = 16 + 16+ 16; // obb_sq_half_surf = 16.0 *3 = 48 } GRL_INLINE void load_row_major_from_AffineSpace3f(struct AffineSpace3f in, float* out) { out[0] = in.l.vx.x; out[4] = in.l.vx.y; out[8] = in.l.vx.z; out[1] = in.l.vy.x; out[5] = in.l.vy.y; out[9] = in.l.vy.z; out[2] = in.l.vz.x; out[6] = in.l.vz.y; out[10] = in.l.vz.z; out[3] = in.p.x; out[7] = in.p.y; out[11] = in.p.z; } GRL_INLINE float3 GRL_OVERLOADABLE xfmPoint(struct AffineSpace3f xfm, float3 p) { return xfmPoint(xfm.l, p) + xfm.p; } /* compute inverse matrix */ GRL_INLINE struct AffineSpace3f AffineSpace3f_invert(struct AffineSpace3f in) { const struct LinearSpace3f il = LinearSpace3f_invert(in.l); float3 ip = -xfmPoint(il, in.p); return AffineSpace3f_Constructor(il, ip); } GRL_NAMESPACE_END(RTAS) GRL_NAMESPACE_END(GRL)
8fddec73e9be5af089d4718f63c2c20ab118091e
c58ecf1ae9ea31df69478b6c31df02a02881a793
/perlin.h
be4fa59404bb14fcdc26bd14ea32aff9be60b07f
[]
no_license
yaspr/flame11
3e36394ee082fac4632239e78db85a62c9f5ae42
3828bfa6d41079646edac9880dcfef021c196732
refs/heads/master
2023-06-05T23:43:33.392280
2021-06-08T19:14:22
2021-06-08T19:14:22
111,601,593
0
1
null
null
null
null
UTF-8
C
false
false
60
h
perlin.h
// float perlin2D(float x, float y, float freq, int depth);
df9b23621caf03410c9c1be8d8a9a7175cdd8ca8
c2a50a26eba189ff35df481dd80099fe54473511
/usb-fatfs-flash-usbfs.cydsn/flash.c
d6645a33f52f26470763a5ef70555133b9a3da12
[]
no_license
linardsee/PSoC
33fa710129164ce8715272cc1a6db6d4983eb6c4
dddc35728bd71445d5dcb6259153c5fae83de706
refs/heads/master
2023-06-05T01:11:00.259534
2021-06-28T22:46:46
2021-06-28T22:46:46
381,178,301
0
0
null
null
null
null
UTF-8
C
false
false
7,942
c
flash.c
#include "flash.h" #include "project.h" #include <stdio.h> void _sendCmd(uint8 cmd) { SPIM_1_WriteTxData(cmd); while( (SPIM_1_ReadTxStatus() & SPIM_1_STS_SPI_DONE) == 0){} } void _writeEnable() { cs_Write(0); _sendCmd(WRITE_EN); cs_Write(1); } void _writeDisable() { cs_Write(0); _sendCmd(WRITE_DIS); cs_Write(1); } uint8 _readStatusReg() { uint8 reg = 0; SPIM_1_ClearRxBuffer(); cs_Write(0); _sendCmd(READ_STATUS_REG); _sendCmd(SHIFT_OUT); cs_Write(1); SPIM_1_ReadRxData(); reg = SPIM_1_ReadRxData(); return reg; } BOOL _checkWIP() { if((_readStatusReg() & WIP_BIT)) { return 1; } else return 0; } BOOL _checkIfProtectedBitsSet() { BOOL protected = 1; if(_readStatusReg() & 0x3C) protected = 1; else protected = 0; return protected; } BOOL _checkIfProtected(uint32 address) { BOOL protected = 1; uint8 bpb = (_readStatusReg() & 0x3C) >> 2; switch(bpb) { case 0: protected = 0; break; case 1: if( (address >= 0x1F0000) && (address <= 0x1FFFFF) ) protected = 1; else protected = 0; break; case 2: if( (address >= 0x1E0000) && (address <= 0x1FFFFF) ) protected = 1; else protected = 0; break; case 3: if( (address >= 0x1C0000) && (address <= 0x1FFFFF) ) protected = 1; else protected = 0; break; case 4: if( (address >= 0x180000) && (address <= 0x1FFFFF) ) protected = 1; else protected = 0; break; case 5: if( (address >= 0x100000) && (address <= 0x1FFFFF) ) protected = 1; else protected = 0; break; case 6: case 9: protected = 1; break; case 10: if( (address >= 0x000000) && (address <= 0x0F0000) ) protected = 1; else protected = 0; break; case 11: if( (address >= 0x000000) && (address <= 0x170000) ) protected = 1; else protected = 0; break; case 12: if( (address >= 0x000000) && (address <= 0x1B0000) ) protected = 1; else protected = 0; break; case 13: if( (address >= 0x000000) && (address <= 0x1D0000) ) protected = 1; else protected = 0; break; case 14: if( (address >= 0x000000) && (address <= 0x1E0000) ) protected = 1; else protected = 0; break; case 15: protected = 1; break; default: return protected = 1; break; } return protected; } cmdStatusTypedef writeStatusReg(uint8 code) { cmdStatusTypedef status = ERROR; if(code & READ_ONLY_BITS) return INVALID_INPUT; if(_checkWIP()) return BUSY; SPIM_1_ClearRxBuffer(); cs_Write(0); _sendCmd(WRITE_STATUS_REG); _sendCmd(code); cs_Write(1); if( (_readStatusReg() & RW_BITS) == code) { status = OK; } else { status = ERROR; } return status; } cmdStatusTypedef readData(uint32 address, uint8* buff, uint32 size) { cmdStatusTypedef status = ERROR; uint8 addr1 = (address & 0xFF0000) >> 16; uint8 addr2 = (address & 0xFF00) >> 8; uint8 addr3 = address & 0xFF; uint8 sendbuff[20]; memset(sendbuff, 0, 20); if(_checkWIP()) return BUSY; SPIM_1_ClearRxBuffer(); cs_Write(0); _sendCmd(READ_DATA); SPIM_1_ReadRxData(); _sendCmd(addr1); SPIM_1_ReadRxData(); _sendCmd(addr2); SPIM_1_ReadRxData(); _sendCmd(addr3); SPIM_1_ReadRxData(); for(uint32 i = 0; i < size; i++) { _sendCmd(SHIFT_OUT); buff[i] = SPIM_1_ReadRxData(); } cs_Write(1); status = OK; /* buffSize = SPIM_1_GetRxBufferSize() - 4; sprintf((char*)sendbuff, "Buffsize: %d \r\n", buffSize); //sprintf((char*)sendbuff, "%d ", rand); USBUART_1_PutData(sendbuff, 20); memset(sendbuff, 0, 20); sprintf((char*)sendbuff, "size: %d \r\n", size); //sprintf((char*)sendbuff, "%d ", rand); USBUART_1_PutData(sendbuff, 20); memset(sendbuff, 0, 20); if( buffSize != size) return ERROR; else status = OK; // Dummy read for(uint8 i = 0; i < 4; i++) { SPIM_1_ReadRxData(); } for(uint32 i = 0; i < buffSize; i++) { buff[i] = SPIM_1_ReadRxData(); } */ return status; } /* FAST READ */ // // // // /* FAST READ DUAL OUTPUT */ // // // // cmdStatusTypedef pageProgram(uint32 address, uint8* buff, uint32 size) { cmdStatusTypedef status = ERROR; if((size - 1) > 255) return INVALID_INPUT; if(_checkWIP()) return BUSY; if(_checkIfProtected(address)) return PROTECTED; uint8 addr1 = (address & 0xFF0000) >> 16; uint8 addr2 = (address & 0xFF00) >> 8; uint8 addr3 = address & 0xFF; _writeEnable(); cs_Write(0); _sendCmd(PAGE_PROG); _sendCmd(addr1); _sendCmd(addr2); _sendCmd(addr3); for(uint32 i = 0; i < size; i++) { _sendCmd(*buff); buff++; } cs_Write(1); status = OK; return status; } cmdStatusTypedef sectorErase(uint32 address) { cmdStatusTypedef status = ERROR; if(_checkWIP()) return BUSY; if(_checkIfProtected(address)) return PROTECTED; uint8 addr1 = (address & 0xFF0000) >> 16; uint8 addr2 = (address & 0xFF00) >> 8; uint8 addr3 = address & 0xFF; _writeEnable(); cs_Write(0); _sendCmd(SECTOR_ERASE); _sendCmd(addr1); _sendCmd(addr2); _sendCmd(addr3); cs_Write(1); status = OK; return status; } cmdStatusTypedef blockErase(uint32 address) { cmdStatusTypedef status = ERROR; if(_checkWIP()) return BUSY; if(_checkIfProtected(address)) return PROTECTED; uint8 addr1 = (address & 0xFF0000) >> 16; uint8 addr2 = (address & 0xFF00) >> 8; uint8 addr3 = address & 0xFF; _writeEnable(); cs_Write(0); _sendCmd(BLK_ERASE); _sendCmd(addr1); _sendCmd(addr2); _sendCmd(addr3); cs_Write(1); status = OK; return status; } cmdStatusTypedef chipErase() { cmdStatusTypedef status = ERROR; if(_checkWIP()) return BUSY; if(_checkIfProtectedBitsSet()) return PROTECTED; SPIM_1_ClearRxBuffer(); _writeEnable(); cs_Write(0); _sendCmd(CHIP_ERASE_1); cs_Write(1); status = OK; return status; } cmdStatusTypedef deepPowerDown() { cmdStatusTypedef status = ERROR; if(_checkWIP()) return BUSY; SPIM_1_ClearRxBuffer(); _writeEnable(); cs_Write(0); _sendCmd(PWR_DOWN); cs_Write(1); status = OK; return status; } cmdStatusTypedef releaseDeepPowerDown() { cmdStatusTypedef status = ERROR; SPIM_1_ClearRxBuffer(); cs_Write(0); _sendCmd(REL_PWR_DOWN_DEV_ID); cs_Write(1); status = OK; return status; } uint8 releaseDeepPowerDownDevID() { uint8 devId = 0; SPIM_1_ClearRxBuffer(); cs_Write(0); _sendCmd(REL_PWR_DOWN_DEV_ID); _sendCmd(SHIFT_OUT); _sendCmd(SHIFT_OUT); _sendCmd(SHIFT_OUT); _sendCmd(SHIFT_OUT); cs_Write(1); devId = SPIM_1_ReadRxData(); return devId; } cmdStatusTypedef readMnfctDevId(uint8* mnfct, uint8* devId) { cmdStatusTypedef status = ERROR; if(_checkWIP()) return BUSY; SPIM_1_ClearRxBuffer(); cs_Write(0); _sendCmd(MANF_DEV_ID); _sendCmd(SHIFT_OUT); _sendCmd(SHIFT_OUT); _sendCmd(SHIFT_OUT); _sendCmd(SHIFT_OUT); _sendCmd(SHIFT_OUT); cs_Write(1); while(SPIM_1_GetRxBufferSize() > 0) { if(SPIM_1_GetRxBufferSize() == 2) *mnfct = SPIM_1_ReadRxData(); else if(SPIM_1_GetRxBufferSize() == 1) *devId = SPIM_1_ReadRxData(); else SPIM_1_ReadRxData(); } status = OK; return status; } cmdStatusTypedef readJEDECId(uint8* mnfct, uint8* type, uint8* capacity) { cmdStatusTypedef status = ERROR; if(_checkWIP()) return BUSY; SPIM_1_ClearRxBuffer(); cs_Write(0); _sendCmd(JEDEC_ID); _sendCmd(SHIFT_OUT); _sendCmd(SHIFT_OUT); _sendCmd(SHIFT_OUT); cs_Write(1); while(SPIM_1_GetRxBufferSize() > 0) { if(SPIM_1_GetRxBufferSize() == 3) *mnfct = SPIM_1_ReadRxData(); else if(SPIM_1_GetRxBufferSize() == 2) *type = SPIM_1_ReadRxData(); else if(SPIM_1_GetRxBufferSize() == 1) *capacity = SPIM_1_ReadRxData(); else SPIM_1_ReadRxData(); } status = OK; return status; }
ecda6c93d61f45f3730a6b215757ff44d9476a51
a8233b2afa3e712e1cfc26e1c9a8c83fba5a85cc
/src/Core/Inc/sound_alarm.h
9d4ff77ff7675d18f6e62f8002587499ba9e4fef
[]
no_license
unisa-project-barbella-valitutto-ventre/home-security-system
7857be2d852f2421565be5b3a51973ae2fd70e86
1219eef7f8c466ec6a0b0f928882e5265c86b37f
refs/heads/main
2023-02-25T03:32:35.871275
2021-02-03T22:15:21
2021-02-03T22:15:21
335,708,171
1
0
null
null
null
null
UTF-8
C
false
false
313
h
sound_alarm.h
/* * sound_alarm.h * * Created on: 7 giu 2020 * Author: Andrew */ #ifndef INC_SOUND_ALARM_H_ #define INC_SOUND_ALARM_H_ typedef enum { AREA_ALARMED, BARRIER_ALARMED, AREA_BARRIER_ALARMED } TState; void ring_alarm(TState); void check_alarms(); #endif /* INC_SOUND_ALARM_H_ */
b9dccfbb7f2a5f99f412fa4334ef7a789927c79c
7cce99a461afc13b8137bd6133841d9489ccbcd4
/CSC 1401/Sep_C/v.c
ab2eb3e94836a816e697e5d5d51388ddc6ad0c77
[]
no_license
goodwiins/AUI
de75bd3f0424d86adcccecc269bcd26de7989fb2
3d9cf218e67b0203009748fa28647d1ed57ba51b
refs/heads/master
2021-01-04T03:02:17.970013
2020-02-13T19:32:13
2020-02-13T19:32:13
null
0
0
null
null
null
null
UTF-8
C
false
false
473
c
v.c
#include <stdio.h> #include <math.h> int main(void) { int x,y,z,q,t,a; float p; { printf("num ? "); scanf("%d",&x); printf("num ? "); scanf("%d",&y); printf("num ? "); scanf("%d",&z); printf("num ? "); scanf("%d",&q); } t= x+y+z+q; printf("Total: ‰d\n",t); a= (x+y+z+q)/5; printf("Avreage: ‰d\n",a); p= 100*(x+y+z+q)/5; printf("Avreage: ‰f\n",p); return 0; }
71a635a8bc34a2dc1287ff25437d41dba255c997
f66ab494c719350f06fe926a68729c0aff025916
/42sh/shellrc/calc/calculatoransw.c
fa8d36c57d66f1b402ae6e70201308e094b0d69c
[]
no_license
MrtnsK/stud
20a48d941c978898f51e62d75b9382a7ef0267b1
200664c1a1f75ac3c3a60e2278cfb62e36a88078
refs/heads/master
2020-03-30T12:55:19.952495
2019-09-02T14:50:30
2019-09-02T14:50:30
151,248,125
2
0
null
null
null
null
UTF-8
C
false
false
3,204
c
calculatoransw.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* calculatoransw.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: pharatyk <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/03/18 11:18:58 by pharatyk #+# #+# */ /* Updated: 2019/08/17 15:05:32 by pharatyk ### ########.fr */ /* */ /* ************************************************************************** */ #include "shell.h" void ft_showpb(int i, t_calctools *stock, int j) { if (stock->flts[i] == 1 || stock->flts[i] == 3) { j = 1; while (stock->stuff[i][++j]) if (stock->stuff[i][j] == '*' || stock->stuff[i][j] == '/' || stock->stuff[i][j] == '%') { ft_printfd(2, "\e[93mMastershell\e[0m: multiple operator"); ft_printfd(2, ", first one used\n"); break ; } } if (stock->flts[i] == 2) { j = 0; while (stock->stuff[i][++j]) if (stock->stuff[i][j] == '*' || stock->stuff[i][j] == '/' || stock->stuff[i][j] == '%') { ft_printfd(2, "\e[93mMastershell\e[0m: multiple operator"); ft_printfd(2, ", first one used\n"); break ; } } } static void ft_whileansw(int i, t_calctools *stock) { int j; stock->pos = 1; j = -1; if (stock->digit[i] == 0) { while (stock->stuff[i][++j]) if (stock->stuff[i][j] == '-') stock->pos *= -1; if (stock->pos == -1) stock->flts[i + 1] *= -1; if (stock->stuff[i][0] == '*' || stock->stuff[i][0] == '/' || stock->stuff[i][0] == '%') stock->flts[i] = 2; if (stock->stuff[i][0] == '*' && stock->stuff[i][0] && stock->stuff[i][1] == '*') stock->flts[i] = 1; if (stock->stuff[i][0] == '+' || stock->stuff[i][0] == '-') { stock->stuff[i][0] = '+'; stock->flts[i] = 3; } ft_showpb(i, stock, j); } } static int ft_smallwhileansw(int i, t_calctools *stock) { if (stock->digit[i]) stock->flts[i] = ft_atof(stock->stuff[i]); else { if (!stock->stuff[i + 1]) { i = -1; while (stock->stuff[++i]) free(stock->stuff[i]); free(stock->stuff); free(stock->flts); free(stock->digit); ft_printfd(2, "lonely operator\n"); return (1); } } return (0); } static void ft_firstwhileansw(int i, t_calctools *stock) { int j; if (stock->digit[i]) { j = -1; while (stock->stuff[i][++j]) if (stock->stuff[i][j] == '.') stock->isflt = 1; } } int ft_answ(t_calctools *stock) { int i; i = -1; stock->isflt = 0; while (stock->stuff[++i]) ft_firstwhileansw(i, stock); if (!(stock->flts = (double*)malloc(sizeof(double) * i))) return (1); i = -1; while (stock->stuff[++i]) { if (ft_smallwhileansw(i, stock)) return (1); } i = -1; while (stock->stuff[++i]) ft_whileansw(i, stock); if (ft_elcalc(stock)) return (1); return (0); }
b961d0664e9953e034f8a2828293c71382e4363f
c86185a1b1b47d763a6e06da0b4bdb7a34f20597
/ADC_EoS.cydsn/main.c
4ebd99b4e392cec6e80af901048e4250a9ca4feb
[]
no_license
C47D/PsoC5LP_EoS
ebbfe3fe2d4199210f21762758f12cd9abf9a773
466f87fd7d9c10959e69b11316b49f51d84db5b4
refs/heads/master
2021-01-13T01:00:45.444750
2016-01-10T00:14:30
2016-01-10T00:14:30
48,867,624
0
1
null
null
null
null
UTF-8
C
false
false
363
c
main.c
/* ======================================== * * PoC: Driving Multiple ADC inputs with no * SW involved. * * ======================================== */ #include <project.h> int main() { CyGlobalIntEnable; /* Enable global interrupts. */ ADC_Start(); for(;;) { /* Place your application code here. */ } } /* [] END OF FILE */
d691ac7378011ce14a06a6768a5e983205f0152f
61ff8f9089925dcae688c9565c3713c36c8f24da
/1_to_250/Bai134_141.c
b6bd277f5869201a2a026cecc0ad5a436522eeac
[]
no_license
Jervermain/1-thoundsan-exercise-of-C-langguage
2b22030a27f1b4536c4804e57177481633daeed3
1c93bd4fbbafb7b5dec034b24c2c5e3b085c55f7
refs/heads/master
2020-06-02T04:07:54.560477
2019-06-09T16:53:38
2019-06-09T16:53:38
191,031,194
1
0
null
null
null
null
UTF-8
C
false
false
4,327
c
Bai134_141.c
/** 134.Viết hàm tìm “giá trị lớn nhất” trong mảng một chiều số thực (lonnhat). 135.Tìm “giá trị dương đầu tiên” trong mảng một chiều các số thực (duongdau). Nếu mảng không có giá trị dương thì trả về giá trị -1. 136.Tìm “số chẵn cuối cùng” trong mảng một chiều các số nguyên (chancuoi). Nếu mảng không có giá trị chẵn thì trả về giá trị -1. 137.Tìm “một vị trí mà giá trị tại vị trí đó là giá trị nhỏ nhất” trong mảng một chiều các số thực (vitrinhonhat). 138.Tìm “vị trí của giá trị chẵn đầu tiên” trong mảng một chiều các số nguyên (vitrichandau). Nếu mảng không có giá trị chẵn thì hàm sẽ trả về giá trị là – 1. 139.Tìm “vị trí số hoàn thiện cuối cùng” trong mảng một chiều các số nguyen (vitrihoanthiencuoi). Nếu mảng không có số hoàn thiện thì trả về giá trị - 1. 140.Hãy tìm “giá trị dương nhỏ nhất” trong mảng các số thực (duongnhonhat). Nếu mảng không có giá trị dương thì trả về giá trị không dương là – 1. 141.Hãy tìm “vị trí giá trị dương nhỏ nhất” trong mảng một chiều các số thực (vtduongnhonhat). Nếu mảng không có giá trị dương thì trả về một giá trị ngoài đoạn [0,n-1] là -1 nhằm mô tả không có vị trí nào thỏa điều kiện. **/ #include <stdio.h> int vtduongnhonhat(float arr[], int n){ float min= -1; int index= -1; int i; for(i=0; i<n; i++) if(arr[i] > 0 && arr[i] < min){ min= arr[i]; index= i; } return index; } float duongnhonhat(float arr[], int n){ float min= -1; int i; for(i=0; i<n; i++) if(arr[i] > 0 && arr[i] < min) min= arr[i]; return min; } int vitrihoanthiencuoi(int arr[], int n){ int index= -1; int i; for(i=0; i<n; i++) if(check_sohoanthien(arr[i])) index= i; return index; } int check_sohoanthien(int n){ int S; int i; int sum = 0; for(i=1;i<=n/2;i++){ if(n%i==0) sum+=i; } if(sum==n) return 1; // tra ve true return 0; } int vitrichandau(int arr[], int n){ int index=-1; int i; for(i=0; i<n; i++) if(arr[i] %2 ==0){ index= i; break; } return index; } int vitrinhonhat(float arr[], int n){ float min= arr[0]; int index= 0; int i; for(i=1; i<n; i++) if(arr[i] < min){ min= arr[i]; index= i; } return index; } int chancuoi(int arr[], int n){ int chan=-1; int i; for(i=0; i<n; i++) if(arr[i] %2 ==0) chan= arr[i]; return chan; } float lonnhat(float arr[], int n){ float max= arr[0]; int i; for(i=1; i<n; i++) if(arr[i] > max) max= arr[i]; return max; } float duongdau(float arr[], int n){ float duong= -1; int i; for(i=0; i<n; i++){ if(arr[i] > 0){ duong= arr[i]; break; } } return duong; } void inPut_F(float arr[], int n){ for(int i=0; i<n; i++){ printf("Phan tu thu %d: ", i); scanf("%f", arr+i); } } void inPut_I(int arr[], int n){ for(int i=0; i<n; i++){ printf("Phan tu thu %d: ", i); scanf("%d", arr+i); } } main(){ int n; do{ printf("Nhap n: "); scanf("%d", &n); }while(n<1); float arr_F[n]; int arr_I[n]; printf("\nNhap mang so thuc\n"); inPut_F(arr_F, n); printf("\nNhap mang so nguyen\n"); inPut_I(arr_I, n); printf("\nBai 134: GTLN= %.2f", lonnhat(arr_F, n)); printf("\nBai 135: GT duong dau tien = %.2f", duongdau(arr_F, n)); printf("\nBai 136: GT Chan cuoi= %d", chancuoi(arr_I, n)); printf("\nBai 137: Vi tri GTNN= %d", vitrinhonhat(arr_F, n)); printf("\nBai 138: Vi tri chan dau tien= %d", vitrichandau(arr_I, n)); printf("\nBai 139: Vi tri hoan thien cuoi cung= %d", vitrihoanthiencuoi(arr_I, n)); printf("\nBai 140: GT duong NN= %.2f", duongnhonhat(arr_F, n)); printf("\nBai 141: Vi tri GT duong NN= %d", vtduongnhonhat(arr_F, n)); }
5438ba62dfa1253bee63d81c9f3aa12281b871fe
94e6be51cde707f91b12c4e6bb388917dde50024
/Input_Scan.c
993b4794406e66d7d8db7d00082971ff5acc6627
[]
no_license
MelginLee/Instant_coffee_423_436
3fc5b63de79cd8a603bc6ec1992438aa7db0d442
db7343eefd5e41455c6c2aedc497904e95df8cca
refs/heads/master
2020-04-26T07:33:11.411005
2019-03-02T03:01:21
2019-03-02T03:01:21
173,397,079
0
0
null
null
null
null
UTF-8
C
false
false
6,276
c
Input_Scan.c
/******************************************************************************/ /* * File : Input_Scan.c * Description : Description * Author ; Melgin * Created on : Date */ /******************************************************************************/ /******************************************************************************/ /* Files to Include */ /******************************************************************************/ #include <xc.h> /* XC8 General Include File */ //#elif defined(HI_TECH_C) // #include <htc.h> /* HiTech General Include File */ //#endif #include <stdint.h> /* For uint8_t definition */ #include <stdbool.h> /* For true/false definition */ #include "System.h" /* System funct/params, like osc/peripheral config */ #include "User.h" /* User funct/params, such as InitApp */ #include "M_Config.h" #include "Input_Scan.h" #include "Driver.h" #include "ADC.h" #include "Drinks_Supply.h" #include "EEPROM_Pro.h" #include "TaskService.h" #include "Serial_Communications.h" /******************************************************************************/ //KeyportScan /******************************************************************************/ uchar KeyValue =0; uchar Change_Cup_Channel_Timer; /******************************************************************************/ void KeyportScan(void) { if(!KeyValue && (Buz_alm_timer_cycle==0) && !F_set_key_2_3_17) { uchar i,j, temp,temp1,tempa,Buffer[3] = {0x06, 0x05, 0x03}; for(j=0; j<3; j++) { KeyOutPort =Buffer[j]; cnop; cnop; cnop; /*以下三个_nop_();作用为让 P1 口的状态稳定*/ temp = 0x01; for(i=1; i<4; i++) { temp1 =KeyInPort; temp1 &=0b00110100; tempa =(temp1>>2)&1; tempa +=temp1>>3; if(!(tempa & temp)) { KeyValue=i+j*3; //返回取得的按键值 } temp <<= 1; } } } } uchar KeyValue_nmdsp; uchar KeyValue_drk; uchar KeyValue_set; /******************************************************************************/ void Key_exe(void) { F_key9_down =(KeyValue==9)?1:0; if (KeyValue >0 && KeyValue <9) { if (F_set_ing) { KeyValue_set =KeyValue; } else { if (( Offer_Step >2 ) || (Change_Cup_Channel_Timer !=0 ) || (F_sys_err ==1)) { if (Buz_alm_times ==0) { alm_set(3,0,3,6); } } else { //if ( ( R_Cup_Free==0 ) || ( R_Cup_Free==1 ) ) // 免费模式,Keyvalue 给 Task_Drinks_Supply if ( R_Cup_Free <2 ) // 免费模式,Keyvalue 给 Task_Drinks_Supply { KeyValue_drk =KeyValue; } else //收费模式 { uchar x,y; x =drinks_rly_list[KeyValue-1][3]; //取料盒号 y =drinks_rly_list[KeyValue-1][0]; //取料盒号 if (Current_temperature <70 && y==11) { alm_set(3,0,3,6); } else { if (Coins >= drinks_set[x-1].drink_price) { KeyValue_drk =KeyValue; //不差钱儿 } else { KeyValue_nmdsp =KeyValue; //差钱儿,去显示价格 } } } } } } KeyValue=0; } /******************************************************************************/ void Cup_chk(void) { if (R_Cup_Free & 0x01) { if (R_Cup_AD <=205) // R_Cup_AD <= 1V 1024*1/5=204.8 { Change_Cup_Channel_Timer =0; F_rly13 =0; F_Err_cup =0; //有杯 } else if(!F_Err_cup) { if (Change_Cup_Channel_Timer < 3500/T_Task_Chk_Status ) { Change_Cup_Channel_Timer++; F_rly13 = ((Change_Cup_Channel_Timer < 200/T_Task_Chk_Status)||(( Change_Cup_Channel_Timer >1800/T_Task_Chk_Status ) && ( Change_Cup_Channel_Timer < 2000/T_Task_Chk_Status )))?1:0; if(Change_Cup_Channel_Timer >= 3500/T_Task_Chk_Status) F_Err_cup =1; } } } else { Change_Cup_Channel_Timer =0; F_Err_cup =0; } } /******************************************************************************/ /******************************************************************************/ uint Coins_low_timer =0; void Coins_chk(void) { if(!P_coin) { if(Coins_low_timer >= 5000) { F_Err_coin = 1; Coins_low_timer =0; } } else { F_Err_coin = 0; if(( Coins_low_timer >= 10 ) && ( Coins_low_timer <= 100 )) { F_coin_temp_dsp =1; if (Coins ==0) { Voice(1); //欢迎光临,请选择饮料种类 } if (Coins <99) { Coins++; } else Coins =99; Coins_count++; write(0x00,Coins); } Coins_low_timer =0; } } /******************************************************************************/ uint R_wmq_lose_timer =0; void Wmq_chk(void) { if(R_wmq_lose_timer > 60000/T_Task_Input_Scan) { F_wmq_on_line =0; } else if (R_wmq_lose_timer == 59000/T_Task_Input_Scan) { alm_set(3,0,3,6); R_wmq_lose_timer++; } else { R_wmq_lose_timer++; F_wmq_on_line =1; } }
d16e29a0d56826ae3c582e372635a1c947509b59
1b783c63dbf86239336682a7acd21890e0fbe541
/BE_Supporter/3PartyLib/AdvanTech/Include/USBErrorCode.h
c184c3889b2b0c58c4742ca872b688f10d4721ae
[ "MIT" ]
permissive
ZHAOZhengyi-tgx/BE-Supporter_2016
c544df9f2012e4911f4478145b057ce84042ac8e
88bb9c7b1c16afeaff4855aa0dd3b316c394e68a
refs/heads/master
2021-01-17T18:00:11.621348
2016-06-25T03:12:25
2016-06-25T03:12:25
58,410,361
0
0
null
null
null
null
UTF-8
C
false
false
529
h
USBErrorCode.h
#ifndef USB_ERROR_CODE_H #define USB_ERROR_CODE_H // ERROR code #define USBErrorCode 500 // Dean add #define USBTransmitFailed (USBErrorCode + 1) #define USBInvalidCtrlCode (USBErrorCode + 2) #define USBInvalidDataSize (USBErrorCode + 3) #define USBAIChannelBusy (USBErrorCode + 4) #define USBAIDataNotReady (USBErrorCode + 5) #define USBFWUpdateFailed (USBErrorCode + 6) #define USBDeviceNotReady (USBErrorCode + 7) #define USBOperNotSuccess (USBErrorCode + 8) #endif
ef90c51212782cbd84d961825dd006256581a896
854443d5e9ab92f8ef0c61c077fbb453f12c3df7
/src/analyseur.c
b89cc84ca838b5f98123fe8617e2b68d028dadbe
[]
no_license
r4mbo7/network-traffic-sniffer
c38155860f5c09391bc76653b72be53ca836fa1e
e8f861a898844e3d7577a6170f3c0c676e1ced96
refs/heads/master
2020-05-18T02:51:04.908146
2019-04-29T19:13:00
2019-04-29T19:13:00
184,129,486
0
0
null
null
null
null
UTF-8
C
false
false
7,687
c
analyseur.c
/** * @file analyseur.c * @author De La Roche Constantin * @version 1 * @date 16/12/16 * @brief Fonctions principales. * @details Contient tout ce qui concerne pcap */ #include "analyseur.h" /** * @brief Constructeur de liste de paquet * @details Ajout un paquet à la liste des paquets lus. Utilisé pour l'affichage avec clutter. * * @param l Liste des paquets * @param nvelt Paquet à ajouter à la liste * * @return La liste augmentée. */ Liste cons(Liste l, Paquet *nvelt){ Liste p; p = malloc(sizeof(struct maillon)); p->donnee = nvelt;// <=> *p.donnee=nvelt; p->suivant = l; return(p); } /** * @brief Fonction de callback appelé à chaque lecture d'un nouveau paquet. * @details Le contenue du paquet contenu dans bytes est forward à la fonction analyse_ethenert qui analyse l'entête ethernet. * On crée un nouveau paquet. * On met à jour la liste des paquets lus. * On met à jour le pointeur user * * @param user Véhicule les informations * @param pcap_pkthdr Unused * @param bytes Contenu du paquet */ void callback(u_char *user, const struct pcap_pkthdr *h, const u_char *bytes){ time_t intps = time(NULL); Date *cur_date = localtime(&intps); //printf("Current date : sec : %d\n", cur_date->tm_sec); ((User *)user)->nb_paquet += 1; Paquet *p = malloc(sizeof(struct paquet)); p->num = ((User *)user)->nb_paquet; p->len = h->len; p->date = cur_date; //on ajoute le paquet à la list des paquets ((User *)user)->l_paquet = cons(((User *)user)->l_paquet, p); /*On ne rafraichie clutter que toute les secondes if(((User *)user)->opt->v == 0 && ((User *)user)->date_sec_last_paquet != cur_date->tm_sec){ refresh_menu_actor(((User *)user)); ((User *)user)->date_sec_last_paquet = cur_date->tm_sec; } */ //On commence l'analyse du paquet avec la partie ethernet analyse_ethernet((User *)user, bytes); printf("\n"); } /** * @brief Affiche les options et les arguments passés à l'exécutable * * @param opt Contient les options */ void affichage_option(Option *opt){ printf("-- PARAMS --\nVerbosité : "); switch(opt->v){ case 1: printf("Très consis\n"); break; case 2: printf("Synthétique\n"); break; case 3: printf("Complet\n"); break; default : printf(" v=%d\n", opt->v); break; } if(opt->o != NULL){ printf("Fichier : %s\n", opt->o); } if(opt->i != NULL){ printf("Interface : %s\n", opt->i); } else{ printf("Problème initialisation interface.\n"); } if(opt->f != NULL){ printf("Filtre : %s\n", opt->f); } printf("---\n\n"); } /** * @brief Reconnais les options passés à l'exécutable * @details Reconnais et initialise les options passés en argument à l'exécutable. * * @param option Pointeur qui contiendra les options * @param argc main * @param argv main */ void set_option(Option *option, int argc, char *argv[]){ int opt; option->i = NULL; option->o = NULL; option->f = NULL; option->v = 1; while((opt=getopt(argc, argv, "i:o:f:v:")) != -1){ switch(opt){ case 'i': option->i = optarg; break; case 'o': option->o = optarg; break; case 'f': option->f = optarg; break; case 'v': option->v = atoi(optarg); if(option->v < 1 || option->v > 3){ option->v = 1; } break; default: fprintf(stderr, "Usage ./analyseur -i <Interface> -o <Fichier> -f <Filtre> -v <Verbose 1..3>"); exit(EXIT_FAILURE); } } /* Define the device */ if(option->i == NULL){ char errbuf[PCAP_ERRBUF_SIZE]; /* Error string */ char *dev = pcap_lookupdev(errbuf); if (dev == NULL) { fprintf(stderr, "SET OPTION : Couldn't find default device (%s)\n", errbuf); exit(EXIT_FAILURE); } option->i = strdup(dev); } } /** * @brief Lance l'analyse en mode online. * @details Capture en temps réel * * @param user */ void start_analyse_online(User *user){ pcap_t *handle; /* Session handle */ char *dev; /* The device to sniff on */ char errbuf[PCAP_ERRBUF_SIZE]; /* Error string */ struct bpf_program fp; /* The compiled filter */ char *filter_exp = user->opt->f; /* The filter expression */ bpf_u_int32 mask; /* Our netmask */ bpf_u_int32 net; /* Our IP */ /* Define the device */ if(user->opt->i != NULL){ dev = user->opt->i; } else{ dev = pcap_lookupdev(errbuf); if (dev == NULL) { fprintf(stderr, "Couldn't find default device: %s\n", errbuf); exit(EXIT_FAILURE); } } /* Find the properties for the device */ if (pcap_lookupnet(dev, &net, &mask, errbuf) == -1) { fprintf(stderr, "Couldn't get netmask for device %s: %s\n", dev, errbuf); net = 0; mask = 0; } /* Open the session in promiscuous mode */ handle = pcap_open_live(dev, BUFSIZ, 1, 1000, errbuf); if (handle == NULL) { fprintf(stderr, "Couldn't open device %s: %s\n", dev, errbuf); exit(EXIT_FAILURE); } /* Compile and apply the filter */ if (pcap_compile(handle, &fp, filter_exp, 0, net) == -1) { fprintf(stderr, "Couldn't parse filter %s: %s\n", filter_exp, pcap_geterr(handle)); exit(EXIT_FAILURE); } if (pcap_setfilter(handle, &fp) == -1) { fprintf(stderr, "Couldn't install filter %s: %s\n", filter_exp, pcap_geterr(handle)); exit(EXIT_FAILURE); } /* Grab packets*/ int r; if((r = pcap_loop(handle, 0, callback, (u_char *)user)) < 0){ fprintf(stderr, "Pcap loop error %d\n", r); } pcap_close(handle); } /** * @brief Lance l'analyse en mode offline * @details Capture à partir d'un fichier. * * @param user */ void start_analyse_offline(User *user){ pcap_t *handle; /* Session handle */ char errbuf[PCAP_ERRBUF_SIZE]; /* Error string */ struct bpf_program fp; /* The compiled filter */ char *filter_exp = user->opt->f; /* The filter expression */ bpf_u_int32 net = 0; /* Our IP */ // open capture file for offline processing handle = pcap_open_offline(user->opt->o, errbuf); if (handle == NULL) { fprintf(stderr, "Couldn't open file %s: %s\n", user->opt->o, errbuf); exit(EXIT_FAILURE); } /* Compile and apply the filter */ if (pcap_compile(handle, &fp, filter_exp, 0, net) == -1) { fprintf(stderr, "Couldn't parse filter %s: %s\n", filter_exp, pcap_geterr(handle)); exit(EXIT_FAILURE); } if (pcap_setfilter(handle, &fp) == -1) { fprintf(stderr, "Couldn't install filter %s: %s\n", filter_exp, pcap_geterr(handle)); exit(EXIT_FAILURE); } /* Grab packets*/ int r; if((r = pcap_loop(handle, 0, callback, (u_char *)user)) < 0){ fprintf(stderr, "Pcap loop error %d\n", r); } pcap_close(handle); } /** * @brief Libère la mémoire * @details Delete la liste des paquets * * @param l_paquet Liste des paquets à effacer */ void free_l_paquet(Liste l_paquet){ if(l_paquet != NULL){ while(l_paquet->suivant != NULL){ free(l_paquet->donnee); l_paquet = l_paquet->suivant; } free(l_paquet->donnee); } } int main(int argc, char *argv[]) { //On crée le pointeur qui va véhiculer l'info aux différentes fonctions User *user = malloc(sizeof(struct User)); //On crée le pointeur qui va contenir les options Option *opt = malloc(sizeof(struct Option)); //On set le pointeur en fonction des arguements. //Cette fonction peut arrêter le programme. set_option(opt, argc, argv); //On affiche les options affichage_option(opt); //On initialise le pointeur véhiculant l'info user->opt = opt; user->l_paquet = NULL; user->nb_paquet = 0; //Si on a spécifié un fichier d'entré on lance le mode offline, sinon on lance le mode online if(opt->o == NULL){ start_analyse_online(user); } else{ start_analyse_offline(user); } //On libère la mémoire. free(opt); free_l_paquet(user->l_paquet); free(user); return(0); }
1ef92a16f67d2a4d3e8f099599a937f4bc7110a6
48298469e7d828ab1aa54a419701c23afeeadce1
/Common/GameDefine_Guild.h
db65a42f65ee6407763173f61281cdadc94a3cd0
[]
no_license
brock7/TianLong
c39fccb3fd2aa0ad42c9c4183d67a843ab2ce9c2
8142f9ccb118e76a5cd0a8b168bcf25e58e0be8b
refs/heads/master
2021-01-10T14:19:19.850859
2016-02-20T13:58:55
2016-02-20T13:58:55
52,155,393
5
3
null
null
null
null
GB18030
C
false
false
6,325
h
GameDefine_Guild.h
#ifndef __GAMEDEFINE_GUILD_H__ #define __GAMEDEFINE_GUILD_H__ #define MAX_NUM_PER_POSITION 20 enum GUILD_STATUS { GUILD_STATUS_INVALID = 0, GUILD_STATUS_NORMAL, }; enum GUILD_POSITION { GUILD_POSITION_INVALID = 0, GUILD_POSITION_TRAINEE, // 预备帮众,待批准 GUILD_POSITION_MEMBER, // 普通帮众 GUILD_POSITION_ELITE_MEMBER, // 精英帮众 GUILD_POSITION_COM, // 商业官员 GUILD_POSITION_AGRI, // 农业官员 GUILD_POSITION_INDUSTRY, // 工业官员 GUILD_POSITION_HR, // 人事官员 GUILD_POSITION_ASS_CHIEFTAIN, // 副帮主 GUILD_POSITION_CHIEFTAIN, // 帮主 GUILD_POSITION_SIZE, // 职位级别数 }; enum GUILD_AUTHORITY { GUILD_AUTHORITY_INVALID = 0, GUILD_AUTHORITY_ASSIGN = 0x1, // 职务调动权 GUILD_AUTHORITY_AUTHORIZE = 0x2, // 权限调整权 GUILD_AUTHORITY_RECRUIT = 0x4, // 接收帮众权 GUILD_AUTHORITY_EXPEL = 0x8, // 开除帮众权 GUILD_AUTHORITY_DEMISE = 0x10, // 禅让权 GUILD_AUTHORITY_WITHDRAW = 0x20, // 支取帮资权 GUILD_AUTHORITY_DEPOSIT = 0x40, // 存入金额权 GUILD_AUTHORITY_LEAVE = 0x80, // 离开帮会权(这个权限有点多余) GUILD_AUTHORITY_DIMISS = 0x100, // 解散帮会权 GUILD_AUTHORITY_NUMBER = 8, // 权限数量 // 帮众的通用权限 GUILD_AUTHORITY_MEMBER = GUILD_AUTHORITY_DEPOSIT | GUILD_AUTHORITY_LEAVE, GUILD_AUTHORITY_ASSCHIEFTAIN = GUILD_AUTHORITY_ASSIGN | GUILD_AUTHORITY_RECRUIT | GUILD_AUTHORITY_EXPEL | GUILD_AUTHORITY_LEAVE, GUILD_AUTHORITY_CHIEFTAIN = 0x17F, // 没有离开帮会的权限 }; enum GUILD_RETURN_TYPE { GUILD_RETURN_INVALID = -1, // 创建部分 GUILD_RETURN_CREATE, // 创建成功 GUILD_RETURN_RESPONSE, // 响应成功 // 加入部分 GUILD_RETURN_JOIN, // 加入申请列表等待批准 // 权限操作 GUILD_RETURN_PROMOTE, // 0001,任免职务,升职 GUILD_RETURN_DEMOTE, // 0001,任免职务,降职 GUILD_RETURN_AUTHORIZE, // 0002,调整权限,授权 GUILD_RETURN_DEPRIVE_AUTHORITY, // 0002,调整权限,解除权限 GUILD_RETURN_RECRUIT, // 0003,接收帮众 GUILD_RETURN_EXPEL, // 0004,开除帮众 GUILD_RETURN_DEMISE, // 0005,禅让 GUILD_RETURN_WITHDRAW, // 0006,支取金额 GUILD_RETURN_DEPOSIT, // 0007,存入金额 GUILD_RETURN_LEAVE, // 0008,离开帮会 GUILD_RETURN_REJECT, // 0009,拒绝申请 GUILD_RETURN_FOUND, // 正式成立(人数达到) GUILD_RETURN_DISMISS, // 解散帮会 GUILD_RETURN_CHANGEDESC, // 修改帮会宗旨 GUILD_RETURN_NAME, // 刷新帮会名 GUILD_RETURN_SIZE, }; enum GUILD_ERROR_TYPE { // 创建部分 GUILD_ERROR_NOTHING = 0, // 没什么错误…… GUILD_ERROR_WANTING = -1, // 不符合创建条件,只给出错误符,具体的错误描述由脚本发送 GUILD_ERROR_INVALID_NAME = -2, // 名字非法 GUILD_ERROR_DUPLICATED_NAME = -3, // 重名 GUILD_ERROR_GUILD_FULL = -4, // 不能创建更多帮会 // 加入部分 GUILD_ERROR_MEMBER_FULL = -5, // 帮会满员了 GUILD_ERROR_PROPOSER_FULL = -6, // 申请人已满 GUILD_ERROR_IN_GUILD = -7, // 玩家已加入帮会 GUILD_ERROR_NOT_EXIST = -8, // 帮会不存在 // 权限操作 GUILD_ERROR_UNAUTHORIZED = -9, // 没有权限 GUILD_ERROR_NO_VACANCY = -10, // 0001,任免职务,没有职位空缺 GUILD_ERROR_NO_QUALIFICATION = -11, // 0002,调整权限,被调整人员(职位)不够资格 GUILD_ERROR_CASHBOX_FULL = -12, // 0007,存入金额,帮会金库已满 GUILD_ERROR_ALREADY_MEMBER = -13, // 此人已经是帮会成员 GUILD_ERROR_MEMBER_NOT_EXIST = -14, // 此人不在帮会中 //禅让 GUILD_ERROR_NO_ASS_CHIEF = -15, // 没有副帮主 GUILD_ERROR_GUILD_ALREADY_EXIST = -16, // 帮会已存在 //这个职位人数已满,不能任命 GUILD_ERROR_POS_FULL = -17, //这个职位人数已满,不能任命 GUILD_ERROR_ALREADY_IN_PROPOSER_LIST = -18, //申请人已经在申请列表中了 GUILD_ERROR_INVALID_CAMP = -19, //申请人的阵营非法 // 解散部分 GUILD_ERROR = -64, // 不明错误 }; enum GUILD_PACKET_TYPE { GUILD_PACKET_INVALID = -1, GUILD_PACKET_CG_ASKLIST, // 询问帮会列表(UCHAR) GUILD_PACKET_CG_CREATE, // 创建帮会 GUILD_PACKET_CG_JOIN, // 加入帮会 GUILD_PACKET_CG_ASKINFO, // 询问帮会信息 GUILD_PACKET_CG_APPOINT, // 帮会任免 GUILD_PACKET_CG_ADJUSTAUTHORITY, // 调整帮会权限 GUILD_PACKET_CG_RECRUIT, // 帮会收人 GUILD_PACKET_CG_EXPEL, // 帮会踢人 GUILD_PACKET_CG_WITHDRAW, // 提取帮资 GUILD_PACKET_CG_DEPOSIT, // 存入帮资 GUILD_PACKET_CG_LEAVE, // 离开帮会 GUILD_PACKET_CG_DISMISS, // 解散帮会 GUILD_PACKET_CG_DEMISE, // 解散帮会 GUILD_PACKET_CG_CHANGEDESC, // 更改帮会宗旨 GUILD_PACKET_CG_GW_SEPARATOR, // 分隔符 GUILD_PACKET_GW_ASKLIST, // 询问帮会列表(GUID_t, UCHAR) GUILD_PACKET_GW_CREATE, // 创建帮会 GUILD_PACKET_GW_JOIN, // 加入帮会 GUILD_PACKET_GW_ASKINFO, // 询问帮会信息 GUILD_PACKET_GW_APPOINT, // 帮会任免 GUILD_PACKET_GW_ADJUSTAUTHORITY, // 调整帮会权限 GUILD_PACKET_GW_RECRUIT, // 帮会收人 GUILD_PACKET_GW_EXPEL, // 帮会踢人 GUILD_PACKET_GW_WITHDRAW, // 提取帮资 GUILD_PACKET_GW_DEPOSIT, // 存入帮资 GUILD_PACKET_GW_LEAVE, // 离开帮会 GUILD_PACKET_GW_DISMISS, // 解散帮会 GUILD_PACKET_GW_DEMISE, // 禅让 GUILD_PACKET_GW_ASKMEMBERLIST, // 帮会成员信息列表 GUILD_PACKET_GW_CHANGEDESC, // 更改帮会宗旨 GUILD_PACKET_GW_WG_SEPARATOR, // 分隔符 GUILD_PACKET_WG_LIST, // 帮会列表 GUILD_PACKET_WG_MEMBER_LIST, // 帮众列表 GUILD_PACKET_WG_GUILD_INFO, // 帮会信息 GUILD_PACKET_WG_APPOINT_INFO, // 帮会可任命信息 GUILD_PACKET_WG_SELF_GUILD_INFO, // 个人帮派信息 GUILD_PACKET_WG_GC_SEPARATOR, // 分隔符 GUILD_PACKET_GC_LIST, // 帮会列表 GUILD_PACKET_GC_MEMBER_LIST, // 帮众列表 GUILD_PACKET_GC_GUILD_INFO, // 帮会信息 GUILD_PACKET_GC_APPOINT_INFO, // 帮会可任命信息 GUILD_PACKET_GC_SELF_GUILD_INFO, // 个人帮派信息 }; #endif // __GAMEDEFINE_GUILD_H__
1356b116c825cf51ec84692c418a709b4a9f5132
2f5ebde35b59d9dc3a5f36e32b894e10f42e8976
/JUBADriveing/common/singleton/GCDSingleton.h
98fa1db7025cb284a19a320210932e85a2f49ec1
[]
no_license
nic4005/IOS
43dcdd47b2453ceee45f8feb0dd31612ae95de2f
51ef948efb26ab72f6e5db0acd00b3875c326b5b
refs/heads/master
2020-12-24T13:21:07.624068
2014-07-16T02:35:58
2014-07-16T02:35:58
null
0
0
null
null
null
null
UTF-8
C
false
false
702
h
GCDSingleton.h
// // GCDSingleton.h // ciwenKids // // Created by ciwenkids on 14-3-26. // Copyright (c) 2014年 xhb. All rights reserved. // #ifndef ciwenKids_GCDSingleton_h #define ciwenKids_GCDSingleton_h #ifndef SINGLETON_GCD #define SINGLETON_GCD(classname) \ + (classname *)shared##classname { \ static dispatch_once_t pred; \ __strong static classname *shared##classname = nil; \ dispatch_once(&pred, ^{ \ shared##classname = [[self alloc] init]; \ }); \ return shared##classname; \ } #endif #endif
2ba5ec188bf81c9abc50459b03f20095398e5d17
8ce72d57e640dfe716cea9df2d331825fb6a85f3
/lab6/lab6a.c
998884277c71afb3151976af470280d682ec830d
[]
no_license
ryankinney33/ece477
7b7586510207926e9f42db5ec4c7758a49fc70d8
88efe955a098e74841efb1f7e4fd2559780022dc
refs/heads/master
2023-04-22T19:32:34.992300
2021-05-01T02:54:43
2021-05-01T02:54:43
338,671,360
0
0
null
null
null
null
UTF-8
C
false
false
3,839
c
lab6a.c
/* The purpose of this program is to send "START" to an AVR over serial. This program will then read strings from the serial, printf them to stdout, and save the numbers in a file called rail_voltages.dat Author: Ryan Kinney ECE 477 - Spring 2021 April 9, 2021 */ #include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> #include <ctype.h> #include <termios.h> #include <fcntl.h> #include <unistd.h> #include <errno.h> #include <signal.h> #include <wiringPi.h> #define RESET 26 #define BAUDRATE B9600 #define DEVICE "/dev/ttyS0" int gpio_init(); int AVR_reset(); int init_serial(); void start(int port); void get_data(int serial_port, FILE* file); static volatile int keepRunning = 1; // handles SIGINT to exit the program gracefully void intHandle(int x){ keepRunning = 0; } int main(){ // used for gracefully exiting the program signal(SIGINT, intHandle); // first, initialize the reset line gpio_init(); AVR_reset(); // reset the AVR delay(1300); // sleep for 1.3 seconds (give the AVR some time) // initialize the serial port int serial = init_serial(); // opens/creates a file for writing data FILE* data = fopen("rail_voltages.dat","w"); if(data == NULL){ fprintf(stderr, "Error %i from fopen: %s\n", errno, strerror(errno)); close(serial); exit(1); } // initialization is done; start doing stuff start(serial); char buf[100]; while(keepRunning){ get_data(serial,data); } // done; close the files and reset the AVR AVR_reset(); fclose(data); close(serial); printf("\n"); exit(0); } // Set up the pin used to reset the AVR int gpio_init(){ wiringPiSetup(); pinMode(RESET,OUTPUT); digitalWrite(RESET,HIGH); } // Send a low pulse to the AVR reset line to reset it int AVR_reset(){ digitalWrite(RESET,LOW); delay(1); digitalWrite(RESET,HIGH); delay(100); // wait 100 ms for the AVR to get a steady state } int init_serial(){ // open the serial port and check for errors int port = open(DEVICE, O_RDWR | O_NOCTTY); if(port < 0){ fprintf(stderr, "Error %i from open: %s\n", errno, strerror(errno)); exit(1); } // configure the port with the termios struct struct termios tty; if(tcgetattr(port, &tty) != 0){ // error checking fprintf(stderr, "Error %i from tcgettattr: %s\n", errno, strerror(errno)); exit(1); } tty.c_cflag = CS8 | CREAD | CLOCAL | CSTOPB; // 8 data bits, 2 stop bits enable receiver, no modem status lines tty.c_iflag = IGNPAR; // ignore parity errors tty.c_oflag = 0; // disable all these flags tty.c_lflag = 0; // canonical processing // set the baud rate cfsetispeed(&tty, BAUDRATE); cfsetospeed(&tty, BAUDRATE); // set the attributes and check for error if(tcsetattr(port, TCSANOW, &tty) != 0){ fprintf(stderr, "Error %i from tcsetattr: %s\n", errno, strerror(errno)); exit(1); } return port; // return the file descriptor for the port } void start(int port){ char buf[100] = "START\n"; if(write(port,buf,strlen(buf)) == -1){ fprintf(stderr, "Error %i during write: %s\n", errno, strerror(errno)); exit(1); } } void get_data(int serial_port, FILE* file){ static char buf[100] = "\0"; // input buffer // read the data from the serial port int x = read(serial_port,buf,sizeof(buf)); if(x == -1){ // check for error fprintf(stderr, "Error %i from read: %s\n", errno, strerror(errno)); keepRunning = 0; // exit program on error } else if(x && keepRunning){ // check if anything was actually read printf("%s",buf); // print what was received from the AVR to stdout // iterate through the buffer, writing numbers, periods, and newlines for(int i = 0; i < strlen(buf); ++i){ if(isdigit(buf[i]) || buf[i] == '.'){ fputc(buf[i],file); // number or decimal point, write it }else if(buf[i] == 'V'){ fputc('\n',file); // end of number, add newline } } } }
4fcc6731de6d5dc2e978d9ac3e082541a84afd3e
3db5dfbb6049ba0ccf81365d4c21d5218da000a5
/simulator/mem.h
220ccb822e57a3fc4a3c12196d01ac7f69e318fb
[]
no_license
hualiansheng/minic
7b5a70c7ec7e46a41658486b43b9946e492c8d40
af7f499ffd8c0165cde83898615655e9c2329a8a
refs/heads/master
2021-01-23T20:44:28.632033
2011-02-25T03:19:42
2011-02-25T03:19:42
37,264,626
2
0
null
null
null
null
UTF-8
C
false
false
1,012
h
mem.h
#ifndef _MEM_H_ #define _MEM_H_ #include <stdint.h> #define SEG_RD 4 #define SEG_WR 2 #define SEG_EX 1 #define DATA_RD 4 #define DATA_WR 2 #define DATA_EX 1 typedef struct{ unsigned int vaddr_offset; unsigned int size; uint8_t *base; int flag; }PROC_SEGMENT; typedef struct{ unsigned int seg_num; PROC_SEGMENT * segments; }PROC_MEM; typedef PROC_SEGMENT PROC_STACK; PROC_MEM* mem_initial(unsigned int _seg_num); void mem_destroy(PROC_MEM *mem); int segment_load(PROC_MEM* mem, unsigned int seg_index, int flag, unsigned int vaddr_offset, unsigned int seg_size, void* data, unsigned int data_size); int mem_fetch(PROC_MEM* mem, uint32_t addr, void *data, unsigned int data_size, int data_type); int mem_set(PROC_MEM* mem, uint32_t addr, void *data, unsigned int data_size); int mem_type(PROC_MEM* mem, uint32_t addr); int mem_invalid(PROC_MEM* mem, uint32_t addr);// incalid return 0, else return -1 #endif
d9bf62f40a8a02abbc3e8a9bd28b885aca65be7d
54198d20656219e657a14bd1987c7088a6a36692
/app/xterm/menu.c
fab8a80af32c5d700515fa8a6ffd4fed445cf6c8
[]
no_license
bitrig/bitrig-xenocara
4c288d36a512c88aa6e98637a7001522ae2262fc
689a1c2f5e4b05ee6d5fed4b4cd398186e3d95a7
refs/heads/master
2020-12-24T17:36:23.163790
2016-11-28T03:12:12
2016-11-28T19:05:31
4,652,376
11
8
null
null
null
null
UTF-8
C
false
false
89,054
c
menu.c
/* $XTermId: menu.c,v 1.332 2015/12/30 09:40:28 tom Exp $ */ /* * Copyright 1999-2014,2015 by Thomas E. Dickey * * All Rights Reserved * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * Except as contained in this notice, the name(s) of the above copyright * holders shall not be used in advertising or otherwise to promote the * sale, use or other dealings in this Software without prior written * authorization. * * * Copyright 1989 The Open Group * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice and this permission notice appear in supporting * documentation. * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * Except as contained in this notice, the name of The Open Group shall not be * used in advertising or otherwise to promote the sale, use or other dealings * in this Software without prior written authorization from The Open Group. */ #include <xterm.h> #include <data.h> #include <menu.h> #include <fontutils.h> #include <xstrings.h> #include <locale.h> #include <X11/Xmu/CharSet.h> #define app_con Xaw_app_con /* quiet a warning from SimpleMenu.h */ #if defined(HAVE_LIB_XAW) #include <X11/Xaw/SimpleMenu.h> #include <X11/Xaw/Box.h> #include <X11/Xaw/SmeBSB.h> #include <X11/Xaw/SmeLine.h> #if OPT_TOOLBAR #include <X11/Xaw/MenuButton.h> #include <X11/Xaw/Form.h> #endif #elif defined(HAVE_LIB_XAW3D) #include <X11/Xaw3d/SimpleMenu.h> #include <X11/Xaw3d/Box.h> #include <X11/Xaw3d/SmeBSB.h> #include <X11/Xaw3d/SmeLine.h> #if OPT_TOOLBAR #include <X11/Xaw3d/MenuButton.h> #include <X11/Xaw3d/Form.h> #endif #elif defined(HAVE_LIB_XAW3DXFT) #include <X11/Xaw3dxft/SimpleMenu.h> #include <X11/Xaw3dxft/Box.h> #include <X11/Xaw3dxft/SmeBSB.h> #include <X11/Xaw3dxft/SmeLine.h> #if OPT_TOOLBAR #include <X11/Xaw3dxft/MenuButton.h> #include <X11/Xaw3dxft/Form.h> #endif #elif defined(HAVE_LIB_NEXTAW) #include <X11/neXtaw/SimpleMenu.h> #include <X11/neXtaw/Box.h> #include <X11/neXtaw/SmeBSB.h> #include <X11/neXtaw/SmeLine.h> #if OPT_TOOLBAR #include <X11/neXtaw/MenuButton.h> #include <X11/neXtaw/Form.h> #endif #elif defined(HAVE_LIB_XAWPLUS) #include <X11/XawPlus/SimpleMenu.h> #include <X11/XawPlus/Box.h> #include <X11/XawPlus/SmeBSB.h> #include <X11/XawPlus/SmeLine.h> #if OPT_TOOLBAR #include <X11/XawPlus/MenuButton.h> #include <X11/XawPlus/Form.h> #endif #endif #undef app_con #include <stdio.h> #include <signal.h> #if OPT_TRACE #define UpdateCheckbox(func, mn, mi, val) UpdateMenuItem(func, mn, mi, val) #else #define UpdateCheckbox(func, mn, mi, val) UpdateMenuItem(mn, mi, val) #endif #define ToggleFlag(flag) flag = (Boolean) !flag /* *INDENT-OFF* */ static void do_8bit_control PROTO_XT_CALLBACK_ARGS; static void do_allow132 PROTO_XT_CALLBACK_ARGS; static void do_allowBoldFonts PROTO_XT_CALLBACK_ARGS; static void do_allowsends PROTO_XT_CALLBACK_ARGS; static void do_altscreen PROTO_XT_CALLBACK_ARGS; static void do_appcursor PROTO_XT_CALLBACK_ARGS; static void do_appkeypad PROTO_XT_CALLBACK_ARGS; static void do_autolinefeed PROTO_XT_CALLBACK_ARGS; static void do_autowrap PROTO_XT_CALLBACK_ARGS; static void do_backarrow PROTO_XT_CALLBACK_ARGS; static void do_bellIsUrgent PROTO_XT_CALLBACK_ARGS; static void do_clearsavedlines PROTO_XT_CALLBACK_ARGS; static void do_continue PROTO_XT_CALLBACK_ARGS; static void do_delete_del PROTO_XT_CALLBACK_ARGS; static void do_hardreset PROTO_XT_CALLBACK_ARGS; static void do_interrupt PROTO_XT_CALLBACK_ARGS; static void do_jumpscroll PROTO_XT_CALLBACK_ARGS; static void do_keepClipboard PROTO_XT_CALLBACK_ARGS; static void do_keepSelection PROTO_XT_CALLBACK_ARGS; static void do_kill PROTO_XT_CALLBACK_ARGS; static void do_old_fkeys PROTO_XT_CALLBACK_ARGS; static void do_poponbell PROTO_XT_CALLBACK_ARGS; static void do_print PROTO_XT_CALLBACK_ARGS; static void do_print_redir PROTO_XT_CALLBACK_ARGS; static void do_quit PROTO_XT_CALLBACK_ARGS; static void do_redraw PROTO_XT_CALLBACK_ARGS; static void do_reversevideo PROTO_XT_CALLBACK_ARGS; static void do_reversewrap PROTO_XT_CALLBACK_ARGS; static void do_scrollbar PROTO_XT_CALLBACK_ARGS; static void do_scrollkey PROTO_XT_CALLBACK_ARGS; static void do_scrollttyoutput PROTO_XT_CALLBACK_ARGS; static void do_securekbd PROTO_XT_CALLBACK_ARGS; static void do_selectClipboard PROTO_XT_CALLBACK_ARGS; static void do_softreset PROTO_XT_CALLBACK_ARGS; static void do_suspend PROTO_XT_CALLBACK_ARGS; static void do_terminate PROTO_XT_CALLBACK_ARGS; static void do_titeInhibit PROTO_XT_CALLBACK_ARGS; static void do_visualbell PROTO_XT_CALLBACK_ARGS; static void do_vtfont PROTO_XT_CALLBACK_ARGS; #ifdef ALLOWLOGGING static void do_logging PROTO_XT_CALLBACK_ARGS; #endif #ifndef NO_ACTIVE_ICON static void do_activeicon PROTO_XT_CALLBACK_ARGS; #endif /* NO_ACTIVE_ICON */ #if OPT_ALLOW_XXX_OPS static void enable_allow_xxx_ops (Bool); static void do_allowColorOps PROTO_XT_CALLBACK_ARGS; static void do_allowFontOps PROTO_XT_CALLBACK_ARGS; static void do_allowTcapOps PROTO_XT_CALLBACK_ARGS; static void do_allowTitleOps PROTO_XT_CALLBACK_ARGS; static void do_allowWindowOps PROTO_XT_CALLBACK_ARGS; #endif #if OPT_BLINK_CURS static void do_cursorblink PROTO_XT_CALLBACK_ARGS; #endif #if OPT_BOX_CHARS static void do_font_boxchars PROTO_XT_CALLBACK_ARGS; static void do_font_packed PROTO_XT_CALLBACK_ARGS; #endif #if OPT_DEC_CHRSET static void do_font_doublesize PROTO_XT_CALLBACK_ARGS; #endif #if OPT_DEC_SOFTFONT static void do_font_loadable PROTO_XT_CALLBACK_ARGS; #endif #if OPT_HP_FUNC_KEYS static void do_hp_fkeys PROTO_XT_CALLBACK_ARGS; #endif #if OPT_MAXIMIZE static void do_fullscreen PROTO_XT_CALLBACK_ARGS; #endif #if OPT_NUM_LOCK static void do_alt_esc PROTO_XT_CALLBACK_ARGS; static void do_num_lock PROTO_XT_CALLBACK_ARGS; static void do_meta_esc PROTO_XT_CALLBACK_ARGS; #endif #if OPT_PRINT_ON_EXIT static void do_write_now PROTO_XT_CALLBACK_ARGS; static void do_write_error PROTO_XT_CALLBACK_ARGS; #endif #if OPT_RENDERFONT static void do_font_renderfont PROTO_XT_CALLBACK_ARGS; #endif #if OPT_SCO_FUNC_KEYS static void do_sco_fkeys PROTO_XT_CALLBACK_ARGS; #endif #if OPT_SIXEL_GRAPHICS static void do_sixelscrolling PROTO_XT_CALLBACK_ARGS; #endif #if OPT_GRAPHICS static void do_privatecolorregisters PROTO_XT_CALLBACK_ARGS; #endif #if OPT_SUN_FUNC_KEYS static void do_sun_fkeys PROTO_XT_CALLBACK_ARGS; #endif #if OPT_SUNPC_KBD static void do_sun_kbd PROTO_XT_CALLBACK_ARGS; #endif #if OPT_TCAP_FKEYS static void do_tcap_fkeys PROTO_XT_CALLBACK_ARGS; #endif #if OPT_TEK4014 static void do_tekcopy PROTO_XT_CALLBACK_ARGS; static void do_tekhide PROTO_XT_CALLBACK_ARGS; static void do_tekmode PROTO_XT_CALLBACK_ARGS; static void do_tekonoff PROTO_XT_CALLBACK_ARGS; static void do_tekpage PROTO_XT_CALLBACK_ARGS; static void do_tekreset PROTO_XT_CALLBACK_ARGS; static void do_tekshow PROTO_XT_CALLBACK_ARGS; static void do_tektext2 PROTO_XT_CALLBACK_ARGS; static void do_tektext3 PROTO_XT_CALLBACK_ARGS; static void do_tektextlarge PROTO_XT_CALLBACK_ARGS; static void do_tektextsmall PROTO_XT_CALLBACK_ARGS; static void do_vthide PROTO_XT_CALLBACK_ARGS; static void do_vtmode PROTO_XT_CALLBACK_ARGS; static void do_vtonoff PROTO_XT_CALLBACK_ARGS; static void do_vtshow PROTO_XT_CALLBACK_ARGS; static void handle_tekshow (Widget gw, Bool allowswitch); static void handle_vtshow (Widget gw, Bool allowswitch); #endif #if OPT_TOOLBAR static void do_toolbar PROTO_XT_CALLBACK_ARGS; #endif #if OPT_WIDE_CHARS static void do_font_utf8_mode PROTO_XT_CALLBACK_ARGS; static void do_font_utf8_fonts PROTO_XT_CALLBACK_ARGS; static void do_font_utf8_title PROTO_XT_CALLBACK_ARGS; #endif /* * The order of entries MUST match the values given in menu.h */ MenuEntry mainMenuEntries[] = { #if OPT_TOOLBAR { "toolbar", do_toolbar, NULL }, #endif #if OPT_MAXIMIZE { "fullscreen", do_fullscreen, NULL }, #endif { "securekbd", do_securekbd, NULL }, { "allowsends", do_allowsends, NULL }, { "redraw", do_redraw, NULL }, { "line1", NULL, NULL }, #ifdef ALLOWLOGGING { "logging", do_logging, NULL }, #endif #ifdef OPT_PRINT_ON_EXIT { "print-immediate", do_write_now, NULL }, { "print-on-error", do_write_error, NULL }, #endif { "print", do_print, NULL }, { "print-redir", do_print_redir, NULL }, { "line2", NULL, NULL }, { "8-bit control", do_8bit_control,NULL }, { "backarrow key", do_backarrow, NULL }, #if OPT_NUM_LOCK { "num-lock", do_num_lock, NULL }, { "alt-esc", do_alt_esc, NULL }, { "meta-esc", do_meta_esc, NULL }, #endif { "delete-is-del", do_delete_del, NULL }, { "oldFunctionKeys",do_old_fkeys, NULL }, #if OPT_TCAP_FKEYS { "tcapFunctionKeys",do_tcap_fkeys, NULL }, #endif #if OPT_HP_FUNC_KEYS { "hpFunctionKeys", do_hp_fkeys, NULL }, #endif #if OPT_SCO_FUNC_KEYS { "scoFunctionKeys",do_sco_fkeys, NULL }, #endif #if OPT_SUN_FUNC_KEYS { "sunFunctionKeys",do_sun_fkeys, NULL }, #endif #if OPT_SUNPC_KBD { "sunKeyboard", do_sun_kbd, NULL }, #endif { "line3", NULL, NULL }, { "suspend", do_suspend, NULL }, { "continue", do_continue, NULL }, { "interrupt", do_interrupt, NULL }, { "hangup", do_hangup, NULL }, { "terminate", do_terminate, NULL }, { "kill", do_kill, NULL }, { "line4", NULL, NULL }, { "quit", do_quit, NULL }}; MenuEntry vtMenuEntries[] = { { "scrollbar", do_scrollbar, NULL }, { "jumpscroll", do_jumpscroll, NULL }, { "reversevideo", do_reversevideo, NULL }, { "autowrap", do_autowrap, NULL }, { "reversewrap", do_reversewrap, NULL }, { "autolinefeed", do_autolinefeed, NULL }, { "appcursor", do_appcursor, NULL }, { "appkeypad", do_appkeypad, NULL }, { "scrollkey", do_scrollkey, NULL }, { "scrollttyoutput",do_scrollttyoutput, NULL }, { "allow132", do_allow132, NULL }, { "keepSelection", do_keepSelection, NULL }, { "selectToClipboard",do_selectClipboard, NULL }, { "visualbell", do_visualbell, NULL }, { "bellIsUrgent", do_bellIsUrgent, NULL }, { "poponbell", do_poponbell, NULL }, #if OPT_BLINK_CURS { "cursorblink", do_cursorblink, NULL }, #endif { "titeInhibit", do_titeInhibit, NULL }, #ifndef NO_ACTIVE_ICON { "activeicon", do_activeicon, NULL }, #endif /* NO_ACTIVE_ICON */ { "line1", NULL, NULL }, { "softreset", do_softreset, NULL }, { "hardreset", do_hardreset, NULL }, { "clearsavedlines",do_clearsavedlines, NULL }, { "line2", NULL, NULL }, #if OPT_TEK4014 { "tekshow", do_tekshow, NULL }, { "tekmode", do_tekmode, NULL }, { "vthide", do_vthide, NULL }, #endif { "altscreen", do_altscreen, NULL }, #if OPT_SIXEL_GRAPHICS { "sixelScrolling", do_sixelscrolling, NULL }, #endif #if OPT_GRAPHICS { "privateColorRegisters", do_privatecolorregisters, NULL }, #endif }; MenuEntry fontMenuEntries[] = { { "fontdefault", do_vtfont, NULL }, { "font1", do_vtfont, NULL }, { "font2", do_vtfont, NULL }, { "font3", do_vtfont, NULL }, { "font4", do_vtfont, NULL }, { "font5", do_vtfont, NULL }, { "font6", do_vtfont, NULL }, /* this is after the last builtin font; the other entries are special */ { "fontescape", do_vtfont, NULL }, { "fontsel", do_vtfont, NULL }, /* down to here should match NMENUFONTS in ptyx.h */ #if OPT_DEC_CHRSET || OPT_BOX_CHARS || OPT_DEC_SOFTFONT { "line1", NULL, NULL }, { "allow-bold-fonts", do_allowBoldFonts, NULL }, #if OPT_BOX_CHARS { "font-linedrawing",do_font_boxchars,NULL }, { "font-packed", do_font_packed,NULL }, #endif #if OPT_DEC_CHRSET { "font-doublesize",do_font_doublesize,NULL }, #endif #if OPT_DEC_SOFTFONT { "font-loadable", do_font_loadable,NULL }, #endif #endif /* toggles for DEC font extensions */ #if OPT_RENDERFONT || OPT_WIDE_CHARS { "line2", NULL, NULL }, #if OPT_RENDERFONT { "render-font", do_font_renderfont,NULL }, #endif #if OPT_WIDE_CHARS { "utf8-mode", do_font_utf8_mode,NULL }, { "utf8-fonts", do_font_utf8_fonts,NULL }, { "utf8-title", do_font_utf8_title,NULL }, #endif #endif /* toggles for other font extensions */ #if OPT_ALLOW_XXX_OPS { "line3", NULL, NULL }, { "allow-color-ops",do_allowColorOps,NULL }, { "allow-font-ops", do_allowFontOps,NULL }, { "allow-tcap-ops", do_allowTcapOps,NULL }, { "allow-title-ops",do_allowTitleOps,NULL }, { "allow-window-ops",do_allowWindowOps,NULL }, #endif }; #if OPT_TEK4014 MenuEntry tekMenuEntries[] = { { "tektextlarge", do_tektextlarge, NULL }, { "tektext2", do_tektext2, NULL }, { "tektext3", do_tektext3, NULL }, { "tektextsmall", do_tektextsmall, NULL }, { "line1", NULL, NULL }, { "tekpage", do_tekpage, NULL }, { "tekreset", do_tekreset, NULL }, { "tekcopy", do_tekcopy, NULL }, { "line2", NULL, NULL }, { "vtshow", do_vtshow, NULL }, { "vtmode", do_vtmode, NULL }, { "tekhide", do_tekhide, NULL }}; #endif typedef struct { char *internal_name; MenuEntry *entry_list; Cardinal entry_len; } MenuHeader; /* This table is ordered to correspond with MenuIndex */ static const MenuHeader menu_names[] = { { "mainMenu", mainMenuEntries, XtNumber(mainMenuEntries) }, { "vtMenu", vtMenuEntries, XtNumber(vtMenuEntries) }, { "fontMenu", fontMenuEntries, XtNumber(fontMenuEntries) }, #if OPT_TEK4014 { "tekMenu", tekMenuEntries, XtNumber(tekMenuEntries) }, #endif { 0, 0, 0 }, }; /* *INDENT-ON* */ /* * FIXME: These are global data rather than in the xterm widget because they * are initialized before the widget is created. */ typedef struct { Widget b; /* the toolbar's buttons */ Widget w; /* the popup shell activated by the button */ Cardinal entries; } MenuList; static MenuList vt_shell[NUM_POPUP_MENUS]; #if OPT_TEK4014 && OPT_TOOLBAR static MenuList tek_shell[NUM_POPUP_MENUS]; #endif static String setMenuLocale(Bool before, String substitute) { String result = setlocale(LC_CTYPE, 0); if (before) { result = x_strdup(result); } (void) setlocale(LC_CTYPE, substitute); TRACE(("setMenuLocale %s:%s\n", (before ? "before" : "after"), NonNull(result))); if (!before) { free((void *) substitute); } return result; } /* * Returns a pointer to the MenuList entry that matches the popup menu. */ static MenuList * select_menu(Widget w GCC_UNUSED, MenuIndex num) { #if OPT_TEK4014 && OPT_TOOLBAR while (w != 0) { if (w == tekshellwidget) { return &tek_shell[num]; } w = XtParent(w); } #endif return &vt_shell[num]; } /* * Returns a pointer to the given popup menu shell */ static Widget obtain_menu(Widget w, MenuIndex num) { return select_menu(w, num)->w; } /* * Returns the number of entries in the given popup menu shell */ static Cardinal sizeof_menu(Widget w, MenuIndex num) { return select_menu(w, num)->entries; } /* * Return an array of flags telling if a given menu item is never going to * be used, so we can reduce the size of menus. */ static Boolean * unusedEntries(XtermWidget xw, MenuIndex num) { static Boolean result[XtNumber(mainMenuEntries) + XtNumber(vtMenuEntries) + XtNumber(fontMenuEntries) #if OPT_TEK4014 + XtNumber(tekMenuEntries) #endif ]; TScreen *screen = TScreenOf(xw); memset(result, 0, sizeof(result)); switch (num) { case mainMenu: #if OPT_MAXIMIZE if (resource.fullscreen > 1) { result[mainMenu_fullscreen] = True; } #endif #if OPT_NUM_LOCK if (!screen->alt_is_not_meta) { result[mainMenu_alt_esc] = True; } #endif if (!xtermHasPrinter(xw)) { result[mainMenu_print] = True; result[mainMenu_print_redir] = True; } if (screen->terminal_id < 200) { result[mainMenu_8bit_ctrl] = True; } #if !defined(SIGTSTP) result[mainMenu_suspend] = True; #endif #if !defined(SIGCONT) result[mainMenu_continue] = True; #endif #ifdef ALLOWLOGGING if (screen->inhibit & I_LOG) { result[mainMenu_logging] = True; } #endif if (screen->inhibit & I_SIGNAL) { int n; for (n = (int) mainMenu_suspend; n <= (int) mainMenu_quit; ++n) { result[n] = True; } } break; case vtMenu: #ifndef NO_ACTIVE_ICON if (!screen->fnt_icon.fs || !screen->iconVwin.window) { result[vtMenu_activeicon] = True; } #endif /* NO_ACTIVE_ICON */ #if OPT_TEK4014 if (screen->inhibit & I_TEK) { int n; for (n = (int) vtMenu_tekshow; n <= (int) vtMenu_vthide; ++n) { result[n] = True; } } #endif break; case fontMenu: break; #if OPT_TEK4014 case tekMenu: break; #endif case noMenu: break; } return result; } /* * create_menu - create a popup shell and stuff the menu into it. */ static Widget create_menu(Widget w, XtermWidget xw, MenuIndex num) { static XtCallbackRec cb[2] = { {NULL, NULL}, {NULL, NULL}}; static Arg arg = {XtNcallback, (XtArgVal) cb}; TScreen *screen = TScreenOf(xw); const MenuHeader *data = &menu_names[num]; MenuList *list = select_menu(w, num); struct _MenuEntry *entries = data->entry_list; Cardinal nentries = data->entry_len; #if !OPT_TOOLBAR String saveLocale; #endif if (screen->menu_item_bitmap == None) { /* * we really want to do these dynamically */ #define check_width 9 #define check_height 8 static unsigned char check_bits[] = { 0x00, 0x01, 0x80, 0x01, 0xc0, 0x00, 0x60, 0x00, 0x31, 0x00, 0x1b, 0x00, 0x0e, 0x00, 0x04, 0x00 }; screen->menu_item_bitmap = XCreateBitmapFromData(XtDisplay(xw), RootWindowOfScreen(XtScreen(xw)), (char *) check_bits, check_width, check_height); } #if !OPT_TOOLBAR saveLocale = setMenuLocale(True, resource.menuLocale); list->w = XtCreatePopupShell(data->internal_name, simpleMenuWidgetClass, toplevel, NULL, 0); #endif if (list->w != 0) { Boolean *unused = unusedEntries(xw, num); Cardinal n; list->entries = 0; for (n = 0; n < nentries; ++n) { if (!unused[n]) { cb[0].callback = (XtCallbackProc) entries[n].function; cb[0].closure = (XtPointer) entries[n].name; entries[n].widget = XtCreateManagedWidget(entries[n].name, (entries[n].function ? smeBSBObjectClass : smeLineObjectClass), list->w, &arg, (Cardinal) 1); list->entries++; } } } #if !OPT_TOOLBAR (void) setMenuLocale(False, saveLocale); #endif /* do not realize at this point */ return list->w; } static MenuIndex indexOfMenu(String menuName) { MenuIndex me; switch (*menuName) { case 'm': me = mainMenu; break; case 'v': me = vtMenu; break; case 'f': me = fontMenu; break; #if OPT_TEK4014 case 't': me = tekMenu; break; #endif default: me = noMenu; } return (me); } /* ARGSUSED */ static Bool domenu(Widget w, XEvent *event GCC_UNUSED, String *params, /* mainMenu, vtMenu, or tekMenu */ Cardinal *param_count) /* 0 or 1 */ { XtermWidget xw = term; TScreen *screen = TScreenOf(xw); MenuIndex me; Bool created = False; Widget mw; if (*param_count != 1) { Bell(xw, XkbBI_MinorError, 0); return False; } if ((me = indexOfMenu(params[0])) == noMenu) { Bell(xw, XkbBI_MinorError, 0); return False; } if ((mw = obtain_menu(w, me)) == 0 || sizeof_menu(w, me) == 0) { mw = create_menu(w, xw, me); created = (mw != 0); } if (mw == 0) return False; TRACE(("domenu(%s) %s\n", params[0], created ? "create" : "update")); switch (me) { case mainMenu: if (created) { update_toolbar(); update_fullscreen(); update_securekbd(); update_allowsends(); update_logging(); update_print_redir(); update_8bit_control(); update_decbkm(); update_num_lock(); update_alt_esc(); update_meta_esc(); update_delete_del(); update_keyboard_type(); #ifdef PRINT_ON_EXIT screen->write_error = !IsEmpty(resource.printOnXError); SetItemSensitivity(mainMenuEntries[mainMenu_write_now].widget, False); SetItemSensitivity(mainMenuEntries[mainMenu_write_error].widget, screen->write_error); #endif } break; case vtMenu: if (created) { update_scrollbar(); update_jumpscroll(); update_reversevideo(); update_autowrap(); update_reversewrap(); update_autolinefeed(); update_appcursor(); update_appkeypad(); update_scrollkey(); update_scrollttyoutput(); update_allow132(); update_cursesemul(); update_keepSelection(); update_selectToClipboard(); update_visualbell(); update_poponbell(); update_bellIsUrgent(); update_cursorblink(); update_altscreen(); update_decsdm(); /* Sixel Display Mode */ update_titeInhibit(); #ifndef NO_ACTIVE_ICON update_activeicon(); #endif /* NO_ACTIVE_ICON */ update_privatecolorregisters(); } break; case fontMenu: if (created) { int n; set_menu_font(True); for (n = fontMenu_font1; n <= fontMenu_font6; ++n) { if (IsEmpty(screen->menu_font_names[n][fNorm])) SetItemSensitivity(fontMenuEntries[n].widget, False); } update_font_escape(); update_menu_allowBoldFonts(); #if OPT_BOX_CHARS update_font_boxchars(); SetItemSensitivity( fontMenuEntries[fontMenu_font_boxchars].widget, True); update_font_packed(); SetItemSensitivity( fontMenuEntries[fontMenu_font_packedfont].widget, True); #endif #if OPT_DEC_SOFTFONT /* FIXME: not implemented */ update_font_loadable(); SetItemSensitivity( fontMenuEntries[fontMenu_font_loadable].widget, False); #endif #if OPT_DEC_CHRSET update_font_doublesize(); if (TScreenOf(xw)->cache_doublesize == 0) SetItemSensitivity( fontMenuEntries[fontMenu_font_doublesize].widget, False); #endif #if OPT_RENDERFONT update_font_renderfont(); #endif #if OPT_WIDE_CHARS update_font_utf8_mode(); update_font_utf8_fonts(); update_font_utf8_title(); #endif #if OPT_ALLOW_XXX_OPS update_menu_allowColorOps(); update_menu_allowFontOps(); update_menu_allowTcapOps(); update_menu_allowTitleOps(); update_menu_allowWindowOps(); enable_allow_xxx_ops(!(screen->allowSendEvents)); #endif } #if OPT_TOOLBAR /* menus for toolbar are initialized once only */ SetItemSensitivity(fontMenuEntries[fontMenu_fontsel].widget, True); #else FindFontSelection(xw, NULL, True); SetItemSensitivity(fontMenuEntries[fontMenu_fontsel].widget, (screen->SelectFontName() ? True : False)); #endif break; #if OPT_TEK4014 case tekMenu: if (created && tekWidget) { set_tekfont_menu_item(TekScreenOf(tekWidget)->cur.fontsize, True); update_vtshow(); } break; #endif case noMenu: default: break; } return True; } /* * public interfaces */ void HandleCreateMenu(Widget w, XEvent *event, String *params, /* mainMenu, vtMenu, or tekMenu */ Cardinal *param_count) /* 0 or 1 */ { TRACE(("HandleCreateMenu\n")); (void) domenu(w, event, params, param_count); } void HandlePopupMenu(Widget w, XEvent *event, String *params, /* mainMenu, vtMenu, or tekMenu */ Cardinal *param_count) /* 0 or 1 */ { TRACE(("HandlePopupMenu\n")); if (domenu(w, event, params, param_count)) { XtermWidget xw = term; TScreen *screen = TScreenOf(xw); #if OPT_TOOLBAR w = select_menu(w, mainMenu)->w; #endif /* * The action procedure in SimpleMenu.c, PositionMenu does not expect a * key translation event when we are popping up a menu. In particular, * if the pointer is outside the menu, then the action procedure will * fail in its attempt to determine the location of the pointer within * the menu. Anticipate that by warping the pointer into the menu when * a key event is detected. */ switch (event->type) { case KeyPress: case KeyRelease: XWarpPointer(screen->display, None, XtWindow(w), 0, 0, 0, 0, 0, 0); break; default: XtCallActionProc(w, "XawPositionSimpleMenu", event, params, 1); break; } XtCallActionProc(w, "MenuPopup", event, params, 1); } } /* * private interfaces - keep out! */ /* ARGSUSED */ static void handle_send_signal(Widget gw GCC_UNUSED, int sig) { #ifndef VMS TScreen *screen = TScreenOf(term); if (hold_screen > 1) hold_screen = 0; if (screen->pid > 1) kill_process_group(screen->pid, sig); #endif } static void UpdateMenuItem( #if OPT_TRACE const char *func, #endif MenuEntry * menu, int which, Bool val) { static Arg menuArgs = {XtNleftBitmap, (XtArgVal) 0}; Widget mi = menu[which].widget; if (mi) { menuArgs.value = (XtArgVal) ((val) ? TScreenOf(term)->menu_item_bitmap : None); XtSetValues(mi, &menuArgs, (Cardinal) 1); } TRACE(("%s(%d): %s\n", func, which, MtoS(val))); } void SetItemSensitivity(Widget mi, Bool val) { static Arg menuArgs = {XtNsensitive, (XtArgVal) 0}; if (mi) { menuArgs.value = (XtArgVal) (val); XtSetValues(mi, &menuArgs, (Cardinal) 1); } } /* * action routines */ static void do_securekbd(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = term; TScreen *screen = TScreenOf(xw); Time now = CurrentTime; /* XXX - wrong */ if (screen->grabbedKbd) { XUngrabKeyboard(screen->display, now); ReverseVideo(xw); screen->grabbedKbd = False; } else { if (XGrabKeyboard(screen->display, XtWindow(CURRENT_EMU()), True, GrabModeAsync, GrabModeAsync, now) != GrabSuccess) { Bell(xw, XkbBI_MinorError, 100); } else { ReverseVideo(xw); screen->grabbedKbd = True; } } update_securekbd(); } /* ARGSUSED */ void HandleSecure(Widget w GCC_UNUSED, XEvent *event GCC_UNUSED, /* unused */ String *params GCC_UNUSED, /* [0] = volume */ Cardinal *param_count GCC_UNUSED) /* 0 or 1 */ { #if 0 Time ev_time = CurrentTime; if ((event->xany.type == KeyPress) || (event->xany.type == KeyRelease)) ev_time = event->xkey.time; else if ((event->xany.type == ButtonPress) || (event->xany.type == ButtonRelease)) ev_time = event->xbutton.time; #endif do_securekbd(vt_shell[mainMenu].w, (XtPointer) 0, (XtPointer) 0); } static void do_allowsends(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->allowSendEvents); update_allowsends(); #if OPT_ALLOW_XXX_OPS enable_allow_xxx_ops(!(screen->allowSendEvents)); #endif } static void do_visualbell(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->visualbell); update_visualbell(); } static void do_bellIsUrgent(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->bellIsUrgent); update_bellIsUrgent(); } static void do_poponbell(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->poponbell); update_poponbell(); } #ifdef ALLOWLOGGING static void do_logging(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = term; TScreen *screen = TScreenOf(xw); if (screen->logging) { CloseLog(xw); } else { StartLog(xw); } /* update_logging done by CloseLog and StartLog */ } #endif #ifdef OPT_PRINT_ON_EXIT static void do_write_now(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = term; xtermPrintImmediately(xw, (IsEmpty(resource.printFileNow) ? (String) "XTerm" : resource.printFileNow), resource.printOptsNow, resource.printModeNow); } static void do_write_error(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = term; if (IsEmpty(resource.printFileOnXError)) { resource.printFileOnXError = "XTermError"; } TScreenOf(xw)->write_error = (Boolean) (!TScreenOf(xw)->write_error); update_write_error(); } #endif static void do_print(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { xtermPrintScreen(term, True, getPrinterFlags(term, NULL, 0)); } static void do_print_redir(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { setPrinterControlMode(term, (PrinterOf(TScreenOf(term)).printer_controlmode ? 0 : 2)); } static void do_redraw(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { Redraw(); } void show_8bit_control(Bool value) { if (TScreenOf(term)->control_eight_bits != value) { TScreenOf(term)->control_eight_bits = (Boolean) value; update_8bit_control(); } } static void do_8bit_control(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { show_8bit_control(!TScreenOf(term)->control_eight_bits); } static void do_backarrow(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { term->keyboard.flags ^= MODE_DECBKM; update_decbkm(); } #if OPT_NUM_LOCK static void do_num_lock(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { ToggleFlag(term->misc.real_NumLock); update_num_lock(); } static void do_alt_esc(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { ToggleFlag(TScreenOf(term)->alt_sends_esc); update_alt_esc(); } static void do_meta_esc(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { ToggleFlag(TScreenOf(term)->meta_sends_esc); update_meta_esc(); } #endif static void do_delete_del(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { if (xtermDeleteIsDEL(term)) TScreenOf(term)->delete_is_del = False; else TScreenOf(term)->delete_is_del = True; update_delete_del(); } static void do_old_fkeys(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { toggle_keyboard_type(term, keyboardIsLegacy); } #if OPT_HP_FUNC_KEYS static void do_hp_fkeys(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { toggle_keyboard_type(term, keyboardIsHP); } #endif #if OPT_SCO_FUNC_KEYS static void do_sco_fkeys(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { toggle_keyboard_type(term, keyboardIsSCO); } #endif #if OPT_SUN_FUNC_KEYS static void do_sun_fkeys(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { toggle_keyboard_type(term, keyboardIsSun); } #endif #if OPT_SUNPC_KBD /* * This really means "Sun/PC keyboard emulating VT220". */ static void do_sun_kbd(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { toggle_keyboard_type(term, keyboardIsVT220); } #endif #if OPT_TCAP_FKEYS static void do_tcap_fkeys(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { toggle_keyboard_type(term, keyboardIsTermcap); } #endif /* * The following cases use the pid instead of the process group so that we * don't get hosed by programs that change their process group */ /* ARGSUSED */ static void do_suspend(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { #if defined(SIGTSTP) handle_send_signal(gw, SIGTSTP); #endif } /* ARGSUSED */ static void do_continue(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { #if defined(SIGCONT) handle_send_signal(gw, SIGCONT); #endif } /* ARGSUSED */ static void do_interrupt(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { handle_send_signal(gw, SIGINT); } /* ARGSUSED */ void do_hangup(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { handle_send_signal(gw, SIGHUP); } /* ARGSUSED */ static void do_terminate(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { handle_send_signal(gw, SIGTERM); } /* ARGSUSED */ static void do_kill(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { handle_send_signal(gw, SIGKILL); } static void do_quit(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { Cleanup(SIGHUP); } /* * vt menu callbacks */ static void do_scrollbar(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { ToggleScrollBar(term); } static void do_jumpscroll(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); term->flags ^= SMOOTHSCROLL; if (term->flags & SMOOTHSCROLL) { screen->jumpscroll = False; if (screen->scroll_amt) FlushScroll(term); } else { screen->jumpscroll = True; } update_jumpscroll(); } static void do_reversevideo(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { ReverseVideo(term); } static void do_autowrap(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { term->flags ^= WRAPAROUND; update_autowrap(); } static void do_reversewrap(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { term->flags ^= REVERSEWRAP; update_reversewrap(); } static void do_autolinefeed(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { term->flags ^= LINEFEED; update_autolinefeed(); } static void do_appcursor(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { term->keyboard.flags ^= MODE_DECCKM; update_appcursor(); } static void do_appkeypad(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { term->keyboard.flags ^= MODE_DECKPAM; update_appkeypad(); } static void do_scrollkey(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->scrollkey); update_scrollkey(); } static void do_scrollttyoutput(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->scrollttyoutput); update_scrollttyoutput(); } static void do_keepClipboard(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->keepClipboard); update_keepClipboard(); } static void do_keepSelection(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->keepSelection); update_keepSelection(); } static void do_selectClipboard(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->selectToClipboard); update_selectToClipboard(); } static void do_allow132(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->c132); update_allow132(); } static void do_cursesemul(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->curses); update_cursesemul(); } static void do_marginbell(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); if ((ToggleFlag(screen->marginbell)) == 0) screen->bellArmed = -1; update_marginbell(); } #if OPT_TEK4014 static void handle_tekshow(Widget gw GCC_UNUSED, Bool allowswitch) { XtermWidget xw = term; TScreen *screen = TScreenOf(xw); TRACE(("Show tek-window\n")); if (!TEK4014_SHOWN(xw)) { /* not showing, turn on */ set_tek_visibility(True); } else if (screen->Vshow || allowswitch) { /* is showing, turn off */ set_tek_visibility(False); end_tek_mode(); /* WARNING: this does a longjmp */ } else Bell(xw, XkbBI_MinorError, 0); } /* ARGSUSED */ static void do_tekshow(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { handle_tekshow(gw, True); } /* ARGSUSED */ static void do_tekonoff(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { handle_tekshow(gw, False); } #endif /* OPT_TEK4014 */ #if OPT_BLINK_CURS /* ARGSUSED */ static void do_cursorblink(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleCursorBlink(screen); } #endif /* ARGSUSED */ static void do_altscreen(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { ToggleAlternate(term); } /* ARGSUSED */ static void do_titeInhibit(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { ToggleFlag(term->misc.titeInhibit); update_titeInhibit(); } #ifndef NO_ACTIVE_ICON /* ARGSUSED */ static void do_activeicon(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); if (screen->iconVwin.window) { Widget shell = XtParent(term); ToggleFlag(term->work.active_icon); XtVaSetValues(shell, XtNiconWindow, term->work.active_icon ? screen->iconVwin.window : None, (XtPointer) 0); update_activeicon(); } } #endif /* NO_ACTIVE_ICON */ static void do_softreset(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { VTReset(term, False, False); } static void do_hardreset(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { VTReset(term, True, False); } static void do_clearsavedlines(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { VTReset(term, True, True); } #if OPT_TEK4014 static void do_tekmode(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { switch_modes(TEK4014_ACTIVE(term)); /* switch to tek mode */ } /* ARGSUSED */ static void do_vthide(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { hide_vt_window(); } #endif /* OPT_TEK4014 */ /* * vtfont menu */ static void do_vtfont(Widget gw GCC_UNUSED, XtPointer closure, XtPointer data GCC_UNUSED) { XtermWidget xw = term; char *entryname = (char *) closure; int i; TRACE(("do_vtfont(%s)\n", entryname)); for (i = 0; i < NMENUFONTS; i++) { if (strcmp(entryname, fontMenuEntries[i].name) == 0) { SetVTFont(xw, i, True, NULL); return; } } Bell(xw, XkbBI_MinorError, 0); } #if OPT_DEC_CHRSET static void do_font_doublesize(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = term; if (TScreenOf(xw)->cache_doublesize != 0) ToggleFlag(TScreenOf(xw)->font_doublesize); update_font_doublesize(); Redraw(); } #endif #if OPT_BOX_CHARS static void do_font_boxchars(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { ToggleFlag(TScreenOf(term)->force_box_chars); update_font_boxchars(); Redraw(); } static void do_font_packed(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { ToggleFlag(TScreenOf(term)->force_packed); update_font_packed(); SetVTFont(term, TScreenOf(term)->menu_font_number, True, NULL); } #endif #if OPT_DEC_SOFTFONT static void do_font_loadable(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { ToggleFlag(term->misc.font_loadable); update_font_loadable(); } #endif #if OPT_RENDERFONT static void do_font_renderfont(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = (XtermWidget) term; TScreen *screen = TScreenOf(xw); int fontnum = screen->menu_font_number; String name = TScreenOf(xw)->MenuFontName(fontnum); DefaultRenderFont(xw); ToggleFlag(xw->work.render_font); update_font_renderfont(); xtermLoadFont(xw, xtermFontName(name), True, fontnum); ScrnRefresh(term, 0, 0, MaxRows(screen), MaxCols(screen), True); } #endif #if OPT_WIDE_CHARS static void setup_wide_fonts(XtermWidget xw) { TScreen *screen = TScreenOf(xw); if (screen->wide_chars) { if (xtermLoadWideFonts(xw, True)) { SetVTFont(xw, screen->menu_font_number, True, NULL); } } else { ChangeToWide(xw); } } static void setup_narrow_fonts(XtermWidget xw) { TScreen *screen = TScreenOf(xw); if (xtermLoadDefaultFonts(xw)) { SetVTFont(xw, screen->menu_font_number, True, NULL); } } static void do_font_utf8_mode(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = term; TScreen *screen = TScreenOf(xw); /* * If xterm was started with -wc option, it might not have the wide fonts. * If xterm was not started with -wc, it might not have wide cells. */ if (!screen->utf8_mode) { setup_wide_fonts(xw); } switchPtyData(screen, !screen->utf8_mode); /* * We don't repaint the screen when switching UTF-8 on/off. When switching * on - the Latin-1 codes should paint as-is. When switching off, that's * hard to do properly. */ } static void do_font_utf8_fonts(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = term; TScreen *screen = TScreenOf(xw); ToggleFlag(screen->utf8_fonts); update_font_utf8_fonts(); if (screen->utf8_fonts) { setup_wide_fonts(xw); } else { setup_narrow_fonts(xw); } } static void do_font_utf8_title(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->utf8_title); update_font_utf8_title(); } #endif /* * tek menu */ #if OPT_TEK4014 static void do_tektextlarge(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TekSetFontSize(getTekWidget(gw), True, tekMenu_tektextlarge); } static void do_tektext2(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TekSetFontSize(getTekWidget(gw), True, tekMenu_tektext2); } static void do_tektext3(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TekSetFontSize(getTekWidget(gw), True, tekMenu_tektext3); } static void do_tektextsmall(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TekSetFontSize(getTekWidget(gw), True, tekMenu_tektextsmall); } static void do_tekpage(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TekSimulatePageButton(getTekWidget(gw), False); } static void do_tekreset(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TekSimulatePageButton(getTekWidget(gw), True); } static void do_tekcopy(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TekCopy(getTekWidget(gw)); } static void handle_vtshow(Widget gw GCC_UNUSED, Bool allowswitch) { XtermWidget xw = term; TScreen *screen = TScreenOf(xw); TRACE(("Show vt-window\n")); if (!screen->Vshow) { /* not showing, turn on */ set_vt_visibility(True); } else if (TEK4014_SHOWN(xw) || allowswitch) { /* is showing, turn off */ set_vt_visibility(False); if (!TEK4014_ACTIVE(xw) && tekRefreshList) TekRefresh(tekWidget); end_vt_mode(); /* WARNING: this does a longjmp... */ } else Bell(xw, XkbBI_MinorError, 0); } static void do_vtshow(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { handle_vtshow(gw, True); } static void do_vtonoff(Widget gw, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { handle_vtshow(gw, False); } static void do_vtmode(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { switch_modes(TEK4014_ACTIVE(term)); /* switch to vt, or from */ } /* ARGSUSED */ static void do_tekhide(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { hide_tek_window(); } #endif /* OPT_TEK4014 */ /* * public handler routines */ int decodeToggle(XtermWidget xw, String *params, Cardinal nparams) { int dir = toggleErr; switch (nparams) { case 0: dir = toggleAll; break; case 1: if (XmuCompareISOLatin1(params[0], "on") == 0) dir = toggleOn; else if (XmuCompareISOLatin1(params[0], "off") == 0) dir = toggleOff; else if (XmuCompareISOLatin1(params[0], "toggle") == 0) dir = toggleAll; break; } if (dir == toggleErr) { Bell(xw, XkbBI_MinorError, 0); } return dir; } static void handle_toggle(void (*proc) PROTO_XT_CALLBACK_ARGS, int var, String *params, Cardinal nparams, Widget w, XtPointer closure, XtPointer data) { XtermWidget xw = term; switch (decodeToggle(xw, params, nparams)) { case toggleAll: (*proc) (w, closure, data); break; case toggleOff: if (var) (*proc) (w, closure, data); else Bell(xw, XkbBI_MinorError, 0); break; case toggleOn: if (!var) (*proc) (w, closure, data); else Bell(xw, XkbBI_MinorError, 0); break; } return; } #define handle_vt_toggle(proc, var, params, nparams, w) \ handle_toggle(proc, (int) (var), params, nparams, w, (XtPointer)0, (XtPointer)0) #define HANDLE_VT_TOGGLE(name) \ handle_vt_toggle(do_##name, TScreenOf(term)->name, params, *param_count, w) #define handle_tek_toggle(proc, var, params, nparams, w) \ handle_toggle(proc, (int) (var), params, nparams, w, (XtPointer)0, (XtPointer)0) void HandleAllowSends(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_allowsends, TScreenOf(term)->allowSendEvents, params, *param_count, w); } void HandleSetVisualBell(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(visualbell); } void HandleSetPopOnBell(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(poponbell); } #ifdef ALLOWLOGGING void HandleLogging(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(logging); } #endif #if OPT_PRINT_ON_EXIT void HandleWriteNow(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { do_write_now(w, 0, 0); } void HandleWriteError(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(write_error); } #endif /* ARGSUSED */ void HandlePrintScreen(Widget w GCC_UNUSED, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { xtermPrintScreen(term, True, getPrinterFlags(term, params, param_count)); } /* ARGSUSED */ void HandlePrintEverything(Widget w GCC_UNUSED, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { xtermPrintEverything(term, getPrinterFlags(term, params, param_count)); } /* ARGSUSED */ void HandlePrintControlMode(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { do_print_redir(w, (XtPointer) 0, (XtPointer) 0); } /* ARGSUSED */ void HandleRedraw(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { do_redraw(w, (XtPointer) 0, (XtPointer) 0); } /* ARGSUSED */ void HandleSendSignal(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { /* *INDENT-OFF* */ static const struct sigtab { const char *name; int sig; } signals[] = { #ifdef SIGTSTP { "suspend", SIGTSTP }, { "tstp", SIGTSTP }, #endif #ifdef SIGCONT { "cont", SIGCONT }, #endif { "int", SIGINT }, { "hup", SIGHUP }, { "quit", SIGQUIT }, { "alrm", SIGALRM }, { "alarm", SIGALRM }, { "term", SIGTERM }, { "kill", SIGKILL }, { NULL, 0 }, }; /* *INDENT-ON* */ if (*param_count == 1) { const struct sigtab *st; for (st = signals; st->name; st++) { if (XmuCompareISOLatin1(st->name, params[0]) == 0) { handle_send_signal(w, st->sig); return; } } /* one could allow numeric values, but that would be a security hole */ } Bell(term, XkbBI_MinorError, 0); } /* ARGSUSED */ void HandleQuit(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { do_quit(w, (XtPointer) 0, (XtPointer) 0); } void Handle8BitControl(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_8bit_control, TScreenOf(term)->control_eight_bits, params, *param_count, w); } void HandleBackarrow(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_backarrow, term->keyboard.flags & MODE_DECBKM, params, *param_count, w); } #if OPT_MAXIMIZE #if OPT_TEK4014 #define WhichEWMH (TEK4014_ACTIVE(xw) != 0) #else #define WhichEWMH 0 #endif static void do_fullscreen(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = term; if (resource.fullscreen != esNever) FullScreen(xw, !xw->work.ewmh[WhichEWMH].mode); } /* ARGSUSED */ void HandleFullscreen(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { XtermWidget xw = term; if (resource.fullscreen != esNever) { handle_vt_toggle(do_fullscreen, xw->work.ewmh[WhichEWMH].mode, params, *param_count, w); } } void update_fullscreen(void) { XtermWidget xw = term; if (resource.fullscreen <= 1) { UpdateCheckbox("update_fullscreen", mainMenuEntries, mainMenu_fullscreen, xw->work.ewmh[WhichEWMH].mode); } else { SetItemSensitivity(mainMenuEntries[mainMenu_fullscreen].widget, False); } } #endif /* OPT_MAXIMIZE */ #if OPT_SIXEL_GRAPHICS static void do_sixelscrolling(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { term->keyboard.flags ^= MODE_DECSDM; update_decsdm(); } void update_decsdm(void) { UpdateCheckbox("update_decsdm", vtMenuEntries, vtMenu_sixelscrolling, (term->keyboard.flags & MODE_DECSDM) != 0); } void HandleSixelScrolling(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_sixelscrolling, term->keyboard.flags & MODE_DECSDM, params, *param_count, w); } #endif #if OPT_GRAPHICS static void do_privatecolorregisters(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { TScreen *screen = TScreenOf(term); ToggleFlag(screen->privatecolorregisters); update_privatecolorregisters(); } void update_privatecolorregisters(void) { UpdateCheckbox("update_privatecolorregisters", vtMenuEntries, vtMenu_privatecolorregisters, TScreenOf(term)->privatecolorregisters); } void HandleSetPrivateColorRegisters(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(privatecolorregisters); } #endif #if OPT_SUN_FUNC_KEYS void HandleSunFunctionKeys(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_sun_fkeys, term->keyboard.type == keyboardIsSun, params, *param_count, w); } #endif #if OPT_NUM_LOCK void HandleNumLock(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_num_lock, term->misc.real_NumLock, params, *param_count, w); } void HandleAltEsc(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_alt_esc, !TScreenOf(term)->alt_sends_esc, params, *param_count, w); } void HandleMetaEsc(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_meta_esc, TScreenOf(term)->meta_sends_esc, params, *param_count, w); } #endif void HandleDeleteIsDEL(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_delete_del, TScreenOf(term)->delete_is_del, params, *param_count, w); } void HandleOldFunctionKeys(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_old_fkeys, term->keyboard.type == keyboardIsLegacy, params, *param_count, w); } #if OPT_SUNPC_KBD void HandleSunKeyboard(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_sun_kbd, term->keyboard.type == keyboardIsVT220, params, *param_count, w); } #endif #if OPT_HP_FUNC_KEYS void HandleHpFunctionKeys(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_hp_fkeys, term->keyboard.type == keyboardIsHP, params, *param_count, w); } #endif #if OPT_SCO_FUNC_KEYS void HandleScoFunctionKeys(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_sco_fkeys, term->keyboard.type == keyboardIsSCO, params, *param_count, w); } #endif void HandleScrollbar(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { XtermWidget xw = term; if (IsIcon(TScreenOf(xw))) { Bell(xw, XkbBI_MinorError, 0); } else { handle_vt_toggle(do_scrollbar, TScreenOf(xw)->fullVwin.sb_info.width, params, *param_count, w); } } void HandleJumpscroll(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(jumpscroll); } void HandleKeepClipboard(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(keepClipboard); } void HandleKeepSelection(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(keepSelection); } void HandleSetSelect(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_selectClipboard, TScreenOf(term)->selectToClipboard, params, *param_count, w); } void HandleReverseVideo(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_reversevideo, (term->misc.re_verse0), params, *param_count, w); } void HandleAutoWrap(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_autowrap, (term->flags & WRAPAROUND), params, *param_count, w); } void HandleReverseWrap(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_reversewrap, (term->flags & REVERSEWRAP), params, *param_count, w); } void HandleAutoLineFeed(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_autolinefeed, (term->flags & LINEFEED), params, *param_count, w); } void HandleAppCursor(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_appcursor, (term->keyboard.flags & MODE_DECCKM), params, *param_count, w); } void HandleAppKeypad(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_appkeypad, (term->keyboard.flags & MODE_DECKPAM), params, *param_count, w); } void HandleScrollKey(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(scrollkey); } void HandleScrollTtyOutput(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(scrollttyoutput); } void HandleAllow132(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_allow132, TScreenOf(term)->c132, params, *param_count, w); } void HandleCursesEmul(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_cursesemul, TScreenOf(term)->curses, params, *param_count, w); } void HandleBellIsUrgent(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(bellIsUrgent); } void HandleMarginBell(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(marginbell); } #if OPT_BLINK_CURS void HandleCursorBlink(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { /* eventually want to see if sensitive or not */ handle_vt_toggle(do_cursorblink, TScreenOf(term)->cursor_blink, params, *param_count, w); } #endif void HandleAltScreen(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { /* eventually want to see if sensitive or not */ handle_vt_toggle(do_altscreen, TScreenOf(term)->whichBuf, params, *param_count, w); } void HandleTiteInhibit(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { /* eventually want to see if sensitive or not */ handle_vt_toggle(do_titeInhibit, !(term->misc.titeInhibit), params, *param_count, w); } /* ARGSUSED */ void HandleSoftReset(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { do_softreset(w, (XtPointer) 0, (XtPointer) 0); } /* ARGSUSED */ void HandleHardReset(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { do_hardreset(w, (XtPointer) 0, (XtPointer) 0); } /* ARGSUSED */ void HandleClearSavedLines(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { do_clearsavedlines(w, (XtPointer) 0, (XtPointer) 0); } void HandleAllowBoldFonts(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(allowBoldFonts); } #if OPT_LOAD_VTFONTS void update_font_escape(void) { TScreen *screen = TScreenOf(term); SetItemSensitivity(fontMenuEntries[fontMenu_fontescape].widget, ((screen->allowFontOps && screen->EscapeFontName()) ? True : False)); } #endif #if OPT_DEC_CHRSET void HandleFontDoublesize(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(font_doublesize); } #endif #if OPT_BOX_CHARS void HandleFontBoxChars(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_font_boxchars, TScreenOf(term)->force_box_chars, params, *param_count, w); } void HandleFontPacked(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_font_packed, TScreenOf(term)->force_packed, params, *param_count, w); } #endif #if OPT_DEC_SOFTFONT void HandleFontLoading(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_font_loadable, term->misc.font_loadable, params, *param_count, w); } #endif #if OPT_RENDERFONT static void update_fontmenu(XtermWidget xw) { TScreen *screen = TScreenOf(xw); int n; for (n = 0; n <= fontMenu_lastBuiltin; ++n) { Boolean active = (Boolean) (xw->work.render_font || (screen->menu_font_sizes[n] >= 0)); SetItemSensitivity(fontMenuEntries[n].widget, active); } } void HandleRenderFont(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { XtermWidget xw = (XtermWidget) term; DefaultRenderFont(xw); handle_vt_toggle(do_font_renderfont, xw->work.render_font, params, *param_count, w); update_fontmenu(xw); } #endif #if OPT_WIDE_CHARS void HandleUTF8Mode(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_font_utf8_mode, TScreenOf(term)->utf8_mode, params, *param_count, w); } void HandleUTF8Fonts(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_font_utf8_fonts, TScreenOf(term)->utf8_fonts, params, *param_count, w); } void HandleUTF8Title(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { handle_vt_toggle(do_font_utf8_title, TScreenOf(term)->utf8_title, params, *param_count, w); } #endif #if OPT_TEK4014 void HandleSetTerminalType(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { XtermWidget xw = term; if (*param_count == 1) { switch (params[0][0]) { case 'v': case 'V': if (TEK4014_ACTIVE(xw)) do_vtmode(w, (XtPointer) 0, (XtPointer) 0); break; case 't': case 'T': if (!TEK4014_ACTIVE(xw)) do_tekmode(w, (XtPointer) 0, (XtPointer) 0); break; default: Bell(xw, XkbBI_MinorError, 0); } } else { Bell(xw, XkbBI_MinorError, 0); } } void HandleVisibility(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { XtermWidget xw = term; if (*param_count == 2) { switch (params[0][0]) { case 'v': case 'V': handle_tek_toggle(do_vtonoff, (int) TScreenOf(xw)->Vshow, params + 1, (*param_count) - 1, w); break; case 't': case 'T': handle_tek_toggle(do_tekonoff, (int) TEK4014_SHOWN(xw), params + 1, (*param_count) - 1, w); break; default: Bell(xw, XkbBI_MinorError, 0); } } else { Bell(xw, XkbBI_MinorError, 0); } } /* ARGSUSED */ void HandleSetTekText(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { XtermWidget xw = term; void (*proc) PROTO_XT_CALLBACK_ARGS = 0; switch (*param_count) { case 0: proc = do_tektextlarge; break; case 1: switch (TekGetFontSize(params[0])) { case TEK_FONT_LARGE: proc = do_tektextlarge; break; case TEK_FONT_2: proc = do_tektext2; break; case TEK_FONT_3: proc = do_tektext3; break; case TEK_FONT_SMALL: proc = do_tektextsmall; break; } break; } if (proc) (*proc) (w, (XtPointer) 0, (XtPointer) 0); else Bell(xw, XkbBI_MinorError, 0); } /* ARGSUSED */ void HandleTekPage(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { do_tekpage(w, (XtPointer) 0, (XtPointer) 0); } /* ARGSUSED */ void HandleTekReset(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { do_tekreset(w, (XtPointer) 0, (XtPointer) 0); } /* ARGSUSED */ void HandleTekCopy(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { do_tekcopy(w, (XtPointer) 0, (XtPointer) 0); } #endif /* OPT_TEK4014 */ #if OPT_TOOLBAR /* * The normal style of xterm popup menu delays initialization until the menu is * first requested. When using a toolbar, we can use the same initialization, * though on the first popup there will be a little geometry layout jitter, * since the menu is already managed when this callback is invoked. */ static void InitPopup(Widget gw, XtPointer closure, XtPointer data GCC_UNUSED) { String params[2]; Cardinal count = 1; params[0] = (char *) closure; params[1] = 0; TRACE(("InitPopup(%s)\n", params[0])); domenu(gw, (XEvent *) 0, params, &count); XtRemoveCallback(gw, XtNpopupCallback, InitPopup, closure); } static Dimension SetupShell(Widget *menus, MenuList * shell, int n, int m) { char temp[80]; char *external_name = 0; Dimension button_height; Dimension button_border; String saveLocale = setMenuLocale(True, resource.menuLocale); shell[n].w = XtVaCreatePopupShell(menu_names[n].internal_name, simpleMenuWidgetClass, *menus, XtNgeometry, NULL, (XtPointer) 0); XtAddCallback(shell[n].w, XtNpopupCallback, InitPopup, menu_names[n].internal_name); XtVaGetValues(shell[n].w, XtNlabel, &external_name, (XtPointer) 0); TRACE(("...SetupShell(%s) -> %s -> %#lx\n", menu_names[n].internal_name, external_name, (long) shell[n].w)); sprintf(temp, "%sButton", menu_names[n].internal_name); shell[n].b = XtVaCreateManagedWidget(temp, menuButtonWidgetClass, *menus, XtNfromHoriz, ((m >= 0) ? shell[m].b : 0), XtNmenuName, menu_names[n].internal_name, XtNlabel, external_name, (XtPointer) 0); XtVaGetValues(shell[n].b, XtNheight, &button_height, XtNborderWidth, &button_border, (XtPointer) 0); (void) setMenuLocale(False, saveLocale); return (Dimension) (button_height + (button_border * 2)); } #endif /* OPT_TOOLBAR */ void SetupMenus(Widget shell, Widget *forms, Widget *menus, Dimension *menu_high) { #if OPT_TOOLBAR Dimension button_height = 0; Dimension toolbar_hSpace; Arg args[10]; #endif TRACE(("SetupMenus(%s)\n", shell == toplevel ? "vt100" : "tek4014")); *menu_high = 0; if (shell == toplevel) { XawSimpleMenuAddGlobalActions(app_con); XtRegisterGrabAction(HandlePopupMenu, True, (unsigned) (ButtonPressMask | ButtonReleaseMask), GrabModeAsync, GrabModeAsync); } #if OPT_TOOLBAR *forms = XtVaCreateManagedWidget("form", formWidgetClass, shell, (XtPointer) 0); xtermAddInput(*forms); /* * Set a nominal value for the preferred pane size, which lets the * buttons determine the actual height of the menu bar. We don't show * the grip, because it's too easy to make the toolbar look bad that * way. */ XtSetArg(args[0], XtNorientation, XtorientHorizontal); XtSetArg(args[1], XtNtop, XawChainTop); XtSetArg(args[2], XtNbottom, XawChainTop); XtSetArg(args[3], XtNleft, XawChainLeft); XtSetArg(args[4], XtNright, XawChainLeft); if (resource.toolBar) { *menus = XtCreateManagedWidget("menubar", boxWidgetClass, *forms, args, 5); } else { *menus = XtCreateWidget("menubar", boxWidgetClass, *forms, args, 5); } /* * The toolbar widget's height is not necessarily known yet. If the * toolbar is not created as a managed widget, we can still make a good * guess about its height by collecting the widget's other resource values. */ XtVaGetValues(*menus, XtNhSpace, &toolbar_hSpace, (XtPointer) 0); if (shell == toplevel) { /* vt100 */ int j; for (j = mainMenu; j <= fontMenu; j++) { button_height = SetupShell(menus, vt_shell, j, j - 1); } } #if OPT_TEK4014 else { /* tek4014 */ (void) SetupShell(menus, tek_shell, mainMenu, -1); button_height = SetupShell(menus, tek_shell, tekMenu, mainMenu); } #endif /* * Tell the main program how high the toolbar is, to help with the initial * layout. */ *menu_high = (Dimension) (button_height + 2 * (toolbar_hSpace)); TRACE(("...menuHeight:%d = (%d + 2 * %d)\n", *menu_high, button_height, toolbar_hSpace)); #else /* !OPT_TOOLBAR */ *forms = shell; *menus = shell; #endif TRACE(("...shell=%#lx\n", (long) shell)); TRACE(("...forms=%#lx\n", (long) *forms)); TRACE(("...menus=%#lx\n", (long) *menus)); } void repairSizeHints(void) { XtermWidget xw = term; TScreen *screen = TScreenOf(xw); if (XtIsRealized((Widget) xw)) { getXtermSizeHints(xw); xtermSizeHints(xw, ScrollbarWidth(screen)); XSetWMNormalHints(screen->display, VShellWindow(xw), &xw->hints); } } #if OPT_TOOLBAR #define INIT_POPUP(s, n) InitPopup(s[n].w, menu_names[n].internal_name, 0) static Bool InitWidgetMenu(Widget shell) { Bool result = False; TRACE(("InitWidgetMenu(%p)\n", (void *) shell)); if (term != 0) { if (shell == toplevel) { /* vt100 */ if (!term->init_menu) { INIT_POPUP(vt_shell, mainMenu); INIT_POPUP(vt_shell, vtMenu); INIT_POPUP(vt_shell, fontMenu); term->init_menu = True; TRACE(("...InitWidgetMenu(vt)\n")); } result = term->init_menu; } #if OPT_TEK4014 else if (tekWidget) { /* tek4014 */ if (!tekWidget->init_menu) { INIT_POPUP(tek_shell, mainMenu); INIT_POPUP(tek_shell, tekMenu); tekWidget->init_menu = True; TRACE(("...InitWidgetMenu(tek)\n")); } result = tekWidget->init_menu; } #endif } TRACE(("...InitWidgetMenu ->%d\n", result)); return result; } static TbInfo * toolbar_info(Widget w) { TRACE(("...getting toolbar_info\n")); #if OPT_TEK4014 if (w != (Widget) term) return &(tekWidget->tek.tb_info); #else (void) w; #endif return &(WhichVWin(TScreenOf(term))->tb_info); } static void hide_toolbar(Widget w) { if (w != 0) { TbInfo *info = toolbar_info(w); TRACE(("hiding toolbar\n")); XtVaSetValues(w, XtNfromVert, (Widget) 0, (XtPointer) 0); if (info->menu_bar != 0) { repairSizeHints(); XtUnmanageChild(info->menu_bar); if (XtIsRealized(info->menu_bar)) { XtUnmapWidget(info->menu_bar); } } TRACE(("...hiding toolbar (done)\n")); } } static void show_toolbar(Widget w) { if (w != 0) { TbInfo *info = toolbar_info(w); TRACE(("showing toolbar\n")); if (info->menu_bar != 0) { XtVaSetValues(w, XtNfromVert, info->menu_bar, (XtPointer) 0); if (XtIsRealized(info->menu_bar)) repairSizeHints(); XtManageChild(info->menu_bar); if (XtIsRealized(info->menu_bar)) { XtMapWidget(info->menu_bar); } } /* * This is needed to make the terminal widget move down below the * toolbar. */ XawFormDoLayout(XtParent(w), True); TRACE(("...showing toolbar (done)\n")); } } /* * Make the toolbar visible or invisible in the current window(s). */ void ShowToolbar(Bool enable) { XtermWidget xw = term; TRACE(("ShowToolbar(%d)\n", enable)); if (IsIcon(TScreenOf(xw))) { Bell(xw, XkbBI_MinorError, 0); } else { if (enable) { if (InitWidgetMenu(toplevel)) show_toolbar((Widget) xw); #if OPT_TEK4014 if (InitWidgetMenu(tekshellwidget)) show_toolbar((Widget) tekWidget); #endif } else { hide_toolbar((Widget) xw); #if OPT_TEK4014 hide_toolbar((Widget) tekWidget); #endif } resource.toolBar = (Boolean) enable; update_toolbar(); } } void HandleToolbar(Widget w, XEvent *event GCC_UNUSED, String *params GCC_UNUSED, Cardinal *param_count GCC_UNUSED) { XtermWidget xw = term; if (IsIcon(TScreenOf(xw))) { Bell(xw, XkbBI_MinorError, 0); } else { handle_vt_toggle(do_toolbar, resource.toolBar, params, *param_count, w); } } /* ARGSUSED */ static void do_toolbar(Widget gw GCC_UNUSED, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = term; /* * Toggle toolbars for both vt100 and tek windows, since they share the * menu which contains the checkbox indicating whether the toolbar is * active. */ if (IsIcon(TScreenOf(xw))) { Bell(xw, XkbBI_MinorError, 0); } else { ShowToolbar(ToggleFlag(resource.toolBar)); } } void update_toolbar(void) { UpdateCheckbox("update_toolbar", mainMenuEntries, mainMenu_toolbar, resource.toolBar); } #endif /* OPT_TOOLBAR */ void update_securekbd(void) { UpdateCheckbox("update_securekbd", mainMenuEntries, mainMenu_securekbd, TScreenOf(term)->grabbedKbd); } void update_allowsends(void) { UpdateCheckbox("update_allowsends", mainMenuEntries, mainMenu_allowsends, TScreenOf(term)->allowSendEvents); } #ifdef ALLOWLOGGING void update_logging(void) { UpdateCheckbox("update_logging", mainMenuEntries, mainMenu_logging, TScreenOf(term)->logging); } #endif #if OPT_PRINT_ON_EXIT void update_write_error(void) { UpdateCheckbox("update_write_error", mainMenuEntries, mainMenu_write_error, TScreenOf(term)->write_error); } #endif void update_print_redir(void) { UpdateCheckbox("update_print_redir", mainMenuEntries, mainMenu_print_redir, PrinterOf(TScreenOf(term)).printer_controlmode); } void update_8bit_control(void) { UpdateCheckbox("update_8bit_control", mainMenuEntries, mainMenu_8bit_ctrl, TScreenOf(term)->control_eight_bits); } void update_decbkm(void) { UpdateCheckbox("update_decbkm", mainMenuEntries, mainMenu_backarrow, (term->keyboard.flags & MODE_DECBKM) != 0); } #if OPT_NUM_LOCK void update_num_lock(void) { UpdateCheckbox("update_num_lock", mainMenuEntries, mainMenu_num_lock, term->misc.real_NumLock); } void update_alt_esc(void) { UpdateCheckbox("update_alt_esc", mainMenuEntries, mainMenu_alt_esc, TScreenOf(term)->alt_sends_esc); } void update_meta_esc(void) { UpdateCheckbox("update_meta_esc", mainMenuEntries, mainMenu_meta_esc, TScreenOf(term)->meta_sends_esc); } #endif #if OPT_SUN_FUNC_KEYS void update_sun_fkeys(void) { UpdateCheckbox("update_sun_fkeys", mainMenuEntries, mainMenu_sun_fkeys, term->keyboard.type == keyboardIsSun); } #endif #if OPT_TCAP_FKEYS void update_tcap_fkeys(void) { UpdateCheckbox("update_tcap_fkeys", mainMenuEntries, mainMenu_tcap_fkeys, term->keyboard.type == keyboardIsTermcap); } #endif void update_old_fkeys(void) { UpdateCheckbox("update_old_fkeys", mainMenuEntries, mainMenu_old_fkeys, term->keyboard.type == keyboardIsLegacy); } void update_delete_del(void) { UpdateCheckbox("update_delete_del", mainMenuEntries, mainMenu_delete_del, xtermDeleteIsDEL(term)); } #if OPT_SUNPC_KBD void update_sun_kbd(void) { UpdateCheckbox("update_sun_kbd", mainMenuEntries, mainMenu_sun_kbd, term->keyboard.type == keyboardIsVT220); } #endif #if OPT_HP_FUNC_KEYS void update_hp_fkeys(void) { UpdateCheckbox("update_hp_fkeys", mainMenuEntries, mainMenu_hp_fkeys, term->keyboard.type == keyboardIsHP); } #endif #if OPT_SCO_FUNC_KEYS void update_sco_fkeys(void) { UpdateCheckbox("update_sco_fkeys", mainMenuEntries, mainMenu_sco_fkeys, term->keyboard.type == keyboardIsSCO); } #endif void update_scrollbar(void) { UpdateCheckbox("update_scrollbar", vtMenuEntries, vtMenu_scrollbar, ScrollbarWidth(TScreenOf(term))); } void update_jumpscroll(void) { UpdateCheckbox("update_jumpscroll", vtMenuEntries, vtMenu_jumpscroll, TScreenOf(term)->jumpscroll); } void update_reversevideo(void) { UpdateCheckbox("update_reversevideo", vtMenuEntries, vtMenu_reversevideo, (term->misc.re_verse)); } void update_autowrap(void) { UpdateCheckbox("update_autowrap", vtMenuEntries, vtMenu_autowrap, (term->flags & WRAPAROUND) != 0); } void update_reversewrap(void) { UpdateCheckbox("update_reversewrap", vtMenuEntries, vtMenu_reversewrap, (term->flags & REVERSEWRAP) != 0); } void update_autolinefeed(void) { UpdateCheckbox("update_autolinefeed", vtMenuEntries, vtMenu_autolinefeed, (term->flags & LINEFEED) != 0); } void update_appcursor(void) { UpdateCheckbox("update_appcursor", vtMenuEntries, vtMenu_appcursor, (term->keyboard.flags & MODE_DECCKM) != 0); } void update_appkeypad(void) { UpdateCheckbox("update_appkeypad", vtMenuEntries, vtMenu_appkeypad, (term->keyboard.flags & MODE_DECKPAM) != 0); } void update_scrollkey(void) { UpdateCheckbox("update_scrollkey", vtMenuEntries, vtMenu_scrollkey, TScreenOf(term)->scrollkey); } void update_scrollttyoutput(void) { UpdateCheckbox("update_scrollttyoutput", vtMenuEntries, vtMenu_scrollttyoutput, TScreenOf(term)->scrollttyoutput); } void update_keepSelection(void) { UpdateCheckbox("update_keepSelection", vtMenuEntries, vtMenu_keepSelection, TScreenOf(term)->keepSelection); } void update_selectToClipboard(void) { UpdateCheckbox("update_selectToClipboard", vtMenuEntries, vtMenu_selectToClipboard, TScreenOf(term)->selectToClipboard); } void update_allow132(void) { UpdateCheckbox("update_allow132", vtMenuEntries, vtMenu_allow132, TScreenOf(term)->c132); } void update_cursesemul(void) { #if 0 /* 2006-2-12: no longer menu entry */ UpdateMenuItem("update_cursesemul", vtMenuEntries, vtMenu_cursesemul, TScreenOf(term)->curses); #endif } void update_visualbell(void) { UpdateCheckbox("update_visualbell", vtMenuEntries, vtMenu_visualbell, TScreenOf(term)->visualbell); } void update_bellIsUrgent(void) { UpdateCheckbox("update_bellIsUrgent", vtMenuEntries, vtMenu_bellIsUrgent, TScreenOf(term)->bellIsUrgent); } void update_poponbell(void) { UpdateCheckbox("update_poponbell", vtMenuEntries, vtMenu_poponbell, TScreenOf(term)->poponbell); } #ifndef update_marginbell /* 2007-3-7: no longer menu entry */ void update_marginbell(void) { UpdateCheckbox("update_marginbell", vtMenuEntries, vtMenu_marginbell, TScreenOf(term)->marginbell); } #endif #if OPT_BLINK_CURS void update_cursorblink(void) { UpdateCheckbox("update_cursorblink", vtMenuEntries, vtMenu_cursorblink, TScreenOf(term)->cursor_blink); } #endif void update_altscreen(void) { UpdateCheckbox("update_altscreen", vtMenuEntries, vtMenu_altscreen, TScreenOf(term)->whichBuf); } void update_titeInhibit(void) { UpdateCheckbox("update_titeInhibit", vtMenuEntries, vtMenu_titeInhibit, !(term->misc.titeInhibit)); } #ifndef NO_ACTIVE_ICON void update_activeicon(void) { UpdateCheckbox("update_activeicon", vtMenuEntries, vtMenu_activeicon, term->work.active_icon); } #endif /* NO_ACTIVE_ICON */ static void do_allowBoldFonts(Widget w, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = getXtermWidget(w); if (xw != 0) { ToggleFlag(TScreenOf(xw)->allowBoldFonts); update_menu_allowBoldFonts(); Redraw(); } } #if OPT_DEC_CHRSET void update_font_doublesize(void) { UpdateCheckbox("update_font_doublesize", fontMenuEntries, fontMenu_font_doublesize, TScreenOf(term)->font_doublesize); } #endif #if OPT_BOX_CHARS void update_font_boxchars(void) { UpdateCheckbox("update_font_boxchars", fontMenuEntries, fontMenu_font_boxchars, TScreenOf(term)->force_box_chars); } void update_font_packed(void) { UpdateCheckbox("update_font_packed", fontMenuEntries, fontMenu_font_packedfont, TScreenOf(term)->force_packed); } #endif #if OPT_DEC_SOFTFONT void update_font_loadable(void) { UpdateCheckbox("update_font_loadable", fontMenuEntries, fontMenu_font_loadable, term->misc.font_loadable); } #endif #if OPT_RENDERFONT void update_font_renderfont(void) { UpdateCheckbox("update_font_renderfont", fontMenuEntries, fontMenu_render_font, (term->work.render_font == True)); SetItemSensitivity(fontMenuEntries[fontMenu_render_font].widget, !IsEmpty(term->misc.face_name)); update_fontmenu(term); } #endif #if OPT_WIDE_CHARS void update_font_utf8_mode(void) { Bool active = (TScreenOf(term)->utf8_mode != uAlways); Bool enable = (TScreenOf(term)->utf8_mode != uFalse); TRACE(("update_font_utf8_mode active %d, enable %d\n", active, enable)); SetItemSensitivity(fontMenuEntries[fontMenu_utf8_mode].widget, active); UpdateCheckbox("update_font_utf8_mode", fontMenuEntries, fontMenu_utf8_mode, enable); } void update_font_utf8_fonts(void) { Bool active = (TScreenOf(term)->utf8_fonts != uAlways); Bool enable = (TScreenOf(term)->utf8_fonts != uFalse); TRACE(("update_font_utf8_fonts active %d, enable %d\n", active, enable)); SetItemSensitivity(fontMenuEntries[fontMenu_utf8_fonts].widget, active); UpdateCheckbox("update_font_utf8_fonts", fontMenuEntries, fontMenu_utf8_fonts, enable); } void update_font_utf8_title(void) { Bool active = (TScreenOf(term)->utf8_mode != uFalse); Bool enable = (TScreenOf(term)->utf8_title); TRACE(("update_font_utf8_title active %d, enable %d\n", active, enable)); SetItemSensitivity(fontMenuEntries[fontMenu_utf8_title].widget, active); UpdateCheckbox("update_font_utf8_title", fontMenuEntries, fontMenu_utf8_title, enable); } #endif #if OPT_DEC_CHRSET || OPT_BOX_CHARS || OPT_DEC_SOFTFONT void update_menu_allowBoldFonts(void) { UpdateCheckbox("update_menu_allowBoldFonts", fontMenuEntries, fontMenu_allowBoldFonts, TScreenOf(term)->allowBoldFonts); } #endif #if OPT_ALLOW_XXX_OPS static void enable_allow_xxx_ops(Bool enable) { SetItemSensitivity(fontMenuEntries[fontMenu_allowFontOps].widget, enable); SetItemSensitivity(fontMenuEntries[fontMenu_allowTcapOps].widget, enable); SetItemSensitivity(fontMenuEntries[fontMenu_allowTitleOps].widget, enable); SetItemSensitivity(fontMenuEntries[fontMenu_allowWindowOps].widget, enable); } static void do_allowColorOps(Widget w, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = getXtermWidget(w); if (xw != 0) { ToggleFlag(TScreenOf(xw)->allowColorOps); update_menu_allowColorOps(); } } static void do_allowFontOps(Widget w, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = getXtermWidget(w); if (xw != 0) { ToggleFlag(TScreenOf(xw)->allowFontOps); update_menu_allowFontOps(); } } static void do_allowTcapOps(Widget w, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = getXtermWidget(w); if (xw != 0) { ToggleFlag(TScreenOf(xw)->allowTcapOps); update_menu_allowTcapOps(); } } static void do_allowTitleOps(Widget w, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = getXtermWidget(w); if (xw != 0) { ToggleFlag(TScreenOf(xw)->allowTitleOps); update_menu_allowTitleOps(); } } static void do_allowWindowOps(Widget w, XtPointer closure GCC_UNUSED, XtPointer data GCC_UNUSED) { XtermWidget xw = getXtermWidget(w); if (xw != 0) { ToggleFlag(TScreenOf(xw)->allowWindowOps); update_menu_allowWindowOps(); } } void HandleAllowColorOps(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(allowColorOps); } void HandleAllowFontOps(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(allowFontOps); } void HandleAllowTcapOps(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(allowTcapOps); } void HandleAllowTitleOps(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(allowTitleOps); } void HandleAllowWindowOps(Widget w, XEvent *event GCC_UNUSED, String *params, Cardinal *param_count) { HANDLE_VT_TOGGLE(allowWindowOps); } void update_menu_allowColorOps(void) { UpdateCheckbox("update_menu_allowColorOps", fontMenuEntries, fontMenu_allowColorOps, TScreenOf(term)->allowColorOps); } void update_menu_allowFontOps(void) { UpdateCheckbox("update_menu_allowFontOps", fontMenuEntries, fontMenu_allowFontOps, TScreenOf(term)->allowFontOps); } void update_menu_allowTcapOps(void) { UpdateCheckbox("update_menu_allowTcapOps", fontMenuEntries, fontMenu_allowTcapOps, TScreenOf(term)->allowTcapOps); } void update_menu_allowTitleOps(void) { UpdateCheckbox("update_menu_allowTitleOps", fontMenuEntries, fontMenu_allowTitleOps, TScreenOf(term)->allowTitleOps); } void update_menu_allowWindowOps(void) { UpdateCheckbox("update_menu_allowWindowOps", fontMenuEntries, fontMenu_allowWindowOps, TScreenOf(term)->allowWindowOps); } #endif #if OPT_TEK4014 void update_tekshow(void) { if (!(TScreenOf(term)->inhibit & I_TEK)) { UpdateCheckbox("update_tekshow", vtMenuEntries, vtMenu_tekshow, TEK4014_SHOWN(term)); } } void update_vttekmode(void) { XtermWidget xw = term; if (!(TScreenOf(xw)->inhibit & I_TEK)) { UpdateCheckbox("update_vtmode", vtMenuEntries, vtMenu_tekmode, TEK4014_ACTIVE(xw)); UpdateCheckbox("update_tekmode", tekMenuEntries, tekMenu_vtmode, !TEK4014_ACTIVE(xw)); update_fullscreen(); } } void update_vtshow(void) { if (!(TScreenOf(term)->inhibit & I_TEK)) { UpdateCheckbox("update_vtshow", tekMenuEntries, tekMenu_vtshow, TScreenOf(term)->Vshow); } } void set_vthide_sensitivity(void) { if (!(TScreenOf(term)->inhibit & I_TEK)) { SetItemSensitivity( vtMenuEntries[vtMenu_vthide].widget, TEK4014_SHOWN(term)); } } void set_tekhide_sensitivity(void) { if (!(TScreenOf(term)->inhibit & I_TEK)) { SetItemSensitivity( tekMenuEntries[tekMenu_tekhide].widget, TScreenOf(term)->Vshow); } } void set_tekfont_menu_item(int n, int val) { if (!(TScreenOf(term)->inhibit & I_TEK)) { UpdateCheckbox("set_tekfont_menu_item", tekMenuEntries, FS2MI(n), (val)); } } #endif /* OPT_TEK4014 */ void set_menu_font(int val) { UpdateCheckbox("set_menu_font", fontMenuEntries, TScreenOf(term)->menu_font_number, (val)); }