Inhaltsverzeichnis
  1 /*               dragon-Stromverschlüsselung                               sc/06.04.2022 */
  2 
  3 
  4 
  5 #if !defined(BSH_H)
  6 #                include <stdio.h>
  7 #                include <string.h>
  8 #                include <stdint.h>
  9 #                include <stdlib.h>
 10 #                include <unistd.h>
 11 #                include <fcntl.h>
 12 # define noret  _Noreturn
 13 # define byte  char
 14 #endif
 15 #if !defined(O_BINARY)
 16 # define O_BINARY  0
 17 #endif
 18 
 19 
 20 
 21 static void noret dragE(const char *es, int e)
 22 {
 23    fprintf(stderr, "dragon: %s\n", es);
 24 #  if defined(BSH_H)
 25    Exit=2;
 26    bsh_Err(LS16|E_NOTHG, 0);
 27    ErrXI(1);
 28 #  else
 29    exit(e);
 30 #  endif
 31 }
 32 
 33 #if !defined(DRAGON_TEST)
 34 # define DRAGON_TEST  0
 35 #endif
 36 
 37 # define UPDATE_F()  \
 38       b^=a, d^=c, f^=e, c+=b, e+=d, a+=f; \
 39       d^= S1[a>>24&255] ^ S1[a>>16&255] ^ S1[a>>8&255] ^ S2[a&255]; \
 40       f^= S1[c>>24&255] ^ S1[c>>16&255] ^ S2[c>>8&255] ^ S1[c&255]; \
 41       b^= S1[e>>24&255] ^ S2[e>>16&255] ^ S1[e>>8&255] ^ S1[e&255]; \
 42       a^= S2[b>>24&255] ^ S2[b>>16&255] ^ S2[b>>8&255] ^ S1[b&255]; \
 43       c^= S2[d>>24&255] ^ S2[d>>16&255] ^ S1[d>>8&255] ^ S2[d&255]; \
 44       e^= S2[f>>24&255] ^ S1[f>>16&255] ^ S2[f>>8&255] ^ S2[f&255]; \
 45       d+=a, f+=c, b+=e; c^=b, e^=d, a^=f;
 46 
 47 static uint32_t const S1[], S2[];
 48 
 49 
 50 static int dragon(int C, char *A[])
 51 {
 52    static char args[]= "dragon  key init  in out\n"
 53                        "(key,init: 64 hex-digits (256 Bit), in-file, out-file)";
 54    static _Bool pass;
 55    uint64_t W[8][2], M, K[4], I[4], q, sum=0;
 56    uint32_t B[32], a, b, c, d, e, f;
 57    unsigned i, p;
 58    int fd[2];
 59 #  if !defined(BSH_H)
 60    static char Chex[256];
 61    static char Chex0[]= "0123456789ABCDEFabcdef";
 62    for (i=0;  i<sizeof(Chex0)-1;  ++i)  { int c= Chex0[i];
 63       Chex[c]= (c>='a'?c-'a'+10:(c>='A'?c-'A'+10:c-'0'))+1;
 64    }
 65 #  endif
 66    if (C==2)  {
 67      pass= A[1][0]=='X'&&A[1][1]=='x'&&A[1][2]=='x'&&A[1][3]=='X'&&
 68            A[1][4]=='x'&&A[1][5]=='x'&&A[1][6]=='x'&&A[1][7]==0 ? 1 : 0;
 69      return 0;
 70    }
 71    if (!pass&&DRAGON_TEST==0)  return 0;
 72    if (C!=5)  dragE(args, 1);
 73    for (i=0;  i<4;  ++i)  K[i]=I[i]= 0;
 74    for (p=1;  p<3;  ++p)  { char *ap, h, m; uint64_t *P; unsigned nb;
 75       ap= A[p]; P= p==1 ?  K : I;
 76       for (h=1,i=0;  i<256+1&&ap[i];  ++i)  if (!Chex[ap[i]])  h=0;
 77       switch (i)  {
 78         default :  dragE(args, 2); break;
 79         case 256:  for (i=0;  i<256;  ++i)  P[i/64]<<=1, P[i/64]|= ap[i]&1;
 80                    break;
 81         case  64:  if (!h)  dragE(args, 2);
 82                    for (nb=i=0;  i<64;  nb+=i&1,++i)  {
 83                       h= Chex[ap[i]]-1;
 84                       if (!(i&1))  m =h, m<<=4;
 85                       else         m|=h, P[nb/8]|= (uint64_t)m<<8*((31-nb)%8);
 86                    }
 87                    break;
 88         case  32:  for (i=0;  i<32;  ++i)  P[i/8]|= (uint64_t)ap[i]<<8*(i%8);
 89                    break;
 90       }
 91    }
 92    if (DRAGON_TEST<=0)  {
 93      fd[0]= open(A[3], O_RDONLY|O_BINARY);
 94      if (fd[0]<0)  dragE("Oeffnen in-file" , 4);
 95      fd[1]= open(A[4], O_WRONLY|O_BINARY|O_CREAT|O_TRUNC|O_SYNC, 0644);
 96      if (fd[1]<0)  dragE("Oeffnen out-file", 5);
 97    }
 98    W[0][0]= K[0], W[0][1]= K[1];
 99    W[1][0]= K[2], W[1][1]= K[3];
100    W[2][0]=   K[0]^I[0],  W[2][1]=   K[1]^I[1];
101    W[3][0]=   K[2]^I[2],  W[3][1]=   K[3]^I[3];
102    W[4][0]= ~(K[0]^I[0]), W[4][1]= ~(K[1]^I[1]);
103    W[5][0]= ~(K[2]^I[2]), W[5][1]= ~(K[3]^I[3]);
104    W[6][0]= I[0], W[6][1]= I[1];
105    W[7][0]= I[2], W[7][1]= I[3];
106    M= 0x447261676F6Eull;
107    for (i=0;  i<16;  ++i)  {
108       q= W[0][0]^W[6][0]^W[7][0]; a= q>>32, b= q;
109       q= W[0][1]^W[6][1]^W[7][1]; c= q>>32, d= q;
110       e= M>>32, f= M;
111       UPDATE_F();
112       for (p=7;  p>0;  --p)  W[p][0]= W[p-1][0], W[p][1]= W[p-1][1];
113       W[0][0]= ((uint64_t)a<<32|b) ^ W[5][0];
114       W[0][1]= ((uint64_t)c<<32|d) ^ W[5][1];
115       M= (uint64_t)e<<32 | f;
116    }
117    for (i=0;  i<8;  ++i)  B[4*i+0]= W[i][0]>>32, B[4*i+1]= W[i][0],
118                           B[4*i+2]= W[i][1]>>32, B[4*i+3]= W[i][1];
119    int nb=0, nk=0, wr=16;
120    while (1)  { uint64_t k, buf[2*1024];
121       a= B[0]; b= B[9]; c= B[16]; d= B[19]; e= B[30]^M>>32; f= B[31]^M;
122       UPDATE_F();
123       for (i=31;  i>1;  --i)  B[i]= B[i-2];
124       B[0]= b; B[1]= c;
125       M+= 1;
126       k= (uint64_t)a<<32 | e;
127       if (DRAGON_TEST>0)  {
128         if (wr-->0)  {
129           for (i=0; i<8; ++i)  printf("%02hhX", (byte)(k>>8*(7-i)));
130           printf(wr%4==0?"\n":" ");  continue;
131         }
132         else  return 0;
133       }
134       if (nb<=0)  {
135         nb= read(fd[0], buf, sizeof(buf));
136         if (nb< 0)  dragE("Lesen des in-file", 6);
137         if (nb<=0)  break;
138       }
139       if (nb>0)  {
140         buf[nk++]^= k, nb-=sizeof(k);
141         if (nb<=0)  { int nw;
142           nw= write(fd[1], buf, (wr= nk*sizeof(k)+nb, wr));
143           if (nw!=wr)  dragE("Schreiben des out-file", 7);
144           if (nk=0,sum+=nw, nb<0)  break;
145         }
146       }
147    }
148    close(fd[0]);
149    close(fd[1]);
150    printf("dragon: %lld Bytes\n", (long long)sum);
151    return 0;
152 }
153 
154 
155 
156 static uint32_t const S1[256]= {
157 0x393BCE6B,0x232BA00D,0x84E18ADA,0x84557BA7,0x56828948,0x166908F3,
158 0x414A3437,0x7BB44897,0x2315BE89,0x7A01F224,0x7056AA5D,0x121A3917,
159 0xE3F47FA2,0x1F99D0AD,0x9BAD518B,0x99B9E75F,0x8829A7ED,0x2C511CA9,
160 0x1D89BF75,0xF2F8CDD0,0x2DA2C498,0x48314C42,0x922D9AF6,0xAA6CE00C,
161 0xAC66E078,0x7D4CB0C0,0x5500C6E8,0x23E4576B,0x6B365D40,0xEE171139,
162 0x336BE860,0x5DBEEEFE,0x0E945776,0xD4D52CC4,0x0E9BB490,0x376EB6FD,
163 0x6D891655,0xD4078FEE,0xE07401E7,0xA1E4350C,0xABC78246,0x73409C02,
164 0x24704A1F,0x478ABB2C,0xA0849634,0x9E9E5FEB,0x77363D8D,0xD350BC21,
165 0x876E1BB5,0xC8F55C9D,0xD112F39F,0xDF1A0245,0x9711B3F0,0xA3534F64,
166 0x42FB629E,0x15EAD26A,0xD1CFA296,0x7B445FEE,0x88C28D4A,0xCA6A8992,
167 0xB40726AB,0x508C65BC,0xBE87B3B9,0x4A894942,0x9AEECC5B,0x6CA6F10B,
168 0x303F8934,0xD7A8693A,0x7C8A16E4,0xB8CF0AC9,0xAD14B784,0x819FF9F0,
169 0xF20DCDFA,0xB7CB7159,0x58F3199F,0x9855E43B,0x1DF6C2D6,0x46114185,
170 0xE46F5D0F,0xAAC70B5B,0x48590537,0x0FD77B28,0x67D16C70,0x75AE53F4,
171 0xF7BFECA1,0x6017B2D2,0xD8A0FA28,0xB8FC2E0D,0x80168E15,0x0D7DEC9D,
172 0xC5581F55,0xBE4A2783,0xD27012FE,0x53EA81CA,0xEBAA07D2,0x54F5D41D,
173 0xABB26FA6,0x41B9EAD9,0xA48174C7,0x1F3026F0,0xEFBADD8E,0x387E9014,
174 0x1505AB79,0xEADF0DF7,0x67755401,0xDA2EF962,0x41670B0E,0x0E8642F2,
175 0xCE486070,0xA47D3312,0x4D7343A7,0xECDA58D0,0x1F79D536,0xD362576B,
176 0x9D3A6023,0xC795A610,0xAE4DF639,0x60C0B14E,0xC6DD8E02,0xBDE93F4E,
177 0xB7C3B0FF,0x2BE6BCAD,0xE4B3FDFD,0x79897325,0x3038798B,0x08AE6353,
178 0x7D1D20EB,0x3B208D21,0xD0D6D104,0xC5244327,0x9893F59F,0xE976832A,
179 0xB1EB320B,0xA409D915,0x7EC6B543,0x66E54F98,0x5FF805DC,0x599B223F,
180 0xAD78B682,0x2CF5C6E8,0x4FC71D63,0x08F8FED1,0x81C3C49A,0xE4D0A778,
181 0xB5D369CC,0x2DA336BE,0x76BC87CB,0x957A1878,0xFA136FBA,0x8F3C0E7B,
182 0x7A1FF157,0x598324AE,0xFFBAAC22,0xD67DE9E6,0x3EB52897,0x4E07E855,
183 0x87CE73F5,0x8D046706,0xD42D18F2,0xE71B1727,0x38473B38,0xB37B24D5,
184 0x381C6AE1,0xE77D6589,0x6018CBFF,0x93CF3752,0x9B6EA235,0x504A50E8,
185 0x464EA180,0x86AFBE5E,0xCC2D6AB0,0xAB91707B,0x1DB4D579,0xF9FAFD24,
186 0x2B28CC54,0xCDCFD6B3,0x68A30978,0x43A6DFD7,0xC81DD98E,0xA6C2FD31,
187 0x0FD07543,0xAFB400CC,0x5AF11A03,0x2647A909,0x24791387,0x5CFB4802,
188 0x88CE4D29,0x353F5F5E,0x7038F851,0xF1F1C0AF,0x78EC6335,0xF2201AD1,
189 0xDF403561,0x4462DFC7,0xE22C5044,0x9C829EA3,0x43FD6EAE,0x7A42B3A7,
190 0x5BFAAAEC,0x3E046853,0x5789D266,0xE1219370,0xB2C420F8,0x3218BD4E,
191 0x84590D94,0xD51D3A8C,0xA3AB3D24,0x2A339E3D,0xFEE67A23,0xAF844391,
192 0x17465609,0xA99AD0A1,0x05CA597B,0x6024A656,0x0BF05203,0x8F559DDC,
193 0x894A1911,0x909F21B4,0x6A7B63CE,0xE28DD7E7,0x4178AA3D,0x4346A7AA,
194 0xA1845E4C,0x166735F4,0x639CA159,0x58940419,0x4E4F177A,0xD17959B2,
195 0x12AA6FFD,0x1D39A8BE,0x7667F5AC,0xED0CE165,0xF1658FD8,0x28B04E02,
196 0x1FA480CF,0xD3FB6FEF,0xED336CCB,0x9EE3CA39,0x9F224202,0x2D12D6E8,
197 0xFAAC50CE,0xFA1E98AE,0x61498532,0x03678CC0,0x9E85EFD7,0x3069CE1A,
198 0xF115D008,0x4553AA9F,0x3194BE09,0xB4A9367D,0x0A9DFEEC,0x7CA002D6,
199 0x8E53A875,0x965E8183,0x14D79DAC,0x0192B555 };
200 
201 static uint32_t const S2[256]= {
202 0xA94BC384,0xF7A81CAE,0xAB84ECD4,0x00DEF340,0x8E2329B8,0x23AF3A22,
203 0x23C241FA,0xAED8729E,0x2E59357F,0xC3ED78AB,0x687724BB,0x7663886F,
204 0x1669AA35,0x5966EAC1,0xD574C543,0xDBC3F2FF,0x4DD44303,0xCD4F8D01,
205 0x0CBF1D6F,0xA8169D59,0x87841E00,0x3C515AD4,0x708784D6,0x13EB675F,
206 0x57592B96,0x07836744,0x3E721D90,0x26DAA84F,0x253A4E4D,0xE4FA37D5,
207 0x9C0830E4,0xD7F20466,0xD41745BD,0x1275129B,0x33D0F724,0xE234C68A,
208 0x4CA1F260,0x2BB0B2B6,0xBD543A87,0x4ABD3789,0x87A84A81,0x948104EB,
209 0xA9AAC3EA,0xBAC5B4FE,0xD4479EB6,0xC4108568,0xE144693B,0x5760C117,
210 0x48A9A1A6,0xA987B887,0xDF7C74E0,0xBC0682D7,0xEDB7705D,0x57BFFEAA,
211 0x8A0BD4F1,0x1A98D448,0xEA4615C9,0x99E0CBD6,0x780E39A3,0xADBCD406,
212 0x84DA1362,0x7A0E984B,0xBED853E6,0xD05D610B,0x9CAC6A28,0x1682ACDF,
213 0x889F605F,0x9EE2FEBA,0xDB556C92,0x86818021,0x3CC5BEA1,0x75A934C6,
214 0x95574478,0x31A92B9B,0xBFE3E92B,0xB28067AE,0xD862D848,0x0732A22D,
215 0x840EF879,0x79FFA920,0x0124C8BB,0x26C75B69,0xC3DAAAC5,0x6E71F2E9,
216 0x9FD4AFA6,0x474D0702,0x8B6AD73E,0xF5714E20,0xE608A352,0x2BF644F8,
217 0x4DF9A8BC,0xB71EAD7E,0x6335F5FB,0x0A271CE3,0xD2B552BB,0x3834A0C3,
218 0x341C5908,0x0674A87B,0x8C87C0F1,0xFF0842FC,0x48C46BDB,0x30826DF8,
219 0x8B82CE8E,0x0235C905,0xDE4844C3,0x296DF078,0xEFAA6FEA,0x6CB98D67,
220 0x6E959632,0xD5D3732F,0x68D95F19,0x43FC0148,0xF808C7B1,0xD45DBD5D,
221 0x5DD1B83B,0x8BA824FD,0xC0449E98,0xB743CC56,0x41FADDAC,0x141E9B1C,
222 0x8B937233,0x9B59DCA7,0xF1C871AD,0x6C678B4D,0x46617752,0xAAE49354,
223 0xCABE8156,0x6D0AC54C,0x680CA74C,0x5CD82B3F,0xA1C72A59,0x336EFB54,
224 0xD3B1A748,0xF4EB40D5,0x0ADB36CF,0x59FA1CE0,0x2C694FF9,0x5CE2F81A,
225 0x469B9E34,0xCE74A493,0x08B55111,0xEDED517C,0x1695D6FE,0xE37C7EC7,
226 0x57827B93,0x0E02A748,0x6E4A9C0F,0x4D840764,0x9DFFC45C,0x891D29D7,
227 0xF9AD0D52,0x3F663F69,0xD00A91B9,0x615E2398,0xEDBBC423,0x09397968,
228 0xE42D6B68,0x24C7EFB1,0x384D472C,0x3F0CE39F,0xD02E9787,0xC326F415,
229 0x9E135320,0x150CB9E2,0xED94AFC7,0x236EAB0F,0x596807A0,0x0BD61C36,
230 0xA29E8F57,0x0D8099A5,0x520200EA,0xD11FF96C,0x5FF47467,0x575C0B39,
231 0x0FC89690,0xB1FBACE8,0x7A957D16,0xB54D9F76,0x21DC77FB,0x6DE85CF5,
232 0xBFE7AEE9,0xC49571A9,0x7F1DE4DA,0x29E03484,0x786BA455,0xC26E2109,
233 0x4A0215F4,0x44BFF99C,0x711A2414,0xFDE9CDD0,0xDCE15B77,0x66D37887,
234 0xF006CB92,0x27429119,0xF37B9784,0x9BE182D9,0xF21B8C34,0x732CAD2D,
235 0xAF8A6A60,0x33A5D3AF,0x633E2688,0x5EAB5FD1,0x23E6017A,0xAC27A7CF,
236 0xF0FC5A0E,0xCC857A5D,0x20FB7B56,0x3241F4CD,0xE132B8F7,0x4BB37056,
237 0xDA1D5F94,0x76E08321,0xE1936A9C,0x876C99C3,0x2B8A5877,0xEB6E3836,
238 0x9ED8A201,0xB49B5122,0xB1199638,0xA0A4AF2B,0x15F50A42,0x775F3759,
239 0x41291099,0xB6131D94,0x9A563075,0x224D1EB1,0x12BB0FA2,0xFF9BFC8C,
240 0x58237F23,0x98EF2A15,0xD6BCCF8A,0xB340DC66,0x0D7743F0,0x13372812,
241 0x6279F82B,0x4E45E519,0x98B4BE06,0x71375BAE,0x2173ED47,0x14148267,
242 0xB7AB85B5,0xA875E314,0x1372F18D,0xFD105270,0xB83F161F,0x5C175260,
243 0x44FFD49F,0xD428C4F6,0x2C2002FC,0xF2797BAF,0xA3B20A4E,0xB9BF1A89,
244 0xE4ABA5E2,0xC912C58D,0x96516F9A,0x51561E77 };
245 
246 
247 #undef UPDATE_F
248 
249 
250 
251 #if 0
252       d_= d+a, f_= f+c, b_= b+e; \
253       c_= c^b, e_= e^d, a_= a^f; \
254       d_= d_<<16|d_>>16, f_= f_<<16|f_>>16, b_= b_<<16|b_>>16; \
255       c_= c_<<16|c_>>16, e_= e_<<16|e_>>16, a_= a_<<16|a_>>16;
256    printf("%016lX %016lX %016lX %016lX\n", K[0],K[1],K[2],K[3]);
257  for (i=0;  i<32;  ++i)  a=((uint32_t*)W)[i],   //3210:0123
258                          ((uint32_t*)W)[i]= a>>24|a>>8&0xFF00|a<<8&0xFF0000|a<<24;
259  for (i=0;  i<32;  i+=2)  q= ((uint64_t*)W)[i/2], B[i]= q, B[i+1]= q>>32;
260 #endif
261 
262 #if 0
263 KEY:
264 00001111 22223333 44445555 66667777 88889999 AAAABBBB CCCCDDDD EEEEFFFF
265 IV:
266 00001111 22223333 44445555 66667777 88889999 AAAABBBB CCCCDDDD EEEEFFFF
267 KEYSTREAM:
268 BC020767 DC48DAE3 14778D8C 927E8B32 E086C6CD E593C008 600C9D47 A488F622
269 3A2B94D6 B853D644 27E93362 ABB8BA21 751CAAF7 BD316595 2A37FC1E A3F12FE2
270 5C133BA7 4C15CE4B 3542FDF8 93DAA751 F5710256 49795D54 31914EBA 0DE2C2A7
271 8013D29B 56D4A028 3EB6F312 7644ECFE 38B9CA11 1924FBC9 4A0A30F2 AFFF5FE0
272 KEY:
273 00112233 44556677 8899AABB CCDDEEFF 00112233 44556677 8899AABB CCDDEEFF
274 IV:
275 00112233 44556677 8899AABB CCDDEEFF 00112233 44556677 8899AABB CCDDEEFF
276 KEYSTREAM:
277 8D3AB9BA 01DAA3EB 5CBD0F6D E3ECFCAB 619AF808 CF9C4A42 E2877766 6D2D7037
278 EE6F94AC 29D1EEE5 340DB047 8E91A679 480D8D88 2367CE2A 31C96AD4 49E70756
279 815EBEB2 290DBA7A 3CCB76A2 257BD122 2B0B7AED 917FAFFF 6B58B2B2 B05F24F6
280 E271A016 9E897BEF F5C22451 DA6F9E40 52B78BE5 6C97C1A5 C6F8E791 0F7B9C98
281 
282 Clang -DDRAGON_TEST=1 dragon.c
283 BC020767DC48DAE3 14778D8C927E8B32 E086C6CDE593C008 600C9D47A488F622
284 3A2B94D6B853D644 27E93362ABB8BA21 751CAAF7BD316595 2A37FC1EA3F12FE2
285 5C133BA74C15CE4B 3542FDF893DAA751 F571025649795D54 31914EBA0DE2C2A7
286 8013D29B56D4A028 3EB6F3127644ECFE 38B9CA111924FBC9 4A0A30F2AFFF5FE0
287 
288 8D3AB9BA01DAA3EB 5CBD0F6DE3ECFCAB 619AF808CF9C4A42 E28777666D2D7037
289 EE6F94AC29D1EEE5 340DB0478E91A679 480D8D882367CE2A 31C96AD449E70756
290 815EBEB2290DBA7A 3CCB76A2257BD122 2B0B7AED917FAFFF 6B58B2B2B05F24F6
291 E271A0169E897BEF F5C22451DA6F9E40 52B78BE56C97C1A5 C6F8E7910F7B9C98
292 #endif
293 
294 
295 
296 #if !defined(BSH_H)
297 
298 int main(int ac, char *av[])
299 {
300    static char *argv[]= { "dragon",
301       "00112233445566778899AABBCCDDEEFF00112233445566778899AABBCCDDEEFF",
302       "00112233445566778899AABBCCDDEEFF00112233445566778899AABBCCDDEEFF",
303       0, 0,
304       "0000111122223333444455556666777788889999AAAABBBBCCCCDDDDEEEEFFFF",
305       "0000111122223333444455556666777788889999AAAABBBBCCCCDDDDEEEEFFFF",
306       "0000000000000000000000000000000000000000000000000000000000000000",
307       "0000000000000000000000000000000000000000000000000000000000000000",
308       0
309    };
310    static char *avp[]= { "dragon", "XxxXxxx", 0 };
311 
312    if (DRAGON_TEST==0)  {
313      if (ac!=3)  return 1;
314      argv[3]= av[1], argv[4]= av[2];
315      dragon(2, avp);
316    }
317    return dragon(5, argv);
318 }
319 
320 #endif
321 
322 
323 

Inhaltsverzeichnis

C-Code Dragon
Beweis einer korrekten Implementation
Analyse
Fazit der Analyse
Analyse Rabbit
Analyse Bit-Ströme
NIST – Statistische Test-Suite für Zufallszahlen
Textende

Beweis einer korrekten Implementation

In den Zeilen 263 bis 280 sind Referenz-Testvektoren angegeben. Diese wurden von den Erfindern und Entwicklern des dragon-Algorithmus generiert. Es sind für zwei verschiedene KEY/IV je ein Keystream mit 1024 Bit Länge angegeben. Laut Entwicklern von kryptographischen Algorithmen sind Testvektoren dazu bereitgestellt, um die Korrektheit von Implementationen feststellen zu können: The correctness of the code on different platforms is verified by generating and comparing test vectors.  Essentially all of the algorithms included have been verified for correctness by independent implementation, confirming the test vectors specified.

Ein Key hat 256 Bit und daher 2²⁵⁶ verschiedene Werte. Zu jedem Wert gehört ein eigener Keystream aus maximal 2⁶⁴ Bit Länge. Diese Keystreams unterscheiden sich untereinander völlig.
Diffusor (UPDATE_F):
All the keystream words and feedback words are dependent on all input words, both at the bit level and word level. A single bit change in any of the six input words results in completely different keystream and feedback words.

Es wurden absichtlich nacheinander viele subtile Fehler in eine korrekte Implementation eingebaut. In den Zeilen 98 bis 119 wurden keine Fehler eingebaut, da dies der Eingabe eines anderen Keys entsprechen und ein solcher ohnehin einen anderen Keystream generieren würde. Fehler wurden daher nur in den wenigen Zeilen 121 bis 126 eingebaut. Jeder Fehler hat dazu geführt, daß keine Übereinstimmung mit den Referenz-Vektoren erzielt werden konnte. Eine Übereinstimmung war nur mit einer korrekten Implementation möglich.

Dies ist ein klarer Beweis dafür, daß bei diesem dragon-Algorithmus eine korrekte Implementation durch Übereinstimmung mit nur einem Referenz-Testvektor bewiesen werden kann. Fast sicher kann diese Erkenntnis auf weitere kryptographische Algorithmen, wie Stromverschlüsselungen und Hash-Algorithmen, ausgedehnt werden. Insbesondere, wenn Entwickler ausdrückliche Referenz-Vektoren ausgewählt haben.

Ein Key mit 128 Bit ist sicher gegenüber einem Supercomputer, nicht jedoch gegenüber einem Quanten-Computer. Mit einem zusätzlichen InitVektor von 64 Bit (192 Bit) ist auch Sicherheit gegenüber einem Quanten-Computer gewährleistet. Ein Key mit 256 Bit ist erst recht sicher gegenüber einem Quanten-Computer. Das bekannte Universum besteht aus etwa 2²⁶⁶ ≈ 10⁸⁰ Atomen.

Analyse UPDATE_F( )

Nachfolgend sind Analyse-Daten der Funktion UPDATE_F(a,b,c,d,e,f) dargestellt. Es wurde periodisch wiederkehrend der Mittelwert der sechs DWORDs a,b,c,d,e,f insgesamt errechnet. Und zwar wurden die Werte so oft addiert (N), bis der Mittelwert (MW) vorlag. Nachdem der Mittelwert vorlag, wurden MW und N jeweils wieder auf Null gesetzt. Als Eingabe wurden sechs speziell kodierte Werte verwendet, die inkrementiert wurden und dadurch immer nur ein Bit innerhalb der sechs DWORDs veränderten (in). Auffallend sind die beiden Werte von N: 2,9 Mrd. und 3,15 Mrd. Nach den Zahlenreihen steht weiterer Text, und dann Rabbit-Analyse.

     Loops       N         MW
 ----------+-----------+----------
     34587:     1245137 2147483649
     91010:     2031255 2147483647
    685339:    21395820 2147483646
    729093:     1575141 2147483648
   4227898:   125956990 2147483648
   4401906:     6264284 2147483646
   6223689:    65584213 2147483646
   6239721:      577131 2147483646
   6244469:      170942 2147483646
   6302003:     2071224 2147483648
   6344370:     1525198 2147483649
   6595129:     9027318 2147483646
   7190740:    21441992 2147483646
   7199296:      308036 2147483646
   7371968:     6216193 2147483647
   7410221:     1377104 2147483648
   7466657:     2031699 2147483646
   7758448:    10504467 2147483646
   7792299:     1218640 2147483646
   7809556:      621240 2147483649
   7983855:     6274758 2147483648
   8010650:      964648 2147483647
   8036350:      925184 2147483647
   9765623:    62253823 2147483647
  10250499:    17455541 2147483646
  10406071:     5600582 2147483647
  10419016:      466041 2147483647
  10683046:     9505058 2147483649
  10702373:      695783 2147483649
  10720641:      657642 2147483646
  10725217:      164738 2147483648
  11330416:    21787180 2147483646
  11370370:     1438331 2147483649
  11421858:     1853564 2147483649
  11441232:      697487 2147483646
  11579049:     4961399 2147483646
  11581361:       83236 2147483648
  14261191:    96473891 2147483649
  14269506:      299317 2147483646
  14288280:      675873 2147483646
  14312623:      876347 2147483648
  15971593:    59722935 2147483649
  16063606:     3312452 2147483647
  16095727:     1156374 2147483648
  16206828:     3999627 2147483649
  16447671:     8670332 2147483648
  16476792:     1048372 2147483649
  16747188:     9734254 2147483647
  16801098:     1940764 2147483646
  16817285:      582734 2147483648
  16820525:      116619 2147483648
  17271296:    16227753 2147483649
  17285828:      523153 2147483647
  17310379:      883859 2147483647
  97961339:  2903434563 2147483646
  98012827:     1853557 2147483648
  98058733:     1652605 2147483646
  98082978:      872834 2147483648
  98112788:     1073156 2147483647
  98915595:    28901042 2147483647
  98936702:      759845 2147483647
  98985099:     1742321 2147483649
  99034326:     1772154 2147483646
  99175328:     5076061 2147483648
  99317503:     5118313 2147483647
  99348700:     1123091 2147483648
  99353949:      188950 2147483646
  99362281:      299978 2147483647
  99418164:     2011761 2147483649
  99460971:     1541072 2147483647
  99483548:      812760 2147483646
  99561722:     2814264 2147483649
 105881187:   227500761 2147483647
 105891896:      385514 2147483648
 105913010:      760099 2147483648
 105969537:     2034991 2147483648
 106000891:     1128745 2147483646
 106008048:      257646 2147483649
 106044405:     1308830 2147483648
 106062843:      663788 2147483649
 106084859:      792572 2147483647
 106087047:       78747 2147483648
 106092346:      190762 2147483646
 106176709:     3037071 2147483646
 106203205:      953854 2147483647
 106281128:     2805240 2147483648
 106285361:      152398 2147483646
 106307874:      810477 2147483648
 106320296:      447168 2147483646
 106352397:     1155644 2147483649
 106355488:      111289 2147483647
 106366690:      403244 2147483647
 114808017:   303887800 2147483647
 114822797:      532081 2147483647
 114959846:     4933748 2147483646
 114983634:      856389 2147483648
 115064744:     2919946 2147483646
 115154041:     3214689 2147483649
 115168907:      535166 2147483646
 115169322:       14934 2147483647
 115221286:     1870710 2147483649
 115228287:      252039 2147483649
 115251601:      839326 2147483648
 115359816:     3895722 2147483649
 115364530:      169719 2147483649
 115377219:      456779 2147483646
 115398493:      765878 2147483649
 115414970:      593159 2147483646
 115462339:     1705283 2147483649
 115477667:      551820 2147483649
 115549565:     2588342 2147483648
 116039610:    17641612 2147483648
 116163063:     4444296 2147483647
 116186160:      831484 2147483649
 116192881:      241970 2147483648
 116249369:     2033580 2147483649
 116267701:      659955 2147483646
 123652038:   265836118 2147483647
 123677918:      931690 2147483649
 125903140:    80107979 2147483646
 125909651:      234387 2147483648
 500000000: 13467252593  777739945


   a        b        c        d        e        f
--------+--------+--------+--------+--------+--------+----
00000000 00000000 00000000 00000000 00000000 00000000 (in)
ef897cdc 95f9d3f2 31fe3d1a 6c6e8dfa 69e74bf9 3477fcd7
00000000 00000000 00000000 00000000 00000000 00000000 (in)
ef897cdc 95f9d3f2 31fe3d1a 6c6e8dfa 69e74bf9 3477fcd7
00000000 00000000 00000000 00000000 00000000 00000000 (in)
ef897cdc 95f9d3f2 31fe3d1a 6c6e8dfa 69e74bf9 3477fcd7
00000000 00000000 00000000 00000000 00000000 00000000 (in)
ef897cdc 95f9d3f2 31fe3d1a 6c6e8dfa 69e74bf9 3477fcd7
00000000 00000000 00000000 00000000 00000000 00000000 (in)
ef897cdc 95f9d3f2 31fe3d1a 6c6e8dfa 69e74bf9 3477fcd7
00000000 00000000 00000000 00000000 00000000 00000000 (in)
ef897cdc 95f9d3f2 31fe3d1a 6c6e8dfa 69e74bf9 3477fcd7
00000001 00000000 00000000 00000000 00000000 00000000 (in)
fabbfe40 df335962 d626de75 3861e7a5 76a2acd1 9375eaa0
00000001 00000001 00000000 00000000 00000000 00000000 (in)
427b150f 95f9d3f2 9cec54e4 aa9252cf af1b94cc 99859505
00000001 00000001 00000001 00000000 00000000 00000000 (in)
c697ae69 d923aefe 510108f0 a2a87ac2 ec6b31b7 12830997
00000001 00000001 00000001 00000001 00000000 00000000 (in)
488b6aaa df335963 d626de74 aa9252cf e45119bb 9375eaa0
00000001 00000001 00000001 00000001 00000001 00000000 (in)
3f252bdb c8a9601f a8784881 66d3cabc 589b362a eb318c26
00000001 00000001 00000001 00000001 00000001 00000001 (in)
47614d5e d923aefe d03629e9 a2a87ac3 ec6b31b6 9375eaa0
00000003 00000001 00000001 00000001 00000001 00000001 (in)
b91eab8e f7847361 1cc243e3 db5f8056 b67b8f80 1864e8a5
00000003 00000003 00000001 00000001 00000001 00000001 (in)
a1b233f5 d923aefe 32659e7e 0df9e527 433aae52 75a69409
00000003 00000003 00000003 00000001 00000001 00000001 (in)
e53c9f9d 9a42c7f7 5f404760 5102e450 3c26eb84 f22138ba
00000003 00000003 00000003 00000003 00000001 00000001 (in)
cc704f59 f784735f 1cc243dd 0df9e527 60ddeaf1 1864e8a5
00000003 00000003 00000003 00000003 00000003 00000001 (in)
2ea27285 ca8493e8 c6258e6b 31b29b6a acd740af 39bfd5a4
00000003 00000003 00000003 00000003 00000003 00000003 (in)
0f794f82 9a42c7f7 7104f775 5102e452 3c26eb86 1864e8a5
00000002 00000003 00000003 00000003 00000003 00000003 (in)
4e72d62c 2c86f643 4c57ded8 c1a7c80a 3ecff62b 609a7367
00000002 00000002 00000003 00000003 00000003 00000003 (in)
9af24799 9a42c7f7 fa93ef6b a9dcc9e5 c4f8c631 8defe0bf
00000002 00000002 00000002 00000003 00000003 00000003 (in)
3ccaf1d0 eaeae1c8 3009eaa5 c706c7d9 2c275125 088d54cb
00000002 00000002 00000002 00000002 00000003 00000003 (in)
9966d6dd 18404f1e 78916783 a9dcc9e5 42fd5f1e 8e7b71fb
00000002 00000002 00000002 00000002 00000002 00000003 (in)
54e1d02a 2f4aade0 c40c9d63 85f6e6f3 84568271 18f079e2
00000002 00000002 00000002 00000002 00000002 00000002 (in)
c26ad832 18cbe058 781ac8c5 ded0cc88 35f15a72 8e7b71fb
00000006 00000002 00000002 00000002 00000002 00000002 (in)
6c38ecf6 c546c556 e39fa35f 7ddd40db ea413b27 0edb5dbc
00000006 00000006 00000002 00000002 00000002 00000002 (in)
189206a6 18cbe058 3e128655 670b395e 8c2aafa4 5483af6b
00000006 00000006 00000006 00000002 00000002 00000002 (in)
01fd86d6 7f9e73ab de589b3d a32ef634 34b28dcc 89c8e049
00000006 00000006 00000006 00000006 00000002 00000002 (in)
42caf471 c546c55a e39fa353 670b395e f09742a2 0edb5dbc
00000006 00000006 00000006 00000006 00000006 00000002 (in)
6000d445 bb960b3c bba5b023 d9825163 0a1642ea e835b2d6
00000006 00000006 00000006 00000006 00000006 00000006 (in)
86ee3b23 7f9e73ab 594715a2 a32ef630 34b28dc8 0edb5dbc
00000007 00000006 00000006 00000006 00000006 00000006 (in)
593bb6c7 a5efcabf 493da36c 7ecdff16 c3202c1b bfd1f4e6
00000007 00000007 00000006 00000006 00000006 00000006 (in)
5ce1071b 7f9e73ab 934c1a79 20192393 b785586b d4d46185
00000007 00000007 00000007 00000006 00000006 00000006 (in)
6c3e9018 90ed5e1f 981773b3 4faae59b f2473697 dbf9b8bf
00000007 00000007 00000007 00000007 00000006 00000006 (in)
37e49278 a5efcac0 493da313 20192393 9df4f09e bfd1f4e6
00000007 00000007 00000007 00000007 00000007 00000006 (in)
808f6e39 ec43de4d 880b6532 cf2a23bc d66e7086 37484691
00000007 00000007 00000007 00000007 00000007 00000007 (in)
0816dc41 90ed5e1f 7c3f37cc 4faae59c f2473690 bfd1f4e6
00000005 00000007 00000007 00000007 00000007 00000007 (in)
b685b6f5 2aba40ca 261b5d43 8403ee25 d3b95b9c dfeb4f29
00000005 00000005 00000007 00000007 00000007 00000007 (in)
6867803f 90ed5e1f 9c4c4398 d25c1cee 6fb1cfe2 dfa0a89a
00000005 00000005 00000005 00000007 00000007 00000007 (in)
1668f497 a3bc226d 2c3473dd 7358ddfb a3292d36 4eab1d27
00000005 00000005 00000005 00000005 00000007 00000007 (in)
7c04c059 a3717bd6 afd06653 d25c1cee 022dec2d cbc3e8fc
00000005 00000005 00000005 00000005 00000005 00000007 (in)
ef382263 324f7302 de9d1ad3 dcb0d41a af9c7391 abf53546
00000005 00000005 00000005 00000005 00000005 00000005 (in)
8f0effdb 8f94bc38 8335a1bd 5f620b70 8f13fbb1 cbc3e8fc
00000004 00000005 00000005 00000005 00000005 00000005 (in)
f2aed369 56bf4771 b3ea3a21 f7128e3d 608ef5c6 cd577503
00000004 00000004 00000005 00000005 00000005 00000005 (in)
e0b55fec 8f94bc38 6ac1c16b fbe5fef9 2b940e38 a47848ca
00000004 00000004 00000004 00000005 00000005 00000005 (in)
c1448a2e e76a35d7 aec29430 3f4e4e6f c026704b 4971ecb3
00000004 00000004 00000004 00000004 00000005 00000005 (in)
a1d3df38 be8b099e 5bde74cc fbe5fef9 048dc0de e51ec81e
00000004 00000004 00000004 00000004 00000004 00000005 (in)
382dcd4d c2da6941 ce7b74c5 4edc9965 8dcd8710 0c6a6851
00000004 00000004 00000004 00000004 00000004 00000004 (in)
d1596d03 ff3188f2 1a64f5a0 eb608cf0 1408b2d6 e51ec81e
0000000c 00000004 00000004 00000004 00000004 00000004 (in)
0796673e 81573831 28e2dcda 23362a8d a2bbc7e0 f475a111
0000000c 0000000c 00000004 00000004 00000004 00000004 (in)
9d388aba ff3188f2 56846c11 639a0973 9cf23755 a97f2faf
0000000c 0000000c 0000000c 00000004 00000004 00000004 (in)
7374a9c7 cc4da98b 3c27c8e5 77b118a9 f63cf5cc 3b2a1d94
0000000c 0000000c 0000000c 0000000c 00000004 00000004 (in)
c0320404 81573839 28e2dcd2 639a0973 e217e41e f475a111
0000000c 0000000c 0000000c 0000000c 0000000c 00000004 (in)
3b7324ad 285d7aff 0030ae47 071e84b6 da833a6f 732d90e6
0000000c 0000000c 0000000c 0000000c 0000000c 0000000c (in)
bc2b1542 cc4da98b 65f84d60 77b118b1 f63cf5d4 f475a111
0000000d 0000000c 0000000c 0000000c 0000000c 0000000c (in)
b14ce63b 9f8be794 9e3bb4cd 6a2ba563 3ee78e0e b8826682
0000000d 0000000d 0000000c 0000000c 0000000c 0000000c (in)
042ebb2c cc4da98b cdfdfad3 a8bbd8fc 29363599 4c700f7e
0000000d 0000000d 0000000d 0000000c 0000000c 0000000c (in)
47290410 0b9e3e95 8933944a deb3dec3 8a7ff5af 397fbe08
0000000d 0000000d 0000000d 0000000d 0000000c 0000000c (in)
f0dcd2d0 9f8be793 9e3bb4ca a8bbd8fc fc77f391 b8826682
0000000d 0000000d 0000000d 0000000d 0000000d 0000000c (in)
559dcdfe feb7782f 8a4e1c92 6aa5c543 2d40a045 2bcb77e5
0000000d 0000000d 0000000d 0000000d 0000000d 0000000d (in)
c6d4dc9a 0b9e3e95 0a2e6dcc deb3dec2 8a7ff5ae b8826682
0000000f 0000000d 0000000d 0000000d 0000000d 0000000d (in)
02ca89b5 7cb78cfd 6bd4635b 2d94d9c8 e871a01a 48561481
0000000f 0000000f 0000000d 0000000d 0000000d 0000000d (in)
b060b8d7 0b9e3e95 1cfdd131 614ef6ae 3582ddc2 ce3602cd
0000000f 0000000f 0000000f 0000000d 0000000d 0000000d (in)
51d43e20 f6d79eab 85e6b803 d8efb239 1d0acbe9 a4234b83
0000000f 0000000f 0000000f 0000000f 0000000d 0000000d (in)
3600ae9b 7cb78cfb 6bd4635d 614ef6ae a4ab8f7c 48561481
0000000f 0000000f 0000000f 0000000f 0000000f 0000000d (in)
849cc68c 02ccacb4 42b522ec ea6bb927 3bb13efe 716bb331
0000000f 0000000f 0000000f 0000000f 0000000f 0000000f (in)
bda16122 f6d79eab e1b4710d d8efb237 1d0acbe7 48561481
0000000e 0000000f 0000000f 0000000f 0000000f 0000000f (in)
eb5a0882 085022ca 7ca9466a 6950ccb3 be0d3143 965bc909
0000000e 0000000e 0000000f 0000000f 0000000f 0000000f (in)
501cfc38 f6d79eab 822efa14 e24680ca 27a3f91a a5eb899a
0000000e 0000000e 0000000e 0000000f 0000000f 0000000f (in)
96aefc3e 3df55415 5a257ec1 f8674c06 e4f5a3aa 9ab6bce3
0000000e 0000000e 0000000e 0000000e 0000000f 0000000f (in)
5228836f 4d85148e 397c7030 e24680ca fed46f79 a7dff6cd
0000000e 0000000e 0000000e 0000000e 0000000e 0000000f (in)
b4794180 450c6a1d 526f85ba e12bfcc9 f30e24c7 4a4a81b5
0000000e 0000000e 0000000e 0000000e 0000000e 0000000e (in)
59ec36f9 4f7981c1 3b80e57f ea82cb5c f61024ee a7dff6cd
0000000a 0000000e 0000000e 0000000e 0000000e 0000000e (in)
c1662984 e6c5fcf0 e6f647fb c6dd0948 750263ad b4f637fc
0000000a 0000000a 0000000e 0000000e 0000000e 0000000e (in)
cd298d16 4f7981c1 4f4a3ad6 4f80ab00 531244b2 331a4d26
0000000a 0000000a 0000000a 0000000e 0000000e 0000000e (in)
294c05ca 7c3d5e44 7caf373c 4230c16f 854a203c d9afd351
0000000a 0000000a 0000000a 0000000a 0000000e 0000000e (in)
2762e4dc fa61735e fa52c84d 4f80ab00 88fa4a4f d95124ec
0000000a 0000000a 0000000a 0000000a 0000000a 0000000e (in)
a78579a2 dddbf109 a92295b3 d5e2c25d d15c456d 4e16ce97
0000000a 0000000a 0000000a 0000000a 0000000a 0000000a (in)
30c293dd a0984b24 a0abf037 3ae0a201 fd9a434a d95124ec
0000000b 0000000a 0000000a 0000000a 0000000a 0000000a (in)
8854014d 7e7bf96c c2bb6d29 3f9ed599 9ac05a0d 78128ed8
0000000b 0000000b 0000000a 0000000a 0000000a 0000000a (in)
7c4e492d a0984b24 1c58df60 38ebfd34 ff911c7f 95ddfe1d
0000000b 0000000b 0000000b 0000000a 0000000a 0000000a (in)
982e32ba 60b08a28 71fc0df7 a408f6cd 01567958 cc9e8272
0000000b 0000000b 0000000b 0000000b 0000000a 0000000a (in)
918139e8 7e7bf96d c2bb6d28 38ebfd34 9db572a0 78128ed8
0000000b 0000000b 0000000b 0000000b 0000000b 0000000a (in)
31b76fb1 41e20f91 e857eb7d 8403152d 029301d3 6507df7e
0000000b 0000000b 0000000b 0000000b 0000000b 0000000b (in)
2ca23e10 60b08a28 dc701e6d a408f6cc 01567959 78128ed8
00000009 0000000b 0000000b 0000000b 0000000b 0000000b (in)
35c808c2 101e25fb 32d1a65e e74054cc b38c7fa6 d9a196ce
00000009 00000009 0000000b 0000000b 0000000b 0000000b (in)
8a91cefc 60b08a28 427f098b 4f87678a ead9e81f de217e36
00000009 00000009 00000009 0000000b 0000000b 0000000b (in)
8aabab4b 0e8cc8dc 2f3e176b 792d70de 2e97c56d f4fd1157
00000009 00000009 00000009 00000009 0000000b 0000000b (in)
a2a9058b 130cb048 31c333e9 4f87678a 183dd23f f619b541
00000009 00000009 00000009 00000009 00000009 0000000b (in)
c8c92c57 ecd1a2b0 501136f7 a81c2fc2 b19b5ed2 900ac5e9
00000009 00000009 00000009 00000009 00000009 00000009 (in)
aeda5cfd 2b04e757 09cb64f6 539aa07c 042015cb f619b541
00000008 00000009 00000009 00000009 00000009 00000009 (in)
ee99d31b 9ac512e9 fe8da99b eb62f164 2c18102c 3d66254b
00000008 00000008 00000009 00000009 00000009 00000009 (in)
6f5104ac 2b04e757 4f4c5c26 7026e4d1 279c5166 3792ed11
00000008 00000008 00000008 00000009 00000009 00000009 (in)
806fcb82 37d14a52 e84cb5f6 00f6b248 5e455231 69fc7cb1
00000008 00000008 00000008 00000008 00000009 00000009 (in)
b664d1c0 31fe121a 55b6a96a 7026e4d1 2e9504ab eea7387d
00000008 00000008 00000008 00000008 00000008 00000009 (in)
8c7d8fd3 9c1b1d9c bed49e3c 1c2a463f 0d96e6b0 ad2e00ac
00000008 00000008 00000008 00000008 00000008 00000008 (in)
cff4b703 e9125d88 8d5ae6f8 38b68a92 66056ae9 eea7387d
00000018 00000008 00000008 00000008 00000008 00000008 (in)
e57e5845 460c83c6 76797105 3f4034f7 84ee325e 35a316bf
00000018 00000018 00000008 00000008 00000008 00000008 (in)
9b87e08e e9125d88 d967af5b 8fb6756b d1059510 bad46fe0
00000018 00000018 00000018 00000008 00000008 00000008 (in)
06a54171 c0db2ab5 488b4655 fa3bb79a 4195b123 8d7d90dc
00000018 00000018 00000018 00000018 00000008 00000008 (in)
14f099d1 460c83b6 76797175 8fb6756b 341873c2 35a316bf
00000018 00000018 00000018 00000018 00000018 00000008 (in)
c3fc6b8a ccde4159 8e29d772 4a6c5687 8ddd4bda 4824ba17
00000018 00000018 00000018 00000018 00000018 00000018 (in)
be7bc712 c0db2ab5 f0aed876 fa3bb7aa 4195b113 35a316bf
00000019 00000018 00000018 00000018 00000018 00000018 (in)
7856047d d0078e79 c77b069a d28ea189 1854cbf5 eb83fc27
00000019 00000019 00000018 00000018 00000018 00000018 (in)
97717d72 c0db2ab5 d7a7a257 ca917adb 713f7c62 1ca9acde
00000019 00000019 00000019 00000018 00000018 00000018 (in)
cd36be11 9ee1ddc1 3fb9fd0e f721d330 3dfbb94d 755f9413
00000019 00000019 00000019 00000019 00000018 00000018 (in)
605b2d8b d0078e78 c77b069b ca917adb 004b10a7 eb83fc27
00000019 00000019 00000019 00000019 00000019 00000018 (in)
db352c78 6b15fa12 e4416926 bfb2fdfc 28bc7b32 635c0679
00000019 00000019 00000019 00000019 00000019 00000019 (in)
53ead625 9ee1ddc1 899d5522 f721d331 3dfbb94c eb83fc27
0000001b 00000019 00000019 00000019 00000019 00000019 (in)
5f3d53a4 d6c681eb 7addc23e 89d8f184 8b67ff21 36cad8c4
0000001b 0000001b 00000019 00000019 00000019 00000019 (in)
384b9d1b 9ee1ddc1 32fa9e16 d84a9024 1290fa59 8022b71b
0000001b 0000001b 0000001b 00000019 00000019 00000019 (in)
af130052 8d6ea396 d08028a4 676e8699 65d1883e e89e2021
0000001b 0000001b 0000001b 0000001b 00000019 00000019 (in)
8ea3f2c4 d6c681e9 7addc23c d84a9024 daf59e81 36cad8c4
0000001b 0000001b 0000001b 0000001b 0000001b 00000019 (in)
8488404b f24c6c5d ca19a70c 254f1a33 42d3cd5d c305603e
0000001b 0000001b 0000001b 0000001b 0000001b 0000001b (in)
7147f8b7 8d6ea396 2175e043 676e8697 65d18830 36cad8c4
0000001a 0000001b 0000001b 0000001b 0000001b 0000001b (in)
a46f856d bc32d4c2 336647f3 fd078893 cc84b747 51d231f5
0000001a 0000001a 0000001b 0000001b 0000001b 0000001b (in)
5d890857 8d6ea396 023a30a0 4ed6f46d 4c69faca 1a042825
0000001a 0000001a 0000001a 0000001b 0000001b 0000001b (in)
b38ba414 f4428c99 611b0f69 29790142 18bdec97 91a4895c
0000001a 0000001a 0000001a 0000001a 0000001b 0000001b (in)
cc12b8d1 bc7482c1 332011f6 4ed6f46d 7f1219bf 8b9f98a3
0000001a 0000001a 0000001a 0000001a 0000001a 0000001b (in)
13aad144 86cd0e3a 2ad64dee dbadfe29 512ff6e7 a8664941
0000001a 0000001a 0000001a 0000001a 0000001a 0000001a (in)
305300a7 2e0ff33f a15b6008 c3166bff f2d2862c 8b9f98a3
0000001e 0000001a 0000001a 0000001a 0000001a 0000001a (in)
10125ae0 fe145dfa 96d79757 b825ab00 b9ecf392 02e3f691
0000001e 0000001e 0000001a 0000001a 0000001a 0000001a (in)
dec24815 2e0ff33f 46cc3996 6100968f 50c47b5c 650ed015
0000001e 0000001e 0000001e 0000001a 0000001a 0000001a (in)
4e28665e 9be9847a de229483 36f7590e 373e0198 dfeb3cdd
0000001e 0000001e 0000001e 0000001e 0000001a 0000001a (in)
b92f6e91 fe145dfe 96d79753 6100968f 60c9ce1d 02e3f691
0000001e 0000001e 0000001e 0000001e 0000001e 0000001a (in)
2f6a39ed 5ddc43a4 795574d6 9cae940e 5f1283ce bea96352
0000001e 0000001e 0000001e 0000001e 0000001e 0000001e (in)
9320ac12 9be9847a f32a4ed7 36f75912 373e0184 02e3f691
0000001f 0000001e 0000001e 0000001e 0000001e 0000001e (in)
173f3beb 57ae58c3 c3d42073 8d1a67ce 30944b10 896fa62a
0000001f 0000001f 0000001e 0000001e 0000001e 0000001e (in)
bf59fe17 9be9847a 0f93fccb 808d248f 81447c19 2e9aa495
0000001f 0000001f 0000001f 0000001e 0000001e 0000001e (in)
14e1594b b2835a59 69f6621d b3550701 0edb2bde d06a65be
0000001f 0000001f 0000001f 0000001f 0000001e 0000001e (in)
18acfca8 57ae58c2 c3d42072 808d248f 3d030851 896fa62a
0000001f 0000001f 0000001f 0000001f 0000001f 0000001e (in)
538fb5d9 151703b9 b7185821 b1b7c8a0 91961e9f 97048913
0000001f 0000001f 0000001f 0000001f 0000001f 0000001f (in)
4de49adf b2835a59 26f922e9 b3550702 0edb2bdd 896fa62a
0000001d 0000001f 0000001f 0000001f 0000001f 0000001f (in)
220fcb5e eb66916e d3335a05 75bd6bb3 83cc0845 b5f4baab
0000001d 0000001d 0000001f 0000001f 0000001f 0000001f (in)
e9c1c438 b2835a59 8ad6910c a24d36b5 1fc31a6a 2d4af8cf
0000001d 0000001d 0000001d 0000001f 0000001f 0000001f (in)
c1581ca8 fdcca39d 686217a9 fa159415 7a382048 dd0b86f1
0000001d 0000001d 0000001d 0000001d 0000001f 0000001f (in)
bb39a2e3 7522e1dd 4d772a8a a24d36b5 226082d6 7fb29e14
0000001d 0000001d 0000001d 0000001d 0000001d 0000001f (in)
e6a71568 6273d3f3 f609ab41 2c3a2826 372d2910 dbd74b71
0000001d 0000001d 0000001d 0000001d 0000001d 0000001d (in)
42c2c00f c78a871e ffdf4c49 1b3257d9 9b1fe3b8 7fb29e14
0000001c 0000001d 0000001d 0000001d 0000001d 0000001d (in)
e5898386 49262b51 f636922f d8bae70a d973bf9f 5930e562
0000001c 0000001c 0000001d 0000001d 0000001d 0000001d (in)
3b1dd220 c78a871e 789a3e63 5971de40 d95c6a21 066d8c3a
0000001c 0000001c 0000001c 0000001d 0000001d 0000001d (in)
9ab409b7 cba36bb5 835adfc7 adc4daa8 9c47e579 0b775336
0000001c 0000001c 0000001c 0000001c 0000001d 0000001d (in)
bcfe065a 78e0128f c7f0abf3 5971de40 68f2e192 818e5840
0000001c 0000001c 0000001c 0000001c 0000001c 0000001d (in)
d8fc4754 7331bd8e 4b6476d8 fff1270d 4f4539c7 fad36a1b
0000001c 0000001c 0000001c 0000001c 0000001c 0000001c (in)
a3a1750e f400de97 4b1067eb 3e30ad74 0fb392a7 818e5840
00000014 0000001c 0000001c 0000001c 0000001c 0000001c (in)
08bbe41d 9f65d4c5 b7080055 a44b1ee7 78a32b1e ed30aa61
00000014 00000014 0000001c 0000001c 0000001c 0000001c (in)
c8c45e2a f400de97 dc6d0a3f e0eefdb1 d16dc262 eaeb736c
00000014 00000014 00000014 0000001c 0000001c 0000001c (in)
694de3a1 35a6ab8e 8e7ab0b5 e8489259 98ab47e4 40c52257
00000014 00000014 00000014 00000014 0000001c 0000001c (in)
8f79f6fa 33617449 1b0ca0e9 e0eefdb1 900d2834 ad56dbbc
00000014 00000014 00000014 00000014 00000014 0000001c (in)
46916010 57468cdc e85635a8 216a20be f337a57e 43f9c088
00000014 00000014 00000014 00000014 00000014 00000014 (in)
a83e7b2c f5ccdca9 dda10809 c42870fb b4cba576 ad56dbbc
00000015 00000014 00000014 00000014 00000014 00000014 (in)
b2763e4e 0ef1ff1c 5e34bdfc 85b481a7 0fbc7658 323fd2a6
00000015 00000015 00000014 00000014 00000014 00000014 (in)
d0c6e96c f5ccdca9 a5099e48 0ad33550 7a30e0dd d5ae49fd
00000015 00000015 00000015 00000014 00000014 00000014 (in)
a7724bf4 6b8387c4 8174e6d4 706e4fe0 fa66b81e cc71f0d6
00000015 00000015 00000015 00000015 00000014 00000014 (in)
37577237 0ef1ff1b 5e34bdfb 0ad33550 80dbc2af 323fd2a6
00000015 00000015 00000015 00000015 00000015 00000014 (in)
ac27d0bd f7a1ddf7 12080622 b4c005de a2e74bef c7246b9c
00000015 00000015 00000015 00000015 00000015 00000015 (in)
593c6984 6b8387c4 3b46c524 706e4fe1 fa66b81f 323fd2a6
00000017 00000015 00000015 00000015 00000015 00000015 (in)
55a3a7f3 50e1deee 73616be7 9dd52896 f2b267bc 26a7d891
00000017 00000017 00000015 00000015 00000015 00000015 (in)
6ff8fff1 6b8387c4 480332cf 95d46454 1fdc93aa 04fb44d1
00000017 00000017 00000017 00000015 00000015 00000015 (in)
b0cc32a5 728e72b0 36b26315 227fb0be 4d18ff96 4763352d
00000017 00000017 00000017 00000017 00000015 00000015 (in)
4da463b1 50e1def0 73616bf9 95d46454 fab32b7e 26a7d891
00000017 00000017 00000017 00000017 00000017 00000015 (in)
ed0cabf1 08bcc26d 1fc04a80 3667b0b5 33f22e50 1aa3ac77
00000017 00000017 00000017 00000017 00000017 00000017 (in)
d108df19 728e72b0 510ec7b9 227fb0bc 4d18ff94 26a7d891
00000016 00000017 00000017 00000017 00000017 00000017 (in)
1b1adfbe bed52a3f 5b7cf1e7 3b886b27 80266d91 ead6ffd4
00000016 00000016 00000017 00000017 00000017 00000017 (in)
1f7ff8d6 728e72b0 9727a967 416b5246 2e0c1d6e e8d0ff5f
00000016 00000016 00000016 00000017 00000017 00000017 (in)
2f185a27 d3cba7a0 ba9195b2 d5951c5f 1b0b9ffb a4c08b84
00000016 00000016 00000016 00000016 00000017 00000017 (in)
d6bf32c1 d1c5a733 346c7ce5 416b5246 8ff5d1ed 21103548
00000016 00000016 00000016 00000016 00000016 00000017 (in)
ce15303f 544d78de 77cdcdd6 bbc2e778 a325f814 5ee70e7b
00000016 00000016 00000016 00000016 00000016 00000016 (in)
b1e20b0d 0a04dd1c efad06ca daae8902 14300aa8 21103548
00000012 00000016 00000016 00000016 00000016 00000016 (in)
6b17762d 6d2b4755 ce9ce7b4 009aa364 315e4ebb a002a64d
00000012 00000012 00000016 00000016 00000016 00000016 (in)
4fefc41e 0a04dd1c a9b37df1 c6771145 08e992ef df1dfa5f
00000012 00000012 00000012 00000016 00000016 00000016 (in)
826d5fca b02a705d 34f53a88 f1516b0c 428e01fd 39a1c7c6
00000012 00000012 00000012 00000012 00000016 00000016 (in)
c888239b ef45c46f 4cf26486 c6771145 75a87bb8 587a1dda
00000012 00000012 00000012 00000012 00000012 00000016 (in)
6a8f8e40 fc80587e 192983ac 3aa02144 7d1dfac9 9a6c58c7
00000012 00000012 00000012 00000012 00000012 00000012 (in)
a899cb59 68a1e7ea cb164703 2668a987 95b7c37e 587a1dda
00000013 00000012 00000012 00000012 00000012 00000012 (in)
4c220d99 103eb7a8 70feb28f 817e7214 da0248ac bc73137b
00000013 00000013 00000012 00000012 00000012 00000012 (in)
e5615495 68a1e7ea 0861e2cc 821129b4 31ce434d 15828217
00000013 00000013 00000013 00000012 00000012 00000012 (in)
a753d91e b72f490d b495ba1d 896b2bad d2171114 5f6e0164
00000013 00000013 00000013 00000013 00000012 00000012 (in)
4c90c5f9 103eb7a9 70feb28e 821129b4 d96d130c bc73137b
00000013 00000013 00000013 00000013 00000013 00000012 (in)
7c1d3a81 df98a071 f7f574d6 b6fda8e8 35183af5 8420e2fc
00000013 00000013 00000013 00000013 00000013 00000013 (in)
444ecb01 b72f490d d7ef4c2a 896b2bac d2171115 bc73137b
00000011 00000013 00000013 00000013 00000013 00000013 (in)
f6d6d0f9 e5bc064e a5c5880c cb97125b 419fe5a3 21f41e08
00000011 00000011 00000013 00000013 00000013 00000013 (in)
641144e0 b72f490d f756c749 ecb21be2 b7ce215b 9c2c9c98
00000011 00000011 00000011 00000013 00000013 00000013 (in)
9db53fba b562ae9a c4f90bf5 5f77fe8e 8c9fe05a f6b6849c
00000011 00000011 00000011 00000011 00000013 00000013 (in)
3da9b50b 2f9b2d26 6fe2a360 ecb21be2 3f5a0530 c5946d73
00000011 00000011 00000011 00000011 00000011 00000013 (in)
07cefb7d c5b339dc a5733cf9 7341725b 33d928f4 e5dae454
00000011 00000011 00000011 00000011 00000011 00000011 (in)
27807258 5902fdfd 197b73bb d6886295 05607c45 c5946d73
00000010 00000011 00000011 00000011 00000011 00000011 (in)
6badf505 38fa4a26 3a1aecd9 50fe645d e3210ea7 b7a323f0
00000010 00000010 00000011 00000011 00000011 00000011 (in)
65ef9903 5902fdfd 5be25b01 5703ac92 84ebb242 87fb8629
00000010 00000010 00000010 00000011 00000011 00000011 (in)
e7c4a02e 8c207ade 79e56898 65d363ea b28e9e07 172776af
00000010 00000010 00000010 00000010 00000011 00000011 (in)
c657144c 5c78dd1b 5e987be6 5703ac92 805e517c 24430b66
00000010 00000010 00000010 00000010 00000010 00000011 (in)
6dc3b26d 41daadbd 01a323fa 008c842c 20f4cd78 61dbf2af
00000010 00000010 00000010 00000010 00000010 00000010 (in)
285b4ba5 f8c06258 fa20c4a5 8107ce2b 565a33c4 24430b66
00000030 00000010 00000010 00000010 00000010 00000010 (in)
a99014f8 237f608c b9376363 d39038a5 d18cc4e6 c86ddc20
00000030 00000030 00000010 00000010 00000010 00000010 (in)
b7b228db f8c06258 62886197 7daab0b0 aaf74d5f bbaa6838
00000030 00000030 00000030 00000010 00000010 00000010 (in)
cac6df6c 3042d494 17b8f688 0e6b950e 0c77696d 561ffa4d
00000030 00000030 00000030 00000030 00000010 00000010 (in)
c4759cc3 237f60ac b9376343 7daab0b0 7fb64cf3 c86ddc20
00000030 00000030 00000030 00000030 00000030 00000010 (in)
572b5031 94faa216 09363f49 d4f82c11 b22ce5f4 cbf27570
00000030 00000030 00000030 00000030 00000030 00000030 (in)
54b4f901 3042d494 aa0ad77b 0e6b94ee 0c77688d c86ddc20
00000031 00000030 00000030 00000030 00000030 00000030 (in)
09f26cc3 743d27d5 0ccc4867 63fed8f4 25e99751 dab00ecb
00000031 00000031 00000030 00000030 00000030 00000030 (in)
3bce62c4 3042d494 48b3bb27 2d959c0c 2f89606f a71747e4
00000031 00000031 00000031 00000030 00000030 00000030 (in)
6be48951 a7d5eebd 36a764a7 2992174f 6f8558eb f3312933
00000031 00000031 00000031 00000031 00000030 00000030 (in)
46692beb 743d27d6 0ccc4864 2d959c0c 6b82d3a9 dab00ecb
00000031 00000031 00000031 00000031 00000031 00000030 (in)
dfb811be 788ba28f 9d24b048 7f1d5aec 69d0599a 476db1df
00000031 00000031 00000031 00000031 00000031 00000031 (in)
4265aea9 a7d5eebd df24810f 2992174e 6f8558ea dab00ecb
00000033 00000031 00000031 00000031 00000031 00000031 (in)
9e2647fb afec45d0 4de57bbf 4bba9487 05973232 585b0030
00000033 00000033 00000031 00000031 00000031 00000031 (in)
db127de6 a7d5eebd 45dcd0d0 1e12ed1c 5805a2b8 43c7dd86
00000033 00000033 00000033 00000031 00000031 00000031 (in)
c259cae5 c47f6878 8b8d2974 895b14e6 c776b251 c64402cd
00000033 00000033 00000033 00000033 00000031 00000031 (in)
c08ea050 afec45ce 4de57ba1 1e12ed1c 503f4ba9 585b0030
00000033 00000033 00000033 00000033 00000033 00000031 (in)
958bfcbf 68e07738 73a405f6 72a1f8ef 802f4d98 91963491
00000033 00000033 00000033 00000033 00000033 00000033 (in)
5c46c818 c47f6878 26765617 895b14e4 c776b253 585b0030
00000032 00000033 00000033 00000033 00000033 00000033 (in)
bb36a1b9 ba1dd769 5fb2c5ab 8586dd1a c64ac8b3 24098336
00000032 00000032 00000033 00000033 00000033 00000033 (in)
581d1caf c47f6878 21d07abd ea6582b4 a4482403 5c00d486
00000032 00000032 00000032 00000033 00000033 00000033 (in)
40fd929e 26f807e7 4bb82f84 8bac856a 63311219 e599587e
00000032 00000032 00000032 00000032 00000033 00000033 (in)
5a158af6 5eef5935 bb404bf1 ea6582b4 02f815c0 5e0842df
00000032 00000032 00000032 00000032 00000032 00000033 (in)
914aaebd 688e52c5 8a876cab 50660cf1 a0532e5b 5a626e88
00000032 00000032 00000032 00000032 00000032 00000032 (in)
952082eb 60f6c790 8559d554 b1707abf 59ededca 5e0842df
00000036 00000032 00000032 00000032 00000032 00000032 (in)
3cd9d96d 540b35f5 c9f1ca5b 68a2943f b31091e9 89aba0c8
00000036 00000036 00000032 00000032 00000032 00000032 (in)
dd7ceff5 60f6c790 fd0c383a 7e58daca 96c54dbf 16542fc5
00000036 00000036 00000036 00000032 00000032 00000032 (in)
914bb77f c762a6ec 8f6eda4d 5626c562 8d94c0b0 33bd1dbb
00000036 00000036 00000036 00000036 00000032 00000032 (in)
428360f8 540b35f1 c9f1ca5f 7e58daca a5eadf1c 89aba0c8
00000036 00000036 00000036 00000036 00000036 00000032 (in)
f1f7d5ba 6578c9c0 02281794 e42ca290 9de48a36 53017f72
00000036 00000036 00000036 00000036 00000036 00000036 (in)
2b5d0a0c c762a6ec 5a985942 5626c55e 8d94c08c 89aba0c8
00000037 00000036 00000036 00000036 00000036 00000036 (in)
28bfaa6d 1a0e01cc 5a027ef1 f7b55569 d9e835d8 fcad912b
00000037 00000037 00000036 00000036 00000036 00000036 (in)
894b8a93 c762a6ec 876ed9d0 c699c4e8 1d2bc13a 2bbd2056
00000037 00000037 00000037 00000036 00000036 00000036 (in)
aed87fb4 eafe729e 7b163c0d 03f43957 2da959e7 4e896081
00000037 00000037 00000037 00000037 00000036 00000036 (in)
5e5b3bee 1a0e01cb 5a027ef6 c699c4e8 e8c4a459 fcad912b
00000037 00000037 00000037 00000037 00000037 00000036 (in)
bd6ab94e d7db217e 7741b5fb b3cefadc a8f4f54c 5d3ba674
00000037 00000037 00000037 00000037 00000037 00000037 (in)
1cfc8e1e eafe729e aaf20da3 03f43958 2da959e8 fcad912b
00000035 00000037 00000037 00000037 00000037 00000037 (in)
7f143ed0 04c4ce6a 1f80bcae 00c462bf 48e7dec1 ed540f2e
00000035 00000035 00000037 00000037 00000037 00000037 (in)
37b49b8f eafe729e f1ba0054 4ed54ff8 60882f48 d7e584b8
00000035 00000035 00000035 00000037 00000037 00000037 (in)
156b20d0 29024208 8ee52300 1318fdfb 45ea5865 b1ffede8
00000035 00000035 00000035 00000035 00000037 00000037 (in)
c50de09f 1393b77e 08d7c5b6 4ed54ff8 1827ea68 255cffa8
00000035 00000035 00000035 00000035 00000035 00000037 (in)
1e22f373 e8382725 a834581a 77ab1975 a9b48330 4a250c21
00000035 00000035 00000035 00000035 00000035 00000035 (in)
715b00f8 610b3272 7a4f40ba c28c3011 947e9583 255cffa8
00000034 00000035 00000035 00000035 00000035 00000035 (in)
687d7788 e5ca92b2 fe0b1ecd 439c1847 982e1d96 07722d99
00000034 00000034 00000035 00000035 00000035 00000035 (in)
71dde60d 610b3272 7acabe0e 2894bd87 7e661815 25da195c
00000034 00000034 00000034 00000035 00000035 00000035 (in)
6b5a57fe 2f7cb6c6 a42e3a02 778368fd 344f7d51 c9acfd38
00000034 00000034 00000034 00000034 00000035 00000035 (in)
0e1c03a0 4de4a28f 56252ef2 2894bd87 6b58a828 5a1bfcf1
00000034 00000034 00000034 00000034 00000034 00000035 (in)
fcfa29d9 7325b7d4 6861c51d 13e8fba8 2723bcc8 599ee33e
00000034 00000034 00000034 00000034 00000034 00000034 (in)
ff7f3617 82268622 99e70a5f 79f1891c 3a3d9cb2 5a1bfcf1
0000003c 00000034 00000034 00000034 00000034 00000034 (in)
474ab4d7 74dd8eb1 2bd282ed f8f32265 ce703c50 7c5bf18b
0000003c 0000003c 00000034 00000034 00000034 00000034 (in)
380db626 82268622 dd298a76 6346a7f7 208ab259 9d697cc8
0000003c 0000003c 0000003c 00000034 00000034 00000034 (in)
ffb0341d 53d0036c 389a6b35 35095696 038a48ab 88974d88
0000003c 0000003c 0000003c 0000003c 00000034 00000034 (in)
d93f3b65 74dd8ea9 2bd282f5 6346a7f7 55c5b9c2 7c5bf18b
0000003c 0000003c 0000003c 0000003c 0000003c 00000034 (in)
ba735f1d 48abcdd2 f8ac8c1b 59961ce6 72c8f445 cd5426f0
0000003c 0000003c 0000003c 0000003c 0000003c 0000003c (in)
0b7c881e 53d0036c 0cdf0f30 3509569e 038a48a3 7c5bf18b
0000003d 0000003c 0000003c 0000003c 0000003c 0000003c (in)
6cf39dc8 9c9fe6d7 5975596f 16774e58 69244ff1 bfb265f0
0000003d 0000003d 0000003c 0000003c 0000003c 0000003c (in)
9410dd7c 53d0036c 963abcd5 ba5ccfb4 8cdfd189 e337a4e8
0000003d 0000003d 0000003d 0000003c 0000003c 0000003c (in)
b42b83dd 791aa7e0 7a924f7e 8cb0632c f3e36284 fd508ed6
0000003d 0000003d 0000003d 0000003d 0000003c 0000003c (in)
c8951c64 9c9fe6d8 59755960 ba5ccfb4 c50fce1d bfb265f0
0000003d 0000003d 0000003d 0000003d 0000003d 0000003c (in)
892b716c 06bd85ef c03553c4 d15eaa95 ddab7522 c0507c64
0000003d 0000003d 0000003d 0000003d 0000003d 0000003d (in)
f6c968fb 791aa7e0 bcf01858 8cb0632b f3e36283 bfb265f0
0000003f 0000003d 0000003d 0000003d 0000003d 0000003d (in)
555ed10b ee6dfedb 8f0b97c3 f9dcd235 0d7a8a94 4528f3de
0000003f 0000003f 0000003d 0000003d 0000003d 0000003d (in)
1255025b 791aa7e0 187ccefa 32e1bc69 4db2bdc1 5b2e0f52
0000003f 0000003f 0000003f 0000003d 0000003d 0000003d (in)
ac412448 d868e369 01951388 fae80f51 0e4e57f2 bdc07ba7
0000003f 0000003f 0000003f 0000003f 0000003d 0000003d (in)
0c53fed7 ee6dfed9 8f0b97c1 32e1bc69 c647e4c8 4528f3de
0000003f 0000003f 0000003f 0000003f 0000003f 0000003d (in)
63ab9b42 8cfa49bd 029273b2 413ac245 e80d7cb2 722ac4d3
0000003f 0000003f 0000003f 0000003f 0000003f 0000003f (in)
54a9ac31 d868e369 b90e8a71 fae80f4f 0e4e57ec 4528f3de
0000003e 0000003f 0000003f 0000003f 0000003f 0000003f (in)
8e527b64 25dbe598 e35333ce fc633ade be7a600f fa2de635
0000003e 0000003e 0000003f 0000003f 0000003f 0000003f (in)
bbca3f01 d868e369 1ee03540 9964fd7b 6dc2a5d8 aa4b60ef
0000003e 0000003e 0000003e 0000003f 0000003f 0000003f (in)
6951a86f 49594550 6a899315 dab08c79 cf04b908 3b9d4682
0000003e 0000003e 0000003e 0000003e 0000003f 0000003f (in)
cfd4198b f976bfd4 3ffe69fc 9964fd7b 8cd0c875 de554665
0000003e 0000003e 0000003e 0000003e 0000003e 0000003f (in)
32a14636 032d2e63 624b477a 34fa4ec3 df9af0e5 7932d955
0000003e 0000003e 0000003e 0000003e 0000003e 0000003e (in)
95c6d907 2d80a54c eb087364 d3773cef c6c309e0 de554665
0000003a 0000003e 0000003e 0000003e 0000003e 0000003e (in)
609e8de4 2231b1db 45616ffb a1919cfc abf4dd5e 00c528d0
0000003a 0000003a 0000003e 0000003e 0000003e 0000003e (in)
348ed1ff 2d80a54c 4ad07b10 8cc9972e 997da221 7f1d4e99
0000003a 0000003a 0000003a 0000003e 0000003e 0000003e (in)
6041acc5 888ffe79 7c1d5ca7 b7905535 588be6fc 161bf1ac
0000003a 0000003a 0000003a 0000003a 0000003e 0000003e (in)
c349b240 06e823f2 61b8fdaa 8cc9972e 63d2249b 88da2d26
0000003a 0000003a 0000003a 0000003a 0000003a 0000003e (in)
81200b14 0d90186b cb18ce47 f115cd6f 1d1304f2 e81224f6
0000003a 0000003a 0000003a 0000003a 0000003a 0000003a (in)
e1e802c0 10a5027f 77f5dc27 aa6827ae 4573941f 88da2d26
0000003b 0000003a 0000003a 0000003a 0000003a 0000003a (in)
475d3ba8 064252ce 42943f8e 7531a76b 9188a494 a7f7b756
0000003b 0000003b 0000003a 0000003a 0000003a 0000003a (in)
0f6d93e8 10a5027f 54736f3e fdb94a54 12a2f9e5 665fbc0f
0000003b 0000003b 0000003b 0000003a 0000003a 0000003a (in)
a202f1f2 47da4e14 b84ac649 553a3ded b1833e13 62b1d273
0000003b 0000003b 0000003b 0000003b 0000003a 0000003a (in)
cec598b1 064252cd 42943f8d fdb94a54 190049ab a7f7b756
0000003b 0000003b 0000003b 0000003b 0000003b 0000003a (in)
028375f4 eaf72a8d b5f826d6 7e95008f f940e0f8 c2305672
0000003b 0000003b 0000003b 0000003b 0000003b 0000003b (in)
674494d7 47da4e14 030c2354 553a3dee b1833e10 a7f7b756
00000039 0000003b 0000003b 0000003b 0000003b 0000003b (in)
ebeede07 e2744bc2 797eb670 201783aa 5f448204 94d2a3ea
00000039 00000039 0000003b 0000003b 0000003b 0000003b (in)
3e9f6449 47da4e14 dcd0b3a0 618e2940 85372abe fe2c47ca
00000039 00000039 00000039 0000003b 0000003b 0000003b (in)
9b44e844 41eb62ac 41db2a4d ea5612ce a275aeba d23fe54b
00000039 00000039 00000039 00000039 0000003b 0000003b (in)
ada9b9a3 ab450688 304ffb3e 618e2940 29ad9532 6d1a9a20
00000039 00000039 00000039 00000039 00000039 0000003b (in)
b272c49c 4bd133c3 0f075e81 391be7a3 40da70fa 16e609aa
00000039 00000039 00000039 00000039 00000039 00000039 (in)
c98e5714 1a3358da 8139a56c 456fd2f1 0d4c6e81 6d1a9a20
00000038 00000039 00000039 00000039 00000039 00000039 (in)
2956679f c12b501d 61b1c495 bef3606b 51e8d3d9 c223e356
00000038 00000038 00000039 00000039 00000039 00000039 (in)
d63efdc0 1a3358da baa9cc51 7812a8d7 303114a7 72aa30f5
00000038 00000038 00000038 00000039 00000039 00000039 (in)
cd3bf0be 523d43e4 79b83dac 3cb00b87 0c03fe91 a409df5a
00000038 00000038 00000038 00000038 00000039 00000039 (in)
bd8a38a9 02c3917f a25905f5 7812a8d7 48a15dc2 191ef59c
00000038 00000038 00000038 00000038 00000038 00000039 (in)
50509c86 0c9ed634 97942b83 e4bac809 70a0bd2b 138f5eca
00000038 00000038 00000038 00000038 00000038 00000038 (in)
5ac137d1 a9385626 09a2c2ac 175d9def 27ee68fb 191ef59c
00000028 00000038 00000038 00000038 00000038 00000038 (in)
448a530b 7e44bfd9 3cb329a2 994b7cdc 9c8b220b 9e3da4f9
00000028 00000028 00000038 00000038 00000038 00000038 (in)
f8a43540 a9385626 ebcfc02d 02734747 32c0b253 bb7bf71d
00000028 00000028 00000028 00000038 00000038 00000038 (in)
a67a501f 5d00d922 de3cbd5c e2467b59 e3fcb1fd 85c8a640
00000028 00000028 00000028 00000028 00000038 00000038 (in)
065c1580 7a3f2be6 38c8bdfd 02734747 03c98d93 4583d7dd
00000028 00000028 00000028 00000028 00000028 00000038 (in)
f4b9970a 2b684496 8bf2d00c 2b1d1d08 03c11fdc a326d66c
00000028 00000028 00000028 00000028 00000028 00000028 (in)
121c96ab 04470c86 46b09a9d 1632c660 17880ca4 4583d7dd
00000029 00000028 00000028 00000028 00000028 00000028 (in)
88907746 94787ace 53eee39e d6ec5a10 4700631b a1a1f8d6
00000029 00000029 00000028 00000028 00000028 00000028 (in)
9dbd9a64 04470c86 c3d195d7 055a0bf7 04e0c133 ca22db13
00000029 00000029 00000029 00000028 00000028 00000028 (in)
4cc57f57 6bf79890 98b58db3 2f42d67f beaeef75 cd4d74a9
00000029 00000029 00000029 00000029 00000028 00000028 (in)
f63eb9a1 94787acd 53eee39d 055a0bf7 94b632fc a1a1f8d6
00000029 00000029 00000029 00000029 00000029 00000028 (in)
75448d1a 9cd872ab 861955cb 1219197e d0d40a5b f4cc86e7
00000029 00000029 00000029 00000029 00000029 00000029 (in)
2029f328 6bf79890 ac6101c0 2f42d67e beaeef74 a1a1f8d6
0000002b 00000029 00000029 00000029 00000029 00000029 (in)
f9f735c3 26282f51 eeb96f9e d2a40749 9eb8c884 b752b977
0000002b 0000002b 00000029 00000029 00000029 00000029 (in)
2314abaf 6bf79890 a366d85d 05868691 946abf9b a29ca053
0000002b 0000002b 0000002b 00000029 00000029 00000029 (in)
a64760df 3ade4877 44341e06 4feb2a5d 03f7e592 6dabcf19
0000002b 0000002b 0000002b 0000002b 00000029 00000029 (in)
36dab28b 26282f53 eeb96f9c 05868691 499a495c b752b977
0000002b 0000002b 0000002b 0000002b 0000002b 00000029 (in)
11f1710d ab41b91a 401ddf39 c917fac3 7597bab1 da1ddecd
0000002b 0000002b 0000002b 0000002b 0000002b 0000002b (in)
7cbe16b1 3ade4877 f24f08b8 4feb2a5b 03f7e594 b752b977
0000002a 0000002b 0000002b 0000002b 0000002b 0000002b (in)
2f9dcd0c c2c81552 d8093237 9b9ebd9a 4f982133 24907d15
0000002a 0000002a 0000002b 0000002b 0000002b 0000002b (in)
c26e0fcd 3ade4877 201f6f15 5c7dbd48 10617287 0982a00a
0000002a 0000002a 0000002a 0000002b 0000002b 0000002b (in)
6513b69d 7c2baf60 523e0470 6ed38fb6 1c8fd606 bb5134ab
0000002a 0000002a 0000002a 0000002a 0000002b 0000002b (in)
6c101f39 611dd25f 7bdcf53c 5c7dbd48 2e21e4ff a7fcb0fe
0000002a 0000002a 0000002a 0000002a 0000002a 0000002b (in)
07785f76 241a6e98 ec8b2e56 d6b30fb3 406deb4e 55ccca68
0000002a 0000002a 0000002a 0000002a 0000002a 0000002a (in)
f54825e1 ff97e351 e556c432 e345a2a0 9119fb16 a7fcb0fe
0000002e 0000002a 0000002a 0000002a 0000002a 0000002a (in)
7a929750 a976ee70 0bca1140 d42811b9 c8137568 813afd39
0000002e 0000002e 0000002a 0000002a 0000002a 0000002a (in)
7d4c1dd4 ff97e351 5d2b1c65 2b343c6b 596865dd 2ff888cf
0000002e 0000002e 0000002e 0000002a 0000002a 0000002a (in)
1d57886b fab962de c6f5faf3 e01cc5b1 fc27a164 1aca9636
0000002e 0000002e 0000002e 0000002e 0000002a 0000002a (in)
d38e6822 a976ee6c 0bca115c 2b343c6b 370f58ba 813afd39
0000002e 0000002e 0000002e 0000002e 0000002e 0000002a (in)
c3b00ea4 652ef4c8 8081e610 ede4d8cc 6b542e73 c42d10e5
0000002e 0000002e 0000002e 0000002e 0000002e 0000002e (in)
86a7e364 fab962de 58059dee e01cc5ad fc27a178 813afd39
0000002f 0000002e 0000002e 0000002e 0000002e 0000002e (in)
24b3b31b 7ac646b3 7ad924f6 cce4626d 50ac2ac6 7a3ae1ea
0000002f 0000002f 0000002e 0000002e 0000002e 0000002e (in)
d9007e11 fab962de faa6009a 75f82dd8 69c3490d de9d604d
0000002f 0000002f 0000002f 0000002e 0000002e 0000002e (in)
4f612e3b 1663c84f faf94e0c 98323b50 047a73fa 66b605e8
0000002f 0000002f 0000002f 0000002f 0000002e 0000002e (in)
7da7ffb6 7ac646b4 7ad924f1 75f82dd8 e9b06573 7a3ae1ea
0000002f 0000002f 0000002f 0000002f 0000002f 0000002e (in)
3db4a858 cccdcc07 5685cff7 9b699b99 c9dbd7fb 14638394
0000002f 0000002f 0000002f 0000002f 0000002f 0000002f (in)
53edca39 1663c84f 167caa0a 98323b4f 047a73e5 7a3ae1ea
0000002d 0000002f 0000002f 0000002f 0000002f 0000002f (in)
a7494939 c032cf61 2b6ea958 e77d976e a16ad8d4 4d1b0552
0000002d 0000002d 0000002f 0000002f 0000002f 0000002f (in)
4ca0ce1d 1663c84f fd3fae68 270276d4 bb4a3e7e 6577e5cc
0000002d 0000002d 0000002d 0000002f 0000002f 0000002f (in)
ccd58644 3f2bb728 23013ee3 9600eb7f 4b6df370 5400263a
0000002d 0000002d 0000002d 0000002d 0000002f 0000002f (in)
0ae52945 578897b6 bcd4f193 270276d4 fa6f6ec5 23320294
0000002d 0000002d 0000002d 0000002d 0000002d 0000002f (in)
a2f780a8 831806e3 830764a4 035e8d98 481ce7ec 37f4feb4
0000002d 0000002d 0000002d 0000002d 0000002d 0000002d (in)
b6317c8a 1542b482 fe1ed2a7 922ec921 4f43d132 23320294
0000002c 0000002d 0000002d 0000002d 0000002d 0000002d (in)
d26479ad 54110144 5c411ff8 2226b645 3e1dd293 e6ce1cc5
0000002c 0000002c 0000002d 0000002d 0000002d 0000002d (in)
d526c531 1542b482 1d12aa3d 827fcefc 5f12d6ef 4025bb2e
0000002c 0000002c 0000002c 0000002d 0000002d 0000002d (in)
7354670a b2849ab5 d87eb910 f5196f3b 211ff397 74c97955
0000002c 0000002c 0000002c 0000002c 0000002d 0000002d (in)
871c0a71 0bdc391e 038c27a0 827fcefc 56795253 121f746e
0000002c 0000002c 0000002c 0000002c 0000002c 0000002d (in)
2b6939e4 25add47e cef1b25a db6dcd34 c0b3b3fa f52bbbd5
0000002c 0000002c 0000002c 0000002c 0000002c 0000002c (in)
cc5df65e ddd5f25e d585ece0 cbbed30d 1fb84fa3 121f746e
00000024 0000002c 0000002c 0000002c 0000002c 0000002c (in)
446f8e3e 4d9b6b6e d507cdeb 0832d4d2 4bfec164 d6f716f9
00000024 00000024 0000002c 0000002c 0000002c 0000002c (in)
7c297e75 ddd5f25e 454954c3 53dcbe43 87da22ed a26bfc4d
00000024 00000024 00000024 0000002c 0000002c 0000002c (in)
1780797d 1b42a645 f5637bff 1aff06f9 c6173328 b2e4b38b
00000024 00000024 00000024 00000024 0000002c 0000002c (in)
831dfe5e e6b78b79 7e2b2dec 53dcbe43 8f348b8a 5d5f7c66
00000024 00000024 00000024 00000024 00000024 0000002c (in)
e49a3541 e882ea86 e0d2f430 170512ab 34c5061e cd12f48f
00000024 00000024 00000024 00000024 00000024 00000024 (in)
74d7bda0 a1ab0b92 3937ad07 9f22fdd1 43cac810 5d5f7c66
00000025 00000024 00000024 00000024 00000024 00000024 (in)
7a13bb00 459dbbd4 c0314cdf 8b767552 0bac9356 02f94375
00000025 00000025 00000024 00000024 00000024 00000024 (in)
63e70d1c a1ab0b92 2407fc98 3c143ea4 e0fc0b65 4a6fccdb
00000025 00000025 00000025 00000024 00000024 00000024 (in)
8fd08e05 fe27326f 1921f87f fe0f155b 7ed5f35e 6453167a
00000025 00000025 00000025 00000025 00000024 00000024 (in)
2b7182b2 459dbbd5 c0314cde 3c143ea4 bcced8a0 02f94375
00000025 00000025 00000025 00000025 00000025 00000024 (in)
f84adc23 811550f2 1769a706 6ff38d68 6c3a89e0 13c9445f
00000025 00000025 00000025 00000025 00000025 00000025 (in)
e97adb0a fe27326f 7b8bc564 fe0f155c 7ed5f359 02f94375
00000027 00000025 00000025 00000025 00000025 00000025 (in)
fd80e520 084cc4f7 2f2def3d 4118c154 ca18b9db 30112252
00000027 00000027 00000025 00000025 00000025 00000025 (in)
4f2ee04f fe27326f d94619a7 5f0a925f dfd0745a a4ad7832
00000027 00000027 00000027 00000025 00000025 00000025 (in)
3c994256 93b06f15 3c3c7b08 f82c42d3 732c3a5e b83c0aa5
00000027 00000027 00000027 00000027 00000025 00000025 (in)
db92ba2f 084cc4f9 2f2def33 5f0a925f d40aead0 30112252
00000027 00000027 00000027 00000027 00000027 00000025 (in)
54e3c715 eaa29fc8 2d340696 3260137d d392ba3d d0468fe8
00000027 00000027 00000027 00000027 00000027 00000027 (in)
b4b46aa1 93b06f15 b4d144df f82c42d5 732c3a58 30112252
00000026 00000027 00000027 00000027 00000027 00000027 (in)
1bcf56aa 0a6ac154 9c1636ad 073663fd 068ca936 990939bb
00000026 00000026 00000027 00000027 00000027 00000027 (in)
1b89a68c 93b06f15 05cc98e3 09153dde 82154553 9f2cee7e
00000026 00000026 00000026 00000027 00000027 00000027 (in)
9ea195ba 79dff94b 0620eb14 dc0f3665 ab5c81ec c93ed4c2
00000026 00000026 00000026 00000026 00000027 00000027 (in)
5b19f2a8 8003ae0e 167f59f9 09153dde 7e468a58 dfbcba5a
00000026 00000026 00000026 00000026 00000026 00000027 (in)
7d1f15ee 4e1bf7ed 697adc26 8146f5a5 859ac02f 70a0ee2d
00000026 00000026 00000026 00000026 00000026 00000026 (in)
d2034198 c09379ea 56ef8e1d 922ff0ae e57c4729 dfbcba5a
00000022 00000026 00000026 00000026 00000026 00000026 (in)
49941020 bb9c1c21 9f152b67 033c0a10 716053aa b1c4c0e1
00000022 00000022 00000026 00000026 00000026 00000026 (in)
6077026b c09379ea e41a4ea0 18ab3515 6ff88292 6dc8f9ad
00000022 00000022 00000022 00000026 00000026 00000026 (in)
c573e5c3 f3e66cbe 1c10957e 5d9fce62 3b352d41 97c770d4
00000022 00000022 00000022 00000022 00000026 00000026 (in)
c1e655a4 afeaa592 8b6392dc 18ab3515 7e01d63a cc59ae62
00000022 00000022 00000022 00000022 00000022 00000026 (in)
ed159460 54cb353c c2b7c2cf 57c8f04f fb324e67 3e4d6f03
00000022 00000022 00000022 00000022 00000022 00000022 (in)
1f015505 0e7b5a3f 2af26d71 de4434b6 b8eed79d cc59ae62
00000023 00000022 00000022 00000022 00000022 00000022 (in)
aeae00f4 68214f26 121eb2e9 91da7c9d 518aa48c 18657348
00000023 00000023 00000022 00000022 00000022 00000022 (in)
f1488f84 0e7b5a3f 7444a7f1 ae680447 c8c2e76c 221074e2
00000023 00000023 00000023 00000022 00000022 00000022 (in)
ef12cdc6 5e764d89 9c529e82 6a678e22 aa375632 604a4884
00000023 00000023 00000023 00000023 00000022 00000022 (in)
cb3d882e 68214f25 121eb2ea ae680447 6e38dc56 18657348
00000023 00000023 00000023 00000023 00000023 00000022 (in)
b99a994f 6ebfebfd f6234d6f 04f2c150 d468b7d4 36c21c0a
00000023 00000023 00000023 00000023 00000023 00000023 (in)
973df60a 5e764d89 2449b046 6a678e23 aa375633 18657348
00000021 00000023 00000023 00000023 00000023 00000023 (in)
9853e55c 1f005b7e d7183854 088627b8 885cc1bb 4564af94
00000021 00000021 00000023 00000023 00000023 00000023 (in)
e9655de5 5e764d89 966e2ea5 baa76230 7af7ba20 663dd8a5
00000021 00000021 00000021 00000023 00000023 00000023 (in)
01e39e2d 73bdb036 1f7ca720 16d2756d e0a316a1 ea600656
00000021 00000021 00000021 00000021 00000023 00000023 (in)
caefd72e 9496d943 5c8eba6d baa76230 4cd601fa 45b7526e
00000021 00000021 00000021 00000021 00000021 00000023 (in)
eb8d7768 5fe158ff 25dea532 f762a348 1520caf7 f7deed0f
00000021 00000021 00000021 00000021 00000021 00000021 (in)
59e4c80b 74105308 bc083026 47a27755 b1d3149d 45b7526e
00000020 00000021 00000021 00000021 00000021 00000021 (in)
a3c4758d e449d269 464689cc d748330a b1e2d022 49dfd2b9
00000020 00000020 00000021 00000021 00000021 00000021 (in)
03fdd082 74105308 d61f08ae 0980263a fff145f2 1fae4ae6
00000020 00000020 00000020 00000021 00000021 00000021 (in)
d9922bbd 3b0c9345 59e7a8a3 c085873c 53b99b0d 0acad0d8
00000020 00000020 00000020 00000020 00000021 00000021 (in)
55bd6afd 10db0b72 b2d450d5 0980263a 9abc3a08 49eef099
00000020 00000020 00000020 00000020 00000020 00000021 (in)
2e84b8cf 253e54c0 ed2637ef 6cc21ddd 119ca213 6ff7f822
00000020 00000020 00000020 00000020 00000020 00000020 (in)
089db075 3b1bb125 9914ea82 2e9fccc2 bda3d0f1 49eef099
506d7b8c 1ae8ee7c afb85506 f54eb373 8647eab9 b84a679c
1c431080 3b1bb125 8e4b0a1f 4e9ad80f dda6c43c 5d30502c
a3f7bcc2 760305ac de6f3aa0 15b9ef0f 66b0b685 ab65eb2e
f9392730 1ae8eebc afb855c6 4e9ad80f 3d9381c5 b84a679c
b53a9bb3 cf581a81 75f73abc f1a7b118 3df9df47 bda8cc9f
b0d83070 760305ac c353bed6 15b9ef4f 66b0b6c5 b84a679c
eb021c0d f5928acd 04e1aafd 70b6bb90 822e653a da65498d
fcfe9bbe 760305ac 8770259d 47e1bdfd 34e8e477 f46ccc53
83b520b2 db8b0808 aa63e63a 18bd9d4e ea2543e5 5adb178f
d2f71e60 f5928acc 04e1aafc 47e1bdfd b5796357 da65498d
75e5deee 847c6110 47e5a164 8f2a45d8 14a0726b ac8be9d0
030b7eb0 db8b0808 2af82838 18bd9d4d ea2543e6 da65498d
c7d8d2ba 47314c72 241c86ac a4a4ef7f fa9bcc6c 19a9b052
9571c306 db8b0808 b8a6c2d4 9fa1c3d6 6d391d7d 4c1ff439
ae0a720c 14bb0885 c1edd4e5 ec0c406d b233637c 8bd2c1d4
c0c7876d 47314c70 241c86ae 9fa1c3d6 c19ee0c5 19a9b052
442e937c 95fd4599 3e877eb5 2f925771 f0133754 61f620a2
3c71038a 14bb0885 7796c25b ec0c406f b233637e 19a9b052
e1df2ad5 e92017a8 2ab9d7d9 a1120348 93b6317b 0a8ade7b
5fcd1633 14bb0885 d722c8f3 db94c273 85abe162 7a15a5ea
4c08f311 a3911e6d 848a6351 2eaad609 720ad66a 34e6347f
f4bcc463 131be5d8 d08225af db94c273 8734c217 d16477ba
f4303447 58a855c3 3b859f1c 4afc42fd 0021dc7d 70f88221
55acc1dd 6a6ab7a8 a9f377df 3a84c501 6624c564 d16477ba
2c4a3d4e 8ffaaf7e cd9c1d94 85b8278e 0797dfb9 feb51be7
d4f9dc52 6a6ab7a8 280c0546 3781b748 6b21b72d 50316a31
0810f600 3e7e6130 c6bae77e 6fbb1a2c ed94e21f b512ef4b
7a7dad84 8ffaaf7a cd9c1d90 3781b748 b5ae4f7f feb51be7
3b7840eb 7592af0e bfb95fbd 9393bac8 2ad7fcd9 867a59ac
43b702ac 3e7e6130 7c18d3da 6fbb1a30 ed94e203 feb51be7
0a36e5a3 8bf137c9 e0543165 e01d382a 2fbff6e7 af39d51f
9af176e0 3e7e6130 55db679d f81020b8 7a3fd88b 27f36faa
6066c0b7 13379d3f 53b7c5c2 1f81ef36 d02321fa 84152770
123bcc55 8bf137ca e0543166 f81020b8 37b2ee75 af39d51f
9ed06853 5d70207d 6a7ee154 cbe77270 d23c207a 7aa38f9b
4b4a32d8 13379d3f 78929b93 1f81ef35 d02321f9 af39d51f
ee5b60b2 60f91118 cb832a3e fa3dba51 e759f8f6 1edf760c
0b7cee5e 13379d3f b84da617 ee2d8b58 218f4594 ef0f099b
cf726bf9 08079c25 e0fb0723 befd2900 2a5f483f 7a31ee96
d8dc697f d8372fa4 734d148e ee2d8b58 7a8fea69 3caf8eba
7ec598e0 3e9fda3f 553adc91 bd2dca0e 10474ca1 fcda5a40
beb04c18 25d7b4c3 8ead8fe9 8bd96635 1f7b0706 3caf8eba
32cfcfd4 13654bc1 7f34a2c9 8c6f4381 0e40bbb1 28a05205
7f98fe38 25d7b4c3 49865dc8 f41f6853 60bd0960 fd873c9b
5778303d eef29b33 4d7b9059 2f01befa 1da58ccc ea7a2974
315cc5b7 c3d985c5 af886ccf f41f6853 c6bb5a66 b3430714
8a859e5f 73a1bcea d8db87c1 82a86afc ae18f41c f26b5936
cbadc07c 7995503e 15c4b934 eaee6d18 d84a5f2c b3430714
340551c2 72443b3d 231d290c e4084040 cf5b5d7b b85cb625
e0a4f723 7995503e 28cc4207 d09d1fb9 e2392d8d 984a3043
4a09dd88 9256c127 ce3ecc87 e110c46d ca43d95e c36bb194
c0b27145 72443b45 231d2974 d09d1fb9 fbce0282 b85cb625
185ce1c0 decb52c2 f4f1bb0a 82e1bcf7 f5261239 913e8dc4
313eda39 9256c127 c30fd316 e110c475 ca43d946 b85cb625
eb100fec bc9ea4c9 03f9f56f 14770b14 41ec0bc0 cc9e423c
af089986 9256c127 2d319080 764b2961 5d183452 266af59b
f133e714 62d1f16b 80624c7e 0bc20804 5e5908d1 efeaadab
45fc2e21 bc9ea4c8 03f9f56e 764b2961 23d029b5 cc9e423c
4f9c8006 a0872384 e489f9a7 70bbdc2e e3ebeec0 5145caba
d2470883 62d1f16b ddb6a0cd 0bc20803 5e5908d6 cc9e423c
d129427e 4b0650d0 416caa0a 199da373 2452c34f 4ffc962e
0978a1d3 62d1f16b 68bb0bb3 99a119e0 cc3a1935 17a1eb6e
49b978d0 8360fb92 794bd559 f0cd81f0 cd02e1ce 3fbcca1f
5125dc93 4b0650d2 416caa08 99a119e0 a46e79dc 4ffc962e
8ab831d5 6f02b3fa d8295454 636c2607 4a1d3ea1 fcbd8304
39f924e1 8360fb92 890a0148 f0cd81f2 cd02e1cc 4ffc962e
1bed1c4d 44e67f5c 00e8a562 33907e2f ccc49a28 fa40f0f0
ffa5c7bb 8360fb92 c76e21b3 c7e84440 fa27247e 89a07575
6e540a05 ba06d2b5 28719453 6ade5e7f 690ae27c 76afc709
5e42e88d 49665770 0d688d50 c7e84440 c43cf85c 28475a43
03a401c9 b6690dd6 bc03f70d 67cf4a57 b5ffc7e4 eea37afd
c5402176 e80d3c40 ac03e660 3eea0ca7 3d3eb0ba 28475a43
85106c8e 044802b3 ce63f214 521f9a41 721018cd fe9d944e
43630bef e80d3c40 2226ccfb c3991cb2 c04da0af ae6470de
36e947bf bcc810b1 ded08be4 533dc5e5 db6ba8ef 4a4563df
5f5fc278 6c8eed39 a6a51d86 c3991cb2 4bcf71a4 b258b949
3b4def90 c084ee62 848a3446 6958de94 b100fb4c 2c3ba2b2
a52ef46f 7083359c baa8c523 ee07eea7 665183b5 b258b949
59e252f8 ac1698ce 8b5d76f1 ec7d8059 2f94501a cf196fb5
180efbef 7083359c 57c8dba2 6cf89033 e4aefd21 0f78b6c8
4d44f37c 6bb751b8 03f3ff73 b2d9064a 7130d608 10123041
d86f2292 ac1698cd 8b5d76f2 6cf89033 af114070 cf196fb5
a4705097 3ddb1868 6c820a5e b5051b93 23088d61 f92693ad
924fac88 6bb751b8 4cfcbf87 b2d90649 7130d60b cf196fb5
e8a01042 fd688247 2d4738f7 461cf917 1387f9c4 dd66ab46
2aabff13 6bb751b8 bb98eb0e 6dad0152 ae44d110 77fd3c2c
3602af69 2a9b3343 9fed99af 2f2f88cc 324bca61 28dbe5d2
1ec236a5 c531c421 151e7e95 6dad0152 70c943f9 4394f59a
2ff2ac40 07612ce6 202ac2db 0ac5c86d 993e3a6d 9ab12921
f6d770f9 90c97d8f 40e6c73b c599c376 d8fd81df 4394f59a
31131805 fbbba7f8 ccb566dc 159c1c53 9dca7142 1f3b89ae
1f30796f 90c97d8f a7c7bca8 9cb7100a 81d352a3 aa73fc0d
7139227d 3e1e7fc3 a60ea817 fee9d7cd ab1860f4 664f6f59
b00eddc9 c956f220 fe583306 9cb7100a c946a730 054d58ab
9b229c9c 40e9e82b 90c6529e 15a30cb8 67085c1e 9e6e5239
0001960f 24304ec0 133e8fe6 ecc0594c b931ee77 054d58ab
1d820e88 f27e3275 e70c91a2 e121d632 c51e4cd2 33fb1752
e6fdf5f8 24304ec0 3142ed07 b7f58b0c e2043c37 e3b13b4c
c6f590c5 42c80e6b 24e54a96 f4e8e505 d0d77ff5 84b5b878
36b7d9e6 f27e3265 e70c91b2 b7f58b0c 93ca11ec 33fb1752
312d8ae1 436a1055 178f3f14 5792a9df 73733505 736da2ac
71bb3fef 42c80e6b 57baadbc f4e8e515 d0d77fe5 33fb1752
5df45398 c03e8a1c 3fdffccf 81dcb930 206aaf92 828ef5fc
5c29c2f1 42c80e6b bd2978b9 e4a23b88 c09da178 1e69ea4d
ae94adfe 246395cc e7fbc34c 8b338b24 2a859d87 4645d5a9
c0cedd40 c03e8a1d 3fdffcce e4a23b88 45142d2a 828ef5fc
aee0fb0c 354cd7f2 f6c8d3c2 b1c5381a 035a60d3 46318358
6a5f8dab 246395cc db82e31f 8b338b23 2a859d80 828ef5fc
2ebd2c16 3d5ae0f4 1cb92238 3177a4a1 8bdac568 f2a6736d
4c4039a2 246395cc 05805702 3e2dbd7b 9f9babd8 a49141f7
7b7fcc07 8b70126c 5b661847 3103bbef 8baeda24 a0d8bacc
1a770b38 3d5ae0f2 1cb9223e 3e2dbd7b 8480dcb2 f2a6736d
9344dc20 3d49dcdd 45692697 6f86d40c 0301f830 48e3aaed
290105a6 8b70126c aa93d0a0 3103bbf1 8baeda3a f2a6736d
0c6cd763 07cd1398 c44917ad 198f28ed 2e854a15 5cf7be44
4fe1c219 8b70126c 48f4165e a49b3690 1e36575b 9446b4d3
94ee09c1 ac9b4d28 f330f0d4 0241b57b 11662662 ada3fc75
cadb3466 e3ea43bf 206e478c a49b3690 b7bca58e 117c42ac
d1f04ea4 51e57c04 7006bec9 13889507 1065a88c 6fdc0145
af500d4c 611fd198 a29bd5ab 87200fa6 94079cb9 117c42ac
30edf520 d34cab87 0a7e2a4c 90e9df57 15bdb25d ad89653a
99068fac 611fd198 b82d5057 b1b19f21 a2960c3e 272ac048
768bac45 59ab507d 6377822b 6d3d68b9 e86905b7 0f33b5c5
13a52ade d34cab83 0a7e2a48 b1b19f21 34e5f22b ad89653a
b4760bdf 7e68c490 871feba8 12b4fdae b8a51c8f cdce12a3
d4317cba 59ab507d 8099d1b6 6d3d68bd e86905b3 ad89653a
d94e6a93 9c037163 f2f768a3 2c420e1d ebee83e8 015f6865
3af2e4b1 59ab507d 375f49bc cde924a8 48bd49a6 434afd30
3ebabd4f 5a17dc99 c30ac857 6963e962 aecf6496 2b886373
78e771e4 9c037164 f2f768a4 cde924a8 0a45a95d 015f6865
2a054e9a 9bc1d7e1 370d9654 666a47ea 6f3cced6 3f379059
146db659 5a17dc99 34e3c559 6963e963 aecf6497 015f6865
3227c2d7 91bb1eda e99be46a 6a9716c3 95d8c6f0 e4907b53
1fbe96cd 5a17dc99 223726d7 a9123b7d 6ebeb689 0a8c48f3
d640f621 51cf743e 83bc7732 35f7b2ff d0a84164 7458a3e3
0f34451d 77cb420a 0febb846 a9123b7d 4c4dc818 1a069b23
146b6eb3 2b42f369 45b6eaab 58e3df4b d1be8dd9 10d9ba97
1eb44f05 8745943e ff656e72 98923165 7dcdc202 1a069b23
3a28ca31 273a0de3 c2d2e3b9 ff71d531 7a25b83c ba3fd1c9
837c5b17 8745943e 62ad7a67 840d8d60 61527e07 87ce8f30
5679f3d4 0b61466c 9d2f762b f912d2ba ce18b047 2fc1ea56
7bee7c40 d8f003d5 3d18ed8d 840d8d60 b307ef9e 7f5ca867
28d941e8 d3310f52 ab11f51f cd2d52f2 f49007b1 1194b45b
46115dd5 d07e1d0e 3596f356 b8a8aeeb 8fa2cc14 7f5ca867
999b80dd bd8b4708 97b1ae28 d4bfab65 f0a82664 42dbdaaf
fae3565d d07e1d0e fa44f4d6 32cd46ad 05c72452 c3aea3e7
be492eef 5e6566e6 30f0c7cf c5524904 80963c53 759bd6e6
080cea37 df382fbe f502c66e 32cd46ad 77093302 31411f8d
c7bb2918 83beff9b 665611cb aaaec656 d6160f88 ecef2405
1a151298 4ccaab64 66f042b4 24d35e08 61172baf 31411f8d
87e81d19 136f55c8 7086e3e1 39153827 357c182b 2d7528f3
41bbe6f1 4ccaab64 2f231d4c b9cc0f51 fc087af6 6aefebe5
1902cc3e d5f492d7 48c9afd7 0e426630 022b463d 66c8afca
062125e7 136f55c9 7086e3e0 b9cc0f51 b5a52f5d 2d7528f3
48d20c1c 4d33f982 20bf04a2 f88b77be 7b23f106 37186feb
52bf4b07 d5f492d7 b61d24fe 0e426631 022b463c 2d7528f3
2acb8a59 426142d4 d9c85cb3 c7ace6df bf7936d3 b04c1b31
1afef2d9 d5f492d7 4e5d8cb2 acefb96d a0869960 6534912f
026f8dba 8d78ccd8 b58c85f5 7d1e1dc2 05cbcdcc 4d9745f7
cf8678c7 426142d6 d9c85cb1 acefb96d d43a6961 b04c1b31
5b7cbbe6 4cb0f4c6 b351821b f25adb0f ca572cf3 148473a5
ffb4d37c 8d78ccd8 16d1d2bf 7d1e1dc4 05cbcdca b04c1b31
43312552 38e297ca 556e6ae7 47e569c1 63daf33e 8c1570a8
cdd731a0 8d78ccd8 e0f431fa c8b9dc13 b06c0c1d 822ff9ec
2379bac1 5292d800 a3319cec bb013c79 8f0b58fc 61399272
92db82e5 48ad6154 25219c77 c8b9dc13 fcb3b899 dd234aa9
c89a70ee d6c19c2a 4d68824c f0ca707a 97e13ede 0b3f6bed
1e8651ab a3a0b211 ce2c4f32 3c662ec9 086c4a42 dd234aa9
1ecd4876 82bde095 6ff935a6 8adad22a 99fd4139 3b3d13ac
9f7e39c3 a3a0b211 4ee4672e 288f9156 1c85f5dd 5cdb22c5
160a1a25 6e07c111 1db37337 2316c63c 031944a4 a82655cd
e21363e4 8fa5d01a 62e10521 288f9156 088013c2 21b678e2
dd5284b6 7346caeb 1eca37cc f56d3843 cbb81f07 a1fea0ca
5d1a5c9a 54812637 b9c5f30c e1969ac8 c1991858 21b678e2
4eb8b5a1 98924c29 12c3b158 6a1cc13a 0e3c69b9 f9306305
c26f856e 54812637 ded0db47 2f400f0f 0f4f8d9f bec3a117
5818796f d2ff0e16 9e65c15c 95f53848 f1d590ca bb7934de
859c477c 98924c2a 12c3b15b 2f400f0f 4b60a78c f9306305
7a7802da dfa0aa9d f59a434a dce09ea9 ac22dba0 99194f6c
1a512eb4 d2ff0e16 58aef367 95f53847 f1d590c5 f9306305
e3da8920 7b4785a1 cc6c6215 50d44694 5cbd669f 80b75a7e
c56b00f5 d2ff0e16 65d4e9a4 d0c7c0e9 b4e7686b 260a4d46
350abbfb d4ef1eab 04785db7 6d30d724 66537cc5 4ac0d80b
d234312c 7a42117b cd69f6cb d0c7c0e9 dba46b0e 31557c9f
d1dff5e1 e86a071b 623bfa68 88385217 e678203b 047b9260
e4f11b1c 858d40d4 32a6a764 c30adab9 c869715c 31557c9f
e35ae82f 9a391781 ca656021 28c7fd42 08c87fd1 84ce1b47
1f226b10 858d40d4 d5d13777 96d7715c 9db4dab9 ca860c92
84bf4119 33c687c1 7227c970 3ddf2e55 c28bca4f f8136563
d32ae9d6 797e7908 29220eaa 96d7715c 69839545 068e8e54
75a63377 6992e5c8 deb90279 06624049 b5028f5f 6d5dfe64
1e754346 b586faca e5da8d68 da2ed6ec 257a32f4 068e8e54
1c3fdb30 d407bd1f 49cb20e0 de799a47 c3ac3cca ba654847
4b057ee3 b586faca 284a67d5 511ad402 ae4e301a 53feb3d1
f9577584 1a3f4209 d16ae274 8d5e19a4 70f88e65 ac686730
6624aec0 b3d8add3 2e1430ec 511ad402 acbc4323 7edf63f2
16d5aaea bedd9343 ee81e4c1 e8ed9ed9 35275249 316f3e15
5965f72d deb95db4 4375c08b 5fd99baf a27f0cae 7edf63f2
f7184c47 da4c6ae9 cdad2993 69624563 905be154 be7dfc26
df4e9ef0 deb95db4 c9581ecf 47b729e0 ba11bee1 f8f40a2e
bbc2082f 9fd65ce2 236d000c f896b2b8 01af168e 6358159a
99c768f8 da4c6aea cdad2990 47b729e0 be8e8dd7 be7dfc26
d0b005eb 982e9414 f9a3cba4 d37b8264 22ea590c 082a185d
66e7e193 9fd65ce2 88371f98 f896b2b7 01af1681 be7dfc26
d23e3880 4de2d73d 12b07c97 4550411c e2165f93 3c383c1a
dd7579e3 9fd65ce2 c084f74a 2fe45a39 d6ddfe0f 05ef6454
b69f398e 842baefd 12b28842 1d2bcb21 ba6dd5ac 737eb72f
e4a221ad 4de2d73b 12b07c91 2fe45a39 88a244b6 3c383c1a
da0c5eb4 df84f177 9c8cced6 44585810 46c73917 1fedd013
f9d9b2bb 842baefd db790557 1d2bcb23 ba6dd5ae 3c383c1a
c97b8227 0dc65f0f 6c4b00ba 04db71ab 343bbf35 c0818eda
fb937e82 842baefd e5a6f14f c0c2f34e 6784edc3 3e72f022
47b41fb0 767f1887 a9c17d4c e4ce6ebe f34487dc ae5915bf
f5c98107 f47079d5 95fd2666 c0c2f34e d7481a2b 30280fa7
cfd3a7b9 c23d5d0f 9d6ff6a4 3989389b ca2b9580 2ded5ba0
d216f3bf e6259958 87a8c6eb dd2060c6 caaa89a2 30280fa7
291297b7 904d1d41 ad578647 38685c5a f9da310b af05d4b2
e98bb6ea e6259958 db3f025a 94901571 831afc15 0bb54af6
d03047a4 339da701 6f0d606c d09d600e 112f0d5b ce7c0119
4d3b28ae 904d1d45 ad578643 94901571 55227820 af05d4b2
2173951c aec3d011 63974a14 930ead88 afd63bed 3f3fd3ad
b149920f 339da701 0e873c07 d09d6012 112f0d47 af05d4b2
c5029d80 38c8c197 1581c44f c64cef2c 009168c6 3f00f361
81787939 339da701 1ed4a2d8 ea96c707 2b24aa52 9f343f85
fde1b8a5 d8957574 f8bffe29 984e408d 5e93c766 31e278e6
214cb5dd 38c8c196 1581c44e ea96c707 2c4b40ed 3f00f361
85439514 c80e1d91 ff867a41 ab372d85 1d611d8d 49405558
f3033322 d8957574 f5dc70ac 984e408e 5e93c765 3f00f361
5e534a52 114458e8 524c6743 37e3edff c86f86a2 e73e6ec4
98c3ed6f d8957574 9b9d4ad1 4a7a89aa 8ca70e41 54c02d2e
9d8bbeba 7822562e 7efe1496 cc29d41f 1fc5f30a d038b40e
c06770bc e5a414a4 a6ac2b03 4a7a89aa 9996aeb1 0c64b0fd
c7c69a26 90aed0d7 bde7d50d fdae6d53 3afc32d2 f6a5772e
3d075df7 9d48986f de40a7c8 afdab673 7c36916a 0c64b0fd
631477ef 8b0edead 4b4ecbb8 f82e9afb 399cf7ad 322b4ec1
b8ff6b67 9d48986f 5d088d79 d8534ed8 0bbf69c1 899c866c
456122d6 a2cc0847 5ef53d03 c53ba88b f5db6610 5b2d6469
2e57a937 fa3d3fee 3a7d2af9 d8534ed8 e8b38040 1f34443c
481164c2 b6e5bd74 f5ed82d2 6863d371 3f925d3e a1fc6eca
f6d94e35 8fd4fdbe 4f94e8a9 90dc6bd6 a03ca54f 1f34443c
23d5ab18 7b6a329d 7e0fad3f fd831594 e1f516e4 80a1711c
8db4c4ce 8fd4fdbe 8ab16214 43fb4591 731b8b08 6459cecf
90f295be 97b1d4f2 155ca17a c8ea0e54 d49c0d2c fe294702
694c7b1d 7b6a3295 7e0fad37 43fb4591 5f8d46e1 80a1711c
89566820 2bab9c68 47fa755a e0db7834 50b4b2da e78dbaa4
ee7aa3a0 97b1d4f2 92d44b50 c8ea0e4c d49c0d34 80a1711c
6f544be0 9794885c 35875d6b 26fe2eed 3aa6980c 9cb51785
7394740d 97b1d4f2 35a201c4 a1f8a545 bd8ea63d 1d4fa6b0
c15d6674 16f9f92e c4619bfa 3f8195df 23d9233f cd39a522
f26ec538 9794885b 35875d6c a1f8a545 bda013a4 9cb51785
34aaf852 dc4b2a07 e267d2bf f7f36025 165a879c 38ce3b07
90d1d4d3 16f9f92e b4ea2c19 3f8195de 23d9233e 9cb51785
34b9661a bded246e 7e6b0690 f70ccb35 34472917 c1443a97
b243a61e 16f9f92e d57fdbd2 0d7431fc 112c871c be27654a
e0bdd4c0 c109f9b9 f21354fa d1747ec6 123f9ce6 30d8c4dc
cd20f9c3 bded2470 7e6b068e 0d7431fc ce3fd3de c1443a97
3f54278b a8ead069 5999f067 0fb47632 a498cee2 ef3137a9
11212a8b c109f9b9 028fdb47 d1747ec4 123f9ce4 c1443a97
b884f17e 70c7714d 4eeb89c8 e530f2a9 9639ab1c 4126a4a7
eb8e004e c109f9b9 ff250103 bbf3aced 78b84ecd 3beb1053
df1ca3a2 ac73eb4e 38dedb54 f420f4a3 5d5acb8f d78ef470
516bad0c a73856ac 9914ae17 bbf3aced 128993fe 810ebd11
860eeffb 1a436a62 d9c5489d 81787755 5619d159 0667e756
0167b5bd ec5c0368 d270fbd3 6bf7a57c c28d9a6e 810ebd11
e407cf84 9f81c4ab 52d55e9a b3db05c7 ef7b059e db1f5174
905f56cb ec5c0368 21089965 f52b6f7f 5c51506d 10365e63
38254bb0 cff5d8d7 9f2ff9c9 f98b1d32 3ba03ca6 bcedfdef
b9017e72 050ce5fe c8587ff7 f52b6f7f 37004ed7 396876da
d6b29772 7b08a50a 45245db5 6880dfb6 6674178f aa40d594
459a3438 2e3efe7d e36a6474 f1b4a9b9 339f8815 396876da
18d5876f 324fa785 2c0bbfb2 bbb5de66 7d8e14d3 3545fc3e
f6a5b7e4 2e3efe7d 307ae64b 0b17a5f8 c93c8454 8a57f507
7b470cf4 dd3daebb 78acf258 55f9af32 93c26586 bc9340ea
49b7bedd 324fa786 2c0bbfb1 0b17a5f8 cd2c6f4d 3545fc3e
dbb3cfb2 6223ddd7 67464272 21e287a9 6ac37e79 1c6783ab
f291b020 dd3daebb c379b68c 55f9af33 93c26587 3545fc3e
b16114af 335a9aeb 139c4c62 bcd6970b a08e21ed 1b6818d7
f01cf68a dd3daebb fdfb7834 daa1d6af 1c9a1c1b 37c8ba96
0b1266e8 fa2dada5 996ddb04 1f324de3 e0be26b4 0776a5ba
032949ba 168e4f58 364899d5 daa1d6af 252dbdfe c4fd05a6
8fc94dea 830bd371 9d4fcb44 dbd86dcf 050dc997 c27a4750
894e0f1e a3c29a6c 83044ce1 6080954b 9f0cfe18 c4fd05a6
3f051eaf 666150c7 51e9371a 7bccc73a b9e7e695 a39c44ae
960d9c4e a3c29a6c 944afdb2 2ce677f2 d36a1ca1 dbbe96f7
117e45b1 3a6f5cef 7e41e52f 5c25b018 927e3006 6d8c0751
2d56bfc9 7291af36 4519c8e9 2ce677f2 e2bdf7ef 60e5b570
fe13a8de c138aa58 e1fe7cd4 c7051755 50de4b92 4a24241c
d4d239b3 f7b8cdad c030aa72 936af9fc 5d3179e0 60e5b570
5efe9821 7f4f048c 4b40cd6a 091d835d 5cec3456 024e616b
e95a9bb4 f7b8cdad c3b7047b 60a416e6 aeff96fa 5d6d1767
fd4178d9 d3fef60c 4f3951d3 b1b95887 b4790600 f80db65d
3b625497 2f1dac48 1b12658e 60a416e6 65644851 8f55d844
b17c8012 02ed8f66 3565e8a9 02e66368 a541e380 92ce763d
ace72e7b 61066d25 5509a4e3 d01f8052 d5dfdef5 8f55d844
6c8d6cfb 75a3af89 9f222bbb 6e2241e4 747fe0ee 0902370f
6675648f 61066d25 8b87e916 2c45dc2e 29858289 45c792b1
857ed2c0 38de53e8 cd81b17b 9f312da1 856c8caa 13e09570
2ab0c131 75a3af88 9f222bba 2c45dc2e 36187d24 0902370f
515239cc 97784eed 3e33854e 1d766ef3 6581f2e3 c7cc7e7f
9f9c70bf 38de53e8 d25fd7da 9f312da0 856c8cab 0902370f
73d9a01a d502d27f aa4a9c48 4f7b7fb1 f9f96011 b06675f6
0b5746a0 38de53e8 47961ddd 2259f177 3804507c 9dc90112
fdcdfd04 e7a04761 d86177d4 18ce4f37 ae4c5095 70df5874
26f83244 d502d27d aa4a9c4a 2259f177 94dbeed7 b06675f6
4dc5b8e2 5ed6d2b4 d16e2763 cb1c11bc e6a4bb49 c0d71d94
3d74d086 e7a04761 98e80956 18ce4f35 ae4c5097 b06675f6
59d6106d ab830024 02c8cb82 8eb703d5 f4d3dbb3 5e08ccf8
577b5611 e7a04761 4eeb8cc0 13eaccb1 a568d313 da69f360
c76af4df d08ccffa f3e9c2ad 594f3aee 4280f446 151de772
161600ca 4cedf66e e5a63dce 13eaccb1 0825021e 9b04a5bb
33e2ae09 f520558c 8a681bba ce9f301e cdf84b6f 71012850
d9e723e3 0d88a8c9 a4c36369 c9bbad98 d2746336 9b04a5bb
0d8fd499 8e3b31ac 6a297d69 f9ee75db 656c2256 3136eb50
9728a080 0d88a8c9 e99ae408 0018bc6e 1bd772c0 d5cb26dc
ba64a5c0 e9a6f614 718c2368 1c6107dd 80e35054 e54f7407
73d56d0c 8e3b31a8 6a297d6d 0018bc6e 9c9aebe3 3136eb50
f19a2fe5 feaf2c68 9f2273c7 5a0d3689 eb87bb54 aeb1fe3e
6e1d3a97 e9a6f614 0db4bad1 1c6107d9 80e35050 3136eb50
e4d3f545 e75973fb d1b1fff1 1f6b08f7 855fdd86 3a7554e9
db26fb50 e9a6f614 df4e7a1f 9ff03911 03726e98 840d2a96
42257a0c 9dc19e4f a64a9cc0 bdf718ac 27c3cddc 3f17cb6e
655e852f e75973fc d1b1fff6 9ff03911 05c4ec60 3a7554e9
dc6bd483 709ba15c ed573c7c b551b84d d85f6030 a15965fe
4747e58b 9dc19e4f ab291245 bdf718ad 27c3cddd 3a7554e9
1e468d47 fcc66d05 737e98c8 661c8f84 9f252bac 3655ae79
ee770fd2 9dc19e4f 12796b9c bb3c1da6 2108c8d6 9345beb2
8f18b44a 2dc06440 45e843a2 16a389ed 91802279 5782a9e3
0221c6b2 8ab07469 050881b8 bb3c1da6 3c1fb62c 7f1377d2
fd42aecb 5fafc667 69474a6f 1bc6080b 6b934c6d 26430e0b
a412d710 767e2d89 f9c6d858 190b0d08 9e28a680 7f1377d2
07d76ba3 8bdcd98a f27edff1 a26ae4c8 3ee8b342 c6c6a506
b3fd28ba 767e2d89 0fdc2bf1 bc5ab6e6 3b791d6e 68fc8879
0228e8ec c78976ee 6fcf4139 4084e7e7 3ae03f84 5d033929
f55ea708 69bf5a61 101d5c18 bc5ab6e6 c63e6e86 2e5f07cb
9602e489 8c8c819f 0334744f 10807ff0 c74fffbd 4475f723
fc281460 2f21d9b3 5683dfca b3d029ce c9b4f1af 2e5f07cb
7e051040 e59dcfdb 559a8e7a 536d037f 638dcdfe 0efb70c6
b6b350a8 2f21d9b3 9f26980a b4e5b69c ce816efd 64c4430b
5620a473 cf72b5c0 25796cca cc5bad0a bc252b91 bfcdae6a
57be04b2 253b87d5 953cc664 b4e5b69c c49b301f 85c91711
c393252a 6fec70a0 164e76d1 6e4a1516 f4608e56 4f63dbd9
0939e9ea 46405beb f6471a5a 6f5fa1f4 1f21277f 85c91711
ee19d9da faff1813 8da2c101 26b5c9cf 03888b7d 88e2a25f
c1ef5089 46405beb 311d82f8 4cab4d44 3cd5cbcf 4d1fae73
8d8714bc 36c20c00 4cfc5b97 c5fe82a3 e0c3c010 8bc320e4
04125ca5 faff1812 8da2c100 4cab4d44 69960ff6 88e2a25f
9ca27ea6 0bf20223 82938392 0c42a525 f62f9df3 9ae64afd
8ea69607 36c20c00 419fd512 c5fe82a2 e0c3c011 88e2a25f
fe2f92cd 4bad7dd3 a044cc06 37257931 0d0dcdb5 14bdec49
fb2a4f7e 36c20c00 dd2bbdd7 52d72f07 77ea6db4 fd6e7b24
865abfb8 62fceefa 6fb2f8fe fd0bea6f c7235ee9 36225078
12f9d813 4bad7dd1 a044cc04 52d72f07 68ff9b83 14bdec49
a32d517c e46b3226 0eeab61a b90bd5be 029d220c 1355beb2
a4c50389 62fceefa 89155f2f fd0bea6d c7235eeb 14bdec49
9a52388c 2e94991d a7f518a1 84f41980 81344728 e4a7903a
024d53e6 62fceefa eb9d6f49 b677608b 8c5fd40d b235bc27
294d6d36 0f1faf6f 09bf8868 29b166fc 9a68c60d 0aff9b07
3db81a73 dcaddb72 55cc5ac0 b677608b 05aec075 8dc0f5b2
bf21fc1a f199f3d5 1a704201 9bfbd47c 76c1aba9 f04925d5
c2a82c7c b83914ff 3158954d 55674a98 e6beea67 8dc0f5b2
af2ef9e4 202f42a6 be69ce54 d2764d1d c9b983bf 8fff670d
edced934 b83914ff 267f9801 010d87fe b2d42701 a2a600fe
962f21e1 fc1e1bf1 c74646f0 f4883480 feed7556 d4cca7b1
78d20e60 0ec4b5da 90823920 010d87fe 0b68c624 37bad7aa
548f917f 688bdcd1 e1ea5d67 7c58cddf b34f5ffe 22d5cc6a
41e08abb a3d98c8e 3d9f0074 27ff0b45 2d9a4a9b 37bad7aa
af2c5acd 2e98cdec 5d08eb58 0538bc90 901c3fab f273d172
7b5e2c75 a3d98c8e d049aa3b 1e338de1 1456cc3f 0d047165
483e8695 14082df8 cd19c3ed c7a44f16 5280cc2c 57f598d3
84298c62 2e98cdeb 5d08eb5f 1e338de1 8b170eda f273d172
3121f234 adfa4b88 1dfd0a3e 0239c13a 2d2f61f0 2eeaec75
edb8cf34 14082df8 67980b4c c7a44f17 5280cc2d f273d172
88f286e2 a420ed71 2a48d704 46d8e7d4 63e5a561 9fed03c2
1280fb75 14082df8 9a60178b 4f8480f8 daa003c2 0d4be531
123b968d e35436c3 adc64681 35fd9712 e432fa64 147fa2d1
4b9e7344 50b3182e dedb225f 4f8480f8 9e4bed88 54556d00
00ca7c1b a54b7558 d6db53ee e1905629 3ece14e0 397d5943
6de2485a 97bca001 19d49a70 6970880e b8bfe57c 54556d00
20c2aaa8 d052746b 32a0d50a 023beafc 085eab21 7c66ec11
9168f6aa 97bca001 754e0163 df4ec99e 0e81a4ec a8dfd3f1
5e6e1276 db8da55c 2f029ada 1bf20155 59eb5bf9 28344f65
2f209419 08068d3e eaf42c5d df4ec99e 9d579331 1697b142
90c1a4dc e8c86782 66a05df2 82865146 37a506e5 c20d4a4e
445b5fd1 75be6a8d 974ccbee f86492d6 ba7dc878 1697b142
269fa511 c39529d0 03209dd6 d99b15f3 566b0f82 36c1aaeb
a6962a76 75be6a8d b50bde0b 1c09f40c 5e10aea2 f45ac465
71fe20d1 05fc11d6 ac6902d8 379c2e9b b86c346a 1fa109f3
640d44f8 c3952a50 03209e56 1c09f40c 93f9ee7d 36c1aaeb
7236c5ec 9da95401 3bf4a2e8 2de6f2c7 0a7bafdb 1c69ed4e
589e83c9 05fc11d6 c549a5d0 379c2f1b b86c35ea 36c1aaeb
9a527287 2fbb6e7f 21ceeedb 80464dd2 39e93a49 fb9e9ce7
eade5ea9 05fc11d6 0b899173 8cd88895 03289264 8481778a
d2114056 a6d893dd 7ed48fbf 359dd866 8c32affc c53538a5
95c1b5c4 2fbb6e80 21ceee24 8cd88895 3577ff0e fb9e9ce7
8468595b 9cfc05c2 3adf00ab e164d2df 4eb63ba0 934c21ab
ecbae414 a6d893dd a8ad1379 359dd865 8c32afff fb9e9ce7
e4c32edd e32d62b2 f00d1244 4f052d72 b9016b03 48e9ce1d
176df5c6 a6d893dd b5f8e329 b9fec5a3 0051b239 00498d37
dce55f15 2bcda39a 63a4d981 45b1d507 b3b59374 7e32d742
5fcdb6ec e32d62b4 f00d1242 b9fec5a3 4ffa83d2 48e9ce1d
6711fc5a ccd32073 432e3695 eceeeb97 7be728db c5c6740b
ea3e464a 2bcda39a 38edd36c 45b1d509 b3b5937a 48e9ce1d
739e0e2b fc47875e 5a648232 ad8816ac 6bf63c94 90d9b296
793beac4 2bcda39a 8deea6f1 6d17e245 9b13a436 dbec6292
b0e3a31f d0945395 43d039df 3888b703 dd551168 deabfe0a
535d117c 1ba70393 bd8406f9 6d17e245 88ca4429 f18a992a
7cf998d5 7e0190a6 6d21e051 c54be91f f7d215f9 5e8804b8
d3fb0546 31453a2d 97663f47 ecb1f65b 096c5036 f18a992a
f381fd7d f3592de7 a9c2fc95 557e6bb2 f28ff191 4d4d3ada
8472f95e 31453a2d 6bdeeb5b b9234073 5cfee61e a6036536
01cadf0e 9aa3038f 6d98a86d 7ed96e53 d928f474 e9ed154a
6f3ca6b2 f3592de3 a9c2fc91 b9234073 1ed2da50 4d4d3ada
492568d7 09ddb23e a78c8b0d 03059959 1429d18f a102a29f
a56af09e 9aa3038f c038d2fd 7ed96e4f d928f468 4d4d3ada
b6facd12 a2825f17 eeb4a14a 601a84ea cfca7144 e386aa34
d6cfad81 9aa3038f d695fdd3 f2c5e809 5534722e 3ee867c4
7c827925 4720a186 8a217ec2 23721003 8ca2e5ac 64518b1b
0ba16071 a2825f16 eeb4a14b f2c5e809 5d151da7 e386aa34
ef2b7ed2 068441c5 662ca0c8 72d9db14 1ded4efa f7f88ce3
fb55580a 4720a186 0b165fdb 23721002 8ca2e5ad e386aa34
2fc5ae56 047b3cea 8b862a06 41ba2cfc 2c91bde9 d86767e0
3f9f3085 4720a186 c8ddb764 62eb5582 cd3ba02d 274cc2b9
de2b38cd 5f47c1eb 372a0538 2f736f7f 39ae1f88 3b7734f6
7bd5753f ae2d1cd0 21d00a30 62eb5582 7436257b 63068703
652be481 b9a6150d f590eb52 8509a7c5 6395032f 1f406e80
196d0d00 e9e6e11e 661bf7fe c482ed49 d25f9db2 63068703
2173bcc4 7afb0a46 0ac0c105 0ebecace a94f50ea 62ed34ab
392eb161 e9e6e11e 99dd2a5e 458bcc61 5356bc9a 43453b63
6d572c25 b92f93a5 2395aa9c b3480ca4 75362699 8570e663
2099f269 99879a61 e9bc5120 458bcc61 83f5e65f 5af2786b
14fb991e bfc80a55 30351cb4 b85fc058 6d4e9d73 7ab3c40c
34ba2578 b134d769 c10f1c28 39689f72 ff16b54d 5af2786b
9011fe94 9f6cafae 38f3215e 0e6b37f9 badd3575 d4b25d00
fc1e6139 b134d769 16ab5991 380ff180 fe71dbbf 92563c22
0f9c1a47 e1c8d094 a30640b3 2a44d8dd 9ef2da59 6fe15e37
bafa001b 9f6cafb6 38f32146 380ff180 8cb9f30c d4b25d00
d5f5b4c3 db4e3821 53381ab2 3925e95f 971e834e b588f0ab
b4cf1970 e1c8d094 46575e64 2a44d8d5 9ef2da51 d4b25d00
45815e45 6ff49177 6ad9391f b9c4b36b fb25700d 8184a170
523d3208 e1c8d094 e4e578fd 563bf8a7 e28dfa23 32407679
0e72c45e bf38bc6f 2a8614be 122619be 50c7dad9 1215a1d9
e1f9e501 6ff49176 6ad9391e 563bf8a7 14da3bc1 8184a170
82f14821 2bac87bb 0993b327 36281ac1 997d9472 9e962da5
9de3c4f7 bf38bc6f ba151407 122619bd 50c7dada 8184a170
965da0f1 c93b6f96 9f3a1c71 5a9eabf7 167add7b d979d1a0
ce3f0968 bf38bc6f e939cf8a 27e1a02b 6500634c d2586ced
8857e470 d05cd447 32a10fc7 f99c17ed b5786163 66763939
c51eb425 c93b6f94 9f3a1c73 27e1a02b 6b05d6a7 d979d1a0
18f3b779 4dae0bd4 3ef407a7 60aa9b94 aa9f358f f6d26a2e
37580ce9 d05cd447 865da7a0 f99c17ef b5786161 d979d1a0
ef4f68e5 48abecac 6a94d82d b0643c0a 7557b2fe 79ecee28
4b964f1f d05cd447 f263e0d9 07e29285 4b06e40b a5b79257
d7c58a60 a54236d6 79a98960 49c9e972 045d945d e7ccbe56
c301ee77 d10cdae9 f333ee76 07e29285 4a76efb5 2d20333f
3cd53224 697d1d43 3f7c6ea5 67b17b49 392d65ea 60e27287
7117739d 58757bd1 7a4a4f4e 75f7f5df 386388ee 2d20333f
68367ed5 b269f263 1c38cb44 1f467f72 b8ce8ccd 6c5eceb4
e505777d 58757bd1 f62442ea 77150fb7 3a817286 b93237db
7ebdb41c 39fe19c8 66b1f722 1f40358f 64b0b1b4 7adfd266
95d65c1d 86d182c7 2880bbf8 77150fb7 0ce58b90 c9e11cbb
37ca4b52 d19264be f3ad5025 23c6087e 95c4893c 3dcf1813
c3e44ffe 9780679f 39d15ea0 24e32256 5f13a675 c9e11cbb
0463f922 b15f8df7 2ac2bc03 c7afb340 5260193a 36f0b0be
bd284635 9780679f 0c1d566a 9f21bce8 e4d138cb b72d1571
ef889ee2 31232945 64441c79 b44e9489 21813ef2 f0bab406
3cf5e3fa b15f8df6 2ac2bc02 9f21bce8 0aee1692 36f0b0be
5dc12721 b5618b98 12fe056f e8f9bf48 f2f7b386 42f30dc2
29c29a5a 31232945 aabe18b1 b44e9488 21813ef3 36f0b0be
54125261 de354229 ec23d338 62106a32 20f1a953 ae6d8a19
d2582507 31232945 0335b852 86c2bca0 130d16db cd6a0fe1
548e142b e9828a27 e9fdaa93 83f7f73b eedc6624 48e971a8
65b2c8ef 087f0fe3 3a699ef6 86c2bca0 ebe92db9 7a80e209
015b8ed9 da55a48f 41c89579 7a7875d9 eb932642 e40782ec
9fdcee3e b595e20f 8783731a 4cec9df1 21c70cea 7a80e209
3788e987 c45ad515 a4f23415 a5b616de de4692fe 7c38c47c
4c4f3dc1 b595e20f d53d030c 3f61f519 524a6402 a91331f7
864f7749 c719a133 4a91b31f 640b3c29 cf82819e 8c4a240e
ba36fed2 f3f40ea8 935cefaa 3f61f519 94e848ad 5f6af2e4
d6f2c05b 456b607d 777df169 4dbaf466 0b13bafd 30d8a2f7
b9409049 aa4bcf97 cae32e95 40304b90 ebb9f625 5f6af2e4
3c9d3a78 cdfa6c89 18558371 71105d5f be2807c8 f5b1ca8d
32586377 aa4bcf97 7fe4207f 8e0dcf27 25847292 d47201ca
f6550ddc ef3a351c 24f7c4a3 c57e2e02 0a467485 ebcfcc54
139ba830 cdfa6c79 18558381 8e0dcf27 413595b0 f5b1ca8d
498cc841 d2d00e1a e6c4216e 51e74f53 e3297cd6 541609f9
e82b0b05 ef3a351c 3a95dae4 c57e2df2 0a467775 f5b1ca8d
4df37c86 e63a1705 0d4bed9b f6563f91 306e03e0 2546dcce
16e914bd ef3a351c 044bcf83 ab3b60d2 64033a55 0b73d534
64c2c229 000d1ea0 4f828bdd 7b4754cc bd7f68bc 896477ad
38dc1d47 e63a1706 0d4bed98 ab3b60d2 6d035ca3 2546dcce
c61512ae 60eb0781 9135c379 75c90dda 52df288b 2bb3a729
c8e0694a 000d1ea0 eb7ce43e 7b4754cd bd7f68bd 2546dcce
74d7093c cbcb7399 488c33b4 5579beec c48f2f8b cf0d5490
50ba97d9 000d1ea0 834a5e8f 874616c6 417e2ab6 bd1c225f
66846b58 ddbca5c8 4ac8ef92 1f5d9727 8eab0642 e33a5ebd
22abe116 cbcb7397 488c33ba 874616c6 16b087a1 cf0d5490
775bd3a6 b4509045 134f41a1 d4232f15 bca954f7 f2e5e645
4ab36175 ddbca5c8 5efbe5e5 1f5d9725 8eab0640 cf0d5490
e41d4965 8534a481 74ea607c c631c026 ff5f5039 da122eb6
b81aecb9 ddbca5c8 2c626132 0de08e37 9c161f52 3da4d95d
db4144a6 5b7650d5 0703cc02 4d09d1d9 3e4b36c5 1fa63d21
30b150a1 bf08fb7e 4ed63f85 0de08e37 7ea2692c b50f6545
1de24dcb 415209e9 c21549c5 f5350efc 8b146763 4677e077
ee9ac8f8 36738764 c7ad439f e3b80610 90fae10a b50f6545
d9a3b722 06c402ef 331ec2ac 5f1cc81b 1c8faaba 3eaa5e0b
a29ecd28 36738764 03a94723 d3a88cab a0ea6bb1 f90b6091
04717fa2 4c63006d 2e34e53c e769dbb1 a4fab914 6b278319
653ff3b2 06c402eb 331ec2a8 d3a88cab 903bee0a 3eaa5e0b
bf86cdc1 d920bbeb 11202891 9ad7be50 4a86a073 d0d03146
51fca2b0 4c63006d 79b9c02e e769dbad a4fab908 3eaa5e0b
82bb4d13 83709b0c 1f686143 692791ab 13876ce8 5b45f0bf
cbbe64ac 4c63006d d07bfa23 fe7fd0b9 bdecb21c a4e89816
f35e6555 39cdf3b2 62d27810 783bbb45 029b4607 1a4c8212
34130c05 83709b0b 1f686144 fe7fd0b9 84df2dfa 5b45f0bf
ee3fbab3 16227e1e 5e221944 8c80e596 da756238 072d5dcb
b25717f8 39cdf3b2 a5d509fd 783bbb46 029b4604 5b45f0bf
f3aecb2b 689de093 cf82314d b9b64b82 10c6a1a3 98ff997b
8f5e2f15 39cdf3b2 9ed22252 3777e077 4dd71d35 664cc850
ba102226 c63ff224 f6f5f680 ef2c4424 3b4c6ea3 1ad768d2
783fd155 938d2129 3492f0cb 3777e077 e317cace 912d3610
82cb1a1a cb714164 5769bb29 94161862 7575c554 86265e79
95c07271 be6d8ee9 19725f0b 53523d93 87321728 912d3610
8c1be88f 2da0c6d5 0e6049ae cd5a89f5 8ec9eb53 2c902d43
0920b7c6 be6d8ee9 9dad0191 31bc0889 e5dc2232 0dcdf3a6
764bd675 423e2de2 72d7ecf1 9c25c0e1 a54b50fb 191d2acc
0f1ebd52 237bf447 00bb7b3e 31bc0889 08d29890 0bf3f932
4bb4421b 6b9e7efd cc81af1e 134c72b2 902767f6 8f533b9b
cf1480b3 21a1f9d1 026176a8 f1b63daa c8d8adb2 0bf3f932
9fed2168 c0b9bf4a 48cf9df1 b4639353 6ce5c6ca 4457cf34
b44ef5b5 21a1f9d1 a9d7db52 9d901e80 a4fe8e98 70a98c3c
ab6abc3a e21f9a69 ef176263 eb88d432 cdb539c2 b98a9309
f010c403 0e715781 8607750a 9d901e80 bbadf348 34f7bd8a
3f47049a 4fc4d240 6c045d31 1bd3f31b b890c45a d0422a68
dbf29370 d2bf88bf 5ac9aa34 c7add3f1 e1903e31 34f7bd8a
07221ca8 056fd0b7 369d646f b8975daa e0796813 fd621aaa
0f716123 d2bf88bf e14d3c66 ad5c86a3 8b616b63 e0744fd8
5ccf6241 225d9b8a beb139a0 f8eabd66 a00488de 665c07fc
12673451 056fd0b8 369d6460 ad5c86a3 f5b2b31a fd621aaa
8ad5c617 bd834edf 5b547309 4d44fbda b95712d7 b046a3a9
c7f17f17 225d9b8a 11af2f52 f8eabd65 a00488dd fd621aaa
5fb3ba97 83f189ab e5931d01 a5893ff2 1f0b1c29 8c80f302
15429fc5 225d9b8a 443f0f22 0ce95c1c 540769a4 2fd1fa7a
097050f8 e0a08231 b4d1aabb 4655cc79 fcd7efa0 7a8f86e2
b61396bd 83f189ad e5931d07 0ce95c1c b66b7fc7 8c80f302
626f8efe 3791868f dce07c1f 01a0755d 10d35d6a 119058ea
ff7f2518 e0a08231 86c2169b 4655cc77 fcd7efae 8c80f302
f84dace3 f556b8e1 1381853a 11464aaf de7e1027 06d91870
7f0a4a37 e0a08231 0677bfe5 86b16c37 3c334fee 0cf59c2c
d4481452 1cd691a3 3bc1d5ee 304c57a3 cc98e0ad c9d2d5d4
fa6d1947 22f31559 c424288c 86b16c37 7a65db36 8992cf5c
bb55648a 52b12eb6 34d3ba1d 84a13918 2b54a437 091e2631
3bd98de6 9f904887 79477552 c4fcd8d6 38286fd6 8992cf5c
3cb3006e 15fe7899 2bc49681 20ff200b 53bdc71d 016b8e62
52bd3d25 9f904887 a1aaa693 9571d4bd 69a563bd e0f67f9b
cf742dce 6ab993f5 bc6a791b 3ebc3fb0 9934cc1b 94e1807b
4e03c123 4a44852e 747e6b3e 9571d4bd 32f9271a fc48839d
a086b53c d494f052 3243cd83 1713fc82 0194a647 a4e4d35a
f82ae5ff 65968930 5bac6720 e788f861 40000bc2 fc48839d
6227444a 437744b4 63deeac2 9338d31b 16517c33 217ac19b
dad52267 65968930 453f2747 543db3ad f3b5400e deb74404
b07295ae 863ac24e abf0e2bd eec4ef01 6bad4028 2e9b3418
2518a7f8 437744b5 63deeac3 543db3ad d1541c85 217ac19b
17ae9401 e34a0324 6b3c21a8 779246a8 95eaa957 894735b0
bf93602d 863ac24e a6936c38 eec4ef00 6bad4029 217ac19b
d7c3696d 59bf48e5 2ae5448c 5d92d993 057cec2d 3cc9723b
eac2be20 863ac24e f560ce21 11725ff1 941bf0d8 742b1f94
e54a10fb 271b885c fe127d71 ad1c23f8 f0b00172 dfd97542
e4c02d36 5e7d35b1 2d2739dc 11725ff1 4cde7d7d 7a298c82
16c77061 78e59f1a 584c316e 8199ac34 f38fb331 27792e8b
4b97d26a 647ba2a3 1721aece a4471d25 f9eb3fab 7a298c82
69ff02ac ae5873b4 d19d4ca6 2c374ccf 8bbfbf6f 3dd2d49f
b72ae1cf 647ba2a3 1bbe9db2 09c7d585 546bf70b 8694bf26
12bf1310 83412476 3c6e9fbf dc6bdcfd 19585214 16dd7570
e6cca65e cc030eff b3c631ef 09c7d585 ccf45b6f d772f8b7
fb0ef23b ef3b4f24 9c614348 a291f266 351c671b cb07c612
e77bcc9f 1ce14892 63247782 0812aac4 cd21242f d772f8b7
eaf4c7f1 c8c8b69a 50a3efa5 95367756 e42c8a45 ec52ec89
c01026ce 1ce14892 848a118d be997fe6 7baaf10d f01912c6
6abc8902 c502907d 8a11b641 56d67c82 27cc81b1 a2fab986
dc5bd881 c8c8b6ba 50a3ef85 be997fe6 cf8382f5 ec52ec89
592c41bd 753b0f3c 48b9d253 37461472 16156f80 916a70d9
2414dc0d c502907d 5d69c942 56d67c62 27cc8151 ec52ec89
c40eedb0 64b9c1aa 1d2104cd 9a2efaa0 8afcd4ff ccee2091
05c66835 c502907d bc9a551b 59945e04 288ea337 cd8058b0
8bd3cedc 64278988 ba0b08f5 4ba03ff9 5b7211a7 3181dca7
04a81014 64b9c1a9 1d2104ce 59945e04 4946705b ccee2091
edd9db0b 5712b474 5324da3c e49b525e e7260b14 578bc973
76bc32ea 64278988 1dbf4cef 4ba03ffa 5b7211a4 ccee2091
a612e8e7 a381aec5 4a4b4d46 fa11763b aa3d25a6 93f732c7
87722cd2 64278988 8ded6a09 7e7dae94 6eaf80ca 3d203eab
f18f5aa7 fa58a2e3 32cb8e6b 475bbd84 1777ee1b 72bf7bcc
29a520be a381aec7 4a4b4d44 7e7dae94 2e51fd09 93f732c7
3ca47600 61e8d0f0 7480d8d7 e85cbd78 5fe03cd4 bf94576d
10c713ac fa58a2e3 13924160 475bbd86 1777ee19 93f732c7
7b71a7e7 ad31d505 a907bb48 71be7d2d 72bbf8ed 3c049aa0
2d529ce4 fa58a2e3 fe6ecca9 ad796150 fd5532cf ae62bd8e
b246a6f3 dbd62330 ba1c5e97 c5d3a295 61d45448 29ccc45d
4f08946b 4e34461e 4a022855 ad796150 097e978a cc38b501
1f434434 bafc6d3b 53368eb9 72ba0a28 80402cad b1cd2a39
62b6db0d 6c0a3d91 683c53da d8d7adf2 7cd05b29 cc38b501
327c4f68 7503aeec c0c3618d ba26c879 1727a043 0e1ee2ed
d34d7813 6c0a3d91 d9caf2f4 2c5288fc 88557e27 7dc3161b
c1de0172 055f7bca bf0b2701 51308c15 fc31e42b 12b27057
a0908ce5 7503aef0 c0c36191 2c5288fc 8153e0c6 0e1ee2ed
e21e8576 e23b8a62 3b2f6ab5 6df6354e e42b4398 3172f45f
dd7293c8 055f7bca b09fb4ab 51308c19 fc31e427 0e1ee2ed
ed9b7f91 93c31a4c 1e7399a0 81669d33 ba039b8c 79c8ed07
3562e65d 055f7bca 88eff827 c07f7bc1 6d7e13ff e60e9779
fc164224 277d6fd9 6a2768ec b2773d10 89123bae 39727050
aaa49c23 93c31a4b 1e7399a7 c07f7bc1 fb1a7d7e 79c8ed07
48a91bd0 0fe61c7c ae52dced da7fff12 f9b24c73 8dcd29ab
bcacdf73 277d6fd9 aacdec35 b2773d11 89123baf 79c8ed07
a8862bfb f0f372b0 e59b7a9d 00f971e8 0422787f 334afe26
c4e44348 277d6fd9 321567fa 2a90ce81 11f5c83f 0180713e
24f65a1c 2cd13015 8c37c8f0 842bf8a8 8ac5c2b4 3a090683
6bee27c9 fb06a32d ee6eab0c 2a90ce81 247ef493 ae8a15bf
f917b7f2 6bb023f2 e600a01c ccd83115 1e562741 26d2918a
714f33c5 a81047ae bd784f8f 44f1c285 4a1ff895 ae8a15bf
18a0b02a 462375dc ddd6f024 6df80222 c0f96a1f f4539984
ead2b5e2 a81047ae 33e5c255 60c9feef 6e27c4ff 35179399
f7ad72a0 5b639951 b7914e65 5471499c 5774cc59 24c10387
0c069436 9c279364 07d2169e 60c9feef 63cc7b29 d3c3b24d
d6bc56db e67d0a3e f315021e 00b6feb4 ae18235f 4d363472
4849d0e5 3ad3b21a a12637e0 1c8f3b1c 1f8abedb d3c3b24d
c9bc7418 59e5e5d1 2b5c130f 2dfe8260 0fe93b16 99d262cf
31024189 3ad3b21a 486a44cc 791ace29 7a1f4bee aa882329
12d898c6 4930256f 3bb30094 68d374ab 4ac4cdd5 999b91ec
0258006f 59e5e5c9 2b5c1317 791ace29 5b0d775f 99d262cf
8060d1f7 9f338db6 7b38e09a 384b9287 4050b342 0b23d925
12916be5 4930256f 3b89d3b1 68d374b3 4ac4cdcd 99d262cf
ad50780e e543ab64 02cfdc5a 7c1acd31 c231f245 26a1b945
85e7ea1b 4930256f aebc5250 7b6c1511 597bac6f 0ea4e330
dea2b533 fd40817c 7f30e5ae 0f501fd1 b17b20a4 c185a6d9
ade2b06e e543ab65 02cfdc5b 7b6c1511 c5472a65 26a1b945
9b5355ad 72464e18 37194a26 ce91b5da fda0b9cb 84744644
3986aaaf fd40817c 1accf642 0f501fd0 b17b20a5 26a1b945
0bda29c2 775d45e9 a71a4694 db6823a8 e320204c 79207a4e
107b566e fd40817c 2d078203 8794e404 39bfdb71 0f5c4586
ea35b412 e1217ab7 88540763 60e910d5 58a11333 124ef4a5
660769a6 775d45eb a71a4696 8794e404 bfdce7e0 79207a4e
98d8061e adf56762 1a3cb7e6 ccfefdec c9e50d7d 60a34757
815b3af9 e1217ab7 316679ca 60e910d3 58a11335 79207a4e
baeba18c c58a0838 80d50dfb 58841af5 44348b9d 13f2d888
16433bbb e1217ab7 a47e7e8b a7e5e2a7 9fade141 ee387b0d
cc0967c5 b99b0aa8 e31a6834 837f48f1 ac45efee 181dc0c4
fa8022d3 d8141db1 9d4b198c a7e5e2a7 88df4447 02fb6265
ed55171f f9b046b3 29f745cf c92446d6 f537ae5d 8de361a5
624d14de ecd70509 a9880134 102118ac 3f1bbe4d 02fb6265
27ab155a c32724bc 1a33c59f 067f26f2 03f5e062 4c5e7797
f60749b8 ecd70509 35c3e5d6 fb403ae4 d47a9c05 96b13f07
4f4f2a07 f2745da3 12a51d55 6672187a dcc82e11 84a77e5e
1c5d68fc 785695bf a1427564 fb403ae4 41fa0d73 7ceb1e43
cac86c84 ae3e22ca eb6126f3 d367cf12 d9002a70 e93541a5
5f163366 5e9074fb 87849420 be86f14a 043cc6d9 7ceb1e43
1c1e973f 53e60a73 ff2a5c55 1f2b5529 af249823 82b81778
735fbeab 5e9074fb f25c22dc a4820206 1e383595 50a2938f
9e62e712 85fb8e5d c4172b55 0a3f562b ba309b20 17d8665a
a1453a5c 53e60a72 ff2a5c54 a4820206 148dcf0c 82b81778
c11f3963 f3905679 8129a0a0 674aecd8 7aee79ff 48a5b82c
0b029630 85fb8e5d 2937d87b 0a3f562a ba309b21 82b81778
1e1e6591 941700c3 ed004b56 71759dd1 cf5ea2a2 b82c8d9c
c6b98daf 85fb8e5d fcecc5ce 54fd370e e4f2fa05 4f030ce5
5d4eb050 43f04ba4 6776e661 ea69c9b4 eeb2c029 4269a3be
1f40c0c0 dac6caed a3d1817c 54fd370e 50263e95 96fa418a
d450108e 6d005eb8 c1cc089c 9f843173 d09959cc caaf4c1f
88051d19 22bdff92 5baab403 ea421257 ee991bce 96fa418a
de482ae2 d89d2d88 7929ed14 b0dea17d 0a6496ed 458afe04
a168ea0a 22bdff92 83093f0d 341b2929 30c020b0 bf97b698
23a25d15 253aa407 424556a2 3918f9bd b87c9f22 005f7032
246b62b9 9f475c95 3ef39c0b 341b2929 b57f4fb5 3a943e2b
d5f3284d fd1be47d 840cafed 8f489715 eb74f1e5 11f6c91c
fe91df7b 1a43e42a bbf724b4 d921ade7 5845cb7a 3a943e2b
4928a85c 5dac4bff 69b8655b 76460632 b28ac850 08d1d0cb
08f64da1 1a43e42a 2e57cb7e f8526edb 79360846 ccf3ace1
3e9463b2 bab7c5cf 49ee3770 a968ea34 83015850 4b883f1b
48479ae0 c3493121 f75d1e65 f8526edb d23bdd4f 8c427ba0
f4bd0cfd e96cea93 48d82a1d 2279ccbe b3475289 f9e30cda
811c7b97 8297ffe0 b683d0a4 41aa8dd2 6bc33e56 8c427ba0
583c5ec1 1f7c9b0f 4d81db32 b6d1797b 719f37c9 d4f8cdc3
a6758cae 8297ffe0 d06abfdc 376ae6af 1d03552b ab2b8c98
b27fa94f 4949dc39 0b7e3290 a059bbd8 6717f56b c4337c2f
d9a6cdf5 1f7c9b0e 4d81db33 376ae6af f024a81d d4f8cdc3
159e8666 166af222 f7bc375c d18f0ba3 45e06f3f 63d25305
a2b418a3 4949dc39 1bb49c04 a059bbd9 6717f56a d4f8cdc3
86ca940b 2c220ec0 e8d91776 30df7d9c 9af9fca0 3fabc621
30ba7258 4949dc39 8db2c58d edcb00d4 2a854e67 46f6a73a
01fc2862 24d72da9 45f54b95 51ad6635 fb8be70b dbd312a7
49e71343 2c220ec2 e8d91774 edcb00d4 47ed81e8 3fabc621
23f1c09a 6aa3a88c 158de57c 223bd088 cdc92ca9 f9defa59
e584fce4 24d72da9 e02c341f 51ad6637 fb8be709 3fabc621
b38107f2 1f4385b8 fe9540c3 f110a978 55827036 264f74ca
86a84b23 24d72da9 c501e8d5 35717104 9f57f03a 5c8771e7
691dff2d c2e65b19 a91e5893 a73cf039 d9515bf3 22e746d5
42e9320c f91e5838 18c89d45 35717104 4b1cdac9 98c608c8
165421d6 29fd6894 ed067123 e53ca849 96328d00 7bea5d01
f578741e 355cef17 d48a2a6a c900b316 b76d18da 98c608c8
08bc5b63 bd1573d8 9c323493 7774b6de 71528657 5790c8d1
b5a8f648 355cef17 147ba858 86069ffe f86b3432 d8168a9a
284aaf19 3c8fb213 4e47216f 99c0dd43 9fe6edce a9321502
3a2eb403 bd1573d4 9c32349f 86069ffe 8020af77 5790c8d1
bbe755de e3a3ada1 e795c3f6 abc1f9ed 06fbd5f6 3a9fefd9
d6e872ca 3c8fb213 1da8f558 99c0dd47 9fe6edca 5790c8d1
8413011e c2720964 5a9d2517 c68a8ccd 4a820b10 1d4841df
4e2017e2 3c8fb213 a4609e61 aea80626 a88e36ab cf58adf8
56675808 10619d48 c781f1cf 378e2608 bb86a1d4 5c3981f3
9c30fbc5 c2720963 5a9d2510 aea80626 22a081fb 1d4841df
169ab769 bba7782d 23cc210d 98ef25c2 afa14703 1cc46e8d
17169824 10619d48 888eb13b 378e2607 bb86a1db 1d4841df
5be6533a 952b43ae ea050e44 d1728ff3 c1a0a1b3 d283a914
09d9ba99 10619d48 6f4fd0bc 526b6fbe de63e862 03876360
cd1d2f56 b6281b6c 898f2818 025ea82e 608c686c 774f3d31
bc888e4a e72bd5c8 9805983e 526b6fbe 30b9afe2 b6d657b3
5a8dd5c4 31907ec6 a97f52b7 b74a3000 4ea24509 d0973630
3cccb445 9a7aca1b e55487ed d22779bb b0f5b9e5 b6d657b3
2a8a76a2 3dce3a4a d73e166f ad634b76 ab457bf8 2159adab
a882d614 9a7aca1b 708ae63d 2baa5464 4978943a 229835e3
1757c290 dafc5ad1 8b4a93eb 23082a85 879af3ce 962f7889
a5723881 dc3ae305 36cacf22 2baa5464 8f388d2c 2f68db76
885c44ba 9ddc375f e2f27aa8 94074fc4 cd64c7d4 c3a6fd45
64926288 e90b8898 03fba4bf ed8a2a6b 4918f322 2f68db76
df080e54 477e3526 c0a22d90 c1bafca5 c2bf797a bfaa4509
87ae7e0b e90b8898 6ed79036 ad136b3e 0981b277 cc54c7fd
d18281d7 10548204 9e73b4f2 fca313f8 24254649 4a08e36f
08477ce9 1cff04f8 9b231c5e ad136b3e 75953e97 43bdc51f
b431f7ab 5363e0d4 b993ccfb b46f9f78 23edab23 a6d1d8a0
515dea1c 9468021a 13b41abc 73f8e04b ab7eb5ea 43bdc51f
21d6ff51 f24c2762 08ed57a5 309a07ce 06f07d24 af13dc01
a463323d 9468021a 6ec972dc b4b51380 6c334621 b6831d3f
17cab60d eadce625 b7c9d2f8 a821fa99 9e4b8072 1187a017
bdf3f303 f24c2763 08ed57a4 b4b51380 82df696a af13dc01
06b79a00 984b0288 d4c32256 f5d417fa 160c80b4 00fa8c19
a95eca1b eadce625 107d96e2 a821fa98 9e4b8073 af13dc01
ed1a5acf ffc9e74a 91daa760 e9bb4bd1 a2ec37c3 b25a630b
24c8bd7a eadce625 84cfa60d 90c82825 a6a252ce 2285ab62
f545d17b 8f9e9ef1 6328c6e5 5033bd9d 1b64c18d 30fd7af5
b4177513 ffc9e74c 91daa766 90c82825 db9f5437 b25a630b
52fcc896 dac8c10e 8835813d efc591f9 79440fd4 97446316
77e2c885 8f9e9ef1 e18ddedb 5033bd9b 1b64c18b b25a630b
5a0663e0 6eb0d66b 2238f6b8 ee3710b0 c45ea33b a4b66d2f
5577e832 8f9e9ef1 c316be2d b53fad70 fe68d160 90cf43bd
dee14478 73626194 87f16f8d fce50219 e7d11721 d3bf4441
ee0cfc8a 5f7b3818 13f318c5 b53fad70 ae0bb847 2bb45705
0ea7a326 e7499184 895ad1af ce13e77f c60ebc23 4d3f7654
682c8276 fa604b5e b6e86b83 331fd754 282bc262 2bb45705
3634179c 5d99e1ec 959972a2 745c82ce 0a31290e 7eefd699
e4b41c1d fa604b5e 3260d81c 6f199740 742d8276 a72cc96a
2c8df716 48ef940d 12c122c7 993f3eab 0b3f6e69 41338bc8
ec9dbd33 712c86f6 b92c15b0 6f199740 fd19c78e af056844
fbabf7db 8ee80a1c c2602ac5 b7ae03e9 104d36f7 338cf5d3
67226a48 790525c8 b105b68e f3a7c3d5 61a7931f af056844
4b4b47c7 2436669b 39c0b466 a4025ddb 9933cc47 96296d33
ccdca5f7 790525c8 64f3f734 8ec734f4 1cc7643e 04fba7fa
0b92fbca b5642bd3 cd6eeac2 c24fd373 ff7e42ee f03d5b47
5e0e6f3e 2436669a 39c0b467 8ec734f4 b3f6a568 96296d33
fba11252 25d52b5a a20933fb 5cc851d2 f16ac0f6 000eb2d8
6d86cdbe b5642bd3 a892f92e c24fd374 ff7e42e9 96296d33
f31775b6 ae9d1521 86428c3c 49bc42bb 7fd63856 dd520457
5abd93de b5642bd3 9dbbb2c8 17267169 2a17e0f4 a1123351
feb362a3 5de35555 5afdf875 21c3e6f6 88b30ced f8fe74bd
e110c039 21a38453 097c1d4a 17267169 be569b74 1abf60b6
af11d054 a49badce b96d7f31 67677db1 d5dc9b80 0fd69a9e
ba782a7e 9b50b1bc b38f28a5 bc3e1ba2 154ef1bd 1abf60b6
8508625f 83e01865 cbe07f02 4d7b5c58 df7b0c91 2f053c65
992765c8 9b50b1bc d350d6d8 443548e7 ed45a2f8 39e02f01
06f6b4ca 3e7040ea 3d8a130d 6b95002d 3cfe6bc1 ced1b6c4
b210808b 494b338c 014b54e9 443548e7 135e2308 12d7ca42
f4ffa502 0098b9d2 284720ca 22c02fd0 17017925 f3b6fbf4
159e94b5 2242cecb 6a42a9ae aab75d15 fddc36fb 12d7ca42
7ae0f34e 34fdfae8 8e52db95 b220f807 d806604c b3eb6d55
82cfdd2d 2242cecb 98edee76 f05eb8a3 a735d34d 8586839a
98f5bf11 6e9cf9b6 1373132a 7f1eb5f5 cfd24ad7 0efce358
4cf5470e 7ba461bf c10b4142 f05eb8a3 40924641 4bbc19b9
9d7e9711 b68a7810 fe8a1f35 e7e1f54e c29c8a1a d90d6021
0fcfeec9 41d9f75e fb76d7a3 2d89515c 9d45affe 4bbc19b9
dadfd7f8 bda87a47 b89c4b61 bfd80a0d 93438b87 1f651877
d232de92 41d9f75e 44edc679 3e9131ef 8e5dcf4d 964129e3
76fd4754 46cc68dc e44c1de0 c4695658 e8f2d7d3 bcb15c8d
5b16ef06 bda87a46 b89c4b60 3e9131ef 120ab065 1f651877
046725d4 25a8f9aa 9652af14 7174b925 7a0cab7c ce2b3e0e
d52903ae 46cc68dc 43f859fa c4695657 e8f2d7dc 1f651877
ce3e0011 e12c5e7a cef8d373 dc6caa90 1a97ddb7 7e0b3316
80496f87 46cc68dc 6918e5d7 f6839364 da1812ef 4a05745c
438d8cab 15321d32 a870ccb2 752c72b1 b3d70594 0b79778d
b44728cd e12c5e78 cef8d371 f6839364 3078e443 7e0b3316
1f48732d 92951528 9b10f4d6 634a6084 27140f9f 57bc880d
36ffc830 15321d32 3ae6903b 752c72af b3d7058a 7e0b3316
c9d40b1e b77258c0 04880e7b 5bc1f173 32fa43c7 7d4d5f36
4ac407ee 15321d32 a6c84b8e f01d9872 36e6ef57 0230fcc9
28fb6a5d 554f8637 ebd65e0f 0e33890a 85cff4b6 4ff1819d
0da6fb05 da3323c8 69c97575 f01d9872 7be1e5c9 45520022
0fa1d616 851224fe aac6a9f6 fac55803 097f239a c12c366c
8bdfe059 1d54271f aeae71a2 75b67dc6 fe4a007c 45520022
fedb9b1b 499a7602 5ef1e9fa 179e647d afdca8dc 499101a9
664ea91e 1d54271f 0a3fb8e3 2ee1aa4a a51dd7f0 a8c34961
0a2d9ff7 ea682e56 6365e2ac 11727b2b a930b78e bb332eab
871ce1d6 499a7606 5ef1e9fe 2ee1aa4a 96a366eb 499101a9
8d510091 fbbf842b f195d427 1c587fd1 d5c25dab 3c4fb1c1
f88fb0f5 ea682e56 fd03b1ae 11727b27 a930b782 499101a9
36309f9d 2468ac02 9742c901 cd093a4f 3f4a701d ac2bf86f
545177ee ea682e56 59424b54 e40c83ba 5c4e4f1f e54fc6b3
55271f35 eb44ddbf 317c51a4 b90ad30e 4b49995d d33a1f87
1d354932 2468ac03 9742c900 e40c83ba 164fc9e8 ac2bf86f
3d31c4ab 420742ba 802c7213 21c241f9 68c7eeb7 bb2cc416
2a36f8dd eb44ddbf 586eb8bc b90ad30f 4b49995c ac2bf86f
3c4c7ca9 57393e8f 5ebcdf7b 1f7b88cb 414c23ea 396a5fce
849a75d6 eb44ddbf e2c13c45 a0726614 52312c47 02877566
ca947788 8a34c343 40f787ee ea31b371 b061f618 05483983
c217d67e 5351d8d3 5ad4392b a0726614 fa222373 440ad6ce
f5df8385 cace6c64 79e40965 4b5eacad db17db23 edaf59d5
5c7a0c9c 94d53a3b 9d50dbc3 32c63fb6 68967ad3 440ad6ce
1c9faf91 f2c7c17d bce29911 71847738 c9c6bb9e 804aba1d
90da9716 94d53a3b daf06254 ed203bff b7707e9a 88aa4d45
befe9ef5 9b611462 ddec3352 85ce130b ecf5a1ba 0fe02fab
0f08baba a3c0a788 ede5ffe6 ed203bff 841b894d 177860e9
b5d201b4 bde750ce b462b137 8160512b 75f41978 d2d8ea73
70728b2f 328ebb2e 7cabe340 3bba4d72 5281ffc1 177860e9
0575ca0b d13362b6 f657bf45 3fe5f907 3805a344 dc63f4f0
97bd0db8 328ebb2e 15ea66d5 cddaa5da a4e11769 f0b7e676
7c45c01c bcdf7148 03f12f36 6f386f6b 68d83520 742d757b
bb691f3e d13362be f657bf4d cddaa5da ca3aff99 dc63f4f0
c23225ac 47e4e4a3 52bf9d7d 8f451601 1da0dba7 ca5a90d3
d40b4197 bcdf7148 9bbbacbb 6f386f73 68d83538 dc63f4f0
344052e3 e173ea9d 3207654e 7ecd61e2 52b9b243 2425ce73
801b13a9 bcdf7148 6fabfe9a 76d07ab8 713020f3 8873a6cf
fd672921 7d261240 03f9c5bf a15e0511 8d2ad6b1 cf91169f
2c4d7b15 e173ea9e 3207654d 76d07ab8 5aa4a919 2425ce73
ad956eec 902deed2 de9ffc62 69e998b8 5695288a 9f635151
16d3f1cd 7d261240 ae529d93 a15e0510 8d2ad6b0 2425ce73
82a94eeb 30981683 7b181dd4 bb6dd0e8 648b0709 b004208e
aec77649 7d261240 36a61915 bbb6a23f 97c2719f 9c3149f5
3a74b4f1 446aed1a 605c3626 3b8ea703 e46870e0 88baf073
82f21f32 30981681 7b181dd6 bbb6a23f 645075de b004208e
b42892b8 f7461238 5524d2d7 3f4495b9 ad8568b8 06e6d624
02ca640c 446aed1a 0feae64d 3b8ea705 e46870e6 b004208e
f54529de 75eed02c 3b5cc281 1cd34d72 0db9f784 109adda9
01f8636a 446aed1a 0ad8ffa8 e9c19d7e 36274a9d b33627e9
50a2690c 45ef110d 11501379 be73d442 3a759253 d7221244
63db6600 e88a5b45 a63849f6 e9c19d7e 6dc7db70 d1152283
b609fbf1 b0ea9e7e fb6a9528 04ab4359 2a2ccdf7 cde31b27
aaffc254 066955df 48db476c b2de39d2 36d87fdd d1152283
eb46a9a9 0b347baa 011e2bb2 ec00920c 64d1f9da 6b806a22
f767bf07 066955df 0c4305db e724af54 6322e95b 8c8d5fd4
c4452d3c 270649d5 851f723f 2e7496a7 ebc4b96c 077fe51e
147a19e7 48133fa7 42396fa7 e724af54 22948083 6f90f934
9589326a c615a75c 88a7b5eb 5884e288 382a1ca0 b418bbe7
4e0170bd 2b16d907 213c8907 8ccb580a 497b77d9 6f90f934
e86db0d2 62a87667 984c67a8 fdf7ac23 00b66111 fdbec5ce
41db328a 2b16d907 d1f2c8c9 09b5c08f cc05ef5c 604abb02
0c3f454d 001c8132 77e2a399 5f0bcaed a24a07de 7ad8d6aa
dc2f4c46 62a87666 984c67a9 09b5c08f f4f40dbd fdbec5ce
5cd80212 3d2170dd 1a45ad29 ddb74dec e7f1f132 2a3f91f2
8b595629 001c8132 faf890fd 5f0bcaee a24a07dd fdbec5ce
60eabde4 2f4f87a3 1e405b94 15e6ff01 39922ca7 81c11ad7
450d03d5 001c8132 31135d03 aba2ebb3 56e32680 33ea9030
221b44ff aee8e9cb 4fe014a0 67b19786 39863cad 10ed7b45
1613c9e8 61125f2c 501d831f aba2ebb3 f595409e 60f45a0d
e514c1a0 a1db1cf0 5b3f0d3d b800850c c9f61a1a 2ac88fa5
af28140a 8e1c2909 bf13f53a 0497a5d5 5aa00efa 60f45a0d
60bb23f7 f594adab 37bf9d0f e2d03b6b 276014bb 2791d9d8
3dd3e087 8e1c2909 4c3719ae 6b818f42 35b6246d f20fae81
0d949418 66400cab 5abfb724 bd36cac8 bdefa9bf 2c051d93
7eecdcac 30bde14e f296d1e8 6b818f42 6b58ec36 b13092aa
cdabcf62 9c5ad2f3 ad550ec1 227a4923 8f2f39cc 20153e37
5c8e63fe efdec579 2df5f5df 89643290 89bd51e5 b13092aa
e3d2b0a3 cc194c10 24007024 d7ef26d2 0afccf2e 754c0c37
3aa06f6c efdec579 07c7f95d 2f0f5b82 2fd638f7 d71e9e28
13413098 6a46b9ef ddc3bf06 994750a2 4454b94e 44b7d6ec
98f2fd73 cc194c00 24007034 2f0f5b82 f21cb27e 754c0c37
ba2d5781 030e57f8 63a6b68a b1fccee7 c4274912 eddbb185
22baea43 6a46b9ef 825f85db 994750b2 4454b95e 754c0c37
025581b9 7d4e99fe 222992d5 5298066a a283cf96 551796b1
bb6f3d58 6a46b9ef 3521b2c5 534cd5d7 8e5f3c3b ec99db2d
b4a92ab3 e5cc5583 c924dca5 91862d82 619de47f 229914ac
02e170c4 7d4e99ff 222992d4 534cd5d7 a3571c2b 551796b1
534a596d 98eb6f58 5722b4b2 096a19bb aa50fa69 c57a6771
c327a8ae e5cc5583 baab5ea8 91862d81 619de47c 551796b1
0c160640 1504ec3c ad93ce07 d6a1f14c c9f591f4 550bbf15
387793a2 e5cc5583 5d5b77ba 13b47614 e3afbfe9 ae47adbf
6722ac6a bbc8fd94 8b604939 27c435e2 38905558 cd1d5187
c33b8108 1504ec3e ad93ce05 13b47614 0ce016ac 550bbf15
2f5f1013 cd09f15d 25e5a07d 6f1201a6 5f875525 8560edf8
ff3442f8 bbc8fd94 035fdfaf 27c435e4 3890555e 550bbf15
8bf45e01 f6535727 399a8cc8 96032564 cfdd9f28 a93d17c4
c601852e bbc8fd94 7401267c 1d79d98b 022db931 6c3e78c2
18a50932 d12852ca 19a02d90 65e4e2d3 9251f426 ea0e0e07
5b70977a 9429b3cc 5be06825 1d79d98b eacccf79 f14f6a96
d3edc9c9 20a2f85a 9835da60 8775b126 7868d88b da1cb0e6
f8be13b8 193aa5a0 d6f37e49 7d2b54cd 8a9e423e f14f6a96
233ca706 a01fb79e 23ef4b3b 5c7ecf6c 22e4e799 55989d56
ac87f264 193aa5a0 9aca5901 efcc0e46 187918b5 a5768b4e
10d61ea1 5041c9a2 a1d250dc b9c7b9a6 c75d9157 c33b3a2f
5c69e47c a01fb7a2 23ef4b07 efcc0e46 915626b3 55989d56
a4278139 e0ea66df 46c963c9 9e2d7ee1 916fb8cf 77caa5cb
8675b9d8 5041c9a2 d3b13507 b9c7b9aa c75d915b 55989d56
aa9ad2fe 1bf659c2 ecf01e4b 58d1a90c 129f101e 527220de
1b40ccb6 5041c9a2 a7478e2a 33d5db7b 4d4ff38a c8ade839
76dab820 a5ba9268 bb3f3049 6f147a43 255ac350 79f17b76
819f0451 1bf659c3 ecf01e4a 33d5db7b 799b6269 527220de
130a4ee4 ee42eb0c 2ef75f75 d868c922 4abfd895 1c218dcd
5d59e388 a5ba9268 52bcd5e1 6f147a42 255ac351 527220de
01d53216 151b513b fdf70061 9c926346 253d14a2 d6156d9d
4b73e92d a5ba9268 4d56c34c d3fdc70f 99b37e1c 44582a79
d1d3f451 c206c547 ac3b4cf4 dbf67c48 0f2bd54c c6f78cde
4e8d9705 304982cf d8a5d3e9 d3fdc70f 07206e75 41a65451
a49eb4c1 53531c98 a4555b13 4b47b561 b1deac0c 4fc04ab4
aaf8aa26 2d97aca3 c57bfd85 b0310232 64ecab4a 41a65451
4f97bbca d7542c1c 22d83fc2 d0c5f9c4 ae5fd136 c733b48f
a518e97e 2d97aca3 d81bbf7e 3380e8f5 e75d418d 4e461708
f846b717 2b865afa 79be0d3c 1c0f0f0a 45d1b543 2bab939b
25a1b1c7 b298bd75 4714aea9 3380e8f5 6a5e52bf ceff4fb1
30f48bc9 189484e9 f078d5ce b77d0aed 885c43f9 c25f8cfb
3c544882 3351f620 c6dde5fc 3accf1b2 63124bf9 ceff4fb1
d1db2027 9ff16624 8aaa1f92 58a56749 9edb4d0e 001226e0
1c65b298 3351f620 260a8fee 798767bd 2059ddf6 eeceb5a3
f6ebd911 468e856e b48948c5 f524bded aef365a9 98a38472
495c37b6 354b1411 20106dd7 798767bd 2250bf81 bbf7308d
8d6f385e 00cfb61d f543a5c9 596add7c 0359222a 9c27caa3
aabfc278 02738efb 1728f73d 98255377 c3f28b43 bbf7308d
ba37920e d381e980 1400377d 7264f00d 5e82c2b7 ce81a245
7f556737 02738efb c5f25007 0ef7b2b6 55206a82 6e1d95c3
ad639ef3 33e5f603 9cfe3da3 1926cfde 35c0fd65 b61b8ee8
dfc950b1 d381e981 1400377c 0ef7b2b6 2211800c ce81a245
0cd4055b 8f1820a0 9fb4715a 619e3ac9 e9866791 17ac1543
d5f9b25e 33e5f603 f46428fe 1926cfdd 35c0fd66 ce81a245
32833edd 09cf0290 fa369284 c262bf6b c0ad802d 8305faa1
e1814347 33e5f603 c01c6615 2c540b08 00b239b3 faf9535e
37a1f114 91dba9d1 0701e00c 2323406b 21ec7f2f 25e6b46a
987deab8 09cf028e fa36929a 2c540b08 2e9b344e 8305faa1
fc3430c4 9b6a7b8c c40d70a9 0d9d34d2 01c3242d ee7375b4
9142bfdf 91dba9d1 622239c5 2323406d 21ec7f29 8305faa1
c8a78737 6c20546f 7c8c0598 9b9ed17e 468d389d 9ddf21fa
8dfff9fa 91dba9d1 8177f829 586d7030 5aa24f74 9fb8bc85
84d96b5a 25f22226 fa8691bf 9e1d112a 06a24309 d32f8d20
16206eff 27cbbcb9 3767ed40 586d7030 c0d2221c 04672b80
82d83012 bf595189 4ca0c19c 76485478 bdd62c7a e7b4699b
610b7208 8c7a2bb4 9cd67a4d ab928439 332dd614 04672b80
fa19c6b6 eb6ff082 040f3459 03e74ece f4525831 10e65388
8677c7d2 8c7a2bb4 631aef63 7e54131c e6eb4131 e31b9e5e
8f82ec00 aa56fa6f 8f4b8173 22d932ba aa085978 86739526
35da8751 7c8c4555 93ec8186 7e54131c f68578d2 50b6dedd
b138a435 9728a43c 8784f5c1 0960f2ef 3cb278dd 72026c0b
938c16e7 ea2785d4 05474107 dc2281ca 54f3ea00 50b6dedd
163970f9 596c0c48 fea9e09b f649ee0f 0e5c1c32 b74f2b88
ca26cee7 ea2785d4 4de26906 180e5ad9 90df3113 091c06dc
2640de69 079f30f1 a71b7891 eb20ec1b 13351e27 b00d8715
7475e3b3 596c0c47 fea9e094 180e5ad9 e01ba8e4 b74f2b88
b2a9e10e 92f06c31 87ab15f0 1d29b9fd 9e4e9481 24e4b875
210272f4 079f30f1 a05adc22 eb20ec1a 13351e26 b74f2b88
b6dc7486 3c6f7174 9e0db181 ac3541d8 80d37365 a962843d
27a6a6d6 079f30f1 a5fdf002 22c3aa9b dad658a7 b1ebffa8
67201f8a bed1514b 2fbba209 a7ee613e 103fef3d 7c580f95
1b02843a c75accba 65380c4b 22c3aa9b 9512249e 8d4fdd44
d169b7ad ea5443da 4d91af0b 98ae512d 67c976aa 92b30922
ce9563c9 a2beaa5a 00dc6aab d0510faa 678081ad 8d4fdd44
afc7a00f 73be881b eeb28ee6 95543485 1d855f4c fe622107
c4239ddd a2beaa5a 3fb2aca4 87897209 3058fc0e 87f92351
f04865cd 72c0d4f5 0349360c 06e97bb4 1783c15f 3372adf5
1d2e6f77 fc57d73b 615bd1c4 87897209 96e3c8e1 5ef4d1fb
e3cbf0ba febca582 5cde6572 13f6cc74 2f2516f2 644b8bed
d974aaad d35385e5 4e5f831a cb2f2ed3 da45943a 5ef4d1fb
c87a4fa9 871c5967 ae3f2597 b7652f36 7256a1bd 80d13697
6c8c3cfa d35385e5 fa70f975 f63a316e e7508b87 eb0c478c
887db2fd 75835fd4 ee588399 9ec2ea40 83174c6d b8748695
c23c5d8e dfbe7149 f69d0df9 f63a316e ebef9723 45bc26f8
ec9ba313 7363511e ee6f57c1 98edc5d1 ce276307 b9a4b147
1083348c 3a6e50b5 134d2c05 c3f8c86c de2d6e01 45bc26f8
50b2b8f7 2365ee0c 9807ceeb 483317f9 4efe543a 404b1621
82c5d95b 3a6e50b5 810c7053 8c787b98 91adddf5 d7facb2e
e57c3d80 8bb638fc e13029b5 414ca425 4781e7e7 ef6f0683
15740454 2365ee0b 9807ceec 8c787b98 8ab5385b 404b1621
9931d282 5868a3a1 565157e6 61848d64 b2fb2303 9322e982
4a582d22 8bb638fc 30d4181b 414ca426 4781e7e4 404b1621
8bb97622 8d093adf 117cbddc c7ddddec cffd984b d8a762ff
2b4d473a 8bb638fc 17c3bffd 7ed30410 781e47d2 215e7c3b
58a8d711 445221a1 5a82be9c 786a7535 704a3090 5b027b39
d2b459fe 8d093ae1 117cbde2 7ed30410 76f341b7 d8a762ff
9ba3f25f b70c6bd9 ecdbe9aa b3d193ea c90b1c37 98095e71
db0dced7 445221a1 d827a6a2 786a7537 704a3092 d8a762ff
7a35255f 4b7d37eb 4544c3a9 7318d843 7c5383ad 6192a080
49c17c68 445221a1 4a6bd5e4 5b1bfe8d 533bbb28 4a6bd041
3f7da041 a5431e6b d33cec0c c07be95c 91919b71 567736b6
ed9b94ba 8e1c4e26 8025ba62 5b1bfe8d 0af18ca7 ee313893
6fc57568 8c1267c1 1067e0c3 88698747 2472a435 7c6ccb50
fd9886aa 31e1b67a 3fd8423e 6b1b109d 3af162b6 ee313893
c12694ab 08badd1e 04734e3d e1d21496 c9118c45 e01dc5f6
ff69694b 31e1b67a 3d28255d d4408176 85aaf35d ecc0d776
5da97bc1 fc17cbaa 13300b14 60694b8d 48aad35a c27bf391
f3b47bcb 08badd22 04734e01 d4408176 fc8319a5 e01dc5f6
a020de66 88a15693 e43f75f0 745292a4 c11fb164 3ff2563a
7fcf4da6 fc17cbaa f0de5889 60694b89 48aad35e e01dc5f6
48461fe7 ce1c7b9b b663526f 276bfffb dda3b732 6948111e
d401d499 fc17cbaa 8468e25f a6307953 8ef3e184 4bd35cc8
804b2859 eb912ff2 38b41992 4a0326d6 b0cb6e1e c3ee1d8a
f69a994f ce1c7b9c b6635268 a6307953 5cf8319a 6948111e
6684376a da702706 ee283c8d 2cd695ae c571aa72 252102b6
2aed24cd eb912ff2 93ee0606 4a0326d5 b0cb6e1d 6948111e
171f5153 fba58b86 a07209ff 7c39e544 76e5411a db0dacdb
0f055c70 eb912ff2 b046ad85 f3cc1d8d 09045545 4ca069a1
f68e6d10 1ca48bdc ea8876ca 9a518dc3 073fecb9 1ca4cb15
c1ea65a5 8e37489e d5e0caeb f3cc1d8d 6ea27cf9 824f5074
faab99f7 2ba2888b 53dda17d 6abb5f06 6f91e58a 9ef6f7f3
e6123e72 c3e62f75 9831ad00 148455c2 89ea34b4 824f5074
398dd6bd 4f3b66d2 3a7a3ba2 15dc5135 3d1fc9e1 48959043
ffe44575 c3e62f75 b6a77206 0921783e 944f1948 9bb92b72
a6f9825b e29f8ebe 074dd375 44969288 4bddc963 392b0a09
acc767b7 35c329e7 40827495 0921783e 066a23d6 c89a09b0
c63ab843 b5271542 eef09736 19317eac 78ff17a8 af302eb3
a1909f41 62a40827 17e55555 0dcea128 0285fac1 c89a09b0
563960ac 3ede1d27 aa176a26 728cece1 99099c10 c34f2772
8128b5be 62a40827 f66d7f2e 46213bfc 496a6015 e8222347
aca1bf90 1a0b216a f87f2d44 996ea81a 72ebd8e3 10f9bc9f
aa45b18b 3ede1d2f aa176a2e 46213bfc ada44b0d c34f2772
c0f30bf8 d306c174 9d239922 910764e3 358675e0 7cab08cf
7f17247d 1a0b216a 8ec2566b 996ea812 72ebd8eb c34f2772
f9af4d8b d8bb2ca9 bd2604ff 8e3fa32d 240adf14 89ecccd8
287adbc6 1a0b216a 7f96093d da5424e8 31d15411 9422d8c8
d836b442 ce8520ba baa531ff 5e552360 f4605f58 986fb5c7
35b4cfd6 d8bb2caa bd2604fc da5424e8 706158d1 89ecccd8
fee97a6f 5cec51b7 c68c86d1 41cf8acd 795327f8 beb07be9
c9b5cd5d ce8520ba ab1808ec 5e55235f f4605f67 89ecccd8
66509460 5d17d32d 42ec0ff4 0e535310 369b7dbd 6e4cb17c
041280da ce8520ba d17efc61 46902f7b eca55343 444b815d
b24fcdb4 87190352 64221d0b 89fb6d3e b1334391 318bf2fc
2e15b0fb 5d17d32f 42ec0ff6 46902f7b 7e5801d6 6e4cb17c
d0413acf 3d3337fb 380706e3 7de179f4 93031aac 538505b9
ed888e34 87190352 98e2df8b 89fb6d3c b1334393 6e4cb17c
77c8e036 ff1dd33f 657d0464 5e1bb968 eed747f5 2b6dd017
6b75934e 87190352 1d79d436 853ac890 bdf2e63f e8b1ac07
1400cf36 efcc42c6 3cc01fc4 45ea8094 1b55ca9e 50733878
94038d92 ad101ed8 3770c9bd 853ac890 db8582a5 17c7b2db
da7dc423 88c1e7fa 973a3b22 4d56aa60 460da6e4 9d62b84f
50d8ceb6 dc2625aa 4646f2cf 489605b4 16294f80 17c7b2db
e10d5ef4 096358f8 65fd7baf f1789c90 7a84e116 fdf5ccbc
ad1b8288 dc2625aa b0b806c1 1b9f86b1 4520cc85 ea04fee1
77274a31 5f3a838c 7e913cd3 a30dea8f 6eef30a8 b9aaaa72
438272eb 4b49b591 27d796fe 1b9f86b1 d67d5caa 049d0e82
27d5badc 0e1e0b2c 947edc4d 170101eb 611e21f2 325fc278
11177622 65e1c532 097fe65d ea0a82e8 27e858f7 049d0e82
57fb4975 f7bfc594 320bd234 2afdc107 753d1b85 ad004371
48397a15 65e1c532 a055d293 458d2fa4 886ff5bb 5db302b4
2859c7df 470d0654 29e30e60 ae66aadc f1a6705f 563a3405
b88a3bd0 f7bfc595 320bd235 458d2fa4 1a4df526 ad004371
0276510b dc8d3df3 48444af5 5b7a98e0 ae3b8ac2 7c15a2d6
d363b0ab 470d0654 82b911f4 ae66aadd f1a6705e ad004371
a1b59be8 9181a811 24f8fe6f d0e34edb 7ad632e5 d9c8fb00
e2a67191 470d0654 f274502c d6c9e1cb 89093b48 9cc58249
1f0a1001 2f2c48d6 cf30afc8 98beef72 92624b26 5f531180
4acc7304 f228d023 47518659 d6c9e1cb dc154599 34af80dc
aec0e409 317d680b f4c97fa9 1a2d5d0e a86a60a7 44ea4202
de8526d5 8a12ceb2 3f6b98c8 429093fc 484c37ac 34af80dc
9dccf2a6 4d19047f 79411ff9 3acd5411 f72f8e0d cc570699
59a4e3ef 8a12ceb2 be4ad537 d35c05da d980a18a b38e45e7
fa1d4e75 03df34f5 9b7af3c4 febbd875 955b9197 ef9736d7
61632d22 eb167443 df4e6fc7 d35c05da b8bc4c3b 8b498b2a
f7e751ec 904fc21c 25369467 53f385c1 6aadd7b7 0c6ac622
70c41ce5 c2d1b986 f689a202 e4bef7a1 8f5ebe41 8b498b2a
79f8be7c 57cad2fb 032ffd6a 4f64b17b 4fbdd23e 43ea9195
505b0898 c2d1b986 96349627 10e01971 7b005091 abd69f47
7fa2914b 9ac54238 01addbdf 031172f6 a8ae92c2 921c603f
b01561d6 02b14faa 5654601b 10e01971 bb5ff975 4b98f609
2d808d5b cf93cd96 fbcbd602 efbccc59 375ccb67 2b0be1dc
4d139a9e a273a66c f69689dd 1bddee29 b0620e3d 4b98f609
8870cb55 2672de8c 34cd3d1c f1b9448f de065cbc 0390c54b
0ff8c57f a273a66c b0cc45fd 6c64a307 c7db4313 0973a9e9
6e500713 208ff9ed 1e656091 a7c4b294 887baaa6 2fbb7b37
051ba9dd 2672de8b 34cd3d1b 6c64a307 43dbbb34 0390c54b
fff1a557 11d3d615 dc9a21a3 c18bcc86 e08938dc be1ad970
427bb96f 208ff9ed 32301a7d a7c4b295 887baaa7 0390c54b
6e610161 b20e7132 729e159d 1f7ed672 de43590b 464e6a1b
f08a3a4e 208ff9ed e01f9d40 393ae71e 1685ff2c b1614668
112d30f2 46fb94e7 09f9f8fa bd3cac75 7c01230e d4c07189
07a5163d b20e7134 729e159b 393ae71e f8076867 464e6a1b
014a06fb 4d2f4bbc 73c609a4 9ac3e094 5db2a6c4 c4a74786
83a32b60 46fb94e7 866bf048 bd3cac73 7c012308 464e6a1b
1c0ec482 f0d0240a 3d99d3b9 2f786277 446a7cea b3d6d69a
96eabc5a 46fb94e7 8bb26353 458d91d9 84b01ea2 5307fd20
59d7153e ac4585c4 8b8d8009 f1ccc04b 34746696 2bfb7ad3
14902dc1 4b76ac46 863f5bf3 458d91d9 80353703 d17d6cbb
00ef8a30 4cd60ac5 8c466e6b bb7bbe7d f3d92bc2 c4c3d9b5
15513f3f c9ec1be1 04a5ec54 43cca3e3 86740538 d17d6cbb
a7dc48a9 eeb382af 93601c09 31360602 dbb60baf a65ba5c4
462b4028 c9ec1be1 b43f8543 f3da6c15 3662cace 820713a8
1526885f 130814c7 e9c404fe 6620b799 8ca0ba30 23541757
6277f644 eeb382b3 93601c15 f3da6c15 195a61b8 a65ba5c4
00b36466 718227fb 7fbbd3a3 8de3f178 c519d1a5 36c1fb72
90293acc 130814c7 6edb8a61 6620b79d 8ca0ba34 a65ba5c4
1924ddfd 0de28bee fe055480 32ef4a43 d7b5ce8c 4183446a
2a1d7984 130814c7 e0efcba8 10ba4fb5 fa3a421c 1c6fe68d
80771d48 32f5e9ca c9ba49fa a2e3c911 47b94ddf 48eb052c
77f1db63 0de28bed fe055483 10ba4fb5 f5e0cb7a 4183446a
be22f9d7 167f499d 3f5c3532 3755ce73 ffb62ad2 76bee1ac
891f5c0e 32f5e9ca c11236a4 a2e3c910 47b94dde 4183446a
91ca1a83 5468a8da 6a81ead8 26eeccd6 20238f0a c3d2373c
4418bf7e 32f5e9ca 0c1cabd6 9d72b77d 782833b3 8c84a718
b91587f5 dd908c36 ccc3f3a3 dee9da34 864e4cc8 b306bcea
28006715 a642fbde 98abb9c0 9d72b77d c5d5219f e09c7f73
214c9e35 8c4f1d17 7fa8c27b 8f1f33a2 6584ec60 959b1cc3
544bfd87 fa5ad435 c4b3962b 89ae220b d109b4eb e09c7f73
f136d31d 8c334afe 25f24283 550e7c00 bf8e71aa d2490f9b
ffa3c726 fa5ad435 539bdc4b e666226f bec1b48f 4b7445d3
2c894e8c 939a25b6 a7f4d729 68013e85 0313201d 1afbd186
249a6593 0cc55bf0 a504538f e666226f 8d743cf4 904de766
575a4eef f57aec5d cb93ae42 47030f01 49ed0277 25762105
e261888d 519efd81 f85ff5fe a3bb0f65 c8a911ff 904de766
c2635dcf f5d83ae0 e9206383 9cbcc191 93f79a60 705105a1
71a95781 519efd81 4d66a4fa 5cb6d906 37a4c79c 03853862
35a08a77 77703a27 33791120 5395000c 77828de5 5caa1c96
47b524e1 0aa46cd8 165c35ab 5cb6d906 78a154f7 35994b02
09b3010f b732e16d 1ef3e91a fd61986b 63f077b5 c261f9fe
fe4bb3fb 3cb87f88 204026fb b65d621c 924aefe5 35994b02
d316e349 71cacb37 015f96f5 7c9229d8 25bbf071 7dd77853
42e4b7aa 3cb87f88 4c2d224b 99a387b6 bdb40a4f 89364f52
15c139f6 666bf439 accc8a0b 8ff92ff4 d6d0f65c d7e998c3
b60580ab 71cacb38 015f96fa 99a387b6 c08a5e1f 7dd77853
c5ba1f4f 0deb2004 f7bb83ed f60999da f6a09ca9 0792be79
bfffd966 666bf439 16fea9fb 8ff92ff3 d6d0f65b 7dd77853
e0eb49d9 422841d3 88447bdf dbb3627c ef55453c 9a1ac628
1586f5a8 666bf439 ac07ce37 22ea73c2 7bc3aa6a d7ae549f
76a29c2a 0494b35e 5c6ed5db becc4114 8a2a6656 28a8f2a1
5832671f 422841d1 88447bdd 22ea73c2 160c5482 9a1ac628
bc640139 5d82e607 4f3d0599 c3e3a4f6 4e37fd1d e26e6fbc
c410a8a3 0494b35e cef88952 becc4116 8a2a6654 9a1ac628
2a2f48cf 7b6e6c38 813ecfdc 0f0c1b97 a4b3fb8c f1046a3c
97f55e8d 0494b35e fec410b5 91eb672e a50d406c c9ff3007
0ab37170 887d8ec4 bcd729e6 3a6c653e aba5ad52 0c381de9
8fd4743b 6178547f 9b28f795 91eb672e 0022af4d d1de1ab1
d8846ce1 e573e874 2f1fd279 da3faebd d7d9df10 a1f9b0d3
a8a3c682 69573f29 93079cc3 ad5ed4d7 3c971cb5 d1de1ab1
26518e15 9d461d9a 64313256 74f80ef9 b140a82e fdaaa4d2
a8797ab0 69573f29 902010e9 127ac069 83b3080b d104a687
19f4967c 905052a8 3c50dd7d 5d2937c2 d135ea60 ddd8c5f0
5232b9e8 63aa5475 9add7bb1 127ac069 9e661dc7 2b4f65df
b2984397 af0ca79e 555c0470 d291923e afa5e3bd 2c28da0d
b5fffc41 bdf513c5 44823c01 37ad7dd0 bbb1a07a 2b4f65df
7425461f 911d29c8 cd29249d f2a93d5b adedcef5 9c714e03
10bcdaf0 bdf513c5 e1c11e91 a905cede 25191374 8e0c436f
23c8d4fa 9f82345d ad330be5 5b7b89da 043f7a75 72ee8066
02c1d79c 911d29c9 cd29249c a905cede f6413d70 9c714e03
0c13ceb8 21b50a85 3d4d53f1 3bb0bdbe dac77469 5d359a23
cd571a9f 9f82345d c3b63908 5b7b89db 043f7a74 9c714e03
3c8cfcc9 99671a5a d4938cb3 cd9e3307 94b7eaa9 5b36b17a
df178303 9f82345d d276a2b2 b70a39f2 e84eca5d 8e31d79d
0792ce29 0c91eb5a 55db052f 280c8687 d743564e c5ba6f18
eb42430e 3f8d117d 72798790 b70a39f2 4845e93d ba641790
6abbd8c4 95d51ddd c9e1108a ac6d8a7b 85081741 c8a38df8
187c42ae 6bbf5170 264bc79d 07fc3a92 f8b3ea5f ba641790
a3dd2d34 f88c5e4b 54401f03 ceb0c37e 42ac1ed7 dea47763
bb2394d1 6bbf5170 c773103b f34fbe66 0c006eab 193bc1ee
4a72c758 a4c6371b ffe37b5f efe802c2 9d0603c2 d4c25ec4
847106f5 df5d81a6 7391c0ec f34fbe66 81a1bf65 266953ca
a4665691 bfd79ff1 f223091d c9dbe550 8fe16821 c791a96d
459eac37 ec8b1382 404752c8 b52f6924 c7c16826 266953ca
7bd4fd52 22c480d5 b7cf353a 1285860c bba2eb59 bc8a8399
6d5f3992 ec8b1382 7980a76d af1f063e ddf1073c 0ea8c76f
f5970607 0cb4e93b a3412074 6e0a973f c72dfb6a d77496f9
df7d7d64 22c47fd5 b7cfca3a af1f063e 06386b6b bc8a8399
94cc10c5 f8ebc8ec 765b7e7d 0fd0c194 9a8e8d92 b62f833b
9e691367 0cb4e93b 99bf5cd4 6e0a983f c72df46a bc8a8399
2f970008 57faadc1 34698974 397c0f68 cd113fb2 961f843e
a9f262a1 0cb4e93b 6f27cd8f a2d71c31 0bf07064 8b11f25e
44b7758a 6aed1fa0 6a04cd22 f7b4d2b4 03d9e26f 3376320b
b4fc14c1 57faadc0 34698975 a2d71c31 56ba2ceb 961f843e
49aaab00 fb6675fd f0b9f907 faadd1d6 7e4b56ee 3e6bec82
e1dec3bf 6aed1fa0 097e3b15 f7b4d2b3 03d9e268 961f843e
4e4fdd29 47b11ac5 1958bb1f 43ccf7d0 92fddc2e 7dc8415e
e6b746e2 6aed1fa0 3404be78 8806a2dc 7c6b9207 91760161
dffb70ea 2b5e5ac4 e95f1298 4f69f265 9e58d999 e0dfe7e0
0a0906dd 47b11ac3 1958bb19 8806a2dc 59378922 7dc8415e
3a2f0609 6288e943 84a4183c 16e577e4 1ebecd9f 050b9105
42ecd654 2b5e5ac4 75b7fb1e 4f69f263 9e58d99f 7dc8415e
dbae6db9 837442f5 88abce0a 0c796071 253e745d 5222bba4
159abb77 2b5e5ac4 2081d63c c211215f 13200aa3 2abe2c7c
842f3053 35d6b9b4 e6909de9 4999c832 7abfd1f9 42820d8e
443fe121 8d534894 868cc46d c211215f f1373893 7b1b762a
f978d8ff fdd05969 a339f8b2 47a2af4d 95aaafa1 ce258b0b
4c4625df 5eee724a 5531feb3 ba49de49 896fc784 7b1b762a
27a803f7 98eed0ad 32a036a6 3e0622d1 53205ae5 33bd8ff8
2ed79cb1 5eee724a f4a09445 614deab3 526bf37e 198acf40
8c4d5ef5 3ac390d1 cc7c8b3e 365131ef 5b7749df 802dc5dc
04e0dc09 98eed0b1 32a036ba 614deab3 0c6b9287 33bd8ff8
fabf89d5 dcc3242d b1b34d2a 7210d95e 7d36d2d2 f6df12f0
3fdd14d1 3ac390d1 908d76da 365131eb 5b7749db 33bd8ff8
cb9d727c 7a06d9f3 c1727a70 022e41b2 ae4780e1 4cc1f6b9
4883d647 3ac390d1 81b73353 87325815 ea142025 44e34d6f
49c1a80d 8228a3cc d0dfe5e7 2856ee58 843f2f0a e4449961
40a16d91 7a06d9f4 c1727a77 87325815 2b5b9946 4cc1f6b9
fa3b9664 12b9a465 d4c8f7b5 bcc82157 8032e0bc 57bea707
e144c7d5 8228a3cc 395c004f 2856ee59 843f2f0b 4cc1f6b9
6a954c6a 35c74474 d3ebb501 d6b65d44 b6be3cb8 94603006
daff75df 8228a3cc 640452b7 85461246 292fd314 777a44b1
2fca61aa d55a12e1 1cb7d7a1 0a06cc2b e09f4f2f 1d8f8afb
944b865a c0586584 267494fd 85461246 6fdf914c 39ceb734
5a309120 839ad094 38ee7315 cff8b507 a3b0ee9a 0f16693a
6ce84f2c 01ebf7ff e7c70686 2ce7d8f0 c67e5bf8 39ceb734
d1f4b01d 8478ed29 235d658f d1fa89d3 bcdcf1e0 30943293
afe1b679 01ebf7ff a6ce7f5a 45c0ff5e af597c56 fac74e60
4d540997 f6e42cca 0c1548dd fcfaa26f d5bdb646 413492bc
b84e4f50 40998921 e7bc0185 45c0ff5e 6c87eb74 ed68b749
eadd1dc6 ea6db0cc 0c4141b4 9e6e1eb2 79d30e51 2c70201c
2bc58a92 2bf7b414 8cd23cb0 b7474520 9e00510b ed68b749
a0925142 b24d3bd3 efe11f6e e22868e4 4db4f316 161b268a
65426e89 2bf7b414 765b90a1 f24c2eef db0b3ac4 a3ef535a
08b6878a ac394c7b 532b388b ead6e24b 454a79b1 b78176bd
d0b61b59 b24d3bdb efe11f66 f24c2eef 5dd0b51d 161b268a
1349496a 0cd1fd0b f8de4b8b 7e0c5580 6e39190a ac7eb845
a92cd7bd ac394c7b f19568c6 ead6e253 454a79a9 161b268a
0a4674d2 635b80a2 c269b5ea 798c5486 1f3284a4 a08317c7
e696c620 ac394c7b 0d0b7932 8dfee2a7 2262795d 59a13716
6c60837c 22622356 af056cf2 af9fa2cf c92172ec 8cb83223
1fb4e6f1 635b80a3 c269b5eb 8dfee2a7 eb403285 a08317c7
4f3cebfc 7cade76c cc3e9f4e 1697284f d79dbc76 afe45aa0
405ba698 22622356 8350161e af9fa2d0 c92172f3 a08317c7
6db97964 2c83e0f1 ab963bfa b78fce4f c76f438f 9a8e96e1
66be0cd5 22622356 a577f85f a1309027 c78e4004 8666bd88
b6815fdf c86b985c 0fa664a5 2e1fc5d8 5eff481a db46b8cf
7a5627bc 2c83e0f3 ab963bf8 a1309027 d1d01de7 9a8e96e1
acdae380 1284c9c3 bf208179 9af0ee53 2009517a c11d048e
f74971f1 c86b985c 4f7e4357 2e1fc5da 5eff4818 9a8e96e1
ee7bca72 225d28ed 92ce50d2 53339ec6 99e18094 f30eeda1
a9cbd4e7 c86b985c 78f8e07c a3865e04 d366d3c6 c40c33f6
5fdb0a24 429c10c0 1c6dcb1c c0453526 fc5679b4 d55db410
4b38b744 939e5727 230d2f06 a3865e04 9f951289 26ff5055
6c59176e b8b42bf3 3fa1f0f9 5230831b d42b4160 fd81b33f
b727f405 6eabb604 de38ce25 c7971b43 fb8457cf 26ff5055
f8a66958 7b5a6435 162a0d26 7bd3ab59 331251e0 ee850478
7204e517 6eabb604 03dbdf0b f788e28d cb9bae01 e3dc4143
f3e8cbeb fb41777a 75df4dec 80366d66 b56c2037 e96ee4c2
5999b763 67f2b6c5 0a82dfce f788e28d c2d2afc0 c8411337
f8301244 84d8b4de 344bccfb 2912a6fc 4fa73f82 0b64224d
3b15233a 537d68a9 3e0d01a2 59046e46 6c5e230f c8411337
1a75bbbb 9cb52353 bb7917d1 06beba11 782cbde3 032a0ec8
71c8eea3 537d68a9 74b15c2a e0b334aa d5e979e3 829cdeaf
d7c039c9 1e4072fd 3ecde2cc 198a585d 67185fae fbeb6a77
f07e3ec4 9cb52352 bb7917d0 e0b334aa 9e213358 032a0ec8
1522acb8 d7acf89e 8a00dc24 57ca44d5 6034c941 3909ff01
2f015d76 1e4072fd 398c467f 198a585c 67185faf 032a0ec8
e0c513b1 066d3b2d a6314977 ff319f7f 998f4f5a 9fad54d9
57911f1e 1e4072fd be1c00a1 abf4abd3 d566ac20 7bba4ca2
dec13f3d 1babb529 944dfafc 60a20970 00aa6886 3e198e66
62a4e353 ffb6ccfa 5feabea4 abf4abd3 cbfcca23 4e8fb0ef
e7ba984c 0e4f51bb 2983653b 1fa4effd 3c2a2e23 d5ff7313
7cca5bb2 4ac8f1cf ea948391 b20f4374 d2072286 4e8fb0ef
113a18c2 201add26 e66b8efb 3fbed6bf 0ae49bf5 2141fe09
46e17933 4ac8f1cf 8cb9a211 4188db50 2180baa2 74a4926f
39fd011d ceb86ff5 ece17855 02972004 b2027491 caa93112
5c84860d 9b55e473 5d24b7ac 4188db50 f11d8fc6 6ec16d51
d90db151 5390708f f3cc02d0 116a929a 77865acb 48ac8bd2
ff6057d3 9d38fcd5 5b49af0a a0e42a76 10717ee1 6ec16d51
f89ad735 2e944fb3 b6e3fcb4 4b31e65a 0ac141df a08a6393
d166f61b 9d38fcd5 054f4fc2 84c26c46 345738d1 40c7cc89
00d08c1b 8ed1a955 44d51b7c c5e92052 841987c7 d21762b5
312b5901 2e944fc3 b6e3fcc4 84c26c46 c532cbc3 a08a6393
dc30eeb1 fa499fac fcadd03f 547d1df8 f9158014 0ef7002f
724d8d3d 8ed1a955 16a61a52 c5e92062 841987f7 a08a6393
c869f8bc 07f2a50e 5845a263 8c5a879e 374b24d3 818cfcb5
b50e5957 8ed1a955 d166ae39 153d7244 54cdd5d1 67c9b7f8
6d2a5312 2037e750 6b620db6 427736d0 f966959c 6d2be02e
534b121a 07f2a50d 5845a260 153d7244 ae2cd109 818cfcb5
9b5c180d 851610b3 fc91a55a ce92176d d17ddbc2 9b5dab32
818d4f89 2037e750 7f80e03d 427736d1 f966959d 818cfcb5
a971860c 73483ebb 7640ade9 41dbe7a6 4ffa1d13 beb8884d
26df3ba6 2037e750 253f7400 2a148ca3 91052fef 26de8898
fb8e346f 0b7e406e 3cc177c1 34f3f22c 3ad2089b f16f2caa
beb93b73 73483eb9 7640adeb 2a148ca3 24357616 beb8884d
ad80cf86 4343e148 aef20304 12cd687f 572af3ee a761d745
b4599088 0b7e406e 0e76d33c 34f3f22a 3ad2089d beb8884d
9fb98e89 174c071b 6ecbb2f7 44e80ffc 5d07ce99 e9ee2547
39d6b222 0b7e406e 72f9f585 d9717cf2 d7508645 3337aae6
172ff97a f981d316 3622ced0 5e800cb4 9a6bf84b 98c051ff
4845f2e7 c2483aaf bbcf8f45 d9717cf2 1d9a880a 42a4ea23
96908bb0 453bb05b 40332308 82c825a0 35850f46 ce25c78b
1a11a619 52da7a6e 2b5dcf84 2745b068 e3ae4491 42a4ea23
9eb132e6 391a47b7 6b3bd316 067e913c ad55537a 75a698fd
438b84e0 52da7a6e 00fbeecb 741c335f b0f7c7a6 1b3ec8de
801afb9b 12a27752 794643de 2adaaa98 81f168da 8f6938e8
2d13d4c3 391a47bb 6b3bd31a 741c335f df37f119 75a698fd
fb2e17c8 958d49fb 455599d4 ccacb67c e2ba2297 f45dd487
7ad55b8e 12a27752 4083e3f3 2adaaa94 81f168d6 75a698fd
4c13e0c1 290e84ea ff6b0984 c732bbc8 06a57411 e71898f7
f69952b9 12a27752 c4c7fa3d 2b9b0704 80b0c546 f9ea91cb
356643cc 15d88a9d e0739c98 4f5fa5d5 8ec86a0d 065e218e
e86b5b85 290e84e9 ff6b0987 2b9b0704 ea0cc8dd e71898f7
adb95366 055d3300 88931693 263d9a07 9721e23c 9e81311b
d420fab5 15d88a9d c3bd07f3 4f5fa5d4 8ec86a0c e71898f7
45fba345 492eddef a49f3f99 7f6b0970 8b852a58 32851af1
cd5c8f91 15d88a9d f86968d5 3b24b1fc fab37e24 fe64edd1
8ea3b505 22a62aa6 62ecb78f 3c40fd92 1ec55cfd baf718d1
5b663fb2 76c65c16 9b77be5c 3b24b1fc 19a110ad 685e5df2
e6b2952b 1078f9d2 c61d74be d3c7dfcf 01def121 51120916
dffec1cd 60e56c37 8d548e7d bf8cebfb 9d094aa8 685e5df2
8eb11ca4 e98b8d26 fb76ce5b 7f3a26e2 d411e4a3 368247d9
3a092318 60e56c37 72182f49 7ea767a3 5c22c6f0 8da9bf26
d45277c6 81667670 ebdd332c d67a8ed5 cf954fb5 db21b4b7
34c32ee4 584f8c47 4ab2cf38 7ea767a3 6748a6c0 8363b2da
d1f7f927 179ea2b7 fa2f40fc 97dbf83e 74d33c9e 5e1851a5
0c8c1a59 4e859f79 5c78dc06 56f673e8 4f19b28a 8363b2da
f3fd2b80 cf0232f1 3b0d8459 37120aca ad7e5e18 8bc08df9
eb998d60 4e859f79 ba8a29e9 4ec40cdc 572bcdbe 647625eb
8b6dbfa5 33b8f4e3 ca865dea 4c6c0811 2c1986d7 06fa1c1d
8e248127 950b6d15 6104db8d 4ec40cdc 2eb18222 01cb29ac
f72bc17d 0c14a113 1ee9e264 9e9a4353 5c519de8 20b8b693
d6585e4a a9be514e 5db1e7d6 9667dc37 f61252c1 01cb29ac
f3e76131 439c5b0a 73173a83 052e9f49 ff7d07f8 a91f745e
e9d5a37b a9be514e 993530c6 81ca01c1 e1bf8f37 3e46d49c
dc54e099 36bb3c49 178d64d3 efd515d1 15868d61 99ca6b6f
7e8c03b9 439c5b09 73173a80 81ca01c1 7b999970 a91f745e
b73f84ac d9140f88 a318f30d 20253954 bc8952bb f2a10f59
ec81ffa8 36bb3c49 06305dc0 efd515d0 15868d60 a91f745e
e1e6434c 47b79dff ca600cf4 fa3229ab f17dd3cf 3c02c90b
43f5282a 36bb3c49 bb6cad40 61ec2b58 9bbfb3e8 066ba3de
41090d2f f62883b2 b8b9b7ec da0300d7 d14cfab1 fcbc6c5e
799c42ff 47b79dfd ca600cf6 61ec2b58 6aa3d13c 3c02c90b
b0575e1a f4595e82 abee59e1 002ae514 09aa3022 0de23f65
81b7a87a f62883b2 7bff12b9 da0300d5 d14cfab3 3c02c90b
644d4f37 2cc930e7 56c5cc6f c0d98f82 81292818 821fad14
958d55f7 f62883b2 8c247f35 983c0ecf 9373f4a9 28383487
cc831257 95c5dbac 0548d552 ad4e9bfe e5aa4212 1e44fcf7
ba718b0f 33bd632f 49b19fa9 983c0ecf d0d8d72c 07c4ea7f
52f0b8e1 6001fd66 edd66c6c 65cd6747 f370c7f6 1b8f7f02
4ebb2d9d 12293697 6825ca11 24067541 6ce2aca3 07c4ea7f
428fed11 8e3051a6 90f59015 f2ce54ff 3625a00a e7e2f5ec
e502685e 12293697 0cecf728 96e103e8 de05da0a ac7dafb8
4f2d4bc8 d6b08022 4033ecb7 a6168838 eed77295 179807fa
d6a59ac6 12065756 0cc396ed 96e103e8 de20f949 9fda5d20
e1a7b8d6 441e694f 3e1295cd f50cdc94 8b3be3b2 fb2197e3
855c7211 0ea924ce 106ce575 67e76b33 2f269196 9fda5d20
c0d666bc 045010cd a455423f 30b0d8dd 0ed83e78 02d757c8
3b9fc168 0ea924ce aeac763d 8935d699 c1f42c3c 2119ee58
ecf39bae 648a9c3e 33aa7a77 c3b11819 fdd9febd b9f2eb1f
185178f8 045010ce a455423c 8935d699 b75d303c 02d757c8
03e0cbc0 24ae3c7f d0a18ae0 13d5d507 ed5953e2 56e1bb76
57d62779 648a9c3e c48fcecc c3b1181a fdd9febe 02d757c8
b236af73 20754e4e 8dd106ee c137fb4b 3b6463fd 26385b75
45773dcf 648a9c3e c92ed498 822a77f8 bc42915c 10764d7c
7d06ada1 83e4d1ec dd682daf 72c79339 35babd6a 38982653
d2ae0207 6d9ee3ef c03aab4b 822a77f8 c55759ad 87af72b4
b53452d7 a50f0b97 050a5967 3dd3d73e 3bc5a705 7a107d02
488b5d63 e675c9b3 4bd18117 fc4d371c bb30194b 87af72b4
d6a78d2b e7ba9603 f0be0067 c3689880 8ba96226 981931c9
3e2befa1 e675c9b3 f1715fd4 43ce0b74 04b32523 f10fc077
48468704 90b94878 80fc7aad 8f300ad2 45e2149d 52c0a837
96a4241e 69cab9a8 7ece2fce 43ce0b74 891c1538 59800bc8
7a990023 bfe6606e 124228cb b7afc570 0ef25930 f01fbe08
d306b5e2 d15ae27b c65e741d ff3099c8 35e28785 59800bc8
578bf5bc 41569dc9 d3dd8c13 bfdcaf27 8511769c 319627b0
5f803956 d15ae27b 43d1f381 e4459b25 2e978568 d506875c
e75da85e 16c67e35 0f2b13a6 b9640872 83a9d1e9 b8f88369
bb1099ba 41569de9 d3dd8c33 e4459b25 de88429e 319627b0
c5921a6b 31b0fa0d ca9ce14b 21be4451 74061122 9a37313c
6e330c87 16c67e35 844d6fef b9640852 83a9d1c9 319627b0
27d8282f 00eb4547 542a4525 c57e2b6f e18c8bc3 08cfc3db
ac693d0f 16c67e35 42077e56 f60b6ab1 ccc6b32a f3cc1639
fd460b2d 15f012e2 dc9ee860 16a1f650 325356fd 7d7dbdfb
576ae8ed 00eb4546 542a4524 f60b6ab1 d2f9ca1d 08cfc3db
e82e929d 2535806e 9133e0be 83338ecb b70b80f2 68152448
88f4750d 15f012e2 41311280 16a1f651 325356fc 08cfc3db
398598e3 6bdf1f2f d643ceb5 854628d2 ffa7842a 0f07b339
f19023c5 15f012e2 a86cc37a ceffb3cc ea0d1361 71ab9511
76c8da22 907afdcd a27424e5 44755ddf 3e94f125 8379bac7
8f3c05ed 6bdf1f2d d643ceb7 ceffb3cc b41e1f34 0f07b339
8aad2c72 76c3f1a7 5b729b53 dd703287 bc5a9253 7f1c4c91
fab6d3dc 907afdcd 2de62c57 44755ddd 3e94f127 0f07b339
e7132c8e d9526938 6d5409ed 4e65be42 8ddca624 ac7ecac2
f0c02295 907afdcd 247c9d1f f8a938da 82489420 05714271
f64a323b 955e6184 b18f113e 95c4dfd8 4d16573b 648735da
060d4517 ee6bd9b7 5a6db964 f8a938da 207bb03e f3bc25f3
a3fc5c0b 99f7542f 246b85b4 ad72c7af b3c2186c fd5296bc
ad12ef45 5418fd51 e01e9d82 61a6a2ac b9742a49 f3bc25f3
dba0ebd8 aa06213d d4dc2f53 53ca439a 7d75ef4f 2c33151b
e0211938 5418fd51 2ac2f33b bae50f89 6237876c be8fd38a
a0eca5f5 186a64b2 fb3ed1cb 8c775ea6 a2c8f277 90adbc26
729ddfa9 aa062141 d4dc2f2f bae50f89 945aa35c 2c33151b
bd3b8d30 5e0df62e be2c7868 996acfd8 ed09f195 8d7a94ef
1c720cc8 186a64b2 66b06adc 8c775eaa a2c8f27b 2c33151b
3fd97798 938d8277 f12c9714 1615511b bff79b8c 3490cb0a
3fbb05dd 186a64b2 7acb71d0 3b0cae5b 15b3028a 0ffa1c0f
15e5785d 3efecf81 2cd46d01 fccab502 55287f94 e41a5827
04d1d2d8 938d8278 f12c971b 3b0cae5b 92ee64cc 3490cb0a
9cd782d4 9078d5eb 0b403910 4d3f24cd b663f5cd 6d28a2a1
c56feb70 3efecf81 5c5fdae2 fccab503 55287f95 3490cb0a
d3b0be3f f9ad75d7 d41c1f29 f272d339 96e3a3d7 d904bfaa
0e5e00ef 3efecf81 134fa571 d9bdf21c 705f388a ffa12097
ce2041ee 142456f7 8d699462 270870bf 038b01a8 f169def7
7432a72c b99f7604 942e1cf6 d9bdf21c fd3e8305 85cd8754
abf9cae8 b9089610 dba98371 1c108fb2 80086750 babd31c1
94897c7f 41731e49 6cc274bb f903cccf dd80bdd4 85cd8754
319a5fa3 4baf5a01 9cf04479 51ee896a 7f5125b8 84b82525
3e3fc1f7 41731e49 962c0032 ae110a0e 8a927b15 2f7b3add
204aace8 ad63d044 baf09b08 cd0d28b6 0eb430d5 100bb539
de93734d e0a8c58e 37f7dbf4 ae110a0e 6da8126e cfd78867
b4e4d339 e6c6d66a cb77bc99 7a8bd98a 50b12443 2629d4df
5d1a8f80 8044f102 571bef78 2f9916cb ec200eaa cfd78867
c4dfb6d4 a1e7ee75 7dd2a8c4 f94b217d 1c1734b1 63c62bb0
4660b749 8044f102 5c71b7bb e4fe8c08 27479469 d4adb0a6
1becaa59 a8bf6b77 be46c783 d797bfbb 32cbaa7f 9e8a91f3
f10b2c5f a1e7ee6d 7dd2a8dc e4fe8c08 01a299c4 63c62bb0
47694977 238624f8 19f8a956 5696680b 36b4a74e c20f72a5
e6a0101a a8bf6b77 748a2dc6 d797bfc3 32cbaa07 63c62bb0
8c7341f8 90460fe9 f1368d02 ca7b8cf1 069936c6 67ca5eec
6c675c42 a8bf6b77 c9cfe99d 6428a988 8174bc4c e90167e9
436bc853 0f8d2783 0c579873 2821c17e e4c37b48 0a349bf1
e2ac6547 90460fea f1368d01 6428a988 a8ca13bf 67ca5eec
4f6d1a6a d4abd269 2b73bfa2 492a4f1b db2b2a07 063249cb
2e950d4e 0f8d2783 6efda568 2821c17f e4c37b49 67ca5eec
cf7113b8 754a2844 103a2c03 eb81f208 d91e48fd 6af80ac6
2296b3e6 0f8d2783 6afd23c6 8f582c2a 43ba961c 6bc9e046
9915cce5 741b722a 7b99a7a0 d217e974 e0885383 150adc09
23a75966 754a2842 103a2c05 8f582c2a bdc796df 6af80ac6
61d8b1cd 36eda422 ded23ec0 908841a6 65f9ad49 edc7a15f
e6e71a2a 741b722a 116b766d d217e976 e0885381 6af80ac6
aad776b2 1188ebf2 ee508644 81e2dcb1 51efe871 28c09785
897f64a5 741b722a 8bc31fe3 8bea0c67 b975b690 05607448
808f3b93 67e16e4a 0596f962 70fe28cb 8b3bfd0c f1bc16c3
0303fd8e 3d418ceb c299e123 8bea0c67 702fd9df 8f1ced63
deddf79e eaff37c9 8f8f338f 70624d08 6f2525fa f4b483e0
a575991c c77da490 38a5c958 2a346ff9 d1f1ba40 8f1ced63
f903e21a 035917d5 e37899e7 75cfeeff 426ea7fd f5a5db1c
450f7992 c77da490 275c2ade 93932a74 6856ffcd 6f660de9
3a152798 58aa2624 83e0164c c9cf5c74 cefd740a 5ab081ef
75eeabaa d2e9f6d9 32c87893 93932a74 94a10276 5f87dfd1
f3d1ce1b a93cb07d 56e4ddb1 8cba6cce e11ca37c 7f3ebf4f
d368ae81 42c808d1 a2e9869b f6192749 f12b0f4f 5f87dfd1
537f67c0 bf47aa69 23f2ed5e 73c84678 f0798fe7 5f4c8b27
90f4e9ec 42c808d1 de7d4fe7 f483cae2 f3b1e2e4 1c1b98bd
a6998aaf 0a16bc5a cf2327b6 88e9af03 0b58669d 87ccdfdc
d3a3fa76 bf47aa6a 23f2ed5d f483cae2 7732037d 5f4c8b27
bf99dfd3 22d4a1fb fee1e74d 7386d98d efe976b2 9ecc8aa7
7e19de54 0a16bc5a 96a3fb6d 88e9af04 0b58669a 5f4c8b27
dfa41fa6 5347acee bc8c595c 0ac74f19 c625f529 f625d1b3
93366cd5 0a16bc5a e5dd49ee 029ad675 812b1feb b26339a4
a422a106 a73bde31 e51143c5 2aa4d4ac 4e35a448 ed7df2a0
ba4a1f13 eaf6639e 053d9628 029ad675 660ba697 9b1f4a62
774104f4 244e77f7 b8fb30c2 a6ddf8a8 92706abf 48089be3
a456d577 543256c0 bbf9a376 208f2019 441e50f9 9b1f4a62
1ede0429 f6d30de6 6debe110 5f813eac 58b316a9 1a9f3e7d
79c5deb5 543256c0 cf0aba35 9a89a36c fe18d38c 468c41a1
a6786bd5 d1bc17e9 877a1cb7 e82f75ab 7e0942b5 2a971a87
50406309 85c71cfd 1efff009 9a89a36c 0caf9471 6f09fc1d
2bb40648 1c3237db f3f9c26c c96e839b 4c61faed c39d04df
8720fe8b 2d48f581 b6701975 436906ee d54f31f2 6f09fc1d
17913d57 de61a59a d885ea59 324c5336 7572b413 a7061e8b
329c5c5a 2d48f581 2bacba32 69de31e0 fff806fc dab55edc
f83b1d3a c45a4f7d 30a44149 e09505a2 3f12ca5b a6e4cb62
50e20e57 76aa8dee 704ec24d 69de31e0 b659fe69 b8cb0cd1
9fb17ddc 753101a6 ee09ed42 2deedc56 adf52912 4d1faa22
6a65db3f d49cdbfb d2789458 54640748 8be3c8d1 b8cb0cd1
339761ef 7b662f5a 92e76e1d 97cabf80 119b9d77 5a88e437
49c9299b d49cdbfb 3d1d9abd 015a1197 deddde0e 9b67fe74
800876b1 bc4536b2 fada6107 6659c5bd e008e74b b7a6faa5
882633d8 7b662f59 92e76e1e 015a1197 870b3360 5a88e437
0b4d8e25 cf835813 04580752 a8d82cfe 315768a9 3ce30232
6d266823 bc4536b2 55c477f5 6659c5bc e008e74a 5a88e437
6d7c2600 277cb80b d2b07c96 31ae70d3 c026d49e 52063172
517aeb99 bc4536b2 4989f22d 29e2e577 afb3c781 66d4678f
bd746f17 0a5381e8 06e3aff2 c7d24f5b 365aeb14 68e99aef
65a8bd64 277cb809 d2b07c94 29e2e577 d86a413a 52063172
3b28851e b654e353 2428e75a 4a15a132 d79fa488 eeb570e0
879bc48a 0a5381e8 ff9f4575 c7d24f59 365aeb16 52063172
49a29926 d555a0bf 1e8efffb 6d845124 d10e9203 b5f8291b
fd8939e1 0a5381e8 c188deab 46c796e0 b74f32af 2814cc18
37e44df7 83375a92 2d10163c 4f723021 9b35d1d6 e9acc2cc
d2fd2099 ed12bf89 26c9e0cb 46c796e0 92807710 0760d560
49d69c2f 1f349cc5 eaf85859 6ab8fff5 f5052a86 31523abb
7fe473f5 53bea943 9865f601 e9ae477c 3de9a68d 0760d560
ed948f7c 071a2fab 4afac110 f4d86766 737b0f33 2a61bfb5
f1e2c24c 53bea943 1e5e47fc a567dd2e 71203cdf 896664dd
e3def51e 2016ca07 286fe895 340a3d2b b3a9557a e4f9f38c
52e51924 071a2fa7 4afac11c a567dd2e 22c4b57b 2a61bfb5
97a03743 4ab36f3b feb50ff4 0a1ede84 b85ed301 908731cd
2d46b927 2016ca07 6df624bc 340a3d2f b3a9557e 2a61bfb5
555a8f64 ee40650c 1a2315ec 0e61c27e 5bacc12b 2ecb3afd
d7c34748 2016ca07 d475bae6 99f71378 1e547b29 d0e441db
5be75b33 d4617ea5 e0ce5b73 c7c1c1a4 920cc2f0 6f16eff3
29ec3c6e ee40650b 1a2315eb 99f71378 cc3a102d 2ecb3afd
f8036f3e 12a1f61d 802ae7d8 8eb091fa 1abdeb36 ccf2dbe1
1a3a8e3d d4617ea5 20020e45 c7c1c1a5 920cc2f1 2ecb3afd
08025b92 a3871c06 31fb1815 c3004752 e7f2e7e1 468ac78c
f8127ae8 d4617ea5 461d7aa8 a9695ff6 fca45ca2 cce3ce2a
842834e7 c7709a3c 32b03a9f f4b36200 22c04a07 0413822d
943f515b 5507a36a c77ba765 a9695ff6 7f1a77ef a0cee599
24ad2cac 07234a9c f3403a7e b8eb8bab 046a727d 02b6526a
86d59b5d 211478e1 b3687cee 9a9329f8 4ce001e3 a0cee599
b5769289 d244b919 c856e4e0 c0c590e4 4766f8b6 f6932ef3
0e7e4141 211478e1 3b06251b a2fb532f 74887b34 28653f84
84398fdd 54fe24d8 cdff9bae 8406dafb 388c19d9 831e894d
22345917 072c13e7 1d3e4e1c a2fb532f 1e71900e 042f27d2
a2d042d8 2b5e1bfc b9221ff2 52c03a70 2eae9911 7c98cde4
da67a8ef 6b7a3bbb 71686640 5b2863a7 e7a2a087 042f27d2
f1c53135 72a8910c 8edf754c d3f48ee2 104d969b f4f04e2d
38dc211a 6b7a3bbb 970ddfe3 ad079eff 118d5ddf e694ae2f
56564e08 56f82d9b 7a125f35 618c17b9 fbe04343 c49b49ff
4a603494 495bcd7d b52c292d ad079eff 376bca1d 9428bba1
3c5496cc 6aa0b198 70b2ec6b 0a7777ea 9d2a3c91 b1c3354c
19bf1829 6dafbb07 91d85f57 5c56b352 c63ae7b8 9428bba1
f20d2c4f cfb8dcb0 59ec4b73 08fbfaf2 f48e8c66 fabbc3bf
a392cc9a 6dafbb07 fbfb2cc5 8ddcae8b 17b0fa61 2e056f13
6d85f94c 1d0a1145 20049912 cd355822 31402eb7 a175b453
772c6036 cfb8dcb1 59ec4b72 8ddcae8b 71a9d81f fabbc3bf
00544c7c f260b1aa 9a5c64c9 4733f4c9 96ffe233 cca40160
364b8ea0 1d0a1145 8b5e8686 cd355821 31402eb4 fabbc3bf
576e72a9 c1d306b2 52eda44e 954c5a26 34723626 3b20ef42
3b5583e7 1d0a1145 8e34b3bb f5ee0958 099b7fcd f7a5cefa
c4d51688 8450690c 2332d420 b48ddc33 15b3b031 4f450972
f7d0a25f c1d306b0 52eda44c f5ee0958 54d06558 3b20ef42
1af39279 29c0bb3b c041fa72 ba3b599c fc95e7ad 91638d8d
b0b0f0b8 8450690c 176ecbf0 b48ddc35 15b3b037 3b20ef42
f3ff1e2d c299cca1 aaa519cf 6420345e bba7fbc8 1a23929c
9b8f3e5c 8450690c ec6cbc6d 05d3c7a8 a4edabaa 101f21a7
1ff5bf39 d5cc2bcb b55881f5 4cf27f8c ac4560e5 cd5b68d9
5e938c00 c3c91c70 abf5c910 05d3c7a8 e564d8ce d50393fb
8484bb38 2c6ab203 bf5410fe ad7f96ea a94a34c6 00056197
51824955 08ec2f3e 60d0fa5e fec5825b 1e729d3c d50393fb
ae10d1ee fc7cf1d0 2ca421cb 5f878b04 8bc06af9 0c5e4639
b91e5418 08ec2f3e d834ff29 41bacdd7 a10dd2b0 3d9f8eb2
37796142 850bbbfa 0542ea6a 35bd99c6 30296d6e 4ffdc7df
240c9cc8 2dca047b fd12d468 41bacdd7 442e3973 a08d4662
3bdc7254 5a330131 320fd455 8670e1a8 489bdb86 37f14baf
aca07f9d 90dcbba3 40046bb0 c9662d2c ccf2d98c a08d4662
b65d8120 875bd6db 2eb506a7 42c0e272 bed4edab bac449a3
758e7f32 90dcbba3 39326bde 425453ed 47c0a74d 79a346cc
e267c87b 503ad843 ccb3671f 85600ae6 7974053e ad5f3883
b6e9705d 875bd6dc 2eb506a0 425453ed be405c34 bac449a3
4275ad82 6023cb41 9c542f16 1df800c9 1605021f 0d4d5d7d
f5fcb95b 503ad843 f9d4083f 85600ae7 7974053f bac449a3
53ad0348 509c3efc 334a22da 7b9d9f82 87e8e911 c83d4822
3b9365bd 503ad843 33ecc463 2f464512 d3524aca 74ab9547
83202f84 1582bdc2 1f7f97e6 acfda135 58138227 4fd0629f
e791a467 4914eb7f 2ac2f75d 2f464512 dba86606 a8a9549d
da96a51d 03f0fe33 aa1e2e4d 6a7bc7d9 69abb325 eec208f7
9cfdf975 f50eac4d 96d8b06f 14620200 e08c2116 a8a9549d
3ec786e0 05b57dd9 887b5877 564a54a7 53dea004 5d829bfd
e6f5f3c1 f50eac4d 78c089e0 2759e573 d3b7c665 d2a15e28
d93d7f5c 378ae05f 32abff54 ff327188 537168d4 d51046a1
69e9e0ab ac63a296 21ad873a 2759e573 8b1afc2c 5dbd4d42
4b5dc659 f5a4c23f 9672de1c 58a5d9fb 322df29e 33c543ba
2525c8a0 375fb038 ba919594 6b9dbd6c c7dea432 5dbd4d42
c6a9a8c2 ae4c15c4 f886bd86 e5d45f73 c6fb2059 eaff6639
5e214a3a 375fb038 6195183a 3216161a 9e550f44 26b9cf98
3a95127c f3f68c25 c4e9439d ab3f300b 88104f61 cb548daf
9267e39b ae4c1604 f886be46 3216161a 11396930 eaff6639
f3d394a0 afae9bd3 c273d12f 42b86b7a 9c5fe462 021208b3
1b3ef9ea f3f68c25 a53c2467 ab3f304b 88104f21 eaff6639
69282032 4c0ca16b 39d0358b 4d974c61 36d2d8d0 2518ad97
fbd0cd0a f3f68c25 862a18c4 f3285e8e d00721e4 0a1152d8
a54f1e9d 67153eab 9e3a438f 0e8b4a03 75cedeb3 a86b95db
d4d93245 4c0ca16c 39d0358c f3285e8e 886dca3f 2518ad97
3c495a21 1987eee9 9bb65647 3eb53af4 130d7e1a 316dd164
283c26d1 67153eab 12c9aa4b 0e8b4a02 75cedeb2 2518ad97
cdb42b7d 9d3b6094 7cf32fe2 a1de1c70 10b5aaeb 08999492
9c20e36f 67153eab 86dd71df e9d4e7c5 92917375 9104682b
fa7ec127 138eaae9 9df035f4 2be181a1 9a8a3738 b54fe439
05bd1fd6 9d3b6096 7cf32fe0 e9d4e7c5 58bf515e 08999492
3c660b65 6a7cbc80 26f955df 0af5af30 02ac6700 73572e7d
47a8b18c 138eaae9 f246e59f 2be1819f 9a8a3706 08999492
6f8b70fe 5bfa6b89 d9cbd322 3a500aaf c3877d97 67342bfe
e633d8d7 138eaae9 91bf1245 80c1d4ce 31aa6257 a902fdc8
307fe130 5a83e59a 6681674f f7271f47 4fb53c3c f5e98ea9
7329e19e 1ab517cc 9884af61 80c1d4ce 3853f7b2 3c18c481
608138f4 db828aba 3a4ac5cd d7dec039 09b3101b 9baf5b4c
c736a738 b5a6de15 379766b8 2cbf1368 942d3015 3c18c481
db7bad8b cb6d2ac2 1d3c021d 78f22bf1 b6aa5bd7 582111e1
6b165712 b5a6de15 63f7f6ce f0c5d344 4857f039 903834af
cb04f999 9394c870 2f51071b eb28b177 2570c155 3e95b86d
a30f725c cb6d2abe 1d3c0261 f0c5d344 3e9da362 582111e1
9c7bdd8c 0b5b355a e3418634 36e39a1e 70fd4712 69ea9c74
adb05015 9394c870 45c5e0af eb28b17b 2570c159 582111e1
3966166b 009c0e1a 67260de5 4ba4940c 70fb21c7 825f01ca
1c18acf5 9394c870 f42ecb8e 85fcbe60 4ba4ce42 e989ed00
660d5591 99b70251 7d1ee323 29af0716 12f0b2dc ff4edf3d
77ce403f 009c0e19 67260de6 85fcbe60 bea30bab 825f01ca
2dfd7441 12f56006 88ef611e c7a06ea0 733e7ddf b4befee2
1b1c8b66 99b70251 fe0d01ae 29af0717 12f0b2dd 825f01ca
70312022 e4b26f2e a837867b 1773a63b 91288492 2b9e3c01
fe696d88 99b70251 d532eb0a 550814c6 6e57a10c 672ae726
cb3b532e 59d50676 7c7bd929 97404a5b 2aa968cd 1040936f
ae5417c7 1c406f1f 50c58646 550814c6 e8e1365e 37179d69
20dbc755 aae48252 cd5e81af 02fbfbc5 fe798733 524bb80f
4587e231 6c4b27f6 20ceceaf 2e550970 93bc2bea 37179d69
c5e72070 7cba757e c9a79665 6e13cb9b a04bbbba 36edcc1d
ed3fe871 6c4b27f6 d956c4ee ed995e87 50707c1d 9faf9728
1daaff7e bf13cf8b bc2a84be 709a2125 894d5618 e83bbe88
e8b02935 a8397c9a 1d249f83 ed995e87 144e29b9 9a20566c
f41e3334 f66df132 bae8186a 815af9b6 d526d6a5 31885caa
5fb639f3 9bc9395e 2ed4da47 409f4ecd b94839f2 9a20566c
6b128d20 5af1207f 644a5b9f ede37f70 551c2118 5956ec45
e62b80ac 9bc9395e a57242b6 81358da2 78e2fa9d 23bdef3b
3a5e6bbb 17681f89 5f6e1f46 149e3892 ac6166f2 62a17134
9cc083d2 5af12087 644a5b67 81358da2 39cad3ca 5956ec45
ab71c8c2 bc1701e0 64e46008 f413d0a9 a9bd901e f38ed255
01a9f6ca 17681f89 29d36469 149e389a ac6166fa 5956ec45
78e03022 043d33d9 8b716d88 d295006d 774172dc f89834e8
f118d43b 17681f89 982441d9 ab1c1631 13e34851 a9e7ceb5
315cb518 d38cda8b d7df6e18 aee039d4 0b344b64 6d9f8b2a
a0672e66 043d33da 8b716d8b ab1c1631 0ec86480 f89834e8
4109836a 90d7a866 24a94ea3 5f1b8b7b 3c04cbf0 1dcabd5b
a45b0ada d38cda8b 5cc084da aee039d5 0b344b65 f89834e8
287ef27f 54accd00 7f58a2d6 6610eacd 40e48fea 06af3a1c
c983785b d38cda8b f878b55f 9402609a 31d6122a 9540466b
e104430d c53de02f df2ba4d0 4d146eb0 6be00b95 f4d10f45
5a6c042c 54accd02 7f58a2d4 9402609a b2f605bd 06af3a1c
b2708fab 5fae3220 9344cb99 a1338f6f 60573879 a7a5c3fd
137a7654 c53de02f eec98ff9 4d146eb2 6be00b97 06af3a1c
b61aec3b 81e45e31 359ab8e9 79f22c4d 9a68cf6b c1833338
9aecfd44 c53de02f 714306e8 182d9993 3ed9fcb6 8f39b10d
adb07bd5 4869d299 f174bada 8e700a85 7001dfe8 21a7c6ef
08dc093b 9cbb507c 28c5b6ba 182d9993 e65c4ce1 1d094572
ace8ae44 23539a0d 08a7f5da 6fd5832a 990c2907 947ece84
259f25b3 2aebc553 9e952395 3aeeae0b c49f7b78 1d094572
375ce377 50c43039 b8de8343 8af30687 aeb946d2 7efc4d16
683372d7 2aebc553 c2f17635 79e8b8eb 87996d98 50a51212
e1476891 deed2783 b8735942 f13ecbd5 fde43566 4eab1b22
e8b12f06 3954ee8f d14e5ded 79e8b8eb 75324644 d0274fc3
c8a7325a e72b6855 53558e97 5684fec7 6ca8c5ef 9c8b8327
840bfeba b9da2bd8 51c098ba 957f099f 99a5f734 d0274fc3
cca2d4f2 51245588 d3656c9c d7a4bdbb 738195e7 a694ac55
3e61640e b9da2bd8 3b9b12cd c19af68c cd400827 6a4dd576
5537794c 04c5ea6a 3d5197aa 763ecd62 d21be53f 5de7f101
f2b81d2d 51245589 d3656c9d c19af68c 65bfded0 a694ac55
6bde676d 8eacb0b7 b017cb50 c46fa655 ea6448ff 630eef27
ae442418 04c5ea6a 8684d37e 763ecd61 d21be53c a694ac55
c01579ee 067534c5 e3ecdb79 bf0d47dc 1ad9356a 4ee5c653
013deab4 04c5ea6a e15c05d0 38ed106e 9cc83833 09ed62fb
e9691081 b4138a7e 62825675 8cdfc653 0a84e4f0 b5aa2eb7
cc62ca2b e6fbe4b2 03620b0a 38ed106e beb632cb c4b24264
ba224b8b 7253a430 f0129d26 48ea0563 9e8dc533 61598bc4
1fc98229 22470687 c7dee93f 0b98486c 8dc36acb c4b24264
6255f87a a8c6e289 32dce39c 0ed04909 020ab7a1 82269d76
a249938e 22470687 b85d0791 09d8a449 8f8386ee 793253c2
ea5c4595 a7a0cd81 1003acf9 82899577 78283523 be70f4ee
7b9c54c1 968d8437 0c978520 09d8a449 f379041e a0e7948d
6132cb0e f1840920 141de699 bd71d05d 123436bb ec678330
2db2dcb2 3cdfc290 a6c5c387 bbb22c3c 41138c6a a0e7948d
25e11a3e d086245f ed4fd6c2 30f3326b bebb305e 04069544
c9c2ce2c 3cdfc290 0116301d 9c60eb20 66c14b76 44978603
96469c05 11171610 a6e61928 f776d0bb 793ed29e 7e2db1df
8953dd6b d086246f ed4fd6f2 9c60eb20 1228e915 04069544
2908997a 2f4d3e82 d46a2a1b 9323edcf 3f5dc758 c163b750
ec6db89e 11171610 2cdee48d f776d0cb 793ed2ee 04069544
13cc487b e552336e 11a56cc3 f5879e9d 97048119 37f88a80
535f2f88 11171610 e5e049bc b9be097d 37f60b58 bb340253
91610ce7 6a75bb24 159d0e4b 24dbc848 4658d7cd c2e9e042
df93a75b e552336f 11a56cc2 b9be097d db3d16f9 37f88a80
cd16d75f d6715ecf 8dec4fe8 d42296e9 1a5c55d9 9e9e3bf9
64706625 6a75bb24 9e82e489 24dbc847 4658d7c2 37f88a80
8fd396db 02ecf4d1 29d71f34 d42c570a 2ed60e3e b6440a5d
3db5fa1d 6a75bb24 414e50c3 ee1da72b 8c9eb8ae 6e3d16ba
d04d687d caf6086a 38a77208 47a9ab2d bd53f21b 7d5998da
e5cce6fa 02ecf4d3 29d71f36 ee1da72b 14e7fe1f b6440a5d
9be7d379 509d09dc fb760c82 974e5621 17ef0c89 36f323d8
1b50fafa caf6086a e1cde38f 47a9ab2b bd53f21d b6440a5d
4ccec9cf c8b68d7d 932b9c5f 19efb675 e155683d d598c5fd
4bb1df3b caf6086a 916b194f 2dae9ae9 d754c3df e6a52f9d
656dc041 2d6dea7f 608d65be af155c84 5f70b86c 4b167203
f5c603c0 c0619423 9bfc8507 2dae9ae9 ddcb7e06 58d2f366
b04927d7 9fdecd19 b4e526fd 32cda474 d4d5de7f 2871ce27
c0ea1a97 aa2c37fc f1b126d8 18d29434 e8b770da 58d2f366
704b3393 edae0ac6 cda6aa68 293de1ba 1ada5606 038821b0
85066b19 aa2c37fc 8a249756 4db3b98c bdd65d62 1d3e82ec
99cfa9d5 db73e806 899970a5 65208003 56c737bb 366a19a5
9bb0c845 edae0aca cda6aa64 4db3b98c 7e540e30 038821b0
24b6f7bd 632d4ae4 c4be89cf df0b199a 64aa030c 8b134431
ac2d91c0 db73e806 fb7b48a8 65208007 56c737bf 038821b0
95460426 1f8f0b56 619e335e 538ba49f 2b897f98 744be203
ce35097a db73e806 a562d00f 22236eeb 11c4d953 6190b90b
d790c7a9 2acbf3bd c9753155 80e769c5 f8e5b2c3 d9f96ce3
dbee5272 1f8f0b55 619e335d 22236eeb 5a21b5ec 744be203
e7cef92c 14d8e478 e7b443e7 3c13f213 5e1c39d2 e9a75199
7a224949 2acbf3bd 54dacbb5 80e769c4 f8e5b2c2 744be203
b30051f0 40282a94 ebc32c30 71d3680d fc8c79d2 349a537d
ac4c041d 2acbf3bd 8120f6e7 f8a310c8 80a1cbce a225af55
0fff7024 4f7037e3 2d50bfae b621bae0 a197aa4b c417257a
038809cd ca7f2c0c 61942954 f8a310c8 ef15039d 0de1a285
7de6283d a9cb8389 d7dabb83 105fbb7e 9499ec56 e007d539
90005f83 3cbb3fb8 97503ae0 881b6286 9fad71d1 0de1a285
4abef8f3 58ece41b 01381b92 3f6a7e67 0c8dc9dc 3d54808b
262a61b0 3cbb3fb8 656fc032 656202f6 72d411a1 bbcb9cb7
490af5f4 a0470e9b ccf49e30 7725b660 8f9f682d e6af4586
4e314961 1dc00aaf 4414f524 656202f6 9dd8dcb8 d3d0b466
0b9d0876 260fecf3 8de4e9aa 18b517c5 f1b2f099 25e6ba33
fdab0622 35c2e3e6 6c161c6d f5fbb833 0d41667c d3d0b466
451a4659 99fffc75 410c9e75 2bf837d7 770fc101 d5f9c79c
7c94a49f 35c2e3e6 ed31821e c990685e 312ab611 52ef16d3
ae3f0e6a 13cd31bd f9f350b2 986810fc 49d233bc 536c5488
6c5ae725 0ec2264f d63147bf c990685e 182a48e6 42215569
6df749c2 cc9c837f 95487cfc 7675c125 e8cb806f c302f2f4
ecd4ee57 ff9862e5 276b0315 4a0a7150 9bb051e0 42215569
bfbcb3d1 401c3f15 1d561ed3 19f43a18 0bc9c6f9 250bf47a
688dae7f ff9862e5 a2d24322 2e32adac ff888d1c c6781540
8f40e53b 957060d8 737ca403 a1cb6520 b3f699c0 adce978f
8bfe4f45 401c3f16 1d561ed0 2e32adac 3c0f514d 250bf47a
c9ede9b8 ec818798 cf204fc2 8a62e749 e32dc4e9 eb639b0f
078586ce 957060d8 c83a411e a1cb6521 b3f699c1 250bf47a
2c689524 0f188c7f 8deb7d39 108a974e 9b6cbfcb 35efa777
683bb14e 957060d8 1783919c 1991d7b1 0bac2b51 4ab5c3f8
b0e1b74b 81ee3004 48dba064 c3d456d3 48327e54 7c314691
1761d5c1 0f188c7d 8deb7d3b 1991d7b1 9277ff34 35efa777
6b23e402 946f1a54 609845f7 9e23cd76 0044dfa1 a7f315d6
f93f56ad 81ee3004 031dc142 c3d456d5 48327e52 35efa777
1d9881fd 845009a6 a7f1c1f1 5c1b5f95 d2535dbf e9de6afe
1a4d8f52 81ee3004 a24ff85c 34a5666d bf434eea d69d7e89
ef46320c fe76f0ee fe19a3dc 503fa267 2b987f64 072d1fd8
e68f6524 71afe489 520e2cd0 34a5666d 4f02bb61 2a5f94ff
306037a4 6b684485 e99bb5c2 b0d4ef45 99cd29de 89b1bdee
938e1eb4 bdf65af7 9e5792ae 21a5fedd 5a0223d0 2a5f94ff
38ed5380 32b462d0 36305a10 69b09a02 99d57ee0 01ba1b02
b2938f3d bdf65af7 b972623b ea2adbcf 918d06c2 0b420572
ce223b91 de10934f 6129ab83 c8923b7d ecd87b3c 561ad268
22b4582b 6698be37 621c86ff ea2adbcf ce609b82 9b65d264
156f125a e27fe368 c1de2b35 17c0e841 07ad52d9 ba8361f5
3489a1cf f65c6919 f2d851d1 e045c52b c40f8562 9b65d264
e2862960 7f69d62b 58510521 dcca3c95 719d91cf 1c086378
11f61f0d f65c6919 d164ba12 8e286627 aa62266e be1a6ca7
222d0ef6 5d93ce7d 962ef971 c0ddbc08 6d8a1153 c08cc77a
b3e410d2 7f69d62a 58510520 8e286627 237fcb7d 1c086378
2f633bed 36af142c ee5c75db 7db67f9d fbc48c97 cdc2f266
fea9aaf4 5d93ce7d 7aab1d77 c0ddbc09 6d8a1152 1c086378
7602e63f c27a1e06 0e90e7a5 6e0c6d81 7c319167 94accc57
231b439d 5d93ce7d 917937d8 6e000ca7 c357a1fc c1ba8a13
d9e7c81c fc9ff9f3 112ccf5f adecb5cb d4812030 fb69baac
3800b429 29a9b71f e5434eb8 6e000ca7 176d995a daa17da7
c98ec13f c4e7effb e3df3cf3 db9d88b2 a03f321d 34ef570a
27c0eb90 c2b2cb4b 0e5832ec 88bfd950 f1d24caf daa17da7
5606f790 6d8f7597 34103cce 3b063b1d 1f4c7b57 f080e2f5
9a345b6c c2b2cb4b 9b2d8211 91e1bbee e88c2e11 6755cd5a
5f736bce b5ad0c0b 5637c00c 446c9962 a7f67a59 f09f1867
9bc2038d 2ce01884 757f51df 91e1bbee 727b58d6 66a395bb
55f8fb22 1bea0f76 d700f6d0 1776003e c6841274 d9ef4607
eab4289f 2d92e065 740da93e 2097e2dc c30d01e5 66a395bb
d1be308d 7aa69332 818a8bd4 91806d8c a12efbaa 1ed9641f
8427da62 2d92e065 d6befb63 4e30d5fe adaa36c7 08306766
33ce7f9c dea5d91e 37225e4e 8334ab1b c2d9135d f2d5eddd
886d3cb7 8be5b8d2 70c9a3f4 4e30d5fe 0fdd6e58 047a81b3
373a39d4 491ab984 1085f0ff ea57afb4 110b4e77 62edb028
51ad086f 8fab9347 74878861 17f0a2d6 561d1950 047a81b3
5113004e fca3cd3e bb19cec8 378e33d6 996bc6a8 9fe66335
04dfe359 8fab9347 c81190b0 be705a38 ff9de1be 51086a84
60467c2c cbc5e3f2 7698e5c6 de67e9b9 70821cc6 15896573
ca31eae8 fca3cd3f bb19cec9 be705a38 1095af46 9fe66335
05258edc dd40b605 c5fe8e47 6f0618f5 af66df67 70ea9780
ea297a6a cbc5e3f2 8c7fe004 de67e9ba 70821cc5 9fe66335
074ebd42 4577f675 4d347f20 b7040b52 9f9c0356 66765564
15a0f1cb cbc5e3f2 c3866aa5 cb9a3c89 657fc9f6 606fe896
ff0f3dd3 43598549 7e19fb91 ba479a62 92df9264 9b734ae7
13b94c39 4577f677 4d347f22 cb9a3c89 e302348d 66765564
45c9fd45 c4fe8d7b 077c3311 08c3b100 a2fea138 21b58a77
020a2250 43598549 4b1a0c1c ba479a60 92df9266 66765564
88cbe927 d0e01abd c85e22fa 7d2296d4 cb3c0baf 0b207e1c
128d737a 43598549 5be7bd09 5db376ce 752b7ec8 76f1044f
958568be 67d37b57 ce39f137 1894bd51 a9d53bef 8ad8d507
9dd0f5dd cc0303fc d4bd3bbd 5db376ce ecf2f077 f9ac82e8
8a1b3f5d 881d9919 805e104d b8f60fd3 5b0992fd e931d3fa
9a866e4e 555f82a3 4de1bae2 5c61ec3f ed206a87 f9ac82e8
b4b80860 5c0dd554 712eda4c a6654e1f 118a977a 297b5dc5
6d3bb561 555f82a3 787c8dbf 6bcce51c da8d63a4 0e1159c3
b2180811 709bd942 66ce26a1 a9583eff 1eb7e79e 12ae4e90
4a51b167 5c0dd550 712eda48 6bcce51c dc233c79 297b5dc5
007c853b a5df4bde 01ad3ed3 32e87cc2 dfdb373f a0cac3b6
89cd1b44 709bd942 5db8d65a a9583efb 1eb7e79a 297b5dc5
ab09830c d5706142 62c9be18 64047bfb 78c01a99 30b760cc
14a46888 709bd942 c7220619 68fbdebb df1407da b4122e08
7c887198 58d291a1 3ad9a35e 6fc65e23 73023f40 db08b471
9001264c d5706143 62c9be19 68fbdebb 743fbfd9 30b760cc
acef85ed 06cc2de3 94bd937b 6573c7f2 afce3a57 0b6f400b
9737a525 58d291a1 ef6b4efb 6fc65e24 73023f47 30b760cc
87b9ab83 8fb1cf9f 4c3371ff 51478ac7 02e415a4 2ab9fb7a
9b00fa0b 58d291a1 9b502fcf 4bc7ffb9 57039eda 3c803fe0
6b28ba7e 3a47c131 29c25e05 64821a1e 72012ec5 ab125a2c
fc8fbc8f 52916513 9113db7f 4bc7ffb9 5d44cb6c 5b0f7964
2d1f20c4 6c904819 db299741 2a9f52d1 b38e6eb4 4f469a52
3956c3f0 ea02408b 2980fee7 06a0f462 1023c0b5 5b0f7964
f612cb7e 8b6ee517 bcb850a0 84f699ab 331940c9 342f0464
ad3aca39 ea02408b ddd4f53f 25128526 3391b1f1 cf6370ac
c00ee9c0 6eca9d5f 009cf431 636f1113 d5718c6d 60b8af43
4861411f 899da931 be4b1c84 25128526 930c185b 2a38fb8a
aab8b9ff 877362bc 44f1dcd1 c3a4f78c 134599af b5e50441
35654635 6cb09215 5b6627a0 e2168850 5408152c 2a38fb8a
d143de58 69f47124 17047700 1b620d3e a80071ad 35c0bcb7
6e0ff1b6 6cb09215 12409439 563c6806 e022f57a 71524c01
608e23e4 a585847a d7231fb8 80d81bf8 33ba6763 29775255
2a9d0100 69f4712c 17047708 563c6806 e55e1495 35c0bcb7
2217e835 ea020a76 5f1fe957 c50250b7 32dd5220 6bee99bc
7c39cd06 a585847a db75825e 80d81c00 33ba609b 35c0bcb7
b0ac6ce7 dc7c44f1 45bbff1a 528eb15c b8d78c4f 4eb676ef
196103cd a585847a 3c423f90 9e6e0904 2d0c759f 5098727d
3f6794af da76475a 9b285415 1d9ff251 f7c6cf43 f64cce53
074f075f dc7c44f2 45bbff19 9e6e0904 74373417 4eb676ef
4e65c11e 37f238d0 e5add80c 2b2e0b93 6cfb251b 874e9be1
879d2c13 da76475a 43b1fcb1 1d9ff250 f7c6cf42 4eb676ef
b61186cb c1233750 32d7e9a6 f90e4c34 28086132 d5c40850
61c8c306 da76475a 298299ae 5e641897 b43d2585 a8e399f8
98f11f9d 7642c51a edd1411c 7acc7098 abca5d9c 7d62ad60
1cef52ae c123374e 32d7e9b8 5e641897 8f623591 d5c40850
b2380cf5 2033bf00 55ef2bde e6fa717f 9c0d5795 57abbe36
3057baad 7642c51a 85b61bec 7acc7096 abca5d92 d5c40850
bb4656de c86c176c 1a33f78d 3fd5789a 1cfa07cf 66949ed8
51bcb8c4 7642c51a a41d25c4 47966390 96904e94 b42f0a38
ed28cfdb 82913bd2 442c3686 53c45082 e20e7f95 1ce95036
cd1f913d 5706c73e 855927e1 47966390 f65c4cb8 288c23c1
26b5beda 6fcacfb5 9c3e1142 01cd5c99 5d27809e 4a2121da
4418bcc0 c4aa22d7 16f5c208 ce974f95 7f5d60bc 288c23c1
d5c8b8ec cb7216eb 6f0063d2 1dc37016 a5515357 5e59810d
960a28e2 c4aa22d7 60d857d2 fec6d53a 4f0cfa13 fa9eb7e7
0333d10d d1605d4e 8b2a6e62 8d6099b2 592b3b04 f81db28c
2ed16b64 e72b9638 4359e339 fec6d53a 2a8d77b0 4245f461
90c0981c 81b45e89 53ebbe52 42f6a8b7 ea6538ea 7033603f
a2b60c46 ad6c70ba 091e05bb 73262e5c a76d8cd2 4245f461
d4cc1520 4ef926e1 ba067f71 6278411f 17a019ab 0a2524d9
722120d7 ad6c70ba 5993292b 6483074c b0c8a5c2 92d2d8f1
f2d0647c c7aed2ba c4b88624 6e7b8ac2 1ba3d277 183c1fe7
ead6dcff 4ef926e0 ba067f70 6483074c 115b5ff8 0a2524d9
7ef9aaf7 22fcb15b 5c0cb778 21cb25eb f0ed12bd 9415d16b
e0c95f42 c7aed2ba 33518b2a 6e7b8ac1 1ba3d274 0a2524d9
1a4aeee2 3c2fb71b d4a2ad00 1ee22d2c f4bb1038 9d7bd51f
175e9eff c7aed2ba 2f23c8a7 829d6cc8 f745347d fdb2e566
2a1fc182 43c0a9b1 383df7d1 60dc4c25 337fd34c e3349b7a
a5282ca0 a57a1974 4df7036b 829d6cc8 d13ef3a7 4fc45739
9c0c76f6 5e4d35c1 aab26c53 43c9ef82 794146e9 5c3696aa
8ffeb767 77682bc3 9fe531dc 57ebd18d 04484ee0 4fc45739
9023098f f8102ee4 6a619071 5e593686 8a12940b 30453df5
39921bef 77682bc3 e5199555 7e2de26b 2d8e7d06 f9a8fbb0
bc92fc07 9aaea37f 47d05d1c 9ee6fa32 5f6b2f61 5c610422
d1692409 e55261a6 7723df31 7e2de26b bfa0373b 1153c456
6eae888e b5d1ab94 5d5cb18a a1728881 dacd7e20 676f1fdc
18925305 fb9f8a44 69ee34d3 c7b4995f 06394c0e 1153c456
ea4115c9 34b35549 1e6391cb 1bf4c8b6 e15568d0 319e57f8
a0735d32 fb9f8a44 d14f4ef6 49d71dc8 885ac899 a9b2ca71
7a1d3477 897d09af de5ba40f cd6aceb4 8a5429c1 f7487c68
c3330429 81509c38 ab80589a 49d71dc8 0ee9fa8d caf2936a
6c4c5b77 9faae360 0ddb5de7 1cd2d834 a60abbe8 32938d5f
942d4552 2c1166d9 06c1a27b 9ef55cbd d9cbbbe8 caf2936a
a6242783 701c4904 a693c3c2 c8be3d03 43f7f47c ed191aa4
286e8fb6 2c1166d9 fa9eec1e dc60d615 9b5e3140 76b1598f
30d94937 ddc40810 69e1bfcd 77f70e69 fcbec717 caaf47bb
b3c6cc9d 701c4903 a693c3c5 dc60d615 57291f6a ed191aa4
23429937 ceee0305 0c4504dc fb43b006 87307475 d93497b8
176f1428 ddc40810 0b4b82d6 77f70e68 fcbec716 ed191aa4
7a934c83 9579a08c e8a3aaa6 c825e84b 8ada89b7 438aac0a
6e159488 ddc40810 a01e0238 89821650 02cbdf2e 94639a06
d60dba28 c44272aa bae52496 216649f4 6399280a 4457f81c
b9fca284 9579a08e e8a3aaa4 89821650 cb7d77ac 438aac0a
a46e2219 4b556ed5 3bd6d09c 82091c82 481b42ab 3634602b
d1d0ee3e c44272aa b9987880 216649f6 63992808 438aac0a
4088737e 463a19e7 84911e3b 76e20bdf b21502e5 369c1916
1a01eb8e c44272aa 06e97571 9327e3ac d1d88252 885ba9bb
7b545d13 7e7bc637 e934875d a8bcc249 efc5e788 dcbb7dc0
9a4d0605 c8bc3672 0a1731a8 9327e3ac d45ec66a 08174430
b30f2fec 3b0249f3 46d843d8 ff557130 c637cde9 c3464682
785e2d5f 4918b2e1 8bb3b53b 71170ae6 366e2f21 08174430
1ea01589 510ee682 e571d662 19f3233e 569c7a5a 0882526a
89a20451 4918b2e1 fd678205 741a44c6 33636101 f9eb6d3a
795f48e0 605fea26 5b0ad77b f9d7f166 b6b8a806 8f585ee7
78cb3b01 510ee67e e571d69e 741a44c6 3b751da2 0882526a
9ac64ff0 3051a270 28ef9a2d ef3e15b4 f05f041e 6cc159eb
fe85446d 605fea26 d420dac6 f9d7f162 b6b8a802 0882526a
91019213 e60c84c6 c35040d1 a5642979 707fda86 02f846aa
8f58f3a6 605fea26 45032e30 07716ac6 481e33a6 795fe5a0
dac3f098 6e8427dd 9c9cb941 26e22678 f3f9d586 cfb4212f
f4ff50ac e60c84c5 c35040d2 07716ac6 d26a9939 02f846aa
cdb04c63 903d9c74 6b11874d d790eaa2 21458237 d8c79dcb
178f971d 6e8427dd 4bd8e3ca 26e22677 f3f9d589 02f846aa
88e65e79 484e293e 38cd976d 30051e3b 9ee0eb5a c8b01d92
5b689155 6e8427dd 1e079990 0526ac05 d03d5ffb 4e1f40e0
a0fc1b10 2fc02a0d 9dbdf63c 657df395 779dc80f d5330253
864f35c4 ac486f63 dccbd12c 0526ac05 17c69781 9338e471
8d43e71b 5b6e208d 7e32e498 d6bc61ee 239be8f1 4811ea35
566ae95d 7926d2f4 09a56cbb b500e77c a7e0dcfa 9338e471
8f2bcea5 b5b5f0d2 227847a7 38d3105d 77bc493e ebd0d8ff
7fd0d0b5 7926d2f4 eeeb6582 992a0730 8bca3cb6 ba82dd98
468fac18 d5e79a05 e97032e6 c9df1007 0d281938 b088ba1d
ceecc59c 2b3da0aa bcf017dd 992a0730 5ddd0e0c 0bbec8b1
439bef5d 4848850e 38cb3b40 979dfb24 86d81fbc e474cf89
ac51e864 fbf9a9b3 6c341ec4 7bc71ad8 bf3013e5 0bbec8b1
30cf5daf ed213de2 d75fb024 ed5fba6d 5b412709 2ce0d39b
0980bfc5 fbf9a9b3 c187246d 791f4d16 bde8442b ae6f9f18
a132cd28 e1fc5ae9 ebe5a46e f08de9e0 dbe78fb0 be6f7087
493cdf0b 626d06be 58138b68 791f4d16 52752b5e eed3ffd6
24f7ea51 9d1f5407 0ad2e378 3cacbdd9 90d42d62 4c232987
86073c08 1c11298c 266fa45a 3a04f017 116e9657 eed3ffd6
c16f9d75 7105c781 1577e971 833a4dac 03654998 f25cddf9
7013632e 1c11298c 7863077d b8dbd0ff 93b1b6bf 18c7a0f1
52142ba2 4978227a eb685bac cdf6109e 4da914ab 2ffb28df
9a881e26 7105c780 1577e970 b8dbd0ff 3884d4cb f25cddf9
4780a560 37046826 9b809f30 0a90cdeb 677b840a 3a6fa61e
8fb3de84 4978227a 2d0a0c8a cdf6109d 4da914a8 f25cddf9
88cc2641 1362eebf 11a58fb5 554e63e8 1f07b390 cc73d607
ed5d136e 4978227a 4bbf4372 8e7d7721 0e227314 90b21011
f3f49828 d7a9962b 9b533386 f5e1f622 bfa82658 16a71aaa
b19cd578 1362eebd 11a58fb7 8e7d7721 c434a759 cc73d607
45687d4b 5f6cd131 89e35bf9 62d48268 b0d989e8 a03bffc7
29205485 d7a9962b d56ef721 f5e1f624 bfa8265e cc73d607
82f091cf d49ead0a 781a5a11 5af81e99 1dc6f9c3 4ca6c5e3
9362ee92 d7a9962b 7b2d613f 71f54cf0 3bbc9c8a 76316c11
9acb1e7c b47a1cde a3b80ed6 eb81a0a2 24263df8 c414c84a
bd842fd4 5d076306 f1839413 71f54cf0 be52d1a5 58d7ad57
543e8279 c27b0abf c0bc6bb4 0bb308d9 d2690b68 af1a174e
a3f33861 b848a462 14cc5377 87c65fa3 4861c2f7 58d7ad57
fe55f6a8 301a2cd5 99047723 e12fa66d a65683a6 ee8a984c
ae55870e b848a462 1156ff98 cb74ccbb 04d351ef 5571123c
5ddf56e5 3940d690 21512408 4099a0f4 7738e982 2d963f82
45863dda 20425088 895c0b76 cb74ccbb fcd585c1 bea2a8e8
a2ace5f4 c62359b8 6aa7aea9 ed477078 99ec2c6a c20943ff
de070ee7 89194724 20071cda 30f5dd98 075494e6 bea2a8e8
b42ea83e 01e003c9 b5657929 644b77a7 d4237185 1faffced
aaac61c5 89194724 3d9c3dc5 196fc8e2 2ece819c ca09c7cb
0efee9e6 e0413964 323bb0db ec2604ff 5c4e02dc 3da50bcc
7f0a5ae3 01e003c8 b5657928 196fc8e2 a907cec0 1faffced
96f2edf0 2f407a18 153ef7c9 048c0e66 fbeb48b1 a5a90fdd
2cf41ec7 e0413964 54c44384 ec2604fe 5c4e02dd 1faffced
fe7f33b8 b0383776 5807adee 8cbeab2d 0ce1af1e 762a49a1
6031fe83 e0413964 087ea3fa 37c5133c 87ad151f 536a1cab
aee9c0ca 36b92dae 29852de4 8258348f eff83be6 d306c3b3
af51bc2d 9d7942b0 7546d82c 37c5133c 5a651c53 9c0a5e05
ac4e077b 1fade497 ab289e75 7ce85c0a 549c2e78 68503e4d
58146731 64d98192 8ce61b0e c8876a48 a5276525 9c0a5e05
e56e535e 2edabba1 ada01d47 50be0c2d 671f4550 98fef3d0
f35b537b 64d98192 e7a32777 974ba4d4 faebabb9 37456a4e
cd868a2b 21853263 a5be3034 33d311ab e3de2516 ad232c26
687ce986 c746a6e3 443c0007 974ba4d4 4746906a ac62d0b3
6014e944 2ed353a7 c6ecc93a 759c5e43 b72be567 1127c46b
dd51fd9d 3c28cd42 bf526ba6 446098cd 946dac72 ac62d0b3
cbd8c1db 4ba72136 edfad55f db989f48 0413167b d7c814f8
be750c16 3c28cd42 9a753aab 30baf7d3 e0b7c36c cf4621b8
9fa6893e 546177ea fae2993a 43f401a0 86162ddc 1bcabfc5
6297e5f0 31fdc87f 97a03f16 30baf7d3 f558d82f 13a4c85e
fa5ae222 586c1303 db16b567 ddc9009a f37fb1d0 f0c176d9
193f5c25 ef979135 49ca665c ca235ea0 0fc171dc 13a4c85e
8cfcfbe2 ea833aba 89557cc2 a7c2dcd1 670f05d3 fee5341d
db868314 ef979135 8c41d74c 4044a14c 85a68e30 d11d176e
5ebeead3 a0cb35ec 6fe0af21 6a2d6f74 aae0b677 6a3a8872
f47ea067 ea833abb 89557cc3 4044a14c 8089784e fee5341d
39f5d5a6 ee353ab4 9c57f3d4 e03922f4 ee0eff3f 0d71b704
ca6156bc a0cb35ec c31d7394 6a2d6f73 aae0b670 fee5341d
4ec656e6 a78ddf88 c6857f9c 8d98a205 4a082098 810915a8
c893ef18 a0cb35ec c1c395fa f24dc15a 32801859 fc178dbb
62fbf700 2c844777 a0f9a24e 8c4f0c82 4bdf8e1d ac7e5acd
b58d770b a78ddf86 c6857f92 f24dc15a 35dd43c7 810915a8
053a7537 08b61069 a309730f 742fcdf7 d7ed8666 cbbfd8fc
4f8cb865 2c844777 4d8ce763 8c4f0c84 4bdf8e1b 810915a8
2ad446c6 7c6fa1a9 0e0d68cc 830555bb 947e896b fd84d3af
5ce6933a 2c844777 5ee68e15 7a3a6e1e bdaaec81 92633ef6
db666e9b de51d6b7 019847f8 27bc08c5 293c1374 a76126e9
f77ff331 7373e08e 011129ed 7a3a6e1e 74ba75a8 39fa5efd
145b041f 6d66cbd2 0c6e6bc7 fac49066 10c6369a 28a035b0
05016f53 91e4408d e38689ee e8aff200 e62fe9b7 39fa5efd
d4962a2a c8d88ffb 52c6fb9b 403b544c 054f3f65 f4db1f8a
5d4d3854 91e4408d 0bfa34e9 5ce95056 52694be1 61b609fe
0cb11411 63c38593 04b70ac3 ee6e4d13 ab1a263e c2313a7a
c8202e20 c8d88fff 52c6fb9f 5ce95056 199d3b7f f4db1f8a
26c89cc1 2be9dc62 a665db1a 6b48778d 66d2b671 e848b2a6
3a5b31e1 63c38593 f9ddf1f3 ee6e4d17 ab1a263a f4db1f8a
c38b9157 3c999095 4000a4c0 87dd1daf 99976b81 f2d119b3
19d5f114 63c38593 1f5ab1c7 2502c335 6076a818 d755df7e
c6aa917e 510eca41 a25658a1 05bd7e0a 1bf70825 6990783e
3c5137d9 3c999094 4000a4c1 2502c335 3b48b51b f2d119b3
bdf7ff8c 278fd869 bb1ae90d 65b7cdc4 917c4993 12cd16c3
5debf0f3 510eca41 2d97fe14 05bd7e0b 1bf70824 f2d119b3
d6b820b9 b52c4e56 1e932d3a e0451206 6222e840 ec22d163
8ecda182 510eca41 fab1a923 54e5096e 4aaf7f41 21f748c0
1748ad26 e623c508 789f51e5 9f1526a0 7e87ceed ee23ab54
541c9085 14573c55 bfe85f35 54e5096e b577e12d fb2679c7
6bc0a0d2 deb9f3e7 a220c7b0 fe437f39 2d663385 cc004abc
5ce693ab ed278f6c 4698ec0c 4d6b0a98 acf9e2d9 fb2679c7
7cb2034f 51091258 0cc27ebf bcb8e7fd f9cc8cd3 b8881811
0af26926 ed278f6c b0ece388 a03fb70c 41ad5f4d ad32834b
2b2cfcc9 35caf73b 6f403f6d c6fefb07 d18527d2 e5acd2a0
4f2d9d42 23108401 7edbe8e4 a03fb70c b7446bda e8ed772f
4ae625d9 e9ea0d58 42556e39 21b168a1 3ba93af3 36e16dac
94ea3f5b e74d97dd ba86fb38 74861513 63fdc9c4 e8ed772f
0552f338 133b5725 aa6f57a5 a229a605 e1403a12 a3b2def8
387142ae e74d97dd 5e199755 7750c0c1 602b1c16 44760ad2
af3f2f59 f2170b53 caf029df 87c2a6aa c4ab3ab5 23460104
dfb59684 133b571d aa6f579d 7750c0c1 34395cd6 a3b2def8
df302dc9 df9f98d1 b775bdcd 49783df0 798a146d 5349038c
2fcbf0a5 f2170b53 4b430bd3 87c2a6a2 c4ab3abd a3b2def8
75b66af1 0801ed5a 13d5b654 dc54d4e8 8500aacd cd8db839
8a4a17db f2170b53 e9c3505c b092307c f3fbac63 06333987
1ef060a4 4e9f6a8b 932966a3 b5b80c18 ecec723c 8f6f6953
41f49665 0801ed59 13d5b657 b092307c e9c64e59 cd8db839
8071159e 3f85f597 5fb14ad7 38c46268 72ff6b58 11ee1c6a
5c12b1ce 4e9f6a8b 554b3185 b5b80c17 ecec7233 cd8db839
2cd4580e 9e4c5ca6 8c37e885 9e129d43 3713ed02 6feacc18
55aa18b9 4e9f6a8b 5ce4deaa ec731322 b5276d06 c435114c
38464a90 c29e16fc 4395e6a0 41114bf0 e8103bb3 de7b0851
fe75c5ed 9e4c5ca8 8c37e88b ec731322 45726363 6feacc18
0ad24682 3adb8d8e b5a461e8 ec2a3e43 cd14d896 ecef045d
89d78ed9 c29e16fc d0e5a2df 41114bee e8103bad 6feacc18
be9ac1b3 13ad4c72 7399f32f 45e471b9 bff4d403 2025d8f6
5b9e95f7 c29e16fc a2aaa9be 8d629b34 2463eb77 bda3d737
fa7af13c 3eb95565 298ab8e8 77a73687 34119a17 2afb2f2e
95c14224 5d535348 3d67ec0b 8d629b34 ced437bb 73fc00e4
17cc857c a7f3c009 b588742b 8c6279eb dcdcb6f7 2642f5c2
4272705b 9aeb9d7b fadf2238 d8b3c933 9b0565bd 73fc00e4
99d88cca 1c7a0241 91f6052d 24a63da6 e1e32cfe 1e05784a
90dd39aa 9aeb9d7b 17679a0b ce56b9e1 8de0156f a1534911
44953338 5a23ca2e 592b00f9 93bf2c52 162624ce b263d008
0d697c1e dccdf96d 5141fe19 ce56b9e1 4bcfb161 3ce70ca5
541d62c6 674a0326 077ebc61 02b7ff2e 7916b187 0f8fc47c
6775aa1b 7141bd01 fccdba75 f85aefe4 7dc3e760 3ce70ca5
07173b14 5c485f26 a85dd1f8 f4b0840a 842f2ea0 64138773
f8e232af 7141bd01 855433de ed3e6e62 68a766e6 a3709410
218f2668 9badf484 e4a79098 6033427b 10ace8d0 ef085cb1
3f8121cc 5c485f27 a85dd1f9 ed3e6e62 9da1c4c8 64138773
e7d683c5 8f8b90f9 36df907e c9d0f323 adadb403 2951f91b
aa94fdaa 9badf484 6fb87a5a 6033427c 10ace8d7 64138773
954fd664 8462c7fd fc423a3c cf18181e 964c663c 29da5aec
26998c87 9badf484 e38d0943 e10a0671 9195acda e81ef65c
cd4aab31 77b2e6b3 6bc0d278 a4219587 26466fcb 5cd5a2c2
76031167 ad764423 d556b9e6 e10a0671 636dfc3b b8846bbc
cd13faad 0ee94999 fafcc745 8b16ce1f 814ea2c1 3478fcd1
41ef6dc2 86f8d703 fed82ac6 0bed9214 898a685c b8846bbc
0f6a2292 8a29e541 16bcd428 fb16f87d 7e8ff0fa 4bf0369a
2593991e 86f8d703 1a6de669 afe7eaf4 2d8010bc dcf89f61
aaaa9245 4fb08847 a422ebe2 120f8b30 760858fa f13834f9
5b5004c0 6898b084 f40d81ef afe7eaf4 cbe0393d a23b02bf
78540cc1 fdf4db84 85d42640 18154f6e a48b3402 7dc6cf19
a7a9c166 a55e33e0 39cb028b bc0fa84e d8087b86 a23b02bf
2fd9d96e 875dfcfa aa244d61 5004a097 16033c65 a5384456
368d4116 a55e33e0 8827826b cab5c728 aeb214e0 331f82df
f8220684 7954c0d9 15e678a1 e1765106 a771cde4 e4714b33
a0aa879f 875dfd0a aa244c91 cab5c728 8cb25bda a5384456
605968aa 06f4c009 02bf528b 19b73255 ca10ae47 7c0a252d
b96b09e1 7954c0d9 542d7142 e1765116 a771cdf4 a5384456
ba841834 fb88ce18 ec33f0fa b0f31c16 78c8b634 12912f15
932a9c28 7954c0d9 6eeffe3a 253132ab 6336ae49 8f79d19e
a27e2b87 8661eba2 75f2913f 54f5264b 9cce8c68 ee696ad0
0ec262a3 fb88ce19 ec33f0fb 253132ab ed0a9889 12912f15
53655109 69679d93 4dfbbdb8 bae94a05 11a81611 1f72105d
5e866e42 8661eba2 91dad540 54f5264c 9cce8c6f 12912f15
d7cda40d d470ae53 8a0161ae 13cebc9a 0584d04c a8540b2a
15508167 8661eba2 d810245d e04c4ec8 2877e4eb 5947c032
d86d83fc 235bf735 22dfa168 27401fe7 310a7333 4b66918a
e4434a7f d470ae55 8a0161a8 e04c4ec8 f606221e a8540b2a
8e8ee7b2 924bb30c 41e8099f bc17cf5e 392de7f5 1d85f5c2
3b5f195c 235bf735 7d2a38c8 27401fe9 310a733d a8540b2a
3374b976 83bc3164 a720114a e7d29fb9 917838bd 4a742e7e
fd754921 235bf735 07c7d71c 01dd1b28 179777fc 6e7e5b56
af60fe5b fddd8bd7 1699499f 202640c8 bc978c73 1e34c643
c4873654 a9c3571d 8d5f7735 01dd1b28 9d6cd794 578c2423
d7de22b3 fcc08f31 a2b140cd daf4feb8 5c4822c2 9161d3f6
1133d567 12b57f74 36295f5c b591f9f5 29203548 578c2423
6c544572 3763cd83 b90f090d b7d9982e 76b982fe aa6ee00a
87e339c5 12b57f74 9cd9bbfe 385ee3f6 a4ef2f4b c15cc885
77be296c 1a51c504 cafc92ab 8cb04cf9 4dd0562d ecaf732b
ecd1114a 3763cd87 b90f0909 385ee3f6 f93ef926 aa6ee00a
26097576 6583c9e5 c495da70 4abdbb77 462fa4c2 bd182f0d
317fba4d 1a51c504 943d018a 8cb04cfd 4dd05629 aa6ee00a
58cffd90 a121ed3c 49c9f577 efa91e3c a7995d37 8c45e0fe
9ffb6980 1a51c504 f2b9dd4e b6305b14 775041c0 04ea33c6
bbf342d8 2fdebd09 d58c2ad9 4162232a 09526020 9db06083
1754bab8 a121ed3b 49c9f570 b6305b14 fe00181f 8c45e0fe
6790a4ad ebb2e203 75c75c14 3d7b1b69 397f736d 41d386c9
aa06c2a5 2fdebd09 c736a542 41622329 09526023 8c45e0fe
383aa7af eb5c30ac 38ff8a05 da9bd37d d93665d2 89b5b120
5142a113 2fdebd09 fc7d079e 4f4fdf47 077f9c4d 7701834a
b0adc51e a48aeb33 ceee02e7 e716ff12 56be5cea 0ea78738
51a575a0 99571dc5 4af4a750 4f4fdf47 fee77c81 77e657f9
ddb10703 539f32b9 bb772af0 6bbab37a 1954b5eb 8d2ab5af
277de557 9259cfec 41fa7579 79a86f9c c800cc58 77e657f9
c852f5b0 a2114700 865d7adf c83b02e1 095b1836 404e595b
981569ef 9259cfec b615f230 90ba08a5 2112ab61 c88edb40
41626641 cf9c5131 7b077c85 db2fb03c ad85173d da733c04
1abffe82 575bd32a 7317eef7 90ba08a5 e610afa7 4a244c2d
482ff0fa b274f3ed 61d74979 da60f50d 8b29c1dc f97bc8e5
fb707433 d7d6661f f39a5bc2 f1728e14 87d82917 4a244c2d
773c479a 1ab1002f 725b251b b4bfb179 0d3af062 80fce654
3f960b4a d7d6661f bf3c4313 6e5347c1 18f9e0c2 8ec2335c
da291846 cc30c612 60c9a398 34375d82 5b780824 ad115599
d8562d05 d07b14ba b89131be 6e5347c1 011c125f 69021513
6638fad4 5f39173a 7b752aef 827b2cfe 982ff909 24642ddc
2b5ec213 b43396d9 dcd9b3dd ff5be6ab 9014b33d 69021513
4545839c c9d40670 811b0067 0a31de1e 8ede1b30 e08eb493
0aba2124 b43396d9 fcfc90cf a6c37e10 c98c2b86 48e6f625
2029a5c8 583be45f 1e43d5f4 6284ecfd e66b29d2 de37e027
a2d26392 c9d40671 811b0066 a6c37e10 222cbb3e e08eb493
b3ad082d 3bb64059 8e45df1d a65fbd1f ce359c36 4db34dc1
1e90f17c 583be45f 10f4e248 6284ecfe e66b29d1 e08eb493
24f7c45e 177ca908 2a3d9ffe 7ebd9bf4 3a8d1222 8c956999
2b1ea09d 583be45f 657ad2ab d479341a 5096f135 d500e570
9e4c1d9e 4fd80dc3 e1e97f4a 3a24a6e1 7e142f35 fd85a52c
728b2c74 177ca906 2a3d9ff0 d479341a 9049bdcc 8c956999
04c6c931 9dc24812 8a7976fe 6ca79db1 febd5992 670f718d
ef5cd12b 4fd80dc3 72993b35 3a24a6df 7e142f0b 8c956999
fc4b1e5d 51af20db e45cbf92 7a3aa38c 3c3d3f61 2db23204
668e695a 4fd80dc3 fa2b9285 0c0b2fe6 483ba632 0547d1e9
19c1024f db5fab7a 0dd6c20a c494c4eb 6c864368 05924ff6
87353d7e b3ba0b7b 0649943c 0c0b2fe6 a419a86a e4fc85cd
fef9e51f 672f056c 5a6e339b 690ee68e 923d4b2c 6c4a1d7e
764f7dad 140ddf57 a1fe4010 3af56f93 92e7e81e e4fc85cd
d7e78751 08ad247f 29e67a91 64cdf080 f87c3c31 543b62e9
c2e7bd0c 140ddf57 354681b5 73a5032c dbb784a1 50544568
05bd6272 3b48c403 89c1e663 27b0fc18 e2f5ed54 4302933e
237737a0 3140690a 100b37ec 73a5032c b6e0126c b1c4cfc4
b09bf331 0a005977 bff3c634 9f385a5f aa4dcdba 466d101d
47322cec 99cfd2d6 b8848c30 d7e7edf0 12a2fcb4 b1c4cfc4
e20f1b71 a915e033 dc2cf8a2 628acf7e b601d1de f73f67eb
f3446a47 99cfd2d6 ecf6ca46 4451360d 81142749 05b2896e
c01a513e 9b811cb7 2e745110 453c1f24 91b70185 37fb9d01
01c984c2 a915e032 dc2cf8a3 4451360d 90da28ad f73f67eb
1d11b866 f5621979 9d883c7a b4e0dbe3 9a8cc080 eaf0745e
00deabd4 9b811cb7 eeb80426 453c1f23 91b70182 f73f67eb
6f5108ab 4be5c33d c49a2f41 4e5b8db7 cab4489e 273f9af8
e667f7e9 9b811cb7 14fef0cd fdcec7a1 2945d900 11863bd4
baa6f558 f33a9072 bf03d95f 040b4151 1be53013 44b8b0b3
701e9fc3 e6e46f5a 699b8322 fdcec7a1 e220b6e5 87ff53fe
8d598cce 8311b78b f628af18 2e3b5fbd e8bfbf7c 6db88017
671e5f25 dc7b4810 5304a468 e6ce083f f9207979 87ff53fe
e0c8b45c 81d1e812 71aa5c40 824cfa22 4709eb65 80f52530
081a170d dc7b4810 2c00fc41 02f07590 1d1e04d6 e8fb1bd7
90819e8d ce9b6739 681d0337 19064be1 e316ee46 66777da7
508dc133 b69d7c6e 46e6c83e 02f07590 f8e0d034 b06ccde9
9ff0d81c 4646c059 c9392c20 d66ed971 9d2acef5 4f710611
60ed13e5 f5134e7a 0568fa2a f29146c2 0881e367 b06ccde9
42ebbcaa 2755784e fe00397c 5bf01e1c 77a2d145 c2270aca
49c78487 f5134e7a 2c460f68 aba545e8 51b5e04d 99465aab
d74e7e9d d875484d 94174603 bda11117 91f3de6e 3533d7e6
12a6d4e6 2755782e fe00391c aba545e8 87f78ab1 c2270aca
1dabc9a5 30567369 2752e5ef 57278539 d3147fac ffd6603e
205aa3b1 d875484d 0120097f bda11137 91f3de4e c2270aca
183f5b39 ebeb9240 910a53e9 7f0973a7 40c06acc 9fac0d6e
81ce223a d875484d a29489e5 d9f3c6ca f5a109b3 63b38b40
d619259e a00313f3 fd014188 4f4bd92f 7082c045 81cc9e40
7dd1a414 ebeb923f 910a5396 d9f3c6ca e63adfa1 9fac0d6e
23f9b179 1f3832fc 50598c1c d6cfd413 6831ec60 742c0aa4
c879b6b0 a00313f3 dae2d25a 4f4bd92e 7082c044 9fac0d6e
e5552287 ef008673 78b044bd cb3ee3fb 45f86813 c7ee7d8c
ebaeb54d a00313f3 37b3d13f 005940cc 3f9059a6 bc7b0e91
94329854 039497dc 30fd212a a0196ed2 2edfe538 63a771b4
903bc650 ef008671 78b044bf 005940cc 8e9fcb24 c7ee7d8c
9c8aee78 980c007b a2ed4c99 8bfe5641 a8c3a2c8 6b1f079e
307b946c 039497dc 94245512 a0196ed0 2edfe53a c7ee7d8c
3cfc496f e09e366a afff888f 14b5f849 7f65d23e a947a97c
880a9041 039497dc 4cf5293e 76900217 f85689fd 7f9f79a0
8b6bf20f 4fb12b56 9043950c 40e8e11f 72722e64 4a853ae7
4e61d291 a768db6e e809658d 76900217 440acd6b b9f43b70
6d945af2 06249cd1 91945e1e 185aea99 cf982589 02433f5b
d6235ed8 60fc9d3e 2f9d23dd eed17dde dc4bb2a3 b9f43b70
6fc6b08f 275bae98 2be7880f b4c8876d 4c3167be 3e31b943
1899c68c 60fc9d3e 6c40bbad d2a8e34d e0322c30 774ea320
225a9005 6e8004b7 82747d3a 9f0219e1 67fbf936 1e6a0c39
51e6dcef 275bae94 2be78803 d2a8e34d 2a51039e 3e31b943
b7929510 7b193fc7 213549bf 0f146dd0 0a877637 8ba20920
0201257f 6e8004b7 623c2220 9f0219dd 67fbf90a 3e31b943
937b6b9b 20ae138a 6aac3c8c 3e6d748e 954a9b27 944352e6
47475d8e 6e8004b7 24822bb0 7365d74e 8b9c3799 7b77c1b3
938dfe5d b9da8254 73436350 be8c35c9 15abda61 14db04e4
a873cedb 20ae1389 6aac3c8f 7365d74e d84238e7 944352e6
3afaa9cd 21ef5418 52847b82 300fccf4 23330d98 bdac537b
1315a85f b9da8254 f3d8ad52 be8c35ca 15abda62 944352e6
a6e50f7d 301cc5ab 0afd8943 46334ff1 67597d0c 172feceb
02748a7d b9da8254 833bceb2 1bbf6716 b09888be 852270c6
77198804 2dd662ac 8bdfc7ce ded4479f 4bcd16c2 3d725342
551f007f a3cbe3ff 992aaf1b 1bbf6716 8ea63645 d249fac4
a63dbcec f18f8b32 bb8da436 7e8c9b1b 6378f59d e16adce6
951e9acc 68b46dfd 52552119 dbbfcc63 4ea69d32 d249fac4
1e6bb1dc cc94fd81 47699b5d 868886e9 7e71663d bd72f988
643174b6 68b46dfd e3490b22 2ac69e9e bfdfcfcf 236614bf
c535e9d2 e1564e52 7e49c507 1f9fdad2 744ff0a0 f90575ec
a2b4317c 3f6b471d b49621c3 2ac69e9e 4116b4ef e5e35175
5529ff94 ca317426 f0d038c3 5657354a fb4c2d01 94c7377b
240d999b 88e6864b 031be095 a55e0783 ce8e2df3 e5e35175
7568d275 ba5ac02c 825a789c f044a6ff 6d00c2a6 ff911dd5
50086ba9 88e6864b b0e63ef3 2739a045 4ce98a35 91e6a34f
4b0e9052 20a838ba d5ed6ee9 5d260281 c06266d0 bcd5bb78
3e7fd533 ba5ac034 825a7884 2739a045 ba7dc41c ff911dd5
996ec65b f64827f8 516dafa4 e8753317 9a916098 6eb5ed89
084a36ff 20a838ba 18a8800a 5d260289 c06266d8 ff911dd5
d3d54d5c 37680065 ad274b72 d44fb9a1 604b925c 9955cb14
96049b10 20a838ba bae773ac 81aa5e84 1cee3ad5 61dfb03b
2d4d22ba 6ff9faad 38485610 05c44158 b1c06aa4 56b82cba
6e8ee03f 37680066 ad274b71 81aa5e84 35ae7579 9955cb14
831d0efd 55b31a44 ac529b46 658a2f5e fc3764cd f8e800fe
e2a0c514 6ff9faad f5b6b1ba 05c44159 b1c06aa5 9955cb14
1b814401 fe7055d3 46f78285 ecb29225 aec81505 851068e5
cc7b5953 6ff9faad d77e2df9 ca167343 7e1258bf b78e5751
f5eb0817 caf5a7e5 fa1222d6 56bc8418 14c6033a fd7016c2
fee566e7 fe7055d1 46f78287 ca167343 886cf463 851068e5
3880abf3 d566c95c b6f5ed17 888ea95d c46501c4 301bb5d8
8d8b7630 caf5a7e5 727270b3 56bc8416 14c60334 851068e5
57559f9a 31a28d6c c8430c93 5fcaf18e f6ed9d24 21604fa9
cef10c5b caf5a7e5 331426e5 f230402f b04ac70d c66a128f
af585108 4f018921 4c070de2 0c78b15a e70cbd61 8dbbc108
8c0da392 73ef2d87 8a0eac86 f230402f 19444ceb 8496bd46
c8ef744b 84e76d7f 3c60ba28 d9f3cd11 6f532d67 433d139b
0f44da97 b9ba99ce 405b18cf 7567892c 9e1385e9 8496bd46
27221ae1 016ca63e 5b40d0b2 c12e16fc f2080fcd c9685fbd
6f33d560 b9ba99ce e396efbe 5eb63975 b5c235b0 e4e1b2b5
4def7c8a f3968065 9400ce51 0a4124b1 cd8f0359 7ab22f87
e69a3012 9614b41d cc38c269 5eb63975 99781e61 6d4857c7
a86148b7 b4b6ebf8 4d576afd 8e314c46 d2ffd79f 0cfd625c
c9d47d28 1fb6772f 459a015b 777ffc8f b0b1db9f 6d4857c7
c2943cd2 a7b0aeb9 dd0b0fae 199557b0 565d092b 08dd10a2
294ba887 1fb6772f 650dd639 f3e8562e 3426713e 8dd78269
f860f034 1a9b3d61 ea0e5a81 d62252a0 99ea0c3a 7eb6d76b
ac413a4c a7b0aeba dd0b0fad f3e8562e bc2008b5 08dd10a2
40f40f19 91fa4304 a9fafbb3 ec20feb7 2b079a8a c6222841
8e0b37fd 1a9b3d61 60209c76 d622529f 99ea0c05 08dd10a2
841618c6 7ed70abf 39576ecd 7b037953 cf0752a9 4686e46f
5377f4a2 1a9b3d61 5d1b5915 3f48a407 7080fa9d d5a1d3ff
e89e85ca dd6001a8 6a7cea63 34678aac 150db85b 936b8bce
a5192324 ec3d11b8 abbd75ce 3f48a407 1e2296f6 23cf0479
1d619a5e 6ed9ee6c 14624f79 99b80688 4fa4db95 570a4116
69a4df33 ba274442 fda72034 02de57f4 23b46507 23cf0479
82449df5 608b3861 13e017f6 ad7c5f5d 6ab2784e 868710ea
05d214dc ba274442 c94c6bd6 f324ad89 d24e9f7a 4fb9cf97
fac5e324 430156cd 5eef4bb5 4d54fd2c a64dfb82 5e59c9c9
f9bd00ad 83d617fc f0bd3869 f324ad89 183dab24 b3d6dbe6
d3288f53 d192b29b 9612d6ec 0d371c3e c1cd8940 87ec10c7
e7124473 efb123c9 9cda0c5c fd7d71d3 1664777f b3d6dbe6
09d1f5d5 b52d7174 b166e326 a2ae42df 123b16b8 ac9babc4
1073a176 efb123c9 ebfab16b 52288453 b93182ff 44b73ef3
67d6784e 1d0bdd5f 78922422 8f051f40 bf6d2a61 f677422c
c1ec44e4 350052ee 314bc05c 52288453 6240b182 9528db61
279f5886 bb6fdb91 c804f414 cc8ff300 2bcf12ae 04487844
b6fffbb3 04972fa4 00dcbd16 213b05a0 11533061 9528db61
65ce59c5 a6f43b3a 0d5c6928 c727be90 15e2ffc8 d92f37de
1f52ba11 04972fa4 af3f7db7 2e1d7148 1e754489 3c859ac2
db19a54d 3c3a95d9 e0959505 db729459 09b7d500 0a35e6a8
faf8170d a6f43b3b 0d5c6929 2e1d7148 fcd83010 d92f37de
b3f25436 5831b58a 6d668789 9dae13cd 731272c7 62de17d0
0803743b 3c3a95d9 9792c7cb db72945a 09b7d503 d92f37de
c6c605dd 9e45348d f8c430c8 e8fb94e6 dc3474ed 5faf62a1
452ba9f4 3c3a95d9 5abb919e 20be7151 f27b3008 9407ea13
461a53a0 f2adcf19 a5cee075 661e0bd0 52d1ebd9 50918dc8
8e832146 9e45348b f8c430ce 20be7151 1471915a 5faf62a1
fd4f9085 432d3659 b1b8c6d4 0d84b190 88cbf6d9 ebc44eeb
4924bcc9 f2adcf19 942ccb5c 661e0bd2 52d1ebdb 5faf62a1
ddc4cbc9 bb11fb40 8e46c946 7f753514 8241393b 6f37aee4
380e4e34 f2adcf19 c7fafd18 e30dae50 d7c24e59 2e85905d
bfb1cb7d 13ff58e5 43547909 854dc2d7 13a64984 077a398c
faad97c9 54c97a64 619e4864 e30dae50 75e62504 ec2649a0
3ea3930a 78208fb3 1ea18bf7 7385b659 f6665e9e 1d501be5
cfd5c14e 89283241 bc7f0041 f07558d5 669ed380 ec2649a0
dd1af0d8 4592c1f9 6276fde1 8b986b0d d8ce701c e2bf9b21
fd40db56 89283241 aecc0e5d 6fe687fe f90d0cab deb353bc
20ca03df 517f095a bccb6841 d438c30b 876ed81e a88fc024
c14c13cb 4592c1fd 6276fde5 6fe687fe 3cb09cef e2bf9b21
8278ddeb c80677c4 8767c93b 073fdc1d cee25562 0a3d1e0c
6afa58da 517f095a 769b3542 d438c30f 876ed81a e2bf9b21
49fbd6f4 a834130a 42bcd7af acd8811c 06d3a5da 05fb0923
2d21e057 517f095a bbf7cdfe e91d653f ba4b7e2a a56423ad
3b2747f8 098d19f9 bed131ef 4ac0ccb0 e0cbe877 d2ce6c94
8dbecad9 a834130b 42bcd7ae e91d653f 431641f9 05fb0923
1d2eaedf 6d41560f b4141722 c50c932f c8b3f3f2 f4c785ac
ec12224f 098d19f9 e305dd5c 4ac0ccb1 e0cbe876 05fb0923
a8f5ff18 9f4b0ea4 6ddefe33 b68e9666 89478f12 17603c5c
e7e11e69 098d19f9 fb18e970 e0e1fe90 4aeada57 0e083507
3ef2ca0c 8869ab56 9d3be944 4ece8ee2 66e13e2f 692771ce
af820b29 87b1a605 7524568e e0e1fe90 c8ce4e43 466b2047
5203bf30 9cfb6ea2 7673aa05 cd35ec9a 48e12328 3e5df465
2a356b10 3f564fc1 cdc3bf4a 63571e79 4b78aea8 466b2047
68bdd99c 6a7cba07 230941a6 baaab975 e9fca263 04515aaa
f1156008 3f564fc1 7623b463 ba1c8195 92333144 9d4b2b5e
e99485d5 fb5cfa6f dcac3321 d603fa37 2b37f61d 61d1462c
ef0833d7 145aab19 5d2f50ba ba1c8195 47288dbc 83567881
94bd9f9f 8721ceb7 75b43e3d afc4c618 a5cac73d 2c766d69
3b9d8a76 7a47d9ba 33322219 068a2936 fbbe251e 83567881
4be78847 e8e3f802 89dc134f 5cb22979 37620311 bb25d5e4
23eb9acc 7a47d9ba 1b7832ef 24bbbed5 d98fb2fd 9b206833
e241ac2d d69b9d0e dd073ebd 2dde94dc 945bd5ef 23af64d3
c1995e82 36990ebd 57a6e5e0 24bbbed5 9d3efffe 7952ac7d
16b0f134 471bbe8b 0e6e4520 c4f68426 2eccca39 6188bcd3
0e6ae192 1666b18f 77595ad2 e32819c5 5aad58e6 7952ac7d
e17fe4a3 d7e853bc fb743ec9 30b6ec81 4bb00fce fc72fa2f
3397637a 1666b18f 3afadcfb 8ae21be3 33675ac0 44af2e94
f655eac7 062c2144 ce98084e 82892cf7 f98fcfb9 988ab5c4
8b4ab7c1 d7e853bb fb743ece 8ae21be3 f1e4f8ac fc72fa2f
ce05631f 00e04d1c d1e3e278 1788cd83 6233c2a5 a0da3c1f
92ada52c 062c2144 2ab04c31 82892cf8 f98fcfb6 fc72fa2f
96cd6080 4acffdfb 30c512fe 226dc9e6 9dc709e1 9782005e
273e24c0 062c2144 7c26ce43 8ffdc809 f4fb2b47 49e17bc1
39c42908 192f601a 250b9edb 8176a21c 3edc6219 599c101a
f95d5f5f 4acffdfd 30c512f8 8ffdc809 3057080e 9782005e
a9475a6b 7cc6c998 d76e9b84 6a9e8991 49dca012 c91f6377
f7da394c 192f601a 63258f1f 8176a21a 3edc621f 9782005e
642b49d1 89ecd5e2 58ef7a8b ae75204c 9e1d1582 61e0f818
8e22f9ac 192f601a c82ccf7c 0901a796 b6ab6793 ee7ac0bf
058f169d fdfef93f be548755 cc808f5e e54f7002 26583641
d3e95e2d 83549f68 5257300f 0901a796 20ce58c5 b3b1673e
baa05b09 8f89a5ae f5834aaa 073766db ee1cf9c8 5cb8a6da
55a99aec d02e05ed 012daa8a 8ec26c55 a70d9307 b3b1673e
18e129e5 3d4991f8 9c5f8259 feb063a0 685be8f9 57e52b41
65db3652 d02e05ed 71381640 95c55ed2 bc0aa180 83c3cb84
9f3495c6 dc518226 b5cc3691 d39fe9de 398b32e4 bcc71d20
122781c4 9072e1d1 3164f278 95c55ed2 7fd185e4 f43f7c12
e643391d 2e85318a ff869ee9 6b179d50 7dbdc535 242d17d0
365152db 01efb457 a0f9a7fe 721a8fc5 980e54f7 f43f7c12
8173c350 70515ecc 61aa6709 58049a64 00721fcc fa937423
a74a8ce5 01efb457 10148d93 9e9211b9 7486ca8b 6524a22d
160d7a47 04e210bb 0ac74fdf bcd4c675 e4a243dc f6bd99c2
38fd5aeb 70515ecd 61aa6708 9e9211b9 c6e49411 fa937423
a968c63b 5f6302e3 3e5ce9b9 4ca0af58 fe57d889 49d825b9
1a2397a6 04e210bb 1519297e bcd4c676 e4a243df fa937423
345107f0 27726e58 56191e6d 9a700395 e176e0dd 4141fcef
bab34916 04e210bb 75896088 060febfd 5e796e54 5a03aa91
c838767b 8ed2f48b 7e07c78e 943e677b 9793d1ee a6e7297c
c7cd852f b01941a5 c1723194 060febfd 05a25d6e 277d66a8
76077224 93d32916 822810d1 9a2e2509 3adec4d2 c80d303c
997724b2 f68ffdcc 87e48dfd e3694a90 e0c4fc01 277d66a8
0d3d6050 dcf7226b 42829c41 13da3fc8 f9cee4f9 f19f2693
ea8df6bb f68ffdcc 68fa43e5 d5423b20 d6ef8db1 5487b4a0
527a0e71 ab9efd18 986750aa d9a627cf 4a62043c 901420ba
449a732b 86a66b2b 18d3d503 d5423b20 468618d0 fa903130
061a60bc 975a3069 e6314059 f0fe8bfb 8e8ee5de cd85e339
310fb2b4 acade635 32d8581d e2d77c89 71135f78 fa903130
e6da375a c52cdba2 f272d83e d8d40218 74971b86 074d2b32
58e7f5a0 acade635 9bf3e569 c2dc6974 51184a85 93787664
8b05c2f5 f5432fe5 0f23d45a 6fd56b52 05f3f259 f39d4797
fb05cd30 83105c0f b44e5f13 c2dc6974 a8faf0bf 309a4ef4
01bb5789 e2c4a4c7 7cb11aaf ad41568e 89b5fcbd 97b20a00
a693133d 27f6941f 10a89703 8d464379 e760daf2 309a4ef4
8ed94c22 0b69654a 41eb5a8b 1484ee9f 591d842a 6dff702b
d5b7d650 27f6941f 6d74abdf c768105e ad4e89d5 43be8b98
07ca0a66 b527ebda 396ee620 d96ae699 94f38c2d afc63e64
fbf62de3 0b696549 41eb5a88 c768105e 8af17aeb 6dff702b
539f96b9 3619095f ee0f7b12 b9078b2a 778d0313 fb93a2b8
c5f34429 b527ebda ffa5d41b d96ae698 94f38c2c 6dff702b
58e4edaa ff1e1380 43513045 e7108a39 709f1865 7d15ce18
77c06031 b527ebda 0968c81d 692b9a87 24b2f033 dfcc5431
2d4f3433 1bc4ad7d 0a9ad28d c08984f5 570616ab d2252a43
d519fa18 ff1e1382 43513047 692b9a87 fea408db 7d15ce18
c076a858 636e56fd 1d385d20 08053131 d73c0aef 3f1cb62e
827fd068 1bc4ad7d a78b8eb8 c08984f7 570616a9 7d15ce18
e38865ac 6cdbf314 b4cd815c a2ba7018 4a1ca7ee 72377d43
67b702d3 1bc4ad7d c3d2df32 1065759a 87eae7c4 98dd1ca2
3dbefad8 0ff86036 c4c75c12 0ac775e2 3be2d19d c472e462
2e2004fd b55abf97 6d4ccdd9 1065759a 2140d1e2 d14a1a8c
22d4cc05 1d60b006 a12f93c2 5875668d 07d5f019 b582cc03
461c1a8b eee5bdeb 36f3cfa5 a8515730 9974f349 d14a1a8c
89f4bd0c 4580e984 68e9dc61 6b3188ac ecf158a2 4545532e
b1cade1c eee5bdeb c38c880a 35d59a8d 04f03ef4 269cde1f
e5cfd434 daf07c0f a7970120 0f0be8da 88cb38d0 95439a78
d213532d 4580e980 68e9dc65 35d59a8d b2154a83 4545532e
be832248 048b05c1 b2b84b7a fb0db227 4a56eb9b ce0f6c08
35c91d62 daf07c0f f79949ea 0f0be8d6 88cb38dc 4545532e
8159667b ef3def09 b5cf90e2 99fe677a 05f0247f b13ea98d
0242d37e daf07c0f 800203e5 da22e5d1 5de235db 72ce9d33
f6b0756c aecddbf2 d3654384 8edb4ef9 12d50dfd d3f4c218
c1b2e7c0 ef3def0a b5cf90e1 da22e5d1 462ca6d4 b13ea98d
05731976 29d142b4 e03ac6de c9c8a207 ded90bc1 2037ae0d
947a1ef9 aecddbf2 f43fa419 8edb4ef8 12d50dfc b13ea98d
546b153c 27ec9388 59ba985f 5ff0ac7a 4adc56e6 033e8c83
f1e6820d aecddbf2 d09bd02b 2ddfca31 b1d18935 d4a2357b
00f01da8 beeeae3c 46697d72 25628ddf dbb1f183 1c37668e
8741286d 11931540 6fc51e9b 2ddfca31 d30cb663 a2059f1b
cf86a674 523c9833 08cee7da 1abb4ce3 f05b3ac4 7ea2132b
13212a46 662f9e5c 18799587 b9bfc818 476cb448 a2059f1b
8208841d ef1cf216 58797313 bcd36cc0 3b13bcc9 cf419e4e
6a31a11a 662f9e5c d14a1f5a 20af07c9 de7c7b99 db151446
d6c8215b 3bd683f8 37f5e7e2 e016a0ba 08b07749 a6446f15
e0a2395e 5002f9fc e76778fb 20af07c9 c809d039 51868c02
e1bb0869 d17e82ed af288937 02673178 f0ccf64e 187716d4
a84a92be c77993a8 701c12af 69567129 81f0a6d8 51868c02
ba1a090b dda83ee6 9d2d272b 2517ec27 dbc26f00 97b1a467
236a3a74 c77993a8 87fc8a6d f1385d6f 199e8a9e daa624c0
78b640da 12b4bf05 7b6603a1 afb54697 5160c5b8 c0ff473e
6e7dbad3 dda83ede 9d2d2713 f1385d6f 0fedde48 97b1a467
2a0829e0 910416d9 aa10b553 86e5d84c fbc1034f 92412e1c
2ff8a383 12b4bf05 5231a6c8 afb5469f 5160c5b0 97b1a467
5f5ce69a 87d52928 7dacc273 2427ed9f 57d200ce 63b02ea0
e9ef7211 12b4bf05 e8cd545f 9f842d4a 6151ae65 51a675f4
35391a7c a1bbdf59 23843221 c58a5025 b67fbd75 eb7630bd
dbf92945 87d52927 7dacc27c 9f842d4a ec71c01b 63b02ea0
9aab3966 5be6f3ec 804b238c a0bef3f8 8e9ff21b 44e413a4
bdff0461 a1bbdf59 5bc23402 c58a5026 b67fbd76 63b02ea0
84534e2f 7c2d960f 7122995f 2aa0430a 64c7e70e 3207afdf
a80a7854 a1bbdf59 acb4d00b 529a8bdd 216f668d 76455297
9aae1a0f ae72b5c9 ca568c9f 87fe2502 c9998104 891cd9e5
ec48851c 7c2d960d 7122995d 529a8bdd 1cfd2fd9 3207afdf
0b39f649 a1019d80 529308b0 9e5edc7e dea857c3 188b35bd
21b56c35 ae72b5c9 a37dba99 87fe2504 c9998102 3207afdf
216fda94 8bfbc865 50561818 2f8bd642 047b60e1 4c73d798
1314b31a ae72b5c9 75df65ab d6228d21 98452927 00a670f1
b635b4f3 809620f6 cba8f02c 40590e45 0c3964da cbdcf1fd
4ff9326d ac6b7c43 77c6ac20 d6228d21 9a42e7a1 5c4bf186
113ded04 61f1eb9e 6cfee4cf 10dc3e91 8d5865be 8dad3073
c0db2cf0 10cdfaf0 cb602a93 5f00a6ac 1360cc2d 5c4bf186
a222fab0 4c76dccb fa459264 094e2b37 81476757 dcee3de0
aa41b2a4 10cdfaf0 a6feb443 27124159 6b722bd8 36d16fd6
a9f51ea6 23d731c7 d93f5f9a f1b73f8b 303aecc1 cec0c50e
169b781a 85fb63c5 33c82d72 27124159 e69f920f 8a0ba568
0f3bf040 4781258a 9c2cf5ed 632da092 d3789d1f af86271c
2ab67230 58b9bb4f ee8af5f8 2b3f3b3f eab2e86d 8a0ba568
f872fe31 754be6bf e5d4bfa3 529f13a2 8c80ed61 40c2009e
c4ca7897 58b9bb4f c826e252 3aabec4c fb263f1e 6477afce
0f807cf3 d2f11590 ac0cef71 ba8ef382 64910d40 2f20a263
e07fd7c7 754be6c0 e5d4bfdc 3aabec4c e4b4128f 40c2009e
d0071fda 4187469d 01025f57 180d1d52 54bb329d f0a7c14d
6062de0e d2f11590 426e4c8c ba8ef383 64910d41 40c2009e
312e9a59 68c70422 a5813514 befd9308 cd087e5e 367c747b
5dc80620 d2f11590 1fb724a0 d84b8378 06547dba 7d68d8b2
168d2882 42f2ec9f 012b6d04 95f9cfa9 80d5353f c8c20247
728e6f4c 09fe115e c4b8206c d84b8378 cd6779e8 522eb1de
0940a2e4 052b4a45 95b4135b b6b5901b f3a5887e 1587d9cc
4ee9caf4 d5482c72 180e1d40 d4722010 c15eda82 522eb1de
ba0c0573 81a90532 48428155 cc53c8f7 0dde1ba6 9dc3db18
52137e3b d5482c72 1ca3a816 c14b65b7 d4679f25 4ed40510
299ef5aa 520190da 7eb214d2 4541c1e7 ff94693a 892322f0
3a9c5866 7af0dabe b31b5edb c14b65b7 7b9ecd69 265b234d
adb99b23 bd31f2e1 7077c3d2 3bb6f025 9f233318 29b5d01c
a2576873 d371d883 1a9a5ce6 289035ca 92459d15 265b234d
16fbaae4 79c8a89a af1f09a4 b532ab56 d41ed3b0 fd3f5f76
b74b0b38 d371d883 05a679ad 4d7a00f2 f7afa82d 33474016
8f31049d c3c0886a 069fcffc 2e63b727 4f4fcfd1 ebc705ce
79331458 79c8a88a af1f09b4 4d7a00f2 2c567814 fd3f5f76
a60aee60 6f563732 f3c30629 1b72e598 17b0c226 c2fcef43
99c95e25 c3c0886a 15172954 2e63b717 4f4fcfe1 fd3f5f76
7e88e43e 4a5cb7e5 025be93e 6546b200 828e1a70 d4f3a21b
0a991c40 c3c0886a 8bc7d6b0 1fc16d2d 7eed15db 6e6f1d12
a2ec06f0 afe89a7d f652fdb5 ff1619d2 18deb1a3 e6a6ab08
b005a349 4a5cb7e4 025be93f 1fc16d2d f809c55d d4f3a21b
964d0933 36066092 731d0115 9f7047a9 f296292f d207a4c8
90b90fe3 afe89a7d e7efc4a6 ff1619d3 18deb1a2 d4f3a21b
13b3afe5 5e05e591 afd8736b caaaf7de 5f4f045d 2fa02c36
3a8377c2 afe89a7d 5e350c85 d2e22205 352a8a74 7ec9da38
e313b937 0f1717f1 4b4471cf ef9db656 7a7845d7 8215fb7a
6bea81cc 5e05e58f afd87375 d2e22205 4707d186 2fa02c36
4a09c2cb 2918d775 c4543c37 ba2b7a91 15ccc994 2b0f8080
4ea66e7b 0f1717f1 feca810b ef9db658 7a7845d9 2fa02c36
25d75b96 81bd4f24 c4a62ea6 084359bf 00cf730c 88ca9b87
e3dbb48d 0f1717f1 4a0c7674 bc2bdbfa 29ce287b 82ddf6c1
cec0be75 81a8a25e 7a80f9a2 0f77ed44 753bfa51 7a92ede0
a583b124 f37d3b82 b6665a06 bc2bdbfa c667cce8 c485f368
2ff33a78 f61962cd 07c4f436 ed5286a3 57d2c486 714828e0
9a3ee1f1 b5e537bb f0fe563f b9e0ac47 c3acbb54 c485f368
db64e259 7c827de3 e877a8c5 a3355a4f e3dc0778 de25843d
4adb759b b5e537bb 2110e299 fcaf0688 86e3119b 14606706
790597b5 4ec57b8e 8061c9d6 0cc5eac9 4c2cb7fa 17d4616f
809e96a0 7c827ddf e877a8f9 fcaf0688 bc465bbf de25843d
d5438e94 08f0c590 7a920c8f 1a86b6f8 e19211cd bb927832
b0f472e7 4ec57b8e da30aea8 0cc5eac5 4c2cb7f6 de25843d
8da8a8c7 04a17788 dfeb6756 093a8f13 ffffd63d 986b66ca
4aa8492d 4ec57b8e 958f6b51 6248b7e1 22a1ead2 2479bff6
5b7118b9 f0983dcf a6c81e75 3b772226 cdb27b09 137179a6
f6ba9011 04a17789 dfeb6757 6248b7e1 948deecf 986b66ca
2b7f2c63 1919a127 bf445631 07882b85 18ce9702 637f4d03
d06b07d5 f0983dcf 2bd22d11 3b772225 cdb27b0a 986b66ca
c000e819 baa0be1f 57ec5527 a180690a 614db077 885bd8dd
e26e202f f0983dcf 1dd4d689 a1259963 57e0c04c aa6e4132
8684d054 d1b727d3 db6b1ea4 8da99b21 7c1051cb b200b289
dc71054b eb8caf34 06c04470 a1259963 509c53f7 94716456
1e0f6d33 94aa5d58 4fe04d84 8fd8a5e5 3f0a311f 826e89ec
0810808b d59192f4 38dd79b0 f5871d23 043ed7b5 94716456
acf2866f 24c1258f 625c27ea cb2fea82 8bc6b7b2 8fccb17c
71a09fa4 d59192f4 930c9092 4453984b b5ea52dd edc17b78
dfb660e3 16684911 7bd01527 16c3aa46 1e4f80f0 b167963b
162dd8b0 ec63f313 aafef174 4453984b 4cdfb2fe 8a4c3c6c
84ae76db ac5cc477 41102f32 0d778bd8 a877b2f6 30fc2549
3e1e6fff 0fe8b5fd 4975b79a 5c440702 54c82db6 8a4c3c6c
a9097de5 1ed867f0 25ccc412 3ddca419 2aa778b6 c636ae2c
ca918e04 0fe8b5fd 34fc1667 82ef23eb 8a63095f 7ec3dd9f
40f53fdd db7ba923 07436158 4aa4185c 410df641 3cf277d9
2f9c016b 130679ae 2812da3c 82ef23eb 8946cd8e 9bce52f0
d5952423 76c089fa 305d8b95 1ab54955 48c322bd a756b1c5
e90dc71e 2ff40c7f 14e0afed 4160663e 4ac98853 9bce52f0
8f707495 d32d7dea 6eea3dff 124745f1 bca41a26 12c293df
6c437a9d 2ff40c7f 92334c6b e757f496 ecfe1afb 1e80ef72
4b8462e5 beec425c 519519df 84852c4e 2a667398 4474af4d
60010630 d32d7de9 6eea3dfc e757f496 49b4ab41 12c293df
e79c2f6a 312bdbe9 a25a551f b91142a7 9833bbc4 e86ce2c1
1d325e77 beec425c 032b0249 84852c4f 2a667399 12c293df
7fdae432 006d5345 dca9b349 fa90bf27 0af4cfe6 bf07aed0
3e30fe72 beec425c 6228a252 49a441ef e7471e39 31c033d8
ccf87ade 9715f04b b8f9a4a0 188acdb8 e8eebd7b 122f23af
b0f7637a 006d5347 dca9b34b 49a441ef b9c0312e bf07aed0
f49d74e4 54a7161f 1ca048ca 99a2c55a 345753cd 2a4a2d9b
61d0f7a1 9715f04b 4bd11047 188acdb6 e8eebd75 bf07aed0
616d33a0 07ddf882 94ac7679 81d4f38f e0f88b76 b9d94d33
ab6304c8 9715f04b 04647ebf 87f7ce6c 7793beaf 75b45db8
10ea6d97 95c01309 2b08fd93 0e16765a 3d3a75cf 741c6cca
96125455 d9dd8322 4aac0dd7 87f7ce6c b4dbcdf6 48c50d25
e83aa6dc c3a2ea36 1f660a3b b3d66d27 61d4779d 92185e3e
32e7f5c6 24ccd317 b7bd5de2 23436ddf 106f6e44 48c50d25
194b4b82 6bece697 0ecb0eba fa310680 807d119f e4927a11
60599eb6 24ccd317 41eb3b36 767acdd4 4556ce4f 1a7b6651
7359985b c3a26d1c c485f685 5b12e77a d31bab0e 2de28aca
f1c02fb1 79aa1bf4 1c8df3d1 767acdd4 fe7381ac 8be2d756
dd19a592 d87a68ce 4b0be63f 105650b0 66675ae1 ba2c7e26
ecd70ce6 ea52aaf9 8f7542dc 638db09d eb84fce1 8be2d756
32f3a53e 0041a63c 44dfe350 fed0e443 6328a383 6d506457
0c6cef2f ea52aaf9 aeccef94 0662fe8b 8e6bb2f7 6b59349e
e4735cb4 0a39f768 5f1a8b17 38d3eab9 a52bad78 7dd59b6a
0a65bfe6 0041a63d 44dfe351 0662fe8b 9b9ab94b 6d506457
fa6005a6 1e060a9a 2512a90f 68439829 d987c2da 63c6c27f
f4f6a389 0a39f768 4ea7b204 38d3eab8 a52bad79 6d506457
12ae4892 1b250f75 e8b79a5f e4cfb8f0 4a2ce720 488de8f4
85e273cb 0a39f768 f9ab6244 2452e066 b9aaa7a7 1c44b417
d74d48ba b325eb91 2a45af72 9a9ce634 3981ef3f d8bd8516
ab4912bd 0f5eb8b4 fccc2d9a 2452e066 874fe96b 32efd561
7301f744 324b24de 76d561b0 902795b5 26bba6ea 83fb859f
c215a7b8 1ecbfa8e ed596fa0 7ba68b63 d8bb826c 32efd561
d0c2318c 03b83dfd 3cf2c290 2249e0bd aa40acc2 6605ee9e
8e524d79 1ecbfa8e 218105e0 5c7c7483 ff617d8c 7ea83fa1
4a28d5b6 8e3a153b 326d13d2 d2b7dd5c f9476be2 2d1d0e04
40eb7452 a79fa83c 98d55753 5c7c7483 778cc23e b011068a
19b1d958 678db9ba 941f2c95 08955d9b 3bcd5ef8 64589c49
cdf8439a 60266d13 5f6c927c e96b46bb c29bf007 b011068a
858fa21b 2e465c3c 13c480f3 e7fc3781 1dec9244 fd73f668
d3a1a6fa 60266d13 5da4b1bc ece9283e c7199e82 ae48e3ca
59b5f276 6d7628f2 64c45805 3f81c17a 4df24167 89342c3a
c0edd2e2 a6a936d4 9b2bea5b ece9283e 9e9aa843 bd0497d2
bf6f145b 4f0b462a 7041b965 6d25b094 7ebc8c8f beccbab2
bca7391b ade58a6c 906756e3 70a391d7 02d0118a bd0497d2
be8e6a46 4f10336a ae504139 f21b4528 e1856c74 bd39725a
6161835d ade58a6c 4ca5f83e f007dbd4 82745b89 60c22d95
f02b8fd6 b2a8daa8 1ce7e80f 68c7ea85 7b59c3d8 8a4832ae
bc9adc92 4f10336b ae504138 f007dbd4 e399f288 bd39725a
e981b971 3d8ecb84 8a67cf80 a9f87add 377c60e4 93e2040a
c75acf22 b2a8daa8 53e8a8fb 68c7ea84 7b59c3d9 bd39725a
d58ee157 8a06804d f124779c e13a656c 0bc1aa68 8073c94f
2d784aa0 b2a8daa8 c98a2d7b 05a0face 163ed393 571bf7da
926dde7e 2c9f2f38 4303a071 71bdfc0f 9b463309 74ed60c7
fa107435 8a06804f f124779e 05a0face ef5b35ca 8073c94f
7b0d122d a7c79934 3ffb4222 05fbb998 63df809a 9d8dac92
66f377f6 2c9f2f38 57bdd8e9 71bdfc0d 9b46330b 8073c94f
797b9355 173fabb9 a0d6afb8 181d0cc4 cd814742 91f3dc37
5bb96b3c 2c9f2f38 9b762b3e 16157c1a fceeb31c bd39d584
a96219f1 a1fe2cac 6598aaa6 377eed77 347a2e45 ae8829e5
448a195a 44a82367 f3412760 16157c1a 1511bf2f a20aa7e2
e5ad6a7c c18c0cbe baaefb6e 0c272f2a 1e9ed50d 65449baa
22e35635 b1d6d5cb 063fd1cc b07eaf39 b37a6c0d a20aa7e2
2e3d083b 272a32f5 db820c13 9fbcf1e0 e7e4d182 622dc53e
6620136e b1d6d5cb 4d7eeb29 d49616ae d792d59a e6c9e2bd
2b10cc40 99ce577a 73d1db23 b86203d0 c03a23b6 4fa512b1
e2c434ed 272a32f9 db820c1f d49616ae acce36cc 622dc53e
1b0a3d7c 1edbade3 04e1f0c6 820f9c9a 7f6aea55 7fbfe381
06981bcf 99ce577a 6566699c b86203cc c03a23aa 622dc53e
a210f07d 54d8bcae 11a9151b 31e71d7c 028598e5 a336a657
ce42eefc 99ce577a dcbffece 9576a642 ed2e8624 aaf7300c
c394bc0f 4c99d386 a443221f b5cc1987 86ae9c1f 469fee3b
c78378a7 54d8bcad 11a91518 9576a642 a61423db a336a657
9315c6ec d1b4bd48 69ed257c f97dddd6 4100b28c 161e94d7
263df463 4c99d386 09e87a33 b5cc1986 86ae9c1e a336a657
d43bfb75 7c54298c e468f290 169577d8 7589ac78 2321878a
730a8582 4c99d386 d4a50894 a4864d0f 97e4c897 f601d7b4
92ede85c f75603e7 7b5526fe f8ec9934 d1d27ff1 4b9c7605
d2dd79ca 427634b9 da4aefa9 a4864d0f 8db8abc4 57d62bfc
4915ab58 8c649728 c9153e9f 7ce0194f ec19acc7 050afaa5
1bc97a03 24a9c869 bc951379 6b9a4cd8 42a4aa11 57d62bfc
24485c36 73c30206 0e2689cb 6bd30c20 138b2c45 e36b1225
71618d44 24a9c869 594c43a7 f0cf100b d9f1f6c2 3d7edcba
68407d82 f7128297 c5f849ac 09659cff dcf9d77c 0cf5a371
1bef35fb d1072d20 ace2a6ef f0cf100b 25535b8b 57f06405
75ad835b e408b4b2 7c346fa3 27652aec 626a61d4 7247b348
501a5417 7495b4fb 09703f34 ac99ee1f 7905a59e 57f06405
f7c18a7f a6ea9c88 4be97945 84759c04 8384af12 89a227bb
c0e48de1 7495b4fb 9996513e 0dfc1e5a d86055db c70ebdfb
452b32ed e05f23c0 04a7e85d cace2dae cd3f1eb0 81970d8b
8e4817a1 a6ea9c90 4be9795d 0dfc1e5a 0a0d2d4c 89a227bb
90bffc7b c8ac0275 7fc9834a 344691cb c4788018 5403c325
4d1e18dd e05f23c0 0d5cc60d cace2da6 cd3f1eb8 89a227bb
c2d101ed 6c1199c4 d35cbd8f e3aec7e7 700d6ec6 d90c31e2
9f57595f e05f23c0 5f12078a 8c8dd73f 8b7ce421 5beb6638
ef1fd2ba f0f065fb 65feb293 09a3ce1e 9a00673e aecde4ff
1db00e85 6c1199c3 d35cbd88 8c8dd73f 1f2e7e1e d90c31e2
7a113a22 b2b557f6 90b6a938 00f5c72f 559d5c34 3bc30c64
98de07a7 f0f065fb 4fbd41b0 09a3ce1d 9a00673d d90c31e2
99db331e 2fc65f10 2fc35faa 289a647f fae3c648 aa1bf30a
58163808 f0f065fb f0f56543 36abdab2 a5087392 19c40e4f
a3a00a42 c15ee551 848f98f4 41220a20 935ba815 efe86ff5
ebc9c54d 2fc65f12 2fc35fa8 36abdab2 e4d27885 aa1bf30a
b8d157d8 ff6d0367 b5ef3c98 7da7181f 6d20d854 f4993251
e65396bd c15ee551 c15be5eb 41220a22 935ba817 aa1bf30a
d2296304 590bdcd1 7b082222 888cbab8 e2aa230c 1b404acb
805294aa c15ee551 e35d1b9d 0b6bf69f d91254aa cc1af11c
970ed40a b42d7992 886eecbd 552ceedf a3719021 010789fd
aa8f962d e542c1dd c7413f10 0b6bf69f fd36885e e6c7f39b
fa7f87c1 651836dd 651d3666 339116b6 d776e7ed c4c8f58a
d87081d1 768dc442 548e3a8f fddb0333 0b867df3 e6c7f39b
cb8c37dd b155e9cb ab6fb4da f63bf02f c71e546a 136e054f
e04923b5 768dc442 6cb7996f 5c112feb aa4c512b defe51fb
951a6b79 1341f48d 4ce2658d b4afbdd8 e12e66c3 024c6b46
82544521 d5b220a9 cf887d80 5c112feb 0990f4cc bce3376f
b9e19ddb c83670e7 ea358e2e 3c70d5b9 ddabd064 c4acd90b
c1ae73bb 3bdd462d 21e71b04 9aa70271 cf26d952 bce3376f
eb9d855f 2424cede 0474c825 24f2dfe1 193bbc32 f49c52c0
bfb5a595 3bdd462d 1b8d40d7 833e4d17 d6bf9634 c2f8e140
c101c99d ce895e5b f8a4c645 d16932c1 eca05113 0a79e3e3
89d11615 2424cedd 0474c826 833e4d17 bef72ec4 f49c52c0
0a281bf7 4dbe3d54 a0bdd89e d18a18b9 6d745a72 c150318e
3fe478be ce895e5b eed958a0 d16932c0 eca05112 f49c52c0
454783d2 2463a3b1 c5f19c53 e2bf95f4 711c3cd2 fb514d79
7ea6a1d5 ce895e5b 2f1b61bf f020f1c5 cde99217 b5de8ba9
ac721600 c0699885 a2d2eb56 667afd8c 05662626 eda02041
a70ec628 f3dcd635 124ee9d3 f020f1c5 933c2a69 6c76ec54
72452d32 33672fa7 1337295e df62a699 ba32b41c ab34b365
b5077201 3133f8d0 d0a1c736 fe1a659e 9d06be30 6c76ec54
bb86ee46 2398f843 9bc1607a 54f727d4 0176fcf4 5b02727f
9a4fdafc 3133f8d0 896a60ea 4de429ef 2ef8f241 433e44a8
c5e76690 c1efd7df 9d34f2af f1bfd070 2a2bbca5 b8aa2246
cd590b45 a9ab89f8 11f211c3 4de429ef 96704539 14289511
a91a2b30 3aad5a30 db3f65d7 b923ded7 a253d241 3d613cbe
8053829e fad1ba71 4288224a 08eda32a d379cffd 14289511
357c0df0 da12f679 0c4813eb 15291efc affcb613 32ca847a
a652f5e7 fad1ba71 2c8b5fd3 a1edad11 7a79c1c6 3229e278
5fc67481 dd68ff56 da64622e 917ee080 55b22f32 dbca3f9f
3f639046 e40a1d1c 3250f8ae a1edad11 65216293 ab1887d9
f80b673b 25373fbe 9d6ea795 e98ee8f4 7d67c4a7 8d173a62
de04da90 551ae2fd 8340074f 828ef2bb 46423d29 ab1887d9
49552083 9cf8b0c3 7906f56e 1bc3ed5a 17697003 73a83437
cfa7ba9b 551ae2fd b0e4a751 55e335ee 912ffa7c babbe7d3
3476b08e d604fd1e 6144a325 5163d4f2 5dc949aa 44ea4cc5
06b4697f 9cf8b0c4 7906f569 55e335ee 5949a8b7 73a83437
dc71c850 4da007c5 52e34248 bbf980fe 3fbc2701 aced3418
0334c87c d604fd1e 33fab8b3 5163d4f1 5dc949a9 73a83437
b3971e74 8286c0f1 77dcc037 bde3606d 04cf0140 db0c267f
f39f1307 d604fd1e 235efdda c5e524ab c94fb9f3 8303ef4e
4b41ed7f 5a6df624 17ac6f1b cd7a7be7 74561ac8 3373bef8
ab90da36 8286c0f3 77dcc035 c5e524ab 7cc94586 db0c267f
3c95e554 e13f4eaf bfcadfb5 f27f9e4d cd8227f7 44a7b6d5
a33e75f8 5a6df624 af37f6e2 cd7a7be9 74561ac6 db0c267f
e541dadf 5dd77a30 42943fb8 223af701 9eaf123d 339fa894
7cc738ce 5a6df624 452eb3ab c38ed83c 7aa2b913 04f56b48
2191ba55 1fd0092a 566e9cfa 3b897b4d f4a94da7 d1bd4cc3
df73af07 7061cbe2 6f228e6c c38ed83c 0caeeed1 a741fc81
e327b6e5 e44f9cd0 11159c17 f3c729be d285bcaf 7d58b7b9
393efddc 922d3eab 8d6e7b25 e9db8613 26fbb0ff a741fc81
75a02eb2 178b970b d7308a34 4fbfaa24 1bc12574 2cc06a64
d6c6d577 922d3eab 52962390 94de66a7 5bfe504b 48b9d42e
9a899a02 7d758bbd 862387d0 f43228da a04ca78e 675b5992
b2bf6b3d 178b970f d7308a30 94de66a7 c0a0e9f7 2cc06a64
de3c92b0 96b22be2 215b2ff9 2d6780ee 40dcaf97 23ee513c
d112a9f4 7d758bbd bdce9682 f43228de a04ca78a 2cc06a64
848fb71d 7e39b78b 2bcd6a75 3971c1e4 6c337ac7 c406d9ef
3c28e8b5 7d758bbd 28815642 f6bb1683 a2c599d7 c1fa2b24
dcab9d37 802505df 3bb37bdc edec37b6 b8ae8c94 29a879f4
39d41a7e 7e39b78c 2bcd6a72 f6bb1683 a3f9ada0 c406d9ef
5e973c5c 757f2840 48fdf4d0 6403c7ea 2e9f1a69 ab94d880
31053d2c 802505df d5d1d821 edec37b5 b8ae8c97 c406d9ef
cc3cafb8 3e807402 6075e502 711f898b 6281a0c8 3aee9107
380469ce 802505df ded094c1 6f512f8d 3a1394af cd078d0f
0d47c123 d4ab687d 5a59d839 f4b10832 c111bf00 77247c47
b224b9de 608301e9 3e7690f5 6f512f8d 5af198a1 47275d1f
928ad31e 6f98d60f 3a6c0bf3 a594cdd5 67429515 3e26a9fd
eb8b27fe e263347d bc96a561 26f9c5ad 13597283 47275d1f
53314120 01410ca5 44712cca 174636ec 4338b9bb b1356d94
81cd968f e263347d a7531411 e1ee8518 d44e3236 2d61ec6f
b721a2ec e58ce1a2 d31a1fd0 3314cdcb 8f8128f2 4af3617e
f520f999 69586289 2c6842e4 e1ee8518 5d7b6022 598c8379
837d02bb 444a780f 1abfe912 6a7a415d 99e0e492 7351f42a
a9a075e9 0d45b77b 48759716 256f00c8 99fae5f3 598c8379
26d9b3c3 264c1de1 c2477125 45d880ee 9044cb77 be1644fa
084b3970 0d45b77b e94edba7 9d35804d 21a06576 f867cfe8
79485691 57f0c2bd 8a871210 b4f2b9bf 0c05e0fc 7ea26693
751af422 09a72b9b edac474f 9d35804d 25c2d916 853602ba
4aa254b8 3511a048 7021802d e23aed23 ad0296bd e65ab653
29cee059 9ed07dfd 7adb1129 5a016c98 e2f635cb 853602ba
3fb4588f d165e73c c24a6b75 cbc99258 204550c9 f4f0a0a6
18a2c0cc 9ed07dfd 8dfff1b5 ad7d7d11 158a2442 b45a222e
75e1518e 90bf67a1 35b443c4 f3b2037a 183ec1ea 86cc38c2
58084244 d165e73b c24a6b72 ad7d7d11 46f1bf80 f4f0a0a6
ebac5797 27d0d099 1110fae5 f4174b46 768960ce 18813ed8
07ddc9ea 90bf67a1 8390ebe8 f3b2037b 183ec1eb f4f0a0a6
fbdf1fa8 0aea0e37 40d55d51 bb788aca decfe3ee d65ba79f
df2d0e8f 90bf67a1 da8034c5 81213be1 6aadf971 2c0067c1
1ad37930 2ea74e9b 271ebdd1 1cf91144 794e7862 95d64783
2576ced1 0aea0e35 40d55d53 81213be1 e49652c5 d65ba79f
fd1fa763 1adb5c6b ff2519c8 6fcc1763 3e276195 721a99de
595e992c 2ea74e9b 64981dfd 1cf91146 794e7860 d65ba79f
4af5b55d 8dbcb511 bb7c9f60 42725bbc 86be9421 0b7dcc98
4dd94005 2ea74e9b 186764e5 8fef20a9 ea58498f c2dc7eb7
29e53fe8 67f2af1c c1e5950a 76063f3d a1a2a48c 5cf962af
62a76daa a0948133 9654ab4c 8fef20a9 584bbb17 eda25318
de6683ba 5901c373 133e9014 6d3bcad8 0bcbe346 01217bff
32e5ab5c c9b63594 ff761feb e031da3b 37954184 eda25318
ac193565 c131d0b1 f5cea15e 99966a60 56b65c80 bcfe28e2
34a6623c c9b63594 fd494477 67f74519 b053dea6 ebe19a7c
f4fbaf45 c897cf23 3facd8bf 272e4e32 22a48956 6a84ae10
770ef01b f79c613d c36310da 67f74519 627d8271 a849085b
61e1954e 7580c57d 4340ef06 ccd2379c f114a9d9 aa09c0eb
63a15dfa 3d44eea4 09bb9f43 5497a27a 511d6516 a849085b
21df63e1 13e83d0b df57593b 8558fc25 5976e9f7 40bccb39
8be0af05 3d44eea4 f1fb8a95 efdda8ed ea576f81 4008faa5
db45c7e8 133cec18 00d3f24d 809e9602 5cb083d1 87ec855e
8b549e99 13e83d0a df57593a efdda8ed 33f3bd3f 40bccb39
04a1916a 68a92e4c 8ca2429f 09b1cc66 382b9461 5808d3db
1c15898f 133cec18 df838828 809e9603 5cb083d0 40bccb39
fc735456 229b98dd 955249a3 3a7d6e30 d1f1aca6 998ae5db
776e7a35 133cec18 a4f53d60 312cff57 ed02ea84 2bc73881
c54a3078 12261a56 73c586db c7b125e9 ab4250ac 36675930
d0e4cca9 a4024b88 13cb9af2 312cff57 5ddf8a14 8c4d8e1d
7abda1db 4b4946a5 87f62297 fff3d455 452aece3 a14320d3
57b30f17 fd638330 4aaa524a b0823dad dc7148ec 8c4d8e1d
cd50baa9 95fad55d a4afcd89 f42e796a f1a4be05 a49eaf48
de265471 fd638330 cc369be7 665ee494 0aad91d5 05d8d57a
db9ad459 546ab7cd 15b418f8 5648b92b 4af829be 107281fa
24166a90 ad209e85 9c758653 665ee494 7aee7402 ffe8eb9b
524902c1 27e81517 9021c46c a89863a1 351fd22f 865da43f
2bfc4d64 a710f420 9645ecf6 5e750a88 42c59a1f ffe8eb9b
f552eed4 ce72b066 5027d3e7 5a87069b 1e954846 d83aa0ac
b8fd90b9 a710f420 394595a1 01335d22 1d83cdb5 6ce93446
7bdade7e 71310500 43d3382f 443c5e47 002e129a 6cc77a5a
0c2e0453 ce72b266 5027d1e7 01335d22 452113ff d83aa0ac
bbf74838 1b606dc0 6865c731 d6406d9b 3801d806 aceaea1c
cf270488 71310500 ef646681 443c5c47 002e109a d83aa0ac
a1954c32 e83d1376 83b5845b a2e60d51 19f85605 8f7dea7a
b2707072 71310500 1ab9922c 8b1b0b2e cf0947f3 a56dd457
f69b6ef2 f22d319a 7411eb63 d0a6a7bc 6bb8fce9 aa322e46
98604e5f e83d1377 83b5845a 8b1b0b2e 3005507a 8f7dea7a
ae4745e8 9b5cf775 55a44566 8c7ad82a e834f91a f2ee055f
d3d4aace f22d319a 99a5a6b7 d0a6a7bd 6bb8fce8 8f7dea7a
13f0d1c6 977cc785 66011ee7 ea853c76 8ae8cd48 76096249
49da6c1b f22d319a 0350e8fa e134c99d 5a2a92c8 15732cad
84a334f0 f0ddff2b 2a0fd03a 608a0bed 00e7fad1 5f5db7f8
2aa022ff 977cc783 66011ee1 e134c99d 815938a3 76096249
6f4bae84 dc32153e ec1bb19b 83f8c493 c83ac3dc b4b52d8a
adf7e141 f0ddff2b 01a02649 608a0bef 00e7fad3 76096249
4c9b3bfd 16fb8fff d8033de9 999faf56 1f142d47 25552c1e
887ab9f1 f0ddff2b 3e254d3a 0bd01a7c 6bbdeb40 53843af8
77e40707 3282f48a 2a03da5c 1af646e9 f52cb363 9cc0a870
88c6a8a3 804b037c 4eb3b16c 0bd01a7c e40aeff1 53382baa
42338473 9c1d4559 6d609c3a bc1a5f74 b74217b3 75bd52fe
64b6fd26 809ff21e 4e67400e 67606dff 88ba9873 53382baa
ccc7d973 5bef856a edba349a e2c4da71 29ee52a5 f7ea7967
0d1bfd06 809ff21e 36ca43ea df2610e5 30fce569 3a952b8e
6e175950 2099cb4f b71d22a4 5ea6228b 958caa5b d919b162
c064afef 5bef8566 edba3496 df2610e5 140c9831 f7ea7967
ab4e7fd9 aa0b79b0 70a0a9c4 a331475a f7ad706b 1c4097e7
40e49155 2099cb4f 96cc7abf 5ea6228f 958caa5f f7ea7967
d22221c3 d840856d 7fe62d0e 1bc04f32 99110ddd 2311643a
5e3587ea 2099cb4f 873f632d e19bf16c 2ab179bc e93b6fd9
aa2af146 f26281cd 2662f7b1 0fcecc4d 8d1f8ea3 4f6b3253
941f8c09 d840856e 7fe62d0d e19bf16c 634ab383 2311643a
5f06d1b6 b1c6618e 8f1a3758 8f4e11f2 cd7b335d ba4712ac
c650a72f f26281cd 55c429ae 0fcecc4e 8d1f8ea0 2311643a
1b68f75a c8546f08 f87dcba7 585a92ce 0099a2e5 ab08a613
4ed5a36f f26281cd c24b256c 8d3c049c 0fed4672 ab946078
8a719d0d f0bbed16 6d831580 e17baacb 63ecc261 b3f0f449
a3a06341 f228a783 c2010320 8d3c049c 0fab6c38 46e1a056
32394d81 5c7f29e0 fbd98181 b6f4f2cc ecc659e9 be5ea412
ca8649c7 84e3e761 b4ca43c2 34622b16 b6f543b0 46e1a056
ead5a299 cd77078d 54d9958a 3c0d4e06 f727c6d5 db43597e
3c016427 84e3e761 1d4d7565 96de3baf 14495309 b0668db7
9fbfc8bf dbfac493 09ae6214 c1853a4e 470eb85a 28b1208f
7c6ce59d 88d800d2 117692d7 96de3baf 1055b9b8 f00b0c0d
6da2b1db ade7cec2 9dce6a60 931ef0f5 f8213f37 86861eab
1b2fa37c c9338116 509d1313 f59b0190 73108386 f00b0c0d
ff823f7a 048dea2c 2fd3b9d3 8347b12d 42a25a09 0e88e0e1
6a9e6286 c9338116 e26dd2e1 7d61810b fbea031d 81bacdff
c80bd77d b9b6f516 1119fec5 d60f2162 17eaca4e 8bd998b5
e5ac4f98 048dea24 2fd3b9db 7d61810b bc846a2f 0e88e0e1
183dd6f2 a8f8268f d03d2ab7 47a3b577 f684a9d2 5bef9922
4d5aaf29 b9b6f516 92e8a6e9 d60f215a 17eaca76 0e88e0e1
0332d249 bd3f6da9 d047231a 6cc1324f a9af51f1 8cbf72a0
1370945d b9b6f516 d4cebba4 2105e12f e0e00a03 50a2db94
473e6d4d d12b0aa4 35e4439c 205b91cf e535f270 04166d25
cf6d3d69 bd3f6da8 d047231b 2105e12f e46b8291 8cbf72a0
70ec7abe 38aa2cfc 2cd77a15 9449bf4f b8a43958 33c47ad5
cf9772c8 d12b0aa4 bc534417 205b91ce e535f271 8cbf72a0
a46c0da3 e7b3ddeb 99b9f218 12b3d309 c944e40d 17714412
de7953b4 d12b0aa4 af212555 a2be89c2 67d0ea7d 9d5153de
c2cc4663 6993c81d bc68ec00 0d4507b9 d6b230bf 6f62383c
54594478 e7b3dde9 99b9f21a a2be89c2 7949bec6 17714412
eca38888 769b95cc d13d7760 f6c974e7 1e367052 410df6c9
badf3a4d 6993c81d 1799e7ee 0d4507b7 d6b230b1 17714412
089baf05 2f4ed40c 3b3382f8 e710c388 46a2817e 9d74aba1
004a1554 6993c81d 7dee9ef6 fed03d42 25270a44 ade46b0a
5a1c23f0 98a4fa2c 4c15f9f0 7b5a443c 87c26cbb 7024a6a7
025e87eb 8a34b9af 9e49ef45 fed03d42 024815da aff0f9b5
005749a7 02e1b5ef 7ceb9a1d 78c12473 0b98aa5f 197dd2bc
b6da62af 8c20505c 985d06b6 6a4c59fe 96d47167 aff0f9b5
43af717b 636363fb b9c8b39b a7cecd0a 7415f13e f8031c95
6f35e859 8c20505c 568b8020 054cfa3a f9d4d2a3 761f7347
8b6f3b6b 72a97b8f da61ce2c 7e6094c3 169c2691 19510ec0
521eb28b f884da11 222f0a69 054cfa3a 6db04874 4b342995
1badba2f eff9bef0 fb84e81e efc9c90c 644c2bd7 8505b007
d59c23b9 cd708e5f 17db5e27 8aca6948 e236db02 4b342995
f0ded461 fe491ba5 0769979a ed7276bf 74a7492e 0be55696
f700ef76 cd708e5f 34500261 90defdf5 f8224fbf 69a8e55b
09efe17a a0148eef 64a17b89 d0cc5290 49196d00 d77abfbd
954d5cbb fe491ba6 07699799 90defdf5 090bc264 0be55696
e0b6408e ee0df5ed c553a615 70d23052 971c96dc 3e231e4e
d5700851 a0148eef 593402d0 d0cc528f 49196d1f 0be55696
66cf6eeb cbadb316 5453f11a 21420e1e e42c6da7 bf4565f9
6c5652a4 a0148eef 3feacce5 264d61d1 bf985e41 b2c30c61
94ea2e8e 647fd706 389cfa78 8ae0037a d223335b d7c22ee2
c4481da9 5f027f86 c0fc3d8e 264d61d1 7e8e51f6 1add436c
4a7ee4e9 09aa19dc f08a95e1 2bb85d12 b03dc862 73ff8da3
235c2a24 c6e7b491 5919f699 81396c54 d9fa5c71 1add436c
fcd095d3 d72136b6 e9fd606d fdc08903 953c3b4a af64aff8
803a3175 c6e7b491 f83be249 e38db821 bb4e8804 b9bb583c
a6c2f9ed ee296147 fab6c4bd 48b45907 c101dc35 386af3c3
5b26cdeb f7da099d c9065f44 e38db821 6a383d10 62a7a4a2
b6a40079 eb51c52a 74af8723 bd2592b4 09056edd c3c98fd1
17ca2b0b c0e64df1 fe3a1b28 1f79de81 96cc5bb1 62a7a4a2
b084b91b 710eb549 f05922f5 71976420 484a8858 2e0faaf4
d04f6acc c0e64df1 41b1da5d 4879dfea c1cc5ada a522e575
7f171fc8 f2218298 c884bf38 6b569f31 528b7359 e75d50d8
5b62254d 710eb539 f0592285 4879dfea 71a43392 2e0faaf4
f16f29d7 0c774950 b01a1a9f 9c478046 c8743366 692566f7
b645e5e4 f2218298 73761524 6b569f41 528b7329 2e0faaf4
de0a4d4f e2f9e4a2 6eb0e554 5ba7251c 71116b6d 09db4576
a14b5a3e f2218298 7e68836f 1c206bf4 25fd879c 3901152f
2e8e5afd 942014f8 f549e620 74488987 5efec7f7 defc3658
91910a67 e2f9e4a1 6eb0e557 1c206bf4 36962585 09db4576
7cc6cd70 87cc888b 88eed6de aa99d2dd b4fb10de 8cb4a1d6
f9a929d3 942014f8 1869150e 74488988 5efec7f8 09db4576
fe4fbe21 a7111a6a 7e93a7c7 a582b3e1 9825e001 fcbd61d8
a7676d88 942014f8 4da2a957 9302408f b9b40eff 5715012f
c107488d 75687505 c3e47373 bb51b616 86f6e5f4 d9c6aaa1
0ccf0d7f a7111a68 7e93a7c5 9302408f aea5136f fcbd61d8
f03ad215 4ba5051a 8e65890c 79712e9c 6a92cd6b e8fb303f
e47c83f4 75687505 aceac8a8 bb51b614 86f6e5f6 fcbd61d8
5a3fec10 732075d2 7c022b82 db5c4677 e00312c7 7b0b0c50
2a9ce0af 75687505 7a4a2b52 d2e94864 ef4e1b86 325d0282
a943c5ef 92fb56b7 0d4a0858 16f3b7ae 051b9c01 f58f9497
7dc171d3 4ba94ccb 448b129d d2e94864 c10163cc 650093fe
5080a809 fe1bedfb 27995057 22702f44 9e86121f 2f60f355
1ae0c8a3 550ddc49 5a2f821f 3a07c194 29efea3d 650093fe
a8c1e194 22a51d97 796c337d 401cf6e1 a1639a12 8f7e4a0a
ce473fcf 550ddc49 0ec4f2a7 983da69c 8bd58d35 b1a76496
b90ef632 08ce0b1f b84cef89 759654cb 94e9383c e437ffb6
f09e1153 22a51d93 796c3379 983da69c 7942ca6f 8f7e4a0a
886ea524 a1187952 00bae82a 14be963b 6d774d11 d557ac9c
d247438e 08ce0b1f 530725f5 759654c7 94e93830 8f7e4a0a
52981877 c0dcbb22 b9194ada d9659782 40eb8b7b d7260fb6
f042049c 08ce0b1f 710bfae6 b0e08946 519fe5b1 ad7b0d19
b98a1367 e329b5ae 4da81edd 06135a16 9f9d46ee 0be1c931
8a1f0633 c0dcbb21 b9194ad9 b0e08946 296e95bf d7260fb6
d4c5f9f8 6d57d7be 6419d26c 02ae1883 2112278b 66ae2391
654dd5e0 e329b5ae 9aec4456 06135a17 9f9d46ef d7260fb6
7e86dea4 dfc782fc 1a070ed0 47fa0186 d1d1ebce 99cc6bb0
914b7384 e329b5ae 26e939bc 131b26c6 8a953a3e 2320a9d0
0b702ef6 0aa1089f 6ab8fb05 a6434555 eff3eb46 4ee3d613
06e1b4dd 934c46e3 568ccaf3 131b26c6 5aab88eb b48a6e89
c51637aa b8c16136 c10490cc 014163a0 bfcf9a65 688fd475
19138d54 43e315a0 862399b0 0e49304f 47f99e60 b48a6e89
14273dad dbb1d464 9a419568 02f1976b e38efb9f 75a55c2c
9d23c054 43e315a0 021354af 4f0919c6 06b9b7e9 30ba2388
848c03ba 62adf2dd 0f61aee1 fea83f71 c5f76bc4 d9b50a3c
00410cd2 3591bc27 7461fd29 4f0919c6 74564d70 add8ef0e
6d656b6d e4cfb6a5 210f3ab4 bd7b9df1 d8c7166c 31a93a12
f114be70 ba727fbf fb823eb1 fe3b8768 c564d3df add8ef0e
a0fed0b1 48a459ff 306155ef 4ab3873b 8322a9c4 e61cf125
b861eb5e ba727fbf c2b77397 609db71d 5bc2e3aa e4adba28
eec21733 ea14e9ab 28fc5555 22784994 5210c01a f064f4d6
fa8d128e ef7bb4be 97beb89e 609db71d 10f53eab a64143f8
704ca124 490a4618 08fa071e c0900fdc cf129c94 6f6c78d6
b9619a02 a9f03c8e d13530ae 22f23fa1 529ab61f a64143f8
bc67a58a ae99b8a8 07ac3e69 064701bc 7355046b f22545c3
c9916763 a9f03c8e 00c5ba4e d724fb6e a74c72d0 d6b1be98
24d2a219 d1263fe0 ae6a25e7 a4ed9c82 d1ff9954 c83bd909
ed059c38 ae99b8a7 07ac3e66 d724fb6e a236feb9 f22545c3
ec347a8a 3a5c544c 8db116da e1bc7a84 3ff460c6 00dd0199
1ecc3ed3 d1263fe0 7813b921 a4ed9c83 d1ff9955 f22545c3
f0e923c7 467fd968 e2eee1dd 57688cbe bd0313de 4f434c01
01698cab d1263fe0 75b70757 84a7980a f1b59ddc ed80f7b9
bdda2b1e a8b535a6 83b605a1 002d8547 ea461a25 d5b54353
a3aa3713 467fd96a e2eee1df 84a7980a 6ecc076a 4f434c01
5e947d05 74515597 f818546f ec458526 5a423a75 36fb1546
272c244c a8b535a6 0c240d13 002d8545 ea461a27 4f434c01
c88f21b2 f82782ac 4fcac037 a0fd73d2 99209fb5 64a555d3
0af03dac a8b535a6 1f587732 5d4267bd b729f8df 629f55e0
b6e1ed31 f3a09da5 6818a5dc 8d1d4e8e b64049fb 2eaba22f
228fc407 f9a69dbe 4e4bdf2b 5d4267bd 661f60c7 4ae0ac4b
f35e7fff f3a9c3e3 5738fb57 5c98fa8c 31382da9 3784a26b
8e3a71de c165f439 7688b6ac b9addd06 82f0da7d 4ae0ac4b
baf19d6c 99f1185f a1da2166 bde35a55 ae0b71f0 8e096ee1
0fc47f7a c165f439 f94ecd0c 4dc54459 76984322 cb1ea2eb
b6a0cab9 1500ecc0 bee9a977 08cac221 db11fe01 c94091ec
915858f7 59e428ea 61cf11db 4dc54459 9e1e7875 55828566
477abb75 37904342 807d01d3 87113528 aaf24f2d d5448ec2
c7bcb0d5 dd880565 e5a33c54 1b289c7b c8f3a053 55828566
ea0f411c 2409a449 8e9a5d60 a2f95da3 b8a586ae 9cba37b9
55d570ef dd880565 771bfc4d be821cb0 6d592098 c7eb455d
455c692a 013a96a4 6cae1e60 472a957d 5d764e71 5fbac754
0e84020b 2409a44a 8e9a5d63 be821cb0 a4dec7bd 9cba37b9
700de4c1 2ab9c36f 527ccf48 1eb81420 5d6413f7 6aeb4ab8
865c99c7 013a96a4 aba96f8d 472a957c 5d764e70 9cba37b9
2b7f8b71 5befc16a fc4923dc 2504216f 501624bf f096a1b8
832b8f3c 013a96a4 a69c7414 6401a522 7e5d7e2e 99cd2140
d30341aa 93c8cab8 8092806d 360471b8 01b0e116 3fea3abe
ced07ce7 1e924c40 b934aef2 6401a522 53b5358a d436d29b
4a1f0aa7 a33ac882 09a931a9 c980caaf a346970e d723e916
490a3128 7028fb8b d78e1939 e657da59 d1e34af3 d436d29b
fd4b8010 0c4fa70b 3267dda6 6fb57f96 bc6e43bd 5b7fc6e2
f7848925 7028fb8b 4e008125 66be1c56 510a8cfc 6ab86a97
ebf7e6a5 ab5f0c28 5b8d724f 5bbf6e56 fa0d2cbd 79c9d314
5a232cee da26adc9 e40ed766 66be1c56 c70c5ebe c71fcf5c
1aa6b217 45270f5c e281edef 73537bee da494659 309e375f
ed274a15 3dbf148e 03976e21 f3b9bded 520bff04 c71fcf5c
0ccb079f fc45d89d 75c15b21 eafb452f 8ac24237 11356cb1
38435d20 3dbf148e b43b9712 f7355f6a 56871d83 127bd849
4883e728 f3847535 9fddf8bc 89866b77 e9bf6c4f f40a767e
3b0de9d8 fc45d8bd 75c15b01 f7355f6a 970c5872 11356cb1
9676a7af 4e8e3a98 edc0775c 41fb4452 fab988c9 2aff3699
adbcfde7 f3847535 7a00f689 89866b57 e9bf6c6f 11356cb1
ba470a11 755b7321 23c371f2 d2577bc1 30477ee4 1ec3b2b0
62c17a90 f3847535 a51c77e7 ea5c5477 8a65534f de48ebc7
646fd1ea bee02ff9 2e1a7a0c 6b1c9759 890c927d 592605d2
a24a23e7 755b7322 23c371f1 ea5c5477 084c5152 1ec3b2b0
aaf2fd22 5d8a6314 92051a29 9872e382 18c8dbbd 97bb2919
238a6688 bee02ff9 e8782d2a 6b1c9758 890c927c 1ec3b2b0
7a63e954 5b04d414 9392c1cb 0a8ce920 74b8401d a85b06e4
ad881180 bee02ff9 76763a24 759dcdaa 978dc88e 90c1c5ba
eeb3d098 49741d4c 243b7719 dbfb8534 a5cf2c0b 4d145b5a
9512d2de 5b04d412 9392c1cd 759dcdaa 0ba96497 a85b06e4
6a1cb730 be835590 57751e7d 779210d1 84d1f152 c9bb3cf4
0bfc8d26 49741d4c 81e20893 dbfb8532 a5cf2c0d a85b06e4
38949d24 beac2965 7123505d baf33413 499f814a 675eb9e8
0cf3e187 49741d4c 86fb6473 fed09b0a 80e43235 af546a44
d123c2a9 53e7669e d50495c7 e4b545d7 3407e531 58aff438
02fcf1de 9bf214ee 547d6dd0 fed09b0a 2e623beb a15b7a1d
8868b1e3 ecc033c4 2456261a 4a5ea0cf 6dd60d22 9a6216bc
b351dd43 95ea26b7 5a655f89 6d33b6a5 bd811645 a15b7a1d
b74fcd06 d8eae125 998e7466 4324997d 5097c22f 838a2721
013a317c 95ea26b7 d48eb3f0 206956b0 f0dbf650 13309626
0dcdf204 6a91702c 63459894 549637e4 47256cb2 4bfa7a96
9180807b d8eae129 998e746a 206956b0 33da0de2 838a2721
69f8b59e 3a61f2cd d7c859eb 4292caa2 a1111755 2fcf3d00
c5bdafb3 6a91702c 2bf5e56f 549637e8 47256cbe 838a2721
80d5ccf0 677d503a 4a6e3aa8 615ff73b 71c0cc58 42478bbc
290f74e2 6a91702c 47821abf e5053882 f6b663d4 6f38fc71
0b4ed6df 126edf84 0a1ada36 c5b49ff1 d52ba493 2da826dc
0470032f 677d5039 4a6e3aab e5053882 f59a03e1 42478bbc
dc7f0ef8 05bff098 e0da2d51 94fa5e7a 970a120c fa99fef4
64a17bbf 126edf84 3f7db516 c5b49ff2 d52ba490 42478bbc
4379eb72 04bde63a ed4baddd fad398f4 f83ddaee 6590f895
d9cc9d12 126edf84 fb98946d fad1750e ea4e4e6c ff2a6d13
44860321 8fb0bc24 e4e3eff1 1e5191e7 3e1e0399 0ee10ff9
ab62f80e 221f3692 cbe97d79 fad1750e da9ee77e 8d84080f
81df914b 893093c1 a423f951 f04c67ec 21f63d79 d0a126b6
dcfabff0 d7c5cb9e 3e338075 25693d0c 0526af7e 8d84080f
a3c01fb2 cb299482 41575b37 d9468a1b caf5d14e cca46193
7f723c24 d7c5cb9e 5dbb0428 bb60c3f8 9b2f518a 2e0c8bda
6e74a8b0 4a4aca32 da391542 b019948b 437521d7 28432020
7330a799 aae2ee8b 209c213c bb60c3f8 480c76a7 224e1067
0849ba0d bfe91cf6 561f571c 5d76bba3 61c2ec9d 81c58c9b
abc226f0 76a17b16 fcdfb4a1 f36e4291 0002f7cf 224e1067
d61e315e 6986b663 37e8f130 c5e59525 23b46596 13481d3e
7fb1be94 76a17b16 28cf3c4d 8a1b9f64 79772a3a f63d880b
a5029498 8674419e 67b3d1bd 34335b63 d262abd8 96a1660e
9ac42ba1 6986b66b 37e8f138 8a1b9f64 6c4a6fd7 13481d3e
1225a62e f7b23a11 9b1e44cc 92a40a23 c52be30d 218654c0
20ebefa8 8674419e d81a06cd 34335b5b d262abe0 13481d3e
14410136 1c156029 74974644 aaf1a04b d102af0c b8d4bd69
2ef80ec0 8674419e eef667f2 31ffd683 d7ae2638 1d5bfc57
3112de45 c09c233a 419de0ff dea26871 a5516737 d1545ac1
8b774ffe 1c15602a 74974647 31ffd683 4a0cd9c4 b8d4bd69
98be58ff 9af3831d b255c666 1ad3acc8 4c99c3e1 78f8dc78
589239ed c09c233a a81e0557 dea26870 a5516736 b8d4bd69
8a065e32 2b425131 903b7a58 e3ded605 0547eb3e 05d0e56b
eb8d46e1 c09c233a 7be50851 344e9f32 4fbd9074 0bcbc267
18d76d15 45457c43 ae00b5dd 81530963 67ca345a 359d83a0
e59661ed 2b42512f 903b7a46 344e9f32 d2d7a209 05d0e56b
e170ec22 43025173 c2e0199a c022c643 2474d42a cc3a02e9
289a0bde 45457c43 fe3c572a 81530961 67ca3458 05d0e56b
8dd0f9df fafe54f8 d25811fe 8993a63f 15c1b3d2 c2d68421
5fb711cf 45457c43 6de3393a 67d816f5 81412bcc 72fdff7b
62a96ea3 4e155f40 ec9ddccf 3cd5d26b 839c7746 60e1c488
cbb568c5 1df5e45c 3553a124 67d816f5 d891b3a7 e6ff8671
3cf10916 0bb3a1f1 b0ca8a99 992b8022 f83b5c22 79d26c60
a3dce306 69ec6b44 414a2e3c 7fb08db8 c0f928eb e6ff8671
91df1601 cc540fa9 21fda4fb 8baf75cb aa1e3c7f 1e8b25c6
e9218954 69ec6b44 8445c06a 417ea777 fe370224 ac02ec27
41603416 09b1b392 c370f284 1018cd36 f58e7920 52ddbf20
30e54c47 90397a5b 7d90d171 417ea777 a4e8131d 75c62934
daf1e7e9 f57d5098 dddb15e4 a4c04ca4 fc551932 b0c2c38a
1ff50d53 827eaf70 6fd7045a 668e666b 8318d205 75c62934
3e945d2d a4cb543d 2d945959 947184bc 9392dd86 54138836
7b48af09 827eaf70 0b21a215 941cd407 718a6069 117b8b6f
66f02ef3 e6335915 7c6437e3 2de576db 2a062fe0 650be9c8
3e20ac50 a4cb543c 2d945958 941cd407 93ff8d3d 54138836
2ad9051b 896e8568 d700c23c 048b3001 af95b58f 2922c227
57e84f0d e6335915 6f6c5471 2de576dc 2a062fe7 54138836
0c2e3586 5a430f18 c6d2fe7c fe806e57 85736117 ece48860
64bdab0d e6335915 7aa2a877 21b177aa 26522e91 67466c34
deb991ee 47975604 84f33ec4 fdfc34f3 ff1276e3 3eff156e
1bd75937 e13e41f0 7dafb090 21b177aa 235f35bc 182c9e0e
4e9eb6c4 c233ca89 4b6cc7ef 7450bc77 26821c94 04f9ba12
524b92da 724f6bba eede9ada 681cbd45 6af2ff51 182c9e0e
ecc1a5c6 54f7de14 b19203d0 ef576c76 0ac1d81b 6d825bce
2b6786a0 724f6bba 972ab67d b87a7b43 ba943957 61008a75
f562f108 079767dd c9d7e44a d84692d4 b2e9fe0f 9f51d56d
fc102349 da10967e 3f754bb8 b87a7b43 d2d5179b b6772f9c
3ce121d7 7035e176 eca41017 6ef81360 c4b31ff8 6da34338
e7354d72 309a41b7 d5ff9c71 bf55d15c d5fabd85 b6772f9c
fc2d93cf 141d38d4 a8706b4b 576a32bc 195856ba af409259
dc3cc73b 309a41b7 8cf71258 553f9424 3f90f8fd 8d7ea5c5
ebfa88be 41f571f5 cac7cc7c e1b3d767 ba7f6124 364c2e8f
36c4a7fb 21b78b11 9ddad8ee 553f9424 0ef32217 6786c505
c7857d65 c86c671d 2d09bacb c60da1f7 ce84d2f8 907f4eec
307cf69c 1bafaa31 a7c2f9ce 5bf764bf 003bd29c 6786c505
974d6a6d 54c9523f 1bcc2de0 66c30498 f2255aa8 c2a3ef21
ade4c37c 1bafaa31 54aad5ef 68ceb2e4 330204c7 fa1ef0e4
0bce329c fc4c487b 6c194dc1 1911c5ad 8df79b9c 03f374fc
9559dcb9 54c9523e 1bcc2de1 68ceb2e4 fc28ecd4 c2a3ef21
2196debc ea01ab1e 5c0c8282 363cfeb0 b4a73e64 29ab98df
ca9ea941 fc4c487b b34937a4 1911c5ac 8df79b9d c2a3ef21
8d37a800 e139f34c 09a602d7 e1546160 98806864 2ff43a07
540326b9 fc4c487b 14d3b9e2 46ce15bb d2284b8a 5c3e60db
477e9a70 cd83d66a b9f4ce77 3b46ca54 4292c352 bbcb6089
27c97c65 e139f34e 09a602d5 46ce15bb 3f1a1cbf 2ff43a07
78ba324e d3488d91 eff30dd2 3cfbf9ce 436339e3 840fc8b1
d341c0fe cd83d66a 251c27f1 3b46ca52 4292c354 2ff43a07
7d16386f 396045fe 8f6d6c67 59716faf bcc11736 56678f0d
01d488f2 cd83d66a 7b8efff4 2ab5b345 5361ba43 fd61720a
58a31d71 52759d4e 3b28ceb4 04aec874 997d74a6 8e0c0d59
260e1806 f1838a39 478ea3a6 2ab5b345 b7660f90 dabbe2fe
3e8c3218 a7a78b03 4f387a99 72536839 05012695 0d4eaaf8
e9797a1f ce28f92b 7825d0b4 61c2512e fc11edfa dabbe2fe
82c2e38b 395a5338 3d3364f2 63a1f7b8 6aa4e15d 7c520697
1ad569c8 ce28f92b ca41cee5 98d3ab81 05001755 2917f12d
37eb936a 6c1862a6 5c56afbd 04ed1b1a 0de80dfb a8379be8
4f909e72 395a533c 3d3364f6 98d3ab81 91d6bd64 7c520697
d8a44f75 fe3e7f32 31b10610 fb0517e5 602e2488 477847eb
e38e0e15 6c1862a6 6871556c 04ed1b1e 0de80dff 7c520697
00f14876 ebbb9192 38bfdf09 7999903a f131d5f4 a6929dfc
d53115e4 6c1862a6 bf1c2c3c 7311c333 7a14d5d2 4aed1d67
8d441892 501e1038 4cc2bcc3 50649f7f d8ccdab0 f06afc5c
394e957f ebbb9193 38bfdf08 7311c333 fbb986fd a6929dfc
203c37d2 82367f25 0bb2fc86 4a2bbed2 f0eb0a6e 5d12d303
dbbc7932 501e1038 831a5ea3 50649f7e d8ccdab1 a6929dfc
ad616f6a a985cfa5 953e4ffc e9cc5e2b 0bdc5b11 04e73036
6d672b64 501e1038 6ca5907f bd74e39b 35dca654 1049cfa8
5df66fa4 09183022 cb673ef7 7d8fd2f1 51c7d7bc 60bfbb80
a7d2c83c f3bdcfbc cf064ff9 bd74e39b 913ce6c8 dafc2cf0
009cfea7 7b928f3b a896c1a2 450dc095 b5daa50d 7144fb42
ab242917 b7032ef4 8bb8aeb1 b21e04b6 9e5601e7 dafc2cf0
fb6fc89c 93c04084 4e2db3c1 fecbef9f f7cef97d 55d6c212
0df69a17 b7032ef4 6aeeddb2 c1eaeaf7 eda2efa6 7c2e9ff1
620caa39 48c3c461 15b5f924 efeeed90 0a5e950c fdd0a2b9
0f905d5d 706ba242 ad865105 c1eaeaf7 245a9268 7e4858bb
0bbaf596 47590acc 7be28a88 16f50efe 844224ae dd15e5b9
a8e74895 9a52591a 47bfaa5d 26c1f53f c3718da1 7e4858bb
01d59d77 a80e95ba 19315789 11cf295b e2a39c1d 490f02e3
873537b9 9a52591a 2b6d9b31 9fa399ed 7a13e173 519a279f
97bffcd1 4cc5f48f fc1e11ce 5280c056 9b11ee81 1e33ca56
c838b71e 7e330f4b cf0ccd68 9fa399ed 5632b722 1e97a738
55e33bb1 8ae6a3e3 570b50ac 6eb9c8ee 7f838b28 4b45d86c
003144ed 433d8ee4 f2024cc7 e79b6d9c 2e0a435b 1e97a738
41d3b7fa b25209ea b7289243 4b6d78be 73c8d170 da541857
6c746369 433d8ee4 4647154c ce8cace5 071d8222 72d280bd
f07b3450 f8c8a375 7d29f6de 5aa7af19 620206d6 5abad259
c4f2fb83 b25209eb b7289242 ce8cace5 f629052b da541857
01133b90 46b98d5d 9040edb6 e3c3272a 6555b49d abd2dd9a
7095fe5e f8c8a375 fdb238dc 5aa7af1a 620206d5 da541857
23ced979 fc2fc1f6 2d11519a 209fdbef 1c9313bd 727956b8
0cd9eb17 f8c8a375 29f6331b 79aa3239 410f9bf6 a6180d1c
84c725e4 f1ce0b94 15f36c75 d0a757f5 ecab9fa5 85782e2d
d8b8b0b3 fc2fc1f8 2d115194 79aa3239 45a6fa6b 727956b8
f1ff4dd8 16222ba5 59275474 12938b13 72f36372 f040461f
73c65d71 f1ce0b94 20f09bf8 d0a757f7 ecab9fa7 727956b8
47e8c609 118df971 c7749997 fefb5905 a537ef29 8212d1ec
798b2cfd f1ce0b94 27376b7d 3ac04ce8 06cc84b8 78342735
a6bc19e2 0ec2a864 1e599faa 90fb74b8 de24c0ee f1462a75
b61b5847 04a0f79d d2599775 3ac04ce8 741ff8b1 b7a4538f
f6c080ed 10b3277d c18db710 1611502c 0a70ffe2 b1e98313
f08d5070 43312c07 95c84cef 802a451f cef5f147 b7a4538f
e726ef98 92253483 3387a5cf d8fd31b6 452e8d6e c6514aab
c564801c 43312c07 e293bd47 feae907e b0712426 824d83e7
eab92629 29757ce8 e2430a18 eb482570 126865e1 d97bbec0
e8cedaef ed71b84c 4cd32908 feae907e 078ed0e3 afe7d914
7d9c6394 144055ca c2b93526 d1a40c74 28259e86 e53ea8c0
37451244 13df0371 b27d9235 502857d3 a908174a afe7d914
6eb0963a 241256bc 9c0576ad e7d9b121 ee8a22c2 efc765ce
5efeacb1 13df0371 abc82361 ff04887e 0624c8e7 c65c67e0
d0f6e8d5 2c9f5497 84df6f58 75682685 7c3bb567 dff0818c
7765ae9f 241256bb 9c0576aa ff04887e f6571b9d efc765ce
e7f66ebe a8ec3adb 19d3f8ff d7faf325 525a8903 e8f007e0
e0c10c97 2c9f5497 94887486 75682686 7c3bb564 efc765ce
cedddee6 5bf16a80 28bfcb4a 1d1629da 25b38013 48281e78
a5f88ed2 2c9f5497 5fd1f55b a526d297 ac754175 aafee789
b79926c3 564ee418 1f020552 40e24f4b d6c9a539 1d58c0ce
485ce809 b977ab29 ca390ae7 a526d297 330d38e3 475a8152
c9b10742 1031d67d a826f66e abf5b608 e4b4cdf9 8c22ff99
02c9798b 571c4502 2452e4cc dbb46215 4d9f8863 475a8152
153f56d5 ba109b27 b35e9ec8 52ee5984 abce191e 17934dbf
98ca1da8 571c4502 5e5240ee 95d636f2 03fddc84 dd59e570
b8939f3a 04d767a0 1531d792 e8e5096d 02fdada5 20315468
520b52fb ab08ff57 a246faba 95d636f2 7fce9239 1798aa23
a65466e3 953cc5b1 e672647e bded8a21 c7662e52 81994606
30558ac7 04c9c608 0d87c3e5 780f5efe 9217fa34 1798aa23
7b9f598d 4877605c bc2b2dc9 94a0d6a5 b966e87b 9fc8ea7b
256bd2af 04c9c608 f0958bdd d8164353 320ee799 02a6f20b
3c3461c8 ed5d588c bcee3b96 715d84b7 5c9bba29 fd200000
b805cadf 4877601c bc2b2d89 d8164353 f5d07d8d 9fc8ea7b
b717caab 61aa10a2 ab3d1e5f 15904d28 b782bb9c 7603aba3
5edc8bb3 ed5d588c 19011519 715d8477 5c9bbae9 9fc8ea7b
22600ffa 5a180083 55c5e1c3 f546c8ff 6fc62e6b 5144fad9
7a5e1fee ed5d588c e280b9cd 433635a5 6ef00b3b bb4a7e27
c430c729 f01d8326 9d6a5f7d ed1006ba 7790e02f aedef5f4
90509b10 5a180082 55c5e1c2 433635a5 d9b6d331 5144fad9
e196c95c 8170f145 cb6110af 73c0ee34 5814ba80 8b78fb82
3baac804 f01d8326 ffc06266 ed1006b9 7790e02c 5144fad9
183e2014 0ac63e63 a0dc583e 4d945574 f8bdf4a4 ca093c0d
816f4d27 f01d8326 5a07e579 e64b6c3a 7ccb8aaf eb817ff8
398e6f6f c03ef28a f6cc7d51 eacc443d 5fe5e5ef 56e1658b
a0e70ed2 0ac63e61 a0dc583c e64b6c3a 5362cdea ca093c0d
71108fd9 f975fbf7 07e5547e 24462141 ca268a7e 1e7f853b
a56636e9 c03ef28a 6a2494d7 eacc443f 5fe5e5ed ca093c0d
2e9b41dd 45269fa0 0f377e4f 20c00cb6 1ad14251 397610bd
056fbd7d c03ef28a 8a2f1362 7841c63b cd6867e9 6a00b798
d43ca98a b5012484 810b5c73 1529654b ac481df5 d86a007e
811e6395 c476c971 8e672898 7841c63b c120be82 ee716970
962c77fc 9ae45526 30fe337a 53b2d379 b9f281ee 4e79ede2
3624f36f 6a057b47 20149aae e1285575 58492dcd ee716970
3104de4a 51d8e960 5a4024e8 2048b0b4 817c5661 217425c1
77adcf08 6a057b47 619db6cb e82d4f44 514c37fc aff85513
ecf195f5 a255c402 f95c8809 abece6de 0ad8000f 70e4a444
f921bfda 51d8e964 5a4024ec e82d4f44 4919a991 217425c1
b14e7ebd 43fb927d 548464be 0814460a 4acef346 2d5b4f00
bd611470 a255c402 a9cd098a abece6da 0ad8000b 217425c1
8145925d 0003dd8e 68ca3b80 59ef293a a70c2964 52cbe4c5
e2b00ff8 a255c402 ca9c220d 2275e452 83410283 7ea53e48
667cfcac fddd7c1e 1e0b70d2 3205a9d2 cce6a98d cdd80b83
ceded575 0003dd8f 68ca3b81 2275e452 dc96e40c 52cbe4c5
3ef44a6d a7194bc0 0c57f557 05c23684 addce685 9550bd4d
f96f13ea fddd7c1e 95149a10 3205a9d1 cce6a98e 52cbe4c5
71f594f6 0f0c91cb f19c3e48 5d4c43b2 4d5e55bc d980b9a5
43365969 fddd7c1e 034dd393 607c0d8c 9e9f0dd3 e892ae44
94b7b387 80e94fec 4c6a5c43 466bdae1 f4b61a23 05237703
9c95e5ce b1d83c8b 4f489304 607c0d8c d2a1cd40 373112e3
c6ffa4b9 d2bf9eb2 ba7678be edf6a07d 4b95182b a16a4962
50a4ff3a df39a72a 21a908a5 1c6d0438 aeb0c4f6 373112e3
a09ef834 cd90cd2f fd26e3b0 b2a08f68 139469ba 469186d8
0ec37c28 df39a72a ef8f89b6 3426fe54 86fb3e9a 695691f0
5782c8da 3b322c13 e701e688 68a64230 52b70cd2 cb97f969
478fb0b3 666d353d 56db1ba0 3426fe54 0e37b0b5 201a5d6b
e1a277ae 244b6d41 dadbc2cf c12dc052 e9860129 edf4de5d
2c4cf499 35b0faa6 0506d43b d8e7ba6e e2f6f48e 201a5d6b
a01f5859 5b68db75 dee9084e dec82bc7 81010460 5418666b
78b0abfb 35b0faa6 b0312995 f717978f cd06d96f 74e60201
337368b6 3a3645e7 126d50ba b043add8 ef8a8277 f6f1a88d
584ecf91 5b68db6d dee90856 f717978f a8deb828 5418666b
6f967ea1 d793b1f8 0ced9ab2 0994a562 f4b23ea2 aa14be82
919aa650 3a3645e7 bfb796dc b043add0 ef8a827f 5418666b
a70d5d4f 13a2beae 30c22115 c08f45ca f9baedbf c804600d
3475f2d0 3a3645e7 1956da5d 1708c8c2 48c1e76d f1f732ea
27caaaf7 e98dedce ba66c596 30ca4ae6 09ffe292 f88ee8aa
0d86a037 13a2bead 30c22116 1708c8c2 2e3d60b7 c804600d
194923f5 44f735b2 659e94ea cbd0671c 5f4e9744 c60d61ab
17402250 e98dedce caed7275 30ca4ae5 09ffe291 c804600d
208c3190 f903fc34 3781cacb 61b44e0e 291ff8d2 ba86e28f
ac61b510 e98dedce 270fdb33 a6edbd4e 9fd8153a 7325f74f
f42e403b 41aae576 ea0b0a40 2b3255ea 6399e334 97a69ac6
65c2a0d0 f903fc36 3781cac9 a6edbd4e ee460b92 ba86e28f
a0b2d378 6a627fda bd5721d3 b391a1dd c2f2f09f c33a099b
d90e3872 41aae576 8f28d389 2b3255ec 6399e332 ba86e28f
0b5f5883 7415df63 557c7e26 36dbc3f6 4dcd733c 4110c7bb
6ee69616 41aae576 60c3442c 5014ffba 18bf4964 0d6e4cea
944ed461 427aa087 d921222c 69d40cb2 5ec9f1bb e9093392
0c9f88be 301d2bae 11748af5 5014ffba 670902ac 6f175242
c61e5f0f ac3824ea 62ba1214 a1db33da f33add21 1c2fe7e4
b526eaa8 90743306 b11d925d c6bddda8 f1a020bf 6f175242
91bc8bd3 de37fca5 c9480a72 90d71636 1436d08c b5648a3a
bf1c1f5c 90743306 870bc5cd 4630cd3b 712d302c 652da7b2
968f4ef5 6b763395 4a924cec 61104d7b 83475051 639e77c7
830857f3 3bad5325 2cd2a5ea 4630cd3b a467d00d 5939ef1d
ab01d94a 2efc89a6 0f9528f9 b4ae65a1 6d1469c1 632399a9
911baffa 37999a78 20e66cb7 34215534 d6764806 5939ef1d
4780982b 17361df8 83e6f8ff cd960552 0c65a5e3 a32996b9
1ea89db2 37999a78 a3497f7e b10f37a6 53582a94 d68add54
1feaeb53 dc96d56a 9f026ae6 36f4912e f707319e 51ed713e
6b0bd65f 17361df7 83e6f8f0 b10f37a6 70fc9717 a32996b9
dddd1e85 a86ac078 2deb1344 38c887ff b50f0c41 93da84ef
ed2e0cd4 dc96d56a 4846306d 36f4912d f707319d a32996b9
2e1043f2 53d8dd2a 74241bcb 8fe950a0 b6dcf8d2 cca08733
7852e2f6 dc96d56a fb6a138d fb40264e 3ab386fe 36557899
1ee4b413 c06a5b5e 26dab776 8c7cce36 9c6ed832 c1a0f64a
4ceb4b68 2ab54abc 0d498c59 fb40264e eb52304c 02ecd107
fe542baf c5e133c3 5131d6c6 7a81bb4a 8d541fd3 6fc0ef25
9378158f de1da52a f9e163cf 3ecd5067 2edf4667 02ecd107
1f668352 b062ac5c 1b2c12c6 4c8b751e aedc682f ed08b6e8
17aa0c32 de1da52a 75531bb3 ebb203ed fba015ed 863ec8bb
f2961f19 0a328843 d93a30f8 223f804a 96cf8ab7 3ab45ffc
836ea150 82fb9a28 29b524b0 ebb203ed 5f420913 12fa65d9
813f0776 b22eee51 95d228b5 bbcff531 85113939 8fa86e24
1c6d0c8a 28402d48 830e93d0 68b4a8b7 dc44a248 12fa65d9
fef505d9 b316c341 20a16ede c3e7fe1b fc215ef3 4ad4f15e
f5f43d93 28402d48 bbf780c7 1e5d72d7 aaad7828 fb6354d0
df6aa433 e3ad67af 3e54a924 5a43bffd 65851f05 9517124a
4443981d b316c331 20a16eae 1e5d72d7 219bd23f 4ad4f15e
5080773c 8cd53b4e ef354548 f2b9eae7 1a579e70 1afdc1b5
00a94727 e3ad67af 701aca30 5a43c00d 658560f5 4ad4f15e
55198b41 07a9ae54 3f339012 55d7ac72 36154bec 63d28e33
a5ca347e e3ad67af db3759e8 698a5d78 564cfd80 efb78206
e4d17836 a386b284 c5ff53e8 946ff070 f7ad17ef 91b23159
29af384b 07a9ae55 3f339013 698a5d78 0a48bae6 63d28e33
c3beb708 ca04cd1c 41a16364 eb005376 61415141 b6ddfe64
16b1c75c a386b284 9b1c8cc2 946ff06f f7ad17f0 63d28e33
41601c45 baef064e f0319ac0 6d88f1a0 16a3cac7 c4361cf3
0375a514 a386b284 e9582e08 5d963a57 3e54ddc8 7616ec79
92d2aab9 e8d740d2 cd076787 f627fdeb 8d0cc68e 9f27a7ba
b155559e baef064c f0319ac2 5d963a57 26bd0130 c4361cf3
dc26a400 b748a505 ef348d9b 3ca6f5f8 753a6a60 d1d3a905
c9c311f0 e8d740d2 a209dc5c f627fded 8d0cc688 c4361cf3
db4c6728 421e73f6 c9bbdd8b dd5d686a 092f06e0 bc8c3948
090823dd e8d740d2 6372eea8 8392170c f8b92c69 04fd2edf
9504bbff f8e057a1 6d51550e 64b7b49e b074f340 7a1e116c
7de7b03a 426f4d46 c9cae33d 8392170c 575150d5 7012bd38
008d8488 48c739d1 0219a55e 17f920ad 4fc98eb1 2f4bab4b
5fd492fa c559d38d 4efc7df6 a56339cc 71a07e14 7012bd38
25b2274c 82300071 ea930397 12c0ebce 83599f0e e666d791
62d63d59 c559d38d adfad06f 7eb22ab7 aa716d6f 4d10129f
b5b9d245 fad1cb67 661079f5 fe284f6d 6fb13ba9 1a85863d
c9a0f857 82300075 ea930393 7eb22ab7 ef2b5e77 e666d791
f57c59a0 5ab577e3 86c94e96 d4cea682 25b387c2 5a400d24
495a83e9 fad1cb67 9272c881 fe284f69 6fb13bad e666d791
29f5d0f2 ded9ba9b c373b719 59bd19fc 2c1c7a05 59a88be3
3451b557 fad1cb67 e77bc6e4 989c1364 090567a0 9b6de12e
7aca94b0 a4a75f61 95314fd1 00bdda8b 751cb973 6d948f11
f694df9a ded9ba9c c373b71e 989c1364 ed3d709d 59a88be3
ef202e5b 76cf8df4 cab03b51 03b7f849 447e6ac2 f87e3505
4ef69042 a4a75f61 b90d52e3 00bdda8c 751cb974 59a88be3
dd8078f8 3017e018 686bc87c f2a88926 f3b96d8b 1e76d8cb
8324bd58 a4a75f61 fcdb77fb 46100496 33b1676e 947aa6fb
12f4e3f0 9fb53a71 92aca38d 3630b2f0 f884b7f2 158a2a0f
77b2a308 fdba0165 a5c629fd 46100496 88a4016a 60ecb8ab
d2e1798f c8782ac1 d5d22741 de5ba309 75b6b6af 261a9d91
94175cb7 eb3f1b19 b3433381 23adcd0f ed19c8f1 60ecb8ab
9cece88e ae2489e1 0f0b4084 44538293 d5caf654 1ef39d10
5d5bbd64 eb3f1b19 4a10d27f b72ff112 799bf4ec a9a05979
dad24399 3daac532 78ad482a 7170616e a5020fe1 75ee17e3
26edb02f f0fd83a7 51d24ac0 b72ff112 635d9f9e d2165432
667819f7 7fd0d7fb 27acff62 1dcc9387 467f5bbf 8962b363
3d0cfea7 f88f7e50 59a0b737 b14eb78a 653cd907 d2165432
cd33659d a7f935a4 7c871e06 85926eaf 064e4b76 8cb3eced
e37e1cb8 f88f7e50 23f1550a 332c8fdc e75ee151 0c64b625
cf26750f c812b02c d9a92e3d 537abbbc 713ed055 c04ea38a
650b9a56 46617ad4 9d1f5186 332c8fdc 1168e4cd 8a1130cb
60e66c8c 27a88b54 8687423b f158af61 9c18a582 4fc2cee0
a53592af dcaceb8a 07d2c0d8 733687a3 5172ecba 8a1130cb
41eeb14f 15049770 57b7d819 1655d829 4cc9cf29 a2d19177
de62f684 dcaceb8a 9e1fa4e2 623b5a56 407f314f f14654e1
97cf3bb6 cf81de07 92ecf7cf 5d5b0850 07c71f51 bd8b6bd6
8df53312 15049771 57b7d818 623b5a56 38a74d56 a2d19177
a5bc3a9a c910e7c3 e6cacf29 eff3f66e bbd8d6d3 8ff86af9
8895c117 cf81de07 8d32916e 5d5b0851 07c71f50 a2d19177
42d5fe80 42714a86 80500d09 cdd8cdd8 00534e5a 7f59139d
087bd9f9 cf81de07 0da0998a ba90311d e00c261c 223f899b
8fb7b458 7757cc86 33a7539c 1debc029 d06043a9 02286b28
551d43ff 42714a88 80500d07 ba90311d 771bb29f 7f59139d
784dd52a b86335fc 80f90bb4 acac867e a23a6a88 f5d20a54
f2c6cced 7757cc86 b5768b09 1debc02b d06043ab 7f59139d
5196cf77 e992e9fe c648c119 7d1149dc 42d7e92b e6f76ca6
608e2b87 7757cc86 588de46e 534f857c 9ec406fc ed11f4f6
bdafb708 ad8ba86b 9c452c56 102d5c81 1989bd35 f7d2017f
7842795a b3712ac1 9cab0228 534f857c 5aeb64c7 f5dda62b
0aca81ad f2d277a9 30f33027 133a2637 0ce35968 8824c4d1
7733e356 dc9dda04 f347f2ed 489deb88 41390a32 f5dda62b
3d800e71 a7bc4022 b83940f9 17f6c585 c3358251 03f20f98
67663b60 dc9dda04 c318dad3 5c730915 55d7e8af e5887e19
e641a2af 75785263 5edaa861 094af362 8dab35cc c9878d65
3f87d14f 57dabeec 485fbe3f 5c730915 d892cfb7 bd699436
38af857a 02fb63ca 2d214b27 bac0df39 c31c9266 cdbebc54
4878ad1c 0e00dd11 1185ddc2 ce95fcc6 4a743a60 bd699436
69d8ed27 76b911c9 7d645969 caedd031 27742b6e d3289df0
5cd0e52f 0e00dd11 05dd95b0 050e9885 81ef5e23 a9c1dc04
d5d46914 c14acbb6 307086d4 7d4f2b01 90d6d05f b885a2b2
2639a4db 76b911ca 7d64596a 050e9885 e89763da d3289df0
cf984b07 9e2b38e4 455513b1 b163b0e0 7b19d86c a2c980a6
be795656 c14acbb6 ca978316 7d4f2b00 90d6d05e d3289df0
1f4cfac5 2e4ce761 f979b972 782821de 22b436d9 3753a021
f3d178c1 c14acbb6 167f95a3 bd5a929e 50c369c0 9e80b365
0627aab4 c66f2a42 9ec87ce7 7a4d175c 2bc47460 2c63fad0
c7a3c9e6 253a3392 f20f6d85 bd5a929e ecd3f1a4 aaf20242
bc8eacb7 4714f450 4cc9bcf2 73149fd6 0cd94cfb df99eccb
c9e5423c 18d0845b cfe5da4c b3200778 e2a96440 aaf20242
b03fe5b5 4c28e7c7 00d1f383 d73ffe28 53de388d eadda7a7
43a2f80d 18d0845b 5429901c df74fc95 8efd9fad 20b5b872
ba2c276d 0435c742 2ba0308d 716ef53f 0a7845e8 4f3d1e45
0fb77ac3 425dd1f7 0ea4c5b1 df74fc95 a4624c41 6ca03abc
8b9b6361 3a4f99e3 ed7ac7f5 cd50aee6 e3a25883 f6dc848d
11e7dd51 86735453 ca8a4015 f9a5a403 82b314d6 6ca03abc
b3ab2704 495edaa4 ea1097c0 71627410 4f604356 585be7f0
bfb29437 86735453 253d19d7 02b99ae9 79af2a3c c2f573fa
aaf612b5 45496777 47e777fc 6731c8f3 c4628f00 4b360702
9691a3d6 aeafea91 0de1a735 02b99ae9 a1eaddfa ebd6441b
005d22b8 9eb9058e d24011e8 1239e41b 50057614 95810abd
7e0a6c3e ffcfbab2 5c81f716 1b4ddb41 b81e9c72 ebd6441b
3ea1ed28 b05f7c2f 6e699c71 7673a6bc 2590ae0d ed4068c6
b362fef2 ffcfbab2 21f95aed 386e48f2 9b3d0fc1 26bed6d6
1ce927d9 6fd51610 a35979d5 6a0f00c3 39ec0873 db95f82d
789c40e2 b05f7c30 6e699c6e 386e48f2 6b8d4043 ed4068c6
039c8d6e c0b8c96b 756e035b 0f0cb159 abca0d52 c4e05299
2a3cb732 6fd51610 b1e3f64e 6a0f00c2 39ec0872 ed4068c6
a0f1b085 e3e530c1 10a8e39f b2744de5 75876eba 68be7412
c52b8432 6fd51610 9c98c54c b1a16944 e24261f4 02575bc4
b71ad17f 297e4919 865fba76 7daccea8 ba5fedf5 24929423
afc2abe4 e3e530bf 10a8e3e1 b1a16944 76524a1b 68be7412
c6d75c14 68948f2a b77af7b2 56a0c1ff 51a9a891 555f194e
fb36314e 297e4919 da339a47 7dacceaa ba5fedf7 68be7412
bf7697b5 c1b95d68 746f975d 59d14f05 39ff78ae ad37ea16
b8cf2fbb 297e4919 9ca8832b db1816bf 1ceb35e2 2b476ae6
fa4356b2 cfc40a20 099d421e 1ebb833f f292ec08 2d68e76e
8f6e2c3e 4db494ec f8625edf db1816bf 3731798f 1ce66963
8677fc27 80fb9048 73b64317 c64f1805 cb486e15 5a5d7290
c0cce7d5 601d8969 d5cb435a 23ba6018 cf930f29 1ce66963
f6106524 7254d80c 0520be4f c921b728 37410af8 4ff26fab
02ae8bc5 601d8969 1769ef2e eb6a3b4b 0743547a de840577
ac7b94e8 cae64a34 f80be05e b64fd3d7 482f6e03 0b6bb3d2
93d8e119 7254d808 0520be4b eb6a3b4b 150a869b 4ff26fab
c18d7e4c 1b42fb85 955dab8b 70bcfa51 3e019574 669d597a
e8e24891 cae64a34 bd922c77 b64fd3d3 482f6e07 4ff26fab
576c5f7f d3231348 b1760ca6 be3fd7cb b8a2512c 1a77fd3b
9dc30e6c cae64a34 a8b355db 18345cc2 e654e116 3ad32957
5c3f9c87 b376df2b 8202eaea 26ccc50f 205143e9 e997130e
bd67da00 d3231347 b1760ca9 18345cc2 1ea9da25 1a77fd3b
b988fe06 86a754c8 d55ac0fc 1806687b c1cb94f8 0c207180
afdf72b2 b376df2b d123c0c5 26ccc510 205143f6 1a77fd3b
6169e4dd cb901767 147e6ff5 5010f957 4ea64677 ed91986f
2db9da62 b376df2b 6c98a7b7 78c10c30 7e5c8ad6 981155e9
3434b40f c74e94c6 30185b61 2f2d21dd 82d8d82c 58201139
f51f35bb 5acf5244 85212ada 78c10c30 d534f5cf 40b7ba30
10882cf0 086fe2fb 6a3afd17 44ba8313 d0879d72 c31e617c
9321f7be 2228be97 fdc6c609 96aeca33 3b5b33ce 40b7ba30
c3fa4216 72938272 faf34781 bea6614e 40c6dc99 60decf5b
3abc4a0d 2228be97 aa487b67 ef182190 42edd86d e92a0782
6af41d84 2cb3c40e fa30ded5 c291fb38 a2bfcc96 cde43abc
ac57a85d d460fc47 5c0039b6 ef182190 8f36163d 7fc1e5d2
006429a4 bbcfb451 6421ccce 9a442e80 427137e8 d74f987f
a8ea5408 43c8d295 cba81764 f2ad85db 9283b277 7fc1e5d2
9f5662d8 f3347033 969ec760 8e708a25 81e95f77 38599911
8a2066ee 43c8d295 266265ce be8c402e dea27782 5d0bd73c
9108d12a d5ef3a10 4ca4d71e e252ae3a edcb7b60 6bfacecc
ef7228c3 f334703b 969ec768 be8c402e b115957c 38599911
f9970f85 72bacfad 420ce108 c783305a 6be65aad 0365105b
c2ab86f7 d5ef3a10 b0458d43 e252ae42 edcb7b18 38599911
4846d36a a87fc901 d2b1c5fc 14b71431 f69d707b ce027f87
b78ef15d d5ef3a10 af2136ec 8964872b 86fd5271 4d7ceeba
711ca0e7 29fa5bcd 0ee0bb83 99c65984 7bec3dcf 7a4f52d8
34f06060 a87fc900 d2b1c5fd 8964872b 6b4ee361 ce027f87
91295ad8 b295566e f5d36037 62341b58 08f145b4 9a7aa8e4
c5518db8 29fa5bcd 53345730 99c65983 7bec3dc8 ce027f87
72448ccf e094343d 3db30731 ff78b20a 67bc8eb7 31525a69
3b0857a5 29fa5bcd f4dd68c3 c7b5cda1 259fa9ea 305ba598
f1168dc4 d994df14 c7f5494d 3ffc0bd8 a7383767 728cbdb6
3a01a854 e094343f 3db30733 c7b5cda1 5f71f11c 31525a69
e7933891 eba822f4 e475c38a 05bc0428 af6b84b7 640908dd
b2c86a1b d994df14 04b3ec18 3ffc0bd6 a7383769 31525a69
e680bd4a 6e96e0f5 29d0d691 6b12971c 46d4a9bd f2b2d34a
18eb6dcb d994df14 9ed2e94f da7a598f 42be6530 9b715db8
b0ef25a2 f614b43e 7092fbfc 17f48b13 21891143 71fb4454
b1211a9f 774e3cc4 30080a9e da7a598f ec07c3e0 32bb2aec
905ed185 1542729f c8654192 1524d189 0097d08c c89c27a0
6a79dcc8 360d0c08 714b3a52 afa31f40 99de852e 32bb2aec
80241184 b8f0ea22 36efba18 7c079960 c566e1e4 327ed7c1
2156b2b8 360d0c08 b8125c0e 226fc93b 14125355 79944498
9ceb7267 59b4026d 2683fe46 a2026d46 0b0d9298 44bee840
0b64ca37 a89f717c 2680217e 226fc93b 8b6036d9 53a63c17
2ae02372 298e9150 6ec8a70e 7d0d2a39 251c020a 0ccd226f
758b3d0e 7a8d6903 f4923901 efd9d434 46d62bd2 53a63c17
d38ef4a7 2dfe48ee 9c13aded d658243a 8ad8fbe8 7082b9c6
5159d00f 7a8d6903 cb608c01 5978d7f1 f0772817 7774d117
5f630e3d 06f0319e 9d5e27be 386dbbb6 64ed6465 5a42eae3
56afb8de 2dfe48ef 9c13adec 5978d7f1 05f80823 7082b9c6
211e68cf de8a1c59 bb20ab0d ec827335 d898b9bb 243f8c16
75a35d18 06f0319e b71dd49d 386dbbb7 64ed6464 7082b9c6
ff67b882 8c99b616 5ad349c0 85bc0a41 67966e0c 297f7260
91fe304f 06f0319e d0bace4e b4c5243b e845fbe8 94dfd493
faaf91f4 6686b6ac 82dff55e baf73198 a4418eb2 f1fc63cf
e6cffb73 c92610f7 1f6cef25 b4c5243b aa739b17 e3ee1faf
d385a1d8 f95330b8 48bed5b9 9f607c11 409ae9f2 bf9104e0
8ffaba95 380f5a03 ee45a5d1 1bb7e499 05015bb7 e3ee1faf
107eda58 c2689ab9 91950e80 6c58330b c557ccee 1984804e
0db4112c 380f5a03 6bf2ce39 ce727e30 d0c4c11e 61a0b417
1eb34c82 a3aa4b43 147f9b07 888ada0f 5aa63829 389e4d99
b8d2b4ab eb857cfa b878e8c1 ce727e30 1c5e9c15 d4c61190
0920bbc3 9ee942dd 48a3bd0e 0dd70643 07624cc3 57137d27
8af5d775 6660da81 359d4eba c0919fda 12bd7dfe d4c61190
4a34db16 4924031c d3753577 5cca4699 e83a4c56 01fcddac
452a7545 6660da81 fc31ecda 6f3606d4 bd1ae4f0 1b19b3b0
1e4074bf c182869f df81598d 1f99a942 51abcd14 10d71dcc
d317b3f0 e2665cc3 78376a88 6f3606d4 210462b2 8d247505
9b667494 3c5b2d1a 6fa6b931 40147f36 16260e5e 46d0d2d5
5092d354 345b2028 ae0a1663 eeb8e630 a08a8246 8d247505
10bac19f adbdf246 41003311 6965d32b aef0e5b8 a3d34370
0227a640 345b2028 d8e6e17e 93b2f68c dd8092fa df910010
7f88f54c 6b833da3 79ea77dd 6cf28a18 ab67bc8a c97ecc97
7e65e520 adbdf245 41003312 93b2f68c 5427c01f a3d34370
d5485ebf 3b3d8151 9795641e f2accc64 65e3b624 63be6767
15257aab 6b833da3 873efcf4 6cf28a17 ab67bc85 a3d34370
56186bad 2761bf1d 82ddd48f 9f3504a9 1c46bca3 3e47830d
ea27d470 6b833da3 ce3f5633 edcb55e2 2a5e6370 5cd1eda9
f1df1d25 0fe44a7b 1fd6d12d 9037cbff 134473f7 a8bdb2d1
88b1bad4 2761bf1b 82ddd489 edcb55e2 6eb8ede8 3e47830d
268809e1 00be8255 e7e10ccf dcca897c a887669e 7feaa613
67252cf9 0fe44a7b aa5821e9 9037cbfd 134473f5 3e47830d
ca1c7f26 ab87957f 072f7035 3f83fc52 2094ff5f c9d116e0
1c51533d 0fe44a7b a34caf36 95194281 166afa89 4533fcc8
7cd99edb b6cfcee8 ff3f2bc9 1a7de168 b681fb22 a21ed000
5db47fde 396cacc0 95c4498c 95194281 39e558cc 04d6d02b
c2ab4991 a89c8718 0d20ec8b 76163be9 2dd02ca8 fdea5671
3b97cfca f9d28a23 557a6f6f 7af7b26d d60ba821 04d6d02b
8332fece ba890be1 0c83f5e6 19e9d676 745b4a78 9abcac56
3179f707 f9d28a23 4fd87420 3f9ca3c3 9360b98f 0e38e8e2
19fe042b 5dfcc751 1bc6bff7 336da6b8 5edf3ab2 2aec26f5
a5fdb3b3 ba890be5 0c83f5e2 3f9ca3c3 522e3fcd 9abcac56
a99a5ab8 97177dcb 22c1b7e4 7aa1f424 dc6ca6a0 9a88787a
a9ae8e88 5dfcc751 ebf63956 336da6bc 5edf3ab6 9abcac56
605fe877 15fe451d c052c9dc 1d443f32 38f026e5 7fc684dc
894c19d0 5dfcc751 88504b91 30bcf566 5d0e696c ba5e3b0f
a6e19617 e49696e9 621b3007 93f0dba4 b644c272 30a79f09
4cd4a603 15fe451e c052c9df 30bcf566 1508ecb1 7fc684dc
db2e4cd4 fbff291c 58b164a7 1bb7bc1d 26ab1014 4d6845d5
e9808dc2 e49696e9 313a1a28 93f0dba5 b644c273 7fc684dc
be86ce8d 12c585bf f59a0b3f cc57b1ef 9fb4b941 f66916e8
073f8fa5 e49696e9 03c91877 19ade2a6 3c19fb70 917986b9
1301cdfe 5ff9067b d254592a 4ae4b970 0ee2406b d47d1216
b869487d 02e97618 e5b6f884 19ade2a6 5dab1ba3 2e2f4161
fd940899 56c3bf52 836f3391 df93099a db1c8e1f 1c7c3f8a
cfc77670 963b30d4 7164be48 6550109b 2156e99c 2e2f4161
dfda736a bfe6d3d5 352216c6 0ce3a3f7 61513ffe 6f767362
307c40c5 963b30d4 1cfff5c4 3e1fdaff 7a1923f8 d19477d5
efd9f91b 0f612e4f b0c2847e 8f49c6ca 905ec5c2 dccbdbc7
4604c1b7 714b3ad8 fb8fffc9 3e1fdaff 2108d9f4 a7ecf6a7
da408ee8 e3afe5cf 04f06b52 622f2866 bbf31957 0487c034
792bb87a 28eab7a8 a22e72b9 3afef2cc 25e9f1c6 a7ecf6a7
14f839e6 6a01ec4a 06ad92ff cff5bea5 afdb8911 640d9e96
5713fe96 28eab7a8 4446c905 3dc7660a 22d06500 89d4b043
6a5a4c22 a83fb85e e922a01a 362bc907 f28ed472 bd71fde8
37c62a9c ce78d20b a2d4acae 3dc7660a f9627b67 e9016449
4102cdd3 df752771 55b1e268 a2530b05 d496cdc0 0719aac5
af1a0357 2d547e11 41f800b4 a51b7e53 61be6336 e9016449
562be5df 635098ba 5f3c29ae a52a4ac8 5f8b72c5 f47eaa9d
fedaf1a6 2d547e11 1138cf04 48f062a5 8c557fc0 b8c196b9
99972fb8 a78bb48d c8c62fb6 c19db703 3b3c8f0f 275f94c4
b265cd82 635098b9 5f3c29ad 48f062a5 b2515aa8 f47eaa9d
90b39319 37150c70 417c22ae 77598085 fd730f6a 2e7b2866
4ab611e1 a78bb48d 9be70599 c19db702 3b3c8f0e f47eaa9d
f3348a32 cf86fd5f 2feb1bce 8496cad4 a60a4a08 61aef141
26b75b62 a78bb48d 47e6521e b0c50adf 4a6432d3 987fe01c
9e4844e2 b8571096 a1461c80 f616a187 d48a2159 9a5216c6
df664a3f cf86fd5d 2feb1bcc b0c50adf 92598a03 61aef141
69e49e21 0f9019eb e32dd8b2 ba16a266 c3c32855 6dfecc0b
65b4a365 b8571096 583af607 f616a185 d48a215b 61aef141
15a4642d e3ecf432 9585dae1 3528cea6 7b1aaadf 693c6d8d
f3b06ba9 b8571096 ce3e3e4a bcab172b 9e3797f5 f7aa398c
748bc422 b2ff83e1 498c9e58 96476b66 5a91a349 a93d627d
20292184 629157d8 14f87905 bcab172b 707ddf0b 243373a1
46ca2d11 0713ab04 e77e4d94 baee55a5 f70fbc9d 8e382b55
ecc175e4 860889ed f061a730 8182cb4b 4d54036a 243373a1
895b31c2 662ddc08 5c66219a 27ecf5ab 8b10efeb 9279e871
20e44423 860889ed bc437473 d5bc2239 196aea18 e8164262
1ce0cb11 6e87b997 9c47e313 4c0b3be5 6dba7225 23a1d4f8
a3df7e4f dae30b98 e0a8f602 d5bc2239 f40d6bf5 6b2d780e
b4f72203 3e18105d 48713e84 cc4e5050 d5b340b1 a74aa949
7890f340 45cc4944 7f87b4de 2087a746 0136ee8e 6b2d780e
05f3ce86 55db0075 02bac4e2 45e316b4 7423164c 2ed85f11
9bfeb445 45cc4944 12ad8dd2 2e75106c 0fc459a4 88433f0a
52dce32a f54d206b 63ec9d64 577c39bf 66bc3946 6e185789
3d65d45e 55db0074 02bac4e3 2e75106c 1fb51094 2ed85f11
78e7adb9 6ffd198b 03516729 9bc4cbd9 37ab31c0 4423191d
121cebb2 f54d206b a22ce4fc 577c39c0 66bc3939 2ed85f11
877343a8 be2e577a 3fcc1fe9 515ed92c abffe126 39f4421c
659c57ae f54d206b 74af68fe cf9c8c19 fe5c8ce0 5958e30f
d6f9f62c 6d3d2b73 9684607a 51a092f2 91f23c00 68314d54
d29efe43 83dfce66 023d86f1 cf9c8c19 0fce22ed ee5a4ae2
f5763920 bbff6a06 ec9eae93 5167851b 121c67d8 c3d9c6de
d8f5b51e 38d63639 b9347eae c987d774 09d57982 ee5a4ae2
4bd6b47a 9a34d10d f039e018 ea313182 cb807849 9aeeab89
e02acc9c 38d63639 52db072f 4fa9118c 8ffbbf7a d6853361
29a95305 c06d150c 5f898c22 2cb69cda b0e4894a 3a14d849
32928fcf 14d59cd6 7ed8adc1 4fa9118c d3fb041f 043d7032
1e5a2de4 13c65a60 922412f6 952081cc 11da2181 1c1287b0
0675da67 2b1dcfa5 4110feb2 1b41bbe4 8713ae76 043d7032
150221f9 6e8d3970 ffa4a113 da1e2fb2 05df516f 70c85e84
29117d2b 2b1dcfa5 ba345746 769c5b0a eace4e98 2b59d7fe
90a676ce ab26c186 a925d6e6 e55b5c04 3a9a2259 e1a1dd81
7280f451 6e8d38f0 ffa4a093 769c5b0a a95d25d7 70c85e84
76619d13 d9f7dbfc fe30b0c7 3b36902f 35a408fc 076631dc
01cff5cb ab26c186 3a0f59e5 e55b5b84 3a9a25d9 70c85e84
a3de8641 f235587d 37975eb9 4c989fc8 6a488a9d 0a5e334b
d44767a8 ab26c186 6e84c743 141f960c cbdee851 a540cce6
599190da 7717bee3 08879bd7 40f5ac20 6625b974 c44c51bb
7b599805 f235587e 37975eba 141f960c 32cf8359 0a5e334b
a2c4494f c638e90a 3c65b2ad 150cad85 60fd92fe 3f19882d
9783f22a 7717bee3 b2b5b827 40f5ac1f 6625b94b 0a5e334b
c3ab1480 6c5d9f81 7a5f81e6 91aa9248 8dbf67bc b25e8c4a
c7638b8f 7717bee3 6115a086 bd92bae1 9b42afb5 5abe4aec
ce092a55 a4bddee1 3e603682 18e8758f 04fd8079 373a5646
2f834d29 6c5d9f83 7a5f81e4 bd92bae1 a1874f15 b25e8c4a
67443993 4a6b00b6 4871d713 f0ad529f 316e4554 9e774586
4b6df059 a4bddee1 b2bfc086 18e87591 04fd8067 b25e8c4a
08ec6aa2 34e0325c cebd69fe ac9b7f55 00a33627 3d80f990
6f8ab59a a4bddee1 5ee08544 70626835 6c779dc3 96b9c988
443b3cd7 40b531f4 6b0c5bfe c1c61dfb 291b04f5 0eac0d0e
247c82ba 718501f4 8bd85a50 70626835 98bf713c dd4ffea8
21462bb9 3b5a309e 2d582ef8 f967e450 bc36eec2 f8f4c16b
04fd147b dee63f14 24bb64b0 50e1d6f6 b83ccffe dd4ffea8
771594aa a49eae7e b7bccbd4 45323dc3 eba7b5b5 6e46bf56
2fa7e265 dee63f14 cdc45aba 0591fc9e ed4ce596 f61508b2
ac8bf847 fe756516 451351ca e5e08892 4b7500e0 168a8e88
b7f45581 a49eae82 b7bccb28 0591fc9e ab0474e8 6e46bf56
eaf7958a a3df4fe6 560dc647 61b4f1a0 324b82e2 50f6e349
d447c999 fe756516 ed5700bc e5e08896 4b7500e4 6e46bf56
7ce04b7f c56cb484 3330928d 01c7326b 744be5b4 3536c11c
eb81097a fe756516 0829431e 71f21ed6 df6796a4 51807fb4
5ef0b3c9 9fadf5f9 84459e24 bc245d42 c9a88a9c 5ac306f0
8f37b7d2 c56cb483 3330928a 71f21ed6 047ec909 3536c11c
1e7e181b fb467603 20356418 eb9f1265 3aba458d 1a4dad2d
31057425 9fadf5f9 69f1d3f0 bc245d41 c9a88a9f 3536c11c
be81654f 898b6ea6 8b91b909 5215291a 0d7f7997 e41a37df
44c6c78f 9fadf5f9 9db72258 fbad8bc5 8e215c1b 40f572b4
7890b7cb 4eef9d17 26079b79 928ec726 cb6470f9 e3844755
7884adb1 840bd5ec 8611024f fbad8bc5 a2473c14 7cb7188a
442a88ee e0ad078f 16f12184 ecc39626 9e86d786 70f866f0
4865f696 c8527dc2 ca48aa61 2c4cc4a6 75a67375 7cb7188a
aea59f63 1cfd4e5f d1dec5b7 fd31728a 53a4fafb 2847e594
736d22cf c8527dc2 0571f629 ab21e5b0 f2cb5263 47bfccd2
8811d8a2 fc18261b 12f5369a 30506e5f 9c682728 3210ae6f
2495c7c5 1aa00f63 d7838489 ab21e5b0 0719acc4 104729d8
0fa9444f f1373f3b f32de899 42110868 db4e2e3d 453e7591
5ad01807 0410625b c933e9b1 c0e62972 6cde6007 104729d8
3acb361d 1a6f0700 0efeb690 187ba822 daed4630 9919b064
1d227e51 0410625b 1081d3c3 bf405380 13781af5 57b54f86
6243f489 531369f6 8924b5d6 b1a5501e 7333be04 5ebfdaf4
d38e81b3 1a6f06f8 0efeb768 bf405380 7dd6bd92 9919b064
9f91e5b2 c76d0aa0 d988c65b a2c23fa0 9432b164 a36dcbd7
a5e59e19 531369f6 4782d866 b1a55026 7333be3c 9919b064
f4023d26 46357d50 b2c92851 879225e5 322b2496 cac01ecd
45787da8 531369f6 a7ef3cf6 85cc3076 475ade6c 798453d4
922e3e69 76f14e36 98000bf0 9f6b33f6 2ad23284 c4b50f92
f63c30b1 46357d4f b2c9284e 85cc3076 30753105 cac01ecd
1e4ed04a 4af86de5 39ea7a00 fb4932e9 728913c8 48d5e1b2
9c5b2f36 76f14e36 820d1b37 9f6b33f5 2ad23287 cac01ecd
504c6abf 09b7372b fa5406ac 04b18525 4ccf6f40 1ed09f04
9f3dcaa8 76f14e36 85127fb3 0cafc163 b916c011 c9a6fb51
4f06ae6a 8695d2dc 4494c872 59fcb5a9 11825fce ecee882b
484baefd 09b73729 fa5406ae 0cafc163 44d12b06 1ed09f04
2a687655 cda7a4f4 9335467f 73ce3250 fc5e8e2f 8980500a
bd38b945 8695d2dc 7576e35b 59fcb5ab 11825fcc 1ed09f04
1c2fc06c 228b5c99 51994b61 12136228 f667160d 714aa15b
3e17a324 8695d2dc f587c53b 48962731 00e8cd56 9dff8564
f135ae50 08b6285c 647a591b 862592eb 9bd6891a 10423fab
b56fc00a 5c0a0463 2f181385 48962731 55653cdf 1687e64a
d4e51980 1d436938 eea058be f9d275d5 9c676819 9758ffeb
553a0020 d581675b a69370bd e86be75b f598fcb4 1687e64a
e7ebfce1 b624938f 43f61a3a 92344cfc 6ca204db 0d6b2efe
daf5be63 d581675b 2053eef2 eb71614b f6827aa4 9948580d
af56c54e 7dbab5f6 4bac5a20 ef1a8199 954d142c e831c38e
e450bb0b 31e5e115 c43768b8 eb71614b 9126f4e2 a7ed5d65
bdc02f07 1a076c9c 69157b7e 3d9ac58a 4ebcd066 252ceb9e
3f0199f8 2138ec5d d4ea65f0 40a03f7a 3af7aad7 a7ed5d65
cbe67fae 7cde37ad 39972822 dc5bee9b 09a70e67 780f6d9d
6f8f37da 2138ec5d 6471f3d3 c15fa104 bb0834a9 f763f346
cf05cbbd fc3aac03 4e560737 52aa0f68 8756ef95 e532f942
e0e3a901 7cde37ac 39972823 c15fa104 14a341f8 780f6d9d
6d60cd5e 0189a247 151813d0 9ee054a1 45ab83e0 4757ffa6
52385f62 fc3aac03 b973b38c 52aa0f67 8756ef9a 780f6d9d
dd0174e0 dbf6cc78 d0cdfdee 18fdb3f8 ad44b28c e0fefb62
14364d63 fc3aac03 f7019d93 05355773 d0c9b78e 3e017f9e
3a1fe329 20a29d4b aa27efed 31995673 6ef306f4 6c84d2d6
c70da33f 85a81b87 8e932a15 05355773 5a5f07f2 ed3a91c2
bc5c8f2f bdc46afd f88d7570 c387ccf8 0b38493d 27487fbf
762e6150 546f35bb 5f540429 76131508 2979458b ed3a91c2
bc12e825 6f5c7ae7 b42f68f1 190a6b1a 635dfeb4 8d8de5ce
266682d6 546f35bb 8f1c27ae 82804dc2 ddea1d41 bd727245
5c421fc1 898da2ab e4da1893 805821cd 62f46a36 c4aedb5e
a9dec3a9 d7b13130 0cc22324 82804dc2 602c063a 32ca333a
392649e4 58f1eb25 53cadab6 36b23fd4 23f77923 629252ba
697e2865 2658f027 fd2be233 431f788e a1b33377 32ca333a
31f8c60a 25fbdb68 3f93b248 ac936f21 4edc580b a3fd5371
2a0b9119 2658f027 3c309917 7641f4f5 94edbf0c 71bf8a56
ec08745f 7fbea693 43a32cc9 4447daaa a608ed90 c5b274ab
f849483e 25fbdb58 3f93b278 7641f4f5 940ec3df a3fd5371
fc9bca55 6f7a2fe5 24f6cfb5 b2dc391b 60d6f997 d521ca91
8a475385 7fbea693 65d6cfb3 4447da9a a608eda0 a3fd5371
eddac4aa f6763023 4ebfe3c0 d59f8d02 8c994dc9 490ba6d7
6be4bec6 7fbea693 c7777571 5a882b7a b8c71c40 425ebe33
cd445042 ddc118c6 42522cb8 135f81b4 4a59417e 2fd50772
60b1a622 f6763024 4ebfe3c7 5a882b7a 038eebb1 490ba6d7
5ce288a1 41e8dcb1 6fdad02c 17de44d2 aaf0c067 be73df92
ab9af1e7 ddc118c6 6508cb25 135f81b5 4a59417f 490ba6d7
b3eb5d87 a51d09d7 4cb61312 9d073777 bd6586ae cbfe3f6c
9b7dba89 ddc118c6 346a0201 07832bbe 5e85eb74 79ecedbb
3156bb64 170b538a e080cea0 0d7a4f43 2d18fe98 d9dec1d1
296f685e a51d09d5 4cb61310 07832bbe 27e19a67 cbfe3f6c
e99b87b2 ff82a891 e14270cd db92c7b1 d348c153 0113fd01
237645d9 170b538a fea0494f 0d7a4f41 2d18fe9a cbfe3f6c
61b70646 03a77c4b 2d9570d3 43bc4df2 4f42976f 6fd86615
f80d4bf2 170b538a 39395f15 1dd56853 3db7d988 10853146
ac469b8c 92d0d27e bba37a53 6dac90d5 50de66dc 941938bb
705fe798 341b97bd 1a299b23 1dd56853 20a79e5d 98d79d2c
0ecc94f2 46f973bc af526978 7f8e142d b7154a1b 5450ab53
c24ba28c bbd10b95 95e3070b 8fe92d3f b29bdb30 98d79d2c
9aa70ab9 c5a95f18 40ba97ad 8245eab6 c50ea320 266e75c1
b525669b bbd10b95 3ec2c324 2018aae2 1d6a5ced efb9593f
33b90a57 fcec7196 bf29d366 9c15b0e5 db5ef977 e5204ffc
7cf24a65 c5a95f1c 40ba97a9 2018aae2 6753e374 266e75c1
200f994f 351cfedc 6020d10c 6d87b99c 12fc6f44 f696dcd8
f0f7306a fcec7196 79ffb923 9c15b0e9 db5ef97b 266e75c1
f70662f5 f1b23388 bb08d3b8 c8b92a44 f4a821c7 6174a6e4
3a8cc897 fcec7196 b65691a7 08dfabdd 4f94e24f ec158d3d
8db85504 3e534f3e 17935939 0007eff1 3c16e473 4079dcbb
b7ede34e f1b23387 bb08d3b7 08dfabdd 34cea05e 6174a6e4
3899cb09 49a6187e 973863aa ebc4d552 aca70190 f5584289
acb52f5b 3e534f3e 74e9af0e 0007eff2 3c16e470 6174a6e4
b21edd66 43677cda 5da7a4bc b81f5fd7 f93a66cb 770bcfbf
f8bb16b1 3e534f3e 20939766 c0cbd6bb fcdadd39 357a9f0c
90fbe0fc e9a67945 859c6b67 3233d4ec aec6d218 afd2670c
af98a4f9 9f374a86 81f792dc c0cbd6bb 5c3ed071 62592d44
81d65d35 4b5f8ef5 01e56ec7 41cbce62 b2307371 8e53351a
6ddc4569 f458d8aa ea9800f0 028fb52b 9e7ab3e3 62592d44
a648dd9f 9eaf1b74 0b0e551b 225398c9 6518d158 36fbfb7b
d6bccb7a f458d8aa 61f996c6 a125da11 3dd0dcd9 d939a356
418a3171 c2a0029c 97cd19c7 6839b78d 64c76d15 971374d8
d8c2cfc6 6462ac7d f1c3e210 a125da11 addb008a d747a7ea
583892e7 35d91b11 2b19c34a 2b69f02e cb12ceb2 606731d7
ef1804db 625cb70f f7fdf962 ca001516 c6fecf8c d747a7ea
616b18b4 10942aaf 0e71e67c b5f7825f 0ec1cc6d 315a6990
58d38551 625cb70f 7cb97be4 9e25b474 92db6eee 608c2668
7cfd1f0c f8424367 f71dd955 ce4f6c94 3ffc4526 1474446d
1ba5d427 471105ff 59f4c91c 9e25b474 6f969dfe 23fa771e
cb943770 f1f8ae86 6459e0e3 e2c241cd 02cb3e9e 9ab5f898
72dbb8fe 03a258b5 1d479456 b6e7e11b 4754c899 23fa771e
5f86a2c3 1b3a5716 848f10f4 6263209f 6b28077b 00af9cf8
f5e83dff 03a258b5 9c171f56 545bb245 a5e89bc7 a4c9f21e
ad5847a3 7d4cf803 9abfb9c2 e8efb3d9 e1a4943c 48ed96d7
518e5319 1b3a5717 848f10f5 545bb245 5d1095a1 00af9cf8
d71ac0cd de29948a 0f9d2829 9594f547 ffb3312b 32af11ba
e51a4d8c 7d4cf803 e2f9bfe1 e8efb3d8 e1a4943d 00af9cf8
7a9de3d1 b77f5fa7 8095474c 2d23a7e7 6e5e286c c7758787
7d51bc89 7d4cf803 4aa6e0ea 54f11507 5dba32e2 98e46dff
469f10ce deee7b1d aa82c3da b4a27b40 f7dff4c9 03f82763
22c056f1 b77f5fa9 80954742 54f11507 178c9a8c c7758787
0d327528 3a8e8f61 82475c8c 76356228 e928c1e5 4855428b
8212b02a deee7b1d e90463f6 b4a27b3e f7dff4b7 c7758787
6b01f092 7dc022ca ac749e64 e0277a3d 02684d08 5b49a6ff
24271c91 deee7b1d 0f5ac7bc f5465b7c b63bd4f5 61402b3d
afde15be fa012bee 81345fef d99924cb 8508985e 86641544
99846a4f f802a82e 29b6148e f5465b7c a9d7e7e6 dce35de3
c7723205 6ac146c9 5d2b5e23 f3a5cbba b949e9c4 4318ba2c
5889d5cb 7c66e0e6 add25c46 3449abf8 68d81763 dce35de3
b7eb7565 5d481a52 cb259bc9 15408b7f 28327d7c 01131229
25f6aaf6 7c66e0e6 ea0b6171 e2b2ac5f be2310c4 a19c22da
121043fd 7cf45db9 4c078ab5 b8e463df 46722bec 488c7c55
2a6caef0 1e6b6c8a 8806ed19 e2b2ac5f 1c24e460 ae0626dc
ae2a672d cb70e1ce 1ac45d6a f7462aac 3f4beb21 e94d61f1
e9612004 01f9687c 9794e9ef a5af2b0b 5b396330 ae0626dc
24c3149b b4d674e8 587e7fd9 a3e5340f 129660a7 95ec2f12
4327b6a0 01f9687c ed51634c 3a1cff5f c48ab764 0440b079
822fbbd9 6f32fb92 d0bbda8c dd98f7ad 6ceba304 68cd44ff
d28b29cb b4d674e9 587e7fd8 3a1cff5f 8b6fabf7 95ec2f12
22cb0fe5 c7282156 d9cdedb2 50a9105c 59c16a31 c829f0c4
7f0ed034 6f32fb92 839af0a3 dd98f7ac 6ceba305 95ec2f12
ae24e96e c70acece 99982c5f e18feaba e8c4cd59 bf8d37a7
ed35f95c 6f32fb92 31a01905 bac90b15 0bba5fbc 07d70678
5ee7d5b2 b9878d46 b270deb7 b59bdd63 f01e604b bb5204c2
e70f6c42 03456417 5dd78682 bac90b15 ff4cb63b 0ded9366
dcbb6d42 34778434 d8df8f07 336fc9ca 4bb98791 9c02bc06
4d544220 0126f305 5fb41190 109fdd37 551a601b 0ded9366
9fc67f62 ba377e10 15268f27 bed4ad32 4042e50a c6aa9680
1ed57342 0126f305 ae370231 a6219497 e3a429bb 5e6ca205
c04dea90 e7d79479 6f25f69e acceca2b 48babe13 872aec4a
edf3abdf a015aa14 0f045b21 a6219497 4255e0ac ad4a7a98
bdbcfa12 82bf02a2 dc2de036 b15d9dd5 26a66be2 5ccb6bf6
4c3deb7d cf3780a5 60267190 46df5535 a2ab210f ad4a7a98
5b162500 27d412ec 15eb7c92 aba3351e 96b233bf 2cb2120c
d1006604 cf3780a5 fd08eefb 15768fd7 f102fbed 3077f7c1
626d3216 2b9a2d07 ca662af6 f202979b cf13911a dc6eab7f
cdc583c9 27d4130c 15eb7d72 15768fd7 28678976 2cb2120c
1665410c 12d56d75 bf2156a2 d95a68d4 fd162e3b a866df85
92b18b65 2b9a2d07 19a54379 f202977b cf1391fa 2cb2120c
2ae2f7a8 1fc18386 8dc3abab d240fc66 e378a099 8cc2941b
327752d2 2b9a2d07 b998052b ea24321b d735349a 8c74cbba
032d4d4a 1f744be4 c14248c7 07fbbb0d 36c3e7f3 d8f66f11
32c10d73 1fc18385 8dc3aba8 ea24321b db1c6ee4 8cc2941b
b012c830 f29b22c4 83925cbd 7302ac82 775d9f5c 6bc9ea68
5719b640 1f744be4 8d7663c9 07fbbb0e 36c3e7f0 8cc2941b
36a6c2c9 475fc997 c2a932d6 385be1df 61783b6c 89b07ac1
5b6c4568 1f744be4 9a82b0a7 55204c30 641810ce 80b76731
8a93d155 7066d539 99928f8d e0833536 b9a0ef87 edadda34
526b5898 475fc999 c2a932d8 55204c30 0c039683 89b07ac1
3d6206e5 a82b522c fe89dc2c 3f80352e af68628a 5a5c0d82
ee8e71a0 7066d539 f5902e78 e0833538 b9a0ef89 89b07ac1
6e39b790 b39e0d01 c297737d f884b6ad 64dfa4d5 0f649b13
13fcf69b 7066d539 016fab42 fe65958a a7464f3b 74c2fdfb
d30d411e ce7d8455 ac1b8d3b a817c929 ebcb239f c3fd7fe0
b59eff8c 5b1fe539 2a169b43 fe65958a bdb97f3b d2a0f4ec
27fb87a9 0b1269f0 8ee492b0 39bb1ff1 ac1e6987 e78e71b3
12d502f7 b949de2a c840a050 579d8045 14416af5 d2a0f4ec
2e830435 627bd2d8 e7f6d92c 1a85da41 f78b051b 77582f3c
2751747d b949de2a 3cc4d5da 8120a557 c2fc4fe7 e7248262
cf1c7319 d23f859e 392e88c1 d46af2fa 39642da4 dcdc30a7
b72dd923 627bd2d4 e7f6d920 8120a557 6c2e7a0d 77582f3c
38b3f91e 856be9ae bcc37ece 3ba7b59b 9b9cf6f5 2b73baac
64986c82 d23f859e 57b28e6a d46af2f6 39642da8 77582f3c
213c0d90 f8cccaab 87ebd30b 36063e40 259a1a2a c4b4737f
63327f56 d23f859e ad189c3f 643e0310 8930dc4e 70f23ce9
63ccf6fd 65130142 3dd78b30 4e1ad1fc 5d86f597 9e51e451
d77430c0 f8cccaaa 87ebd30a 643e0310 77a2277a c4b4737f
332fb9a0 361d063d bf385718 a6128bfe 42b4a298 ceb2ab03
392961d3 65130142 1a3418e2 4e1ad1fd 5d86f596 c4b4737f
19f67a63 5ca3840b 0a010a01 eb2e52eb e002f5dd 0b1a5347
61b2f54d 65130142 33b18f46 d5df3c75 c643181e 9c2fe7e3
a187cdf1 f9a57bd6 ef8e8b52 bfa709f4 e6be3255 46e32dde
7ac4d9ce aa901886 fc329680 d5df3c75 8cc607da 8759cb60
24a7b700 1734e895 6813f137 dbf7a14b 291f9108 afde56fa
0c202a98 7d65f3ff 2bc77df9 63bc0bbf 3aa53012 8759cb60
3034d5fc 115b97b0 a63d7f89 d5714c35 387f9368 a9320b81
6367c46d 7d65f3ff ca031bc5 c7e44fb1 9efd741c e81e2594
b87eca42 818bb8bd 8ce8d5da 502ab175 cc71a308 abbe89fe
debbe52b c0a7cad0 77c122eb c7e44fb1 5bbf5dcf 55c204d2
e40d9464 e530b9e3 b39237e4 e93268c0 b3a24884 f4fdaa9d
45323a2a 26fbac1e 919d4425 4d5aacb0 d101becf 55c204d2
bdbe4b41 896d11a6 0c25faa5 0f66ebbe f1aa93b1 13d64638
33543952 26fbac1e a3b34715 71ef1d35 edb40f4a 23a407a2
2e6d4b12 99435644 9db89f4b 1ee34da3 e02f35a4 93892444
032678c8 896d11ae 0c25faad 71ef1d35 8f23653a 13d64638
dd442e0c 6df3fd23 bfe11646 9686099e 45fb1778 60a046a2
ae32296e 99435644 1c0bbd47 1ee34d9b e02f359c 13d64638
633284cc 89c2c384 2a1ff64d a6b6ea6a 49fd0f22 3a5da88c
8f8effaa 99435644 3a9e638c 0b2c2d81 f5e05586 326a90fd
6ca26ef1 71c7dd14 c1759fc9 78d8997c 97937c35 4732b5a0
87b9c7db 89c2c385 2a1ff64c 0b2c2d81 e467c8c9 3a5da88c
402005e9 0a4de7df df7d8c26 3d94ef8f ba451f9b 6bb0debb
11cd73dd 71c7dd14 d21ae8dd 78d8997b 97937c32 3a5da88c
98e372d9 6d4631b9 33b87026 cdad5b3d 276762cd 604a87b4
deee6f33 71c7dd14 2f399c89 00944123 efdfa46a f57eb460
075a135e 0081fd0f 65505bf3 354b6421 df815dd3 671ded11
4bda5ce7 6d4631bb 33b87024 00944123 ea5e78d3 604a87b4
541ec5b9 db27c796 e82b3267 01728f97 c4028bee 34593c08
000d79fb 0081fd0f 5e7fbc90 354b641f df815ded 604a87b4
692fe1e0 55de4b60 80ee2764 f76ac674 b74c4e30 8c4953d7
b63b4c5e 0081fd0f d5b196f4 724c128b 98862b79 d67cb210
0ba9e958 0db15407 2655b4d4 464bbb23 4ba3b218 3fee4fbf
897e24a8 239fd1e1 f6afba1b 724c128b 7fa41c4f e939dae6
95d10b99 e55ed751 bba096cf bbda20e2 5fb1cb8f 7307b08b
0fef61f5 0edafaa9 dbea9153 f8dacf50 f532c195 e939dae6
d38b4645 14c2f9f2 2d6a6966 bfc7e79c ac17e98e 446b33f6
ab64bd43 0edafaa9 37726dc1 0ebe2d00 035623c5 4db20654
98b8aa90 fb60e5a2 a0c80172 253acad9 9c771dfc 65ebf27c
a53d1e0f ba40bcbd 83e82bd1 0ebe2d00 b7f3fdd9 43eba518
77616aef 62dfb491 b7efdf6f ba162786 fe310c6b df7379a6
ebf9b655 d8065981 e1aeceed cff98536 76b455eb 43eba518
6ecc3dee 895d42aa 31d7a2d3 99b0510f f314eb0a 3509d20f
6adffd68 d8065981 608cb9f9 e5fc747a 5cb1a4a7 c2cdee24
b5e7b86c d32a2ea2 dd8466f7 7cb4e2b6 161058b2 8b2d39eb
9d1bc143 895d42a9 31d7a2d0 e5fc747a 8f58ce7f 3509d20f
3f0d5d1b 14f4fcdd 91bc17d9 9fc95fc5 33a6d7fa 01c7dc9b
0bc35388 d32a2ea2 6ba0cedb 7cb4e2b5 161058b1 3509d20f
7449c434 57d159eb d50ee218 e355ea8a 0c1e0fc5 19602eb6
c1942c0e d32a2ea2 51f59557 b4f6818d de523b89 ff5ead8b
52f9b425 8da89f07 49593534 a1bcdb5f aa907c63 79696f70
099d00b1 73b21bd8 f16da02f b4f6818d bfda26b7 37578134
8a66459b 420b9ead fa817ed6 254f414f 84301f37 6d02a5ba
d0336117 abb8e76d 29675c9a 5d90e02b 56bc4713 37578134
404e4262 59da1112 d0ff403a 7b9b9611 c2d646cf 93685ed4
daf9f64a abb8e76d 229db646 8fda597d 84f6fe45 3d9d1668
0d1eb17e e6a7b3f8 9565e710 50878ca9 9768a7fd a50ca231
5d0b7e51 687b6b8c e15e3aa6 8fda597d 4835722a ba6f9e73
254ff084 88c30cf6 0a1cb700 0791f9c2 6480bd77 b42a093e
2b0a67c8 eda0f397 6485a2bd 39db7316 fe345840 ba6f9e73
0ad70d39 a8f8b602 e3745182 7b36abdf f870466e f8c37eb1
edb2d412 eda0f397 a62c13e7 1a883202 dd671954 7cd72db9
9987e6ab f10898d7 3a5c0251 adba29fc a69b7755 bd10171e
ac2da553 30d3219a 7b5fc1fa 1a883202 11a96b5b 3d485cf8
39099c64 dc838099 55a6d1a3 ec5ecb01 1b1c4c08 7ae0cdc2
7ea10d4e f06252d9 bbeeb2b9 cd0b8a0d c62ad344 3d485cf8
f0d095ab a4eea0d2 a6347efe 72fb627a cd56c53b 2b499b6e
b77f0b72 f06252d9 f2b88cf4 db4ba56c d06afc25 f4965ac5
1d648ba4 fc42df8a 85eadee6 56d488be e9792ffe a216beae
68a0cad9 a4eea0d1 a6347efd db4ba56c 64e6022d 2b499b6e
b4d50b38 e66571ef 055df101 a59eb895 0c4e8130 0ba73e31
943bae64 fc42df8a fe9801a6 56d488bf e9792fff 2b499b6e
2faf7fab 33c700ee 553902f9 df9d802b 28ac488d 3a239ec6
301e8a5f fc42df8a 9abcdd9f 8982d3c6 362f7486 8f6cbf57
bb6eed52 bf0fe24b 740a9f3f ef56962d 18675e89 9e2b1a23
8551abce 33c700f0 553902e7 8982d3c6 7eb31b60 3a239ec6
d44aac23 d974891c c49d37bb 1aa81780 0b3e78f5 f10f5b54
1f6669b7 bf0fe24b d9f1e05c ef56962f 18675e8b 3a239ec6
3f4725db e68aef16 05b26ffd d48d8939 ca215c49 d1262076
931beaeb bf0fe24b 5c3762a7 0b727afc fc43b258 b65e1d9b
70209626 54abbad0 52cb3a50 3c26e5b6 67b345fb 25daf40f
27f7030c 2373b9f1 c04b391c 0b727afc 50e7dab6 02b2f47c
8ed94e18 b9fdfef9 df03fcef d2b1da7a 7ccdd208 867875a4
0a13cfc1 671796d2 842f163f eecdbf49 b5581f02 02b2f47c
9942f38d 980fadac e67cfee8 2c598deb a0d43ac2 1e700486
954cfd76 671796d2 1964c592 adc7d299 f65272d2 9dedc6cf
89ea7175 1794eb77 ab92f765 7b0f5305 f782e428 5c02cd54
16d13f3f 980fadb0 e67cfef4 adc7d299 214a65b0 1e700486
c4ee9391 c3de9e1d b2d7e07b 6d104667 55c72fb4 11062fac
cb98b8a7 1794eb77 69e7b833 7b0f5301 f782e42c 1e700486
26350f70 546eeb3e 51c1c272 a5903b44 6cf78db7 337b4ef4
704366af 1794eb77 123bc23a 662ab5e0 eaa702cd a5abda8f
6ba629a1 029f5792 d0742455 fb53aa8f 32341c7d 00b7996f
e693f2d4 546eeb3d 51c1c271 662ab5e0 af4d0313 337b4ef4
0b1a24db 9fb140a0 ad8e2ec1 9f10aee3 f9690ee3 600b940a
586afe3a 029f5792 07307ede fb53aa8e 32341c7c 337b4ef4
73e0cbbe 6a6ffd82 7786433f 60ad011e 51955dfe 18aa2aab
20a45487 029f5792 1f76e931 6073d0d5 a9146627 4bb5e44b
9d7fa599 58b424f6 f0d36a93 d13d4252 bb457442 46a487de
d73748d6 a3afd6ae be46680f 6073d0d5 0a0be6db bc26f81a
e885e60d 280d1e57 2da23719 dbab7e84 46ed1f62 a3ec62c9
f74f7cdc f53ef27d e8d74cdc 40cba4cf 2ab392c3 bc26f81a
d97dc378 1754739e a947673e a453cc3b 28de7b15 5e0fc5e2
1739cadb f53ef27d 4b2de6de 684b4a68 02337c64 5c504e1c
4ee1aa98 a9b409bf 04af7e8f f2ca81c3 ec6654b6 9b0916bb
e76930ea a97391e7 17608545 684b4a68 76e79f1e ac00b42d
5e2d3c04 8f5a0a53 92b3b4f3 4b5c8237 dd1f6de7 0bd75e2a
f9fad602 17c2effa a9d1fb58 72dc27d0 6c70f2a7 ac00b42d
ffe13154 95712cf2 444dd6e8 6cef2c69 f0b43e0e 6f9816b1
ead0fbaa 17c2effa c6fe15f8 327066ab 2cdcb3dc bf2a998d
0c5c97f8 45d6e7b9 4feeebea ed664374 56500d6e 1caca910
b64bf4e0 b44c6885 6570928f 327066ab 894628a9 e3b196c7
b80eea06 88da0c28 36c91882 856b20fa 0721d289 d087b15f
8b38cd96 c1c567bf 10f99db5 44ff5fd5 ffc911df e3b196c7
97f79e52 2f483164 6e7b65eb e5a78091 cd1e9721 5f1ab08d
3b2eaa1b c1c567bf 80f63331 8543ad02 3e75e308 53a7f14b
7c052eed 31d5f6a7 3cd28926 73a64745 5b1f50f4 2aeedb7f
3793ebdd 2f483165 6e7b65ea 8543ad02 adfabab2 5f1ab08d
6fff3889 f8db4552 e3f6344b a9d5a9be 466bcfe2 3914cd18
09f1451f 31d5f6a7 70e6a228 73a64744 5b1f50f5 5f1ab08d
06e894e0 4a9b808f 1b5acc05 70917210 31efd38b 3f935eaf
39435d16 31d5f6a7 6014ba2f 8e019d51 a6b88ae0 6fa8a886
1c346d4e 3aa838c6 d7ca678c fe15c3e4 bf6b627d db34716f
6978ab3f 4a9b8091 1b5acc1b 8e019d51 cf7f3cca 3f935eaf
37acec66 199cbbd3 1b4665f1 5e626fe4 7e114b42 f0acf049
f893428e 3aa838c6 6b69744c fe15c3e2 bf6b627b 3f935eaf
f5f23853 044af072 1f678166 4c048a2c 4725d36a 0ce8edac
cfff9f60 3aa838c6 218549dd 19e9d04d 589771d4 08ff8340
c1da2008 8bb8634a 80c2098e 96d305e4 30a46c5e 823371b0
56e66426 9fa100e2 848c71f8 19e9d04d bf9eb9f8 91e67806
eda66498 b2371000 e3f65c8b 5cf1dfa1 130553bd c87a5378
b43a4fe7 08b9ed98 13949c82 78c5ec0e deb285ba 91e67806
205c5a32 bdd82427 e8e40bc3 ebd96d46 b04ccd01 74b6a373
ee290131 08b9ed98 5d85c270 bccaabea 1abdc25e cbf536d4
c76dd62f 95028234 14398b54 9f8fafb6 160f241b cfcced9a
861223c3 ebc30f85 beff2069 bccaabea 354a204b a3ce1426
1c8aca08 a9c14312 b2ec320c c81f5381 8749b261 69bf555c
d6fb8b76 e3eaecd7 b6d6c33b 0c241355 85a498f0 a3ce1426
195edd1b b4f4336e 24483bf0 f70bf5b6 ad82278d 6263b390
aa787388 e3eaecd7 7356e448 f104267c 7884add9 df4decd9
189f4eb2 1fe60234 9c357dbe c9b2ebf8 933b39c2 557b2a7c
17562cc1 b4f4336d 24483bf3 f104267c ab8df447 6263b390
ef00c1c9 7a47a1c1 ab7b5bcc 2a5a694d 9eb1188a a2e4a500
2f87d75e 1fe60234 8f5a0aaa c9b2ebf9 933b39c3 6263b390
1242b326 ee1547af a8dd7cbe 1d05893f 35bc9e88 64af970f
558b82c5 1fe60234 592e3923 f3fcc9e2 a9751bd8 186fe609
5cfd6c8a 4a42181c fb89b9df fd045aaa bc21638c 0a16991c
d2f756a2 0681691a 4049520f f3fcc9e2 b2d9f0c2 9f13326e
d62f7839 2a7f42f5 bac34a69 baf80ef9 6735de5d e906fff7
a03ab5a2 8dd6ab73 cb1e9066 e541ece2 a464d5c0 9f13326e
559799f1 d631fdf6 08af861f 96ab45a4 1f2bce02 2d306023
09c0f48e 8dd6ab73 5348d099 5d2cd39f 1c09eabd 36e97343
a0906625 65d866dd 17bbc183 9338eb25 9856ee8e d5a5f977
7ec949c9 581f77f9 86810c12 5d2cd39f 5642d637 41e0ce04
bb451047 d36e208c 95a61b98 b7680281 ecdc4bfa aa0a8d2c
50af536e 8327dcba 5db9a751 2f52e93c 243cec95 41e0ce04
79877220 1bc8cef6 d15fc74b 8745e6cb 234b116e 4b4e888b
3c96fdbc 8327dcba 49b0d2c7 65cb894a 6ea58ce3 2dd96096
52edf016 9cfd8085 b661920d 86541776 52c2bbc2 6335db00
127f4b9f 4c508285 86c78cb8 65cb894a b15d223e 0330d6b5
57b3695f e1a61a3e 3f386195 5e8e768e ebcdba40 173843e3
43bbfc49 00f8f8a4 ca6ff699 9507171c 4191bc28 0330d6b5
6223320e c8b6c757 f3bb044e d4043852 485041b4 eeb39aae
332ca16d 00f8f8a4 3bf53bbc 87febaaf 5368119b 73a78b90
bd623f43 43b2cc84 348b2493 df3110a2 43656945 2adfbfac
ae38b053 c8b6c756 f3bb044f 87febaaf 1baac349 eeb39aae
338d9526 3014e709 c09ed93f b203a973 3ab53d1f a43015ca
790e1a41 43b2cc84 78bf0f9d df3110a1 43656946 eeb39aae
d55e37f3 9a9a3b6c dbc30b1a 8efcb311 7dc75bdc 28fcc73f
634288e4 43b2cc84 02ebfcf0 29174332 b5433ad5 f4ff0809
6d79ab45 e693fc90 54e27801 88c67266 7bfd9aa9 9a151b5a
bf4147d2 9a9a3b6a dbc30b1c 29174332 da2cabff 28fcc73f
16d965ab f50f2492 0f1d1a75 9ea880c1 9f1f9010 e1b5d5b2
df907720 e693fc90 a7cacce6 88c67264 7bfd9aab 28fcc73f
3d1e2c4a d6cbb0c9 26418efa 8694833f 65e71e36 515076f2
2f4164e3 e693fc90 1619c2a4 11b2d8a5 e289306a d82dd4fd
bd89cc13 1e504f5b bdfb5b41 7c2a8a2e d6381b8a dc6dadbb
de2067c8 9d6aa564 6de09b51 11b2d8a5 bba04906 294cd7d6
94296cc7 e5540ed9 a40d3eae 7f8c6915 c6969b25 7a1bca17
c77e7107 d64bae4b 26c1907e 0878cf58 a26a5efa 294cd7d6
be061cb9 1c58013a 8fe9a69b 6ea561b6 9ebb853b 2f61f916
2246e793 d64bae4b 45fa09ee cb7022dc 6162b37e cc744146
61a664f4 7f6ab906 42dd9f79 95fe8f03 65e06b8a d96777f4
c1535fc3 1c580136 8fe9a697 cb7022dc 3b6ec651 2f61f916
83300566 224c69ff 820cad06 8f188e59 1c181bdb 3bf1166a
97a0ea16 7f6ab906 ecdb1ea7 95fe8f07 65e06b8e 2f61f916
0534d9ea dbf1668e ef3e4a05 0fda716a 437fe378 8563d033
68be6efe 7f6ab906 4ba5958c 48447a92 b85a9e1b d07f7dff
a05efc3a 9114b8b3 fc5b48e3 ad3dd752 e1984541 bde493f8
3da2c332 dbf1668f ef3e4a04 48447a92 04e1e880 8563d033
9548f7fb 282aab81 10775f0c 448664bd a73de05c 88f29836
98d9bff1 9114b8b3 a5db9438 ad3dd753 e1984540 8563d033
9d62b212 86f3176c 7ce12981 c51d0ec1 879efe0b 80838c0b
571c8d4b 9114b8b3 6b068650 c4f64068 8853d27b 4aa6e28b
4462c88e 31fc5155 3b72e009 80fe8e8a 1f8f07b5 9da0756e
909e6d33 e3e0afd1 19f29130 c4f64068 5b87c959 8d2402f3
bfe17dc2 66051879 52ca34f0 0784f4ec d99e23b3 c7e0f099
f5258faa 275bca4d dd49f4ac 1f3d5e01 804cd732 8d2402f3
d54ca8f2 780925a5 47f04711 78a6f13b 88b815b1 dba9b429
ab0aab91 275bca4d 18a2a8fa e1c361b8 7eb2e88b d30b26c9
d696df86 72bf7189 7f2ee24c 2282e763 c1f17a6f 6e57cc84
d8be162d 6b5dde29 54a4bc9f e1c361b8 02b0fcb7 a0bf9b75
3b3c1631 cd7f7cb5 376d4255 09203257 50618ca9 5ad8779e
c15bfadb 57b15ac5 68483873 cba6360e 28d5ab00 a0bf9b75
922448e6 f5678bed ff5affb2 9124e23e 100d2c10 27a79a98
0ae7ccb0 57b15ac5 5d8c2e92 3d857166 def6ec68 6b03ad16
a679864e 8abb7157 13bee812 ebb748f8 6a9e86de b66fbf7e
4643fb3e f5678be5 ff5affba 3d857166 bcacbf48 27a79a98
95a31d87 bae060a8 d2aa9ed6 4bc90e76 fa87b301 85b524af
37b1a3a8 8abb7157 80860508 ebb748f0 6a9e86d6 27a79a98
d4d006b8 0bd263fe 99eb09c3 3296eeb7 30d62e79 8b5d78a1
bfb5a944 8abb7157 18821b6b e31fa9cf 623667e9 afa39075
49845d86 f0204c3b 655882b5 9a21f213 986132dc 8e9cdcf2
9b4b4190 0bd263ff 99eb09c2 e31fa9cf e15f6901 8b5d78a1
a0f4e414 67e65258 092e04a6 52b66eae 28b0a842 67ec6563
4c45f9d5 f0204c3b 62192606 9a21f212 986132dd 8b5d78a1
3fcd27fd 2454110d 8a894e64 79d279f0 4fa6fc6f 7bee855c
6f19ecb9 f0204c3b 5efd1350 fcc758c5 fe87980a a8016dcf
e74d45a0 105f2698 c04f72fc b01b1744 866f92d9 9d217a57
bcf6042a 2454110b 8a894e62 fcc758c5 cab3dd5a 7bee855c
0eb48aef 3cfbd5f4 9b3c5ae1 ab8524ba c8941043 74d8b506
0182baab 105f2698 be8279f1 b01b1746 866f92db 7bee855c
db1792d7 78fcdcb2 16348a51 97efb103 08fd8abb d746511b
41b54319 105f2698 7e977064 060a2d2d 307ea8b0 3bd97cef
8c8f0992 988f977d 66d4c139 327c8a00 2e75924d 2a519558
e0d2a9e7 f5f3b94d 9b3befb0 060a2d2d 1a03357f 9abe9611
72dc5eac e6ea16a3 483749cb ddbe9820 7a62c4a7 dad39e7d
32b156c1 5b16d26f 35de8492 33adae07 2fa4b654 9abe9611
065c9257 b5fabd51 15ba79bc 45b6f939 335bfa00 6903efbb
6438c4d1 5b16d26f fb56169e 7e673c21 626e2472 cc370405
767cfd16 01a72317 977c6e54 ec09956e c967e63f 63cee733
c53b9e31 647c2d69 c43ce99c 7e673c21 5b094f6c 6d345ee5
9f949479 0302fddb 6dcaab22 2fcd51cb 0537b128 3bbbf0ed
c91b3a75 fd769041 5d3654b4 7a86dfdd 5fe8ac94 6d345ee5
5678afe8 bd12fbc8 7108441a 765d6fb0 9357b17f 776a430d
3d213d52 fd769041 316c2f92 f979e75c dc179415 990e59c3
cac60ad8 a4bee501 e765fc66 7b371944 9e3dc78a ef2a9ca2
d345279c bd12fbc7 71084415 f979e75c 1c733993 776a430d
906061ef f06c399e fa514dc6 018da63d 31359556 b58cf792
5286d577 a4bee501 68a45ad3 7b371945 9e3dc78b 776a430d
056a609e c1f4c6fa ffb15f20 bbd9aaa2 b9996a6b 3769a83e
cc798b6f a4bee501 9afb7cdd afc2787a 4ac8a6b4 e9951d17
05e482dc 30637c2c 0ce9caa2 50ee6370 126d93b0 c2fc03ac
e15a7084 0237f6f9 3c726f27 afc2787a ed4188bc c4b6e6fc
8b4eb102 8e3c5683 4226e953 2f0d40b9 d4bcced4 528c0cec
1d745b10 d50eb8da eb4b2104 63989fee 211b6f2a c4b6e6fc
e4d24967 b7f93b61 8fa4cfe1 084fbc07 2d21cf4d 05518e70
670dfc4c d50eb8da ed534c59 008eb2dd 420d4219 becf41a1
ca3c8071 92d2d288 b55140ab cafb5983 7031ec13 6e13e4e3
a72cfaaf 4d557da9 7508892b 008eb2dd ba44074e 7eee4742
975122fb bffac6e1 81bf5f3e 9d5ab05d f0d45f44 84d5eca0
6d6a8918 0d368d5a 356b79d8 3a50c34a 809a76d8 7eee4742
494917b1 07841ad2 58e22b17 c985e52f 7c9da7d5 840e128c
b6724adf 0d368d5a 5250bc8f 0fc3ae3c b5091bae a5f68495
b27a1491 e574a8b9 bbdb6753 2d6c8402 9874c6e8 8357b0b1
978adcc6 07841ac2 58e22b07 0fc3ae3c badbecc6 840e128c
3137576b 9e300f42 45431d26 1899017f 754aa80c 001af33b
b523b6ac e574a8b9 ba12997c 2d6c8412 9874c6f8 840e128c
00ba9b25 ab6f463c f086a6e7 fef061e6 85e28188 b80f9c1d
b1bc6580 e574a8b9 be9d4863 7768fecf c270bc25 8091c1a1
705588c4 c3f11eb9 262bc41a 789077d0 038297bf 420095e5
8922383c ab6f463d f086a6e6 7768fecf 0c7a1ea1 b80f9c1d
60fb5fe6 b64dbcd4 40c53b55 00ac8b75 6dc3f5ff 52ae42c4
8a5a813c c3f11eb9 9818fe62 789077cf 038297a0 b80f9c1d
459a74ff 15b5fbd1 b2e5ea4a 59964b81 9541f608 dd31bdb9
3120d1f8 c3f11eb9 64a10f20 f33f9f5e 882d7f31 0375ccdb
e24628c4 edf1e6a1 7efde8ea eb9614e6 2741a96d c8edba69
ef64a09a 15b5fbd3 b2e5ea48 f33f9f5e 3fe822d7 dd31bdb9
f025b498 96ffec38 3253962f a4684922 d18d8a00 da8e2633
f79a2f14 edf1e6a1 4aa1f73a eb9614e8 2741a963 dd31bdb9
75847ac3 565d5ddf a0d5da5b e14256a9 d4016261 676e9295
06c1a10d edf1e6a1 1b796122 f90300ff 35d4bd74 2c6a33a1
24d3a79d b5e9cec0 eeca116e 963ea7dc c7f2e77b e3349e17
5432d747 72e669b6 846eee34 f90300ff a8cf405f 7e9945eb
690d6317 43d52f7b e4853ee1 07583550 a1b1c14a 2f60d002
38f4f6ff eeb77c02 183ffb80 14c52167 450961c6 7e9945eb
11d6b824 572b7138 e16290bc 985eeaad 221edf7e 2e7c71f9
78372cf9 eeb77c02 58fe9d82 9f21d3e0 ceed9341 3e5a9fe9
2bdb37be 27094b54 91e178bb 5d7614ae e7362179 2f1ac464
6811c2e9 572b7134 e16290b0 9f21d3e0 2561e633 2e7c71f9
764e1fef 46275a59 bc7a0181 7bf0dfc9 a2ae9b15 728fec49
2abd8223 27094b54 9140aad0 5d7614aa e736217d 2e7c71f9
0777075a 8759f641 cf7bf289 1eddec23 044d0ce6 3b20ee59
c49566e5 27094b54 6f2b4f9d e747f6fb 5d07c32c c054953e
ccc4b4bc 00964d5d 8ed61eb3 30818ce4 2a116c20 813f3d7f
3fe11d82 8759f642 cf7bf28a e747f6fb fdd7163e 3b20ee59
c9d30810 2915a8b8 b83c30a4 c24f39f1 815f05ee 842881ac
76db679a 00964d5d 48b44995 30818ce3 2a116c27 3b20ee59
3ce92e86 0cd581c5 a879fba8 4f3e3ee9 69ee2bc3 e968a6f4
da50ea65 00964d5d a43a374e c7b84038 dd28a0fc 97ab63a4
64fda057 237f05d3 248e2888 179a7792 c4ad2bd6 f920614a
d82027c1 b93cc8d3 1d90b2c2 c7b84038 148f1c02 95dbae00
d23c7e3e 9be93cd8 d3cb3812 cdf349a9 7be7cc58 395138b7
7eb6e88b b90c131f 1da0690e 6529fd02 b61ea13a 95dbae00
e52e52c8 a014ecba bce19cac 6555b1f6 df158422 9528008b
e549e28e b90c131f a5f9630a e0bca63d 338bfa05 0e24a404
c56695f3 a20c4a4a f2cd1150 fa11538a cf526747 c1a7662b
66b63daf 1b17ebb5 07e29ba1 e0bca63d d5ff92f3 8ddb7b25
d275bcad 19f688e6 bd5af2f6 41a3f004 f47b0ac9 15928520
4a3c42a9 9960c2e8 8595b2fc bd36993f 8875adf0 8ddb7b25
3d9409e9 1055d71e 781f2908 d2ad6b3b 7e952236 ab6e9c04
1ed630fb 9960c2e8 f12a3c86 039a0ed2 36d93a1d d931097f
95070f6e a2437e25 72c2c69b 864a06f5 cc2163ca df903ec1
b0bebded ae88f360 c6c20d06 039a0ed2 49f16b95 77598469
440ac5e3 58cb216b 443e5177 5d589377 618e8d17 2c03f627
1f50b7a5 6660685a 0e2a963c a3bc091a e9d76c55 77598469
72b6601a 212eaa3d e8a6672c 4b05aa95 4e3c0da6 78f3c09d
b09e60de 6660685a afe8a54a a8c93ddb e2a25894 d8975313
cc065cff c0cb1db6 07f4e71b fb6cbcd5 fe551be7 76aaee39
10faf350 212eaa3e e8a6672f a8c93ddb adf09ae8 78f3c09d
aa2e7e01 9bf31de3 fae4c4d4 b5f55242 5594f51d 1082ccc4
c25f725b c0cb1db6 0943d0a7 fb6cbcd4 fe551be6 78f3c09d
74553ab3 d30aca79 08307e8f 233684af 344fd75c 01d40f3f
30091a44 c0cb1db6 1bf1a942 686201e7 6d5ba6d5 8aa5a880
db5ae009 49dc3332 62a753d5 3703aa5a 207af9ab 5214bb30
bb78bdfb d30aca77 08307e81 686201e7 7f1b5214 01d40f3f
0bcd6017 c6b2ff05 9d5b1fd0 cf89b5e5 5bd9aa21 82833b20
889a5406 49dc3332 92e687c4 3703aa5c 207af9ad 01d40f3f
fab9dc69 e77b2225 866cfb1f 7a4f05e5 cf574700 85bfba01
0eff6846 49dc3332 28cbea07 8496fab5 93efa944 87b1337e
d6ef825b 43d9275c ce4b1a6e 2c7643aa 3f0a8227 e7c22675
3209994f 45dfa0c3 24c879f7 8496fab5 97ea3b37 bb47c277
a6377d62 53d5cbb1 88ef7f46 4113327e 44126d18 356a9e39
281a212d 62512dce 0346f4fa 8ea682d7 9dda4354 bb47c277
26919561 a0a0acfc 5fed760a 4758189a 16945837 875e995f
ca202763 62512dce 9d1cf734 38e6efba 2b9a2e39 597dc43d
055e0439 13d83e8e 69a8b2d9 ebf6bf74 9d1bbc59 4333b725
5b4ce692 c5c16f6c 3a8cb592 38e6efba 4e0bec9b c81105cc
3c6919c3 522928cf 333ef1ff 10fab9b6 650ac0bf 29db03fa
dda31ff1 5325b2eb ac686815 bb3b2699 cdd625bc c81105cc
42b050aa 0fafd113 834fa8ab 5a09ffd5 697ede99 32fc8829
4011bebb 5325b2eb dfc5cb52 ff6f418e 898242ab 55a3a487
b0698015 e65eacc6 c7158d52 60cbd763 53bcf62e c7673005
274e9215 0fafd112 834fa8aa ff6f418e cc1860c2 32fc8829
7969bcc6 d209e71a ba43197b b2c18565 ade3dec4 0e670cd1
45f23839 e65eacc6 6abed57e 60cbd762 53bcf62f 32fc8829
7253fd01 b82132af 1fe6bda0 567a646b 5343c35f 5732829b
3aed2d68 e65eacc6 419923cf a82794e3 9b50b5ae 4de39d7a
64a01bd1 7d9262b3 e7061ecf ebc59795 29c57bba de0ca913
9c310bb0 74e877a2 d32ff8a9 a82794e3 6a2778ca eb3fbba2
fcdc9e0a cbffa434 471fdd8e 16415f97 623aa502 d058a64f
c7bb83e5 198495ca be431ac1 5d9d1d18 9f9df133 eb3fbba2
44a1005a ce70acc4 5c20a03f 1e723e44 689f3d62 5b1337c9
f94c01c9 198495ca 8bd49932 2b443ef7 e944d2dc d5c8398f
d3b4f2ee 7b4aeb6b 26c205f2 147220ef 8b601b4a c606e8d1
d64a3f77 f695e545 64c5e9bc 2b443ef7 b4560551 face0731
b69b1596 693b64e8 cefcebe2 d7f781a6 3b43641e 10458943
5c109be5 1b98bad7 89c8b62e a59ea385 3a8c9822 face0731
eea3b0f8 60faf36a 29f8f59b 7d7020e0 990454ba 473a9054
175e9c3d 1b98bad7 529abc46 7ab59d28 e5a7a68f b18000c9
394892dd 28c54451 0bf42cbd b54e91b9 8b4ca65f d83f0378
58d13dc9 ba88b6b6 f38ab007 7ab59d28 44b7aaae fe0fa13d
a69db2d2 0b393254 99693e8d e0801c08 89c30ed8 475da785
1fcfb44a dff8572a 96fa519b b59715ab 8b95220d fe0fa13d
e0263fb5 cbb946a1 2d3fbd7e 7e7adb57 57b9fc4b 1404c1dd
7a54831c dff8572a 397eacf4 6c17f265 5215c5c3 9b94966a
ffdd1e55 63496813 b0a8fcec 88da2196 a119068b 015f5afd
f5c4d4ab cbb946a0 2d3fbd7f 6c17f265 45d4d579 1404c1dd
d9151346 284a97e6 d2530608 e8a22c53 06667aa3 279757ed
ea868575 63496813 85cf93cc 88da2197 a119068a 1404c1dd
c574b90b 868c525d 384d851b 5ae3f838 17e5e951 5466c27e
12bdd9e8 63496813 dd88bf57 c853c16d e190e670 ec3f9d42
135c637d ce657f9b cc07bb1d 552d4984 182b58ef 9807afbe
aae486d4 868c525f 384d8519 c853c16d 8555d004 5466c27e
62d73ee0 60adab31 3345adda 98a41f35 47ea2234 e98cf225
df3d0ebd ce657f9b 70a4a8dd 552d4986 182b58ed 5466c27e
3027a50f b28fc0a8 48965143 aee07392 9fd021e5 f4e72ee5
04e5b1e6 ce657f9b 347cee77 757bb46a 387da501 8fbe7d24
06db23f8 d981aae6 8c862df9 b7d2bffb 5c992f0f cb69fbaa
fb27caba 6caaff23 96b36ece 757bb46a 9e302499 707c0678
99fecb15 c63e9bd8 78ff4c9f 76abfd87 150f57d2 35244bd1
dca686bd 4de58275 b7fc1398 96fa686d 7db1f89f 707c0678
b5861c00 705f17fa 6c5159a6 a141c368 ac84e51b 96cf5073
3eaa4222 4de58275 51ebcc2d 2ad2f7b6 c1996744 9270c2e3
77bd960d 7bffad96 939352be 928c0e23 9f492854 632e013f
3a15d0b2 705f17f6 6c5159aa 2ad2f7b6 2717d1c5 96cf5073
b0c3327d 24736390 0dfcc0a0 7e8256c2 c8ba8ab3 a450a543
825cc741 7bffad96 67f1e3ca 928c0e27 9f492850 96cf5073
84637cf1 203b9af3 84f38f9d 3579d67b 8778c5ae fe25ed5c
0b1a80b5 7bffad96 df37b8f9 cfc6dc01 c203fa76 1f891786
e4378b90 ffa766ba 49d5fc4f a71b3e42 151a2d96 0fd072e3
eab67a6f 203b9af4 84f38f9a cfc6dc01 7dc7cfd4 fe25ed5c
964d6db4 d50ccfda f1407303 4047e39a c7219f6e 7daa94c8
15c2142f ffa766ba 5b6f73d4 a71b3e41 151a2d95 fe25ed5c
a5a142a7 f993773d aa7b71dc 9c72b590 379f91c9 2a8b2187
46a227ac ffa766ba ac4f6055 f9304be1 4b315835 ad45dedd
87436e2a 8bf61b5d 7dc7623a 0e9f6afa c7021155 861476a2
082cfd59 1743ce87 44abc86a f9304be1 30ad3040 e3cb0428
6e987f68 98dadca6 3c12c9ca 1566b29b e8a7d6e8 34ab12a5
b9f869e7 64b6f3d6 375ef53b 677bc03f aee6bb9c e3cb0428
cce4fa63 a8de9ea6 b6c0fac6 6de65c0f 60237a7b 98df6677
f4320c50 64b6f3d6 7aa897b5 73de2dc9 ba43566a ae01619e
ea7286af 9f6ad991 9b79ad34 2e3e572a 1f0e0558 fee1119f
42df6c92 cc49caa4 d257aec6 73de2dc9 42ee7fb8 18ec015c
83077bb2 19735ca9 4a9b5a45 dafb2ac5 f1c66872 4eb5a3e7
d55ed908 1f666c62 01780800 e75d984f d66dca3f 18ec015c
2a915fbe 6b808876 6e67f3f1 06deb451 7b94da2d 8cf7fc3c
cd07c0d5 1f666c62 1a8117ed 2e2ae92b 1f1abb5b 00b51889
5a8cc6f6 11357431 153628d4 32172c33 4f5d4247 8b13dd9a
41452460 6b80886e 6e67f3e9 2e2ae92b 53608757 8cf7fc3c
1696f81f d821d7ca e7d8b544 3b60efb4 7f563db9 c709e34b
5d68e750 11357431 14d20fb6 32172c3b 4f5d424f 8cf7fc3c
929d542c ba97518f 8e67b2f6 f0e8b7a9 d644fc7a c2cb77bf
6d9e7f40 11357431 25c59749 7231af83 0f7bc1f7 bc01642d
bf7d77a6 bfcd5d20 e8515dd0 fa9e76a7 dc323d75 e5769536
13546cd2 ba975190 8e67b2e9 7231af83 549de450 c2cb77bf
b000c0fd 08e1d303 54d15d24 16241f1e 79e4deab ea0b226e
98c0952f bfcd5d20 8b3dbe59 fa9e76a6 dc323d74 c2cb77bf
c1e8963c 2c35ebc6 5680ecd6 5eec1583 cdf8cff9 627aeb77
528479ca bfcd5d20 c5785a32 15657aca 33c93118 088f9b58
79a5fd43 86533be7 6eae109d 64c08adc f7d450a4 d0c30fe1
387109e5 2c35ebc8 5680ecd8 15657aca 8671a0b0 627aeb77
8bb55510 94e1dff4 afec1cd3 f0da824e 5179fccb 22d3a78c
cb1c19d5 86533be7 fce63cf7 64c08ada f7d450a2 627aeb77
9c05bf46 c7d50c79 9be58263 c4e8265f 107e8d54 94ca5692
ea90802f 86533be7 da63b5c2 657f2f2e f66bf556 43f6728c
e9588af7 b9cfc48e 6d10700d fca3674c 71ce1052 a9d3a035
98428b75 80abd890 dc9b56b4 657f2f2e e812580f 312479d6
71e01d86 8161cae8 fbd4cdf9 f9a2877a 38fbdb54 4fa8f2c4
0f6c9695 4d75e5da 11456bfe fa612bce 770c5cee 312479d6
ac38fdfe 6a1b005c 4394a358 385980df 924b1141 62523ca5
c0cb61ad 4d75e5da 64fa46e2 a837aecb 255ad9eb fe838eea
3eacd9e6 27cda254 b5ff016c 58216669 a3b5e3c2 d09e7f0f
59b39054 bb9cf451 9213576d a837aecb 53a32b5c 67fb7f13
a066b55b 90aa9d63 cc9a1343 f7131933 910927b7 9a9c69f3
5d01a3bf 2624e472 0fab474e a4e99c30 5f7d19a3 67fb7f13
09a862c2 38aa87aa 0d723d68 1a85b9e4 149f9128 84b1d5d7
4ebe4a37 2624e472 13fc5eb1 c866df7c 33f25aef 7444969a
de485a78 683cc6ea 4f5ef3b3 35df0ce4 3bc52429 763b506e
be4b097a 38aa87ab 0d723d69 c866df7c c67cf7b0 84b1d5d7
fcb39c85 0ff20a36 0a1571b6 08eb1ae0 bd2476f9 54c09694
2cc2dfc1 683cc6ea 5de47c28 35df0ce5 3bc52428 84b1d5d7
577b16ec 80cee9f3 3e09a70a 00e64e12 264a05c6 4ca1e33f
a5d36000 683cc6ea d6fb8815 8d7e6253 83644a9e 0da06a14
b13c30f7 450e35a1 519a821c 3f173ad1 94fa1e82 eb37d263
3d1963b7 060fc272 b8c88c8f 8d7e6253 26934606 956a69a3
0d2ccde2 e16a2bde d4b2911e 8ec31b55 91d29765 0c7bd564
943d7127 6e45c405 d0828af8 e66270c3 4d8f5494 956a69a3
85089ac9 bded253f 99a199eb 3c0fec80 c79b6910 62b898ab
fbb8cff8 6e45c405 4a0978d2 55b702a3 fe5a26f4 faefd77d
55e03b18 34efff30 5b597764 8f5ac6cd 8505669c 6f1ae7b6
22e604bd ccb84000 e8f4fcd6 55b702a3 5fe8a2f1 23b11c38
3f1c3676 656ffcc8 dba8b234 6642f068 1f92d236 be2bae5f
a2868410 f5ff7abd d1b3c66b d5978246 dfc82215 23b11c38
8e93bf5d a66a901c c58aeeca cd1fa329 77d5168b aa70d196
e2734670 f5ff7abd 961f045b 2973cc96 232c6cc5 6344de48
870604aa cafdf543 ffa62177 bbc102c8 c3531fb3 9482cad0
4230edaa 6431f7b5 07d18943 2973cc96 51e1d1dd c3077592
3717ab7a dfe79ab6 fbab2670 08c40246 9cce2564 8373b352
77636daa c46f90ef a78fee19 5ca04c96 243251cd c3077592
3da6d48d 015e6c38 a2f9b7ce 9a02fdb5 2f820516 fcedad75
b6aacaaa c46f90ef 67c84b18 8d1b9bf6 f58986ad 02ced293
7174698a 033f4d19 2c6b7f2b d2a5edf7 67251555 889a03b1
4889b54c 015e6c37 a2f9b7c1 8d1b9bf6 389b6355 fcedad75
256d7bc7 5ff3112f dcce51ae bcbd4fcb ae89f373 dc8311ff
0503c74e 033f4d19 a09896ef d2a5edf8 6725155a fcedad75
a6b61703 b4aaac63 e2ec11f1 6ee9c36d 08059483 8271f33a
5662e536 033f4d19 5579f089 4410496d f190b1cf af8c8f0f
1783a67d 9fbd088c ae4711b2 93c8c7d1 f524903d 5e254ee6
7b9f9903 b4aaac65 e2ec11f7 4410496d 22fc1e83 8271f33a
485b00a1 cf4188f1 1a933a63 b35f1378 252fcb29 01fde83c
cbd71ba1 9fbd088c c9fbb51e 93c8c7cf f5249023 8271f33a
10cdd9d0 00c4e247 83f9a2c3 8569dd0a 429decac d2572ea7
e6ce9eb1 9fbd088c 1c80480f 0c75ce2d 6a9999c1 af68762b
c00cb6b6 15ab2850 b558f3b9 51657caf e8adc18a 4e9a21ab
79456ede f2996dc2 71a42d40 0c75ce2d b5bd730f 30e38644
8966d65d 8ab06948 dcf6d4db d4adb43f 05ff1c41 03ed0356
ba68534e 73267ded f01b3d6f 4d5aba9d f49207be 30e38644
56baed7b d2ac3cca 9eecd105 2ea5762b 37eb0dd7 cd5e25a9
736ce683 73267ded 3f669026 1d4c8267 a4843f44 f9e7338d
8795298f af352eca c2a49b1e fbfc717e e2b20a86 eeaeedae
47d5f0a7 d2ac3cc6 9eecd109 1d4c8267 0402f99b cd5e25a9
120d0df2 7f65b02b 857c21da 535babe5 ba2556bc 7b36c9cf
a465e188 af352eca e375c305 fbfc717a e2b20a82 cd5e25a9
4f28b15a 4c034a1c f8c2d586 3f1047e8 890cd0a1 98cff3d2
5ce51355 af352eca 1bf4b151 d064c980 c92ab278 35ded775
4dd67c98 a7126878 21bb0691 8e8ac51a 38965252 6ab7c321
f1f437f2 4c034a1b f8c2d581 d064c980 66785ec9 98cff3d2
0a71e541 b6b01a87 ffb21c29 fb38bfda 3e82f68d 2d105ae7
bfae4c6b a7126878 13d3f7e2 8e8ac519 38965251 98cff3d2
724d2f17 1ab8f835 cf6a4abd dad5826c f316a56f 03507886
9e80b975 a7126878 72c0daee 9119ea96 27057dde b9e106ce
34911e9a d2cfbb76 1322f7eb 683a6f8d f173150d ca135a2e
fa997f9e 8a3f4bce 5fedf95a 9119ea96 08509008 ddf8c025
149671af f7ad6349 436cfcd1 0f9ae1e4 d5553b54 bce7ad2b
75891ca3 b6270335 63f5b1a1 122a0761 8b637dfd ddf8c025
cb1a9d4a 362c0493 ffa2c8bc 0e96c3f9 17d8b802 4aac0409
79c5053a b6270335 7fa9cf19 3552073d ac1b7da1 d1b4d9bd
87b6ceb5 5ddae475 c2a9f806 f61beeda 31efdf79 ee8d0a96
b0d966d7 e4d1ba39 2d5f7614 3552073d f2a6369d 18a8ba50
aa7a37ad 71f26b3a a420d9af f84ec1f5 ee5ec1fa 24eca0b7
963e2d4b 23d69ccc ea5850e1 1b76c1d1 dc82f070 18a8ba50
0d792d05 8d12bd8b 752ca746 565777b1 676725d9 f30bb7c7
c9ce9feb 23d69ccc dbe88619 e67b7402 218f45a3 475808f8
dd12de63 72123f23 2d787bff 2597b52b a64b901a 10a00627
27e54b3b dfbe9054 27808a89 e67b7402 65a7512b a973dc28
75ac5b15 558d0078 9c03cc5d 9c490133 33f7bd06 7ac48d68
a61b0a5d 29aa6964 d19473b9 674db364 e4919645 a973dc28
b0d6ef45 31f539b9 82a79753 59bd71ec d59b849b 5829d93f
6be0a642 29aa6964 9af8c78f 802711e6 03fb34c7 64887036
46c19186 3c53a4d3 597896ff bd82087a 31a4fd0c 0a025c81
57410f4b 31f539ba 82a79750 802711e6 0c01e491 5829d93f
71f3fc13 04ec0d2f 9cb50bec db521a6c 8fed47be 3d303117
14ea1438 3c53a4d3 8f010a39 bd820879 31a4fd0f 5829d93f
8bd2c50d 5e5771eb 0785d0ec 298c0019 87a6c295 c00e5ddf
b26a065f 3c53a4d3 658105d6 2a73344c a655c13a fea9cb5a
dbe41363 20eafc5e 8a10e9be a8812920 06abebae 1135d2b8
8ccd90da 5e5771e9 0785d0ee 2a73344c 8459f6c0 c00e5ddf
c3325907 f4ac3087 570beb7f a3894592 2262b325 09e398d2
0adf9c04 20eafc5e 79385d59 a8812922 06abebac c00e5ddf
6ccc0502 eb525725 730b51eb 2a4245d0 52d05884 f77ffd6a
34450243 20eafc5e b8b3fa9f 59600f42 f74acdcc fe94c399
59f0e048 a6a0a2db c9dc10a0 42f2659f 18314ad8 ed94f87e
dca08d19 cd836918 55da6fd8 59600f42 03a3200a 16714cc3
4e20cc27 5c7cf3e8 05ae52ee 77799276 86e0a2ab d7eae708
8fbb67ed c5a6f254 5dfff494 28587896 729b57df 16714cc3
984b8a21 24ac803e f8d0b9bf 37fc4760 8e34fa4f 8a227f43
c35e54ba c5a6f254 19dacbd9 bf5c7d28 e59f5261 5a947f90
0b67b63e bd2850a2 54b70cff b01e26fc b3d4a924 81ec633c
ed036b42 6eae52df b2d26b56 bf5c7d28 bc96f2fc 74c94068
fb35dd5a a233c146 3a6ac782 5a221e2d 4f5f2342 30a60d9f
bf5a90a9 908113a7 4cfd2a2e f12622bf f2ecad6f 74c94068
dc74cfc0 cf91a621 660bc654 0671a012 44aa8259 9342d0df
8a74b793 908113a7 391b73d3 82cf51b3 8105de63 41e76753
6e5421b2 402f17ac 07d7d424 17309332 55ebb178 31a133f2
58d1001f cf91a622 660bc657 82cf51b3 c01473f8 9342d0df
be139902 bf1cb629 4722acf3 b7d9ef36 76112ff1 e1e68b45
ccb7c29f 402f17ac e9b577d9 17309333 55ebb179 9342d0df
c0fb87e8 897aead0 621c8ea6 295359bb a575accb 903d8ecb
8afbc698 402f17ac ab4973dc 388262da 7a594090 d50ed4da
d0122f4c b13e93b4 67e9a25c 25511d9d 2440f9ca 9cd1e24f
ee94069b fe65d9b3 1503bdc1 388262da 3993868b b16114d9
68ebd9dd 04a7761d ad3d166a beba49f4 8d1c095a 6f9510dc
b61fddda d21319c2 39757db0 e00c199b e11dfdc8 b16114d9
f21b6f42 d4cbc541 68b47319 9331af60 90fb20b3 54ccbd37
8504afc0 d21319c2 6e6caf99 f3d8a5ed f2c941be 827a66c2
abd81d6f b7592221 271a8949 b7edadad 9d4f33e7 604bcdac
8bf9119c fba3d3b8 47dc65e2 f3d8a5ed d97a3ba4 8c87d89e
a245859d 3c6a1a47 d70c7e34 f1b853bd 86ce2146 bb6e86b8
95acdbba ef964594 53e9f3ce 0584e00f 2f267e47 8c87d89e
a633b5ff 84da6015 0a6ad384 38824748 8764fe81 eda6ac4d
4793d4f1 ef964594 6126f105 06182fba 2cbab1f2 5eb8d6d5
b7eaaca3 a6af18a4 160564ea 89034353 19898052 2bfcba1e
1329f145 557e6b4d dbcededc 06182fba 9692ebbb 0a02f361
f3fcc4fb 32a5a459 8eda1303 b0870dbc ded94394 37d1f42a
ce2fc2b0 54d21b32 da62aea3 b11a5f67 21909a66 0a02f361
10fb6371 e0bcee69 cc108bff 63f018dd 7f8580e4 9b4d1589
63d392b7 54d21b32 787e7ea5 9c66d3b5 0cec16b4 a7fea367
3bb4d0ac ee2b5c4a 024b6cea 38edd223 24984a1b 5b00e093
5f602459 e0bcee6a cc108bfc 9c66d3b5 80134b8c 9b4d1589
6cd9caf2 c3ccffd7 5e01b50b 85dad0bf 77cdeb7a 0c6dface
fbf925b6 ee2b5c4a c28739dc 38edd224 24984a1c 9b4d1589
a74a11f6 0e314d4e 015a841b aca39a33 90d8130d 525e3953
1eb84977 ee2b5c4a e140951d 1843a1cb 043639f3 7e0c794a
fdf26296 3a628d5b 2b29c3e1 615f4dba 5d24c486 543dbeb8
32ea096e 0e314d50 015a8405 1843a1cb 243828f5 525e3953
95a57fa2 4c684763 b51074ed 19daa637 575be573 3c6aa38a
fb91e57d 3a628d5b 3509440e 615f4dbc 5d24c480 525e3953
7f27f309 23794eec beb40435 ec417b34 c9d331fa b83d29b8
497066f3 3a628d5b a7afc785 cef67cb2 f28df58e e0bfbadc
eacfaf2d 48e415f3 47808e21 cddabab2 6eb3da07 427bb51d
792bb805 a15064d1 3c9d2e0e cef67cb2 6d9f1c00 d0e4642a
704f8f53 3a0d60e0 3566a9b4 ea5cdf5b 4456316d 4282e29e
e22909e6 2f6bd35d b2a69982 57f40e4f f49d6efc d0e4642a
2dfc63d9 2fc5dc92 0d3793cc 64038741 c7c0eea5 f834a8f5
64c4056d 2f6bd35d 0d999c07 c10829dd 6261496e 560968a5
aa542b8c 0e1a9c56 ddf604dd 91b595bf 3276fc5f a92ef222
caf9c53d 2fc5dc8e 0d3793d0 c10829dd 62cb4039 f834a8f5
e0dffea1 3b788463 351a4913 c5f4ee90 14d5bf7d e3a52703
fb4e715b 0e1a9c56 2ce8d308 91b595c3 3276fc23 f834a8f5
58bb9052 aaaa261f f93e737a 5569ff1d 153b0cb5 20f5f8b1
2bac7754 0e1a9c56 5d8ec932 e0966fe9 43550609 28d6aefb
54d9a384 b2c7bc56 34e10496 e46d95c3 a43f666a 53885c0c
238f211e aaaa261e f93e737b e0966fe9 a0c49c41 20f5f8b1
e4b2a5d6 11775279 07f6e57d afdac4aa 30d84d66 e3e35a51
27a40739 b2c7bc56 e153e933 e46d95c2 a43f666b 20f5f8b1
d8fcd672 92e74c6a 6b9f7fee a36f9e2c 831d1d97 eb98026f
c188295c b2c7bc56 4bbf8fdc 775cc999 370e3a30 c6d9d6d6
b717e436 f0d1061e 8b0c2da8 ac884f4e 0f4e2e5a 8b6a6177
0e5496c3 163b29c7 ef431a4f 775cc999 d49aa883 09056949
159f60cf cffdd0f8 9c69859f 53da821f 4cbff0c7 63218b2a
7fbb82ae 545ebf38 ad268cb0 e6c9b5f6 450fd4ee 09056949
753c31c4 545bc804 50da8ffd 044fbde6 a78cd405 d9c3a190
62b0965d 545ebf38 50dff8c2 ce0f1978 6dc97860 140e7dbb
42c562c3 8fe97d41 a8a6a1d1 5acb073f 7f594df4 41bfbb6f
684fcd3c d62aa8e8 d2abef13 ce0f1978 eb9d53b0 1ef126da
bb5c0850 7822fd02 815ace8b 18bee446 ca16a382 13e81267
b6453cec cb0d0007 cf8c47fc 000447c8 25960d01 1ef126da
eac7b6d3 b3997843 6a52f450 e11da6e4 ef0365e9 be0f7dca
5c8f70c4 cb0d0007 12c68c1c 3508f609 109abcc0 f43b6afa
db3edc7b 69755d5b 8778f45e 95c4228a 9bdae18f d2519abc
16bb67f4 b399784b 6a52f458 3508f609 3b163504 be0f7dca
50ec7674 9c84295c e9bb17b0 228d9565 63a01a63 598330ab
b7603b0d 69755d5b b0bed148 95c42292 9bdae197 be0f7dca
416e086f 657b7fff e19af778 d2406e89 d8648b21 285d9a8c
604a3cfb 69755d5b ed94d5dd 727c226c 7c62e169 69257a3d
fc7faaf4 268e5f8d f0d1cc9c eeb0eb89 e4940e20 79dba516
2132dc4a 657b7ffe e19af779 727c226c 7858c7c4 285d9a8c
51fffd69 c4127017 f4cd9093 18186c05 bfb09a36 d45bf288
adf9956e 268e5f8d a26fd70a eeb0eb88 e4940e21 285d9a8c
4a8bd254 7f9dceab 23103292 490789ce 2a33dd0b abe247e5
85ae01a0 268e5f8d 7a03a3b6 ed4203fd e766e654 000a0e40
8df534eb 53757514 3cf0ba9e 9acd23fc f9f9773b beda1b36
2e464805 7f9dcea9 23103290 ed4203fd 8e765738 abe247e5
aa07c042 2349d67d 6a9d75ae be125d55 8d1aeb65 9928ef81
98cd6838 53757514 0ff8892d 9acd23fa f9f9773d abe247e5
27ffc93e 77879771 475877e8 fb3d08b3 7c7b7f96 4f3765b1
b31b03ee 53757514 63aa9592 c5a38c00 a697d8c7 80342c32
5c768561 ccd6796b 9b18d93a 70d7aa23 5b442051 8215c89f
68082709 1bd4aaba 2b0b4a3d c5a38c00 ee30066d 5b2708d5
9f3f8d13 6bb51ee4 3738e2dc 81889db1 57ea4684 86d52487
42cda140 c0e5ce1b f03a2e9c ac5f05b9 87cc8fd5 5b2708d5
942f37da b32d61eb bd4fac8f 422e2447 5ff53a07 eb9b3883
21435c57 c0e5ce1b ce870363 dc64be7f f7f73413 38a9f5c6
a16e2b5d cd2f959d 80474d8d b7852e25 dc87baba 54653266
0cb58e43 0054d832 0e36154e dc64be7f b7662afc 155f27d2
694520ce dd9c1b33 ed43fbb0 f10d763f d2bf9f43 37dc3ad5
4bc63dcd 24ebc63e 2a890b42 21132f0d 4a11bb8a 155f27d2
d5fd5789 61d1cb3f 11b01f5e 6cc4d75d cb2c4ed4 f7d2fe9d
29c734a8 24ebc63e 548a125e a92e4867 c22cdce0 775e2eb6
ab569252 e04cdb65 34d360e7 41dba634 e6333fbc 5c10e5be
a94be483 61d1cb40 11b01f21 a92e4867 0ec6d1ee f7d2fe9d
967ac1ba 91a0547e 486bd86a 839b53b6 daa74117 613cb651
00948971 e04cdb65 902d0f04 41dba635 e6333fbd f7d2fe9d
34d0ef32 4289278e b1b3dff3 7a6b5870 704fbddf 96b70a82
8dea5559 e04cdb65 1376231e cf49eaae 68a17326 7aac22b7
67c37cbc 3cdbfd95 cc9c59fa 5da782a8 7dd50119 e267735a
121cb08a 58d6c594 abec3ded cf49eaae ef3b6919 e55ac764
5efc2603 ca0af3c8 ba6b27ab 8712b398 fa12fd26 6281a34c
d9274229 6d7d28bf 9e47d0c6 1480f80d 34f27bb8 e55ac764
434f0759 b80d398f ae8c8e86 06b9db29 6dbb4fad 1d7e115f
34dc00b9 6d7d28bf 7bfc9fb5 e5064a6f c574c9da 08a185f5
e57b75b0 6f52a22a a837248f 0721df3f b248af4c bbe26fad
3683255f 0274157a 14f5a271 e5064a6f 506f3a1f 0afea013
f52d1085 a446c08e 577c38f6 ea9e63c4 b2435e61 e7b7e181
18645116 00d2f35a 16534451 bb23b628 0e4ac659 0afea013
ef3817cc 446a2319 49177ea9 e36ea4cd 1a6e04ed 61bb9ea6
1360b7bd 00d2f35a 0dafaefa 67860c78 d2ef7c09 01fa46a8
2a327b2a e42bcb47 9df6f0f6 39142300 c0148330 ce1b7ca7
73216fb3 446a2309 49177eb9 67860c78 9e86ac58 61bb9ea6
6431e27f 566ee63c 7db442e0 0aa80d4a 61ebb66f 8018e5c2
8592992b e42bcb47 e95696f7 391422f0 c01482c0 61bb9ea6
b26dee4a cdca1489 3dc69a83 c22826b8 20b6cfcb 6e05933c
a063c88d e42bcb47 1427454c c9e8b0ce 30e810fe 444acf01
cee6b282 a58b5845 43fa48aa 904c4de6 72d2a494 646a1621
8a2c94b0 cdca148a 3dc69a80 c9e8b0ce 2b7659bd 6e05933c
5af72690 44d08e18 3652f2e5 13e6f399 9202ecdc f07b8230
c489379f a58b5845 5587d64f 904c4de5 72d2a497 6e05933c
9b8338cf 664f17f2 37c11d2f 3a6b2b43 99098262 37110f5e
650bb4b0 a58b5845 f405529a 38659853 dafb7121 cf871011
ac50cd2a fdf91883 f73e18b3 e9f3bd4b 4a911468 f04a04b1
9d9dabff 664f17f4 37c11d29 38659853 9b073172 37110f5e
435a7ef6 276ae8a8 1ed75a40 fc412f08 30955640 1f40b76b
6b0bc6c5 fdf91883 ac77125e e9f3bd4d 4a91146e 37110f5e
28dc50fc fc63e417 8ee198ef 1f6b9bde bea6ef68 9ecd1c19
041f481a fdf91883 8f7b647c c5751893 6617b1b0 58058180
50c34fb3 c070fa18 6cabffb5 7c29d53b 5138d063 420cc9f0
5bae88db 87a774bf f5250841 c5751893 e8641dcc 07b44141
8a533a06 65914b5d 341f4181 fac5e8ca c1a97371 e6bfcf1e
6b58b458 5735b500 25b7c9fe d6474412 fb56414c 07b44141
f1288ced 18f304b6 a7ffb848 8c4b0bbf 62855eaf 3eb6b124
38d27420 5735b500 e83909fa 2999c313 0488c64d 543e813d
e83fe8c6 af8af4db 470b6d37 3cc134c6 d20f61d2 682b8e12
525a4439 18f304b2 a7ffb84c 2999c313 c7579603 3eb6b124
1dc3df73 2107387e 3f2afd07 9b0740e2 fb4dd855 9dd7b99b
bea2d7f0 af8af4db 10864825 3cc134ca d20f61de 3eb6b124
502d718b 3c9324ce 55b4fd20 a1d80daf da0e88a7 b5c7d5e1
68c5a8c0 af8af4db c6ad2d34 3c01d01a d2cf850e e8d1ce15
70133b6d 6f61151b 5b922046 ad6d7381 d6bbf688 81933150
35d3b334 3c9324cf 55b4fd21 3c01d01a 47d75512 b5c7d5e1
67c55a22 893eb706 c09be328 464f275f d3fb01ab 96455020
4447dfdc 6f61151b 0646ccf5 ad6d7382 d6bbf68b b5c7d5e1
369d6874 b5e8368a 8c558458 04467812 c61bde68 52bd7ad3
77dda4e0 6f61151b 56dca7f7 91a66faa ea70eaa3 865daedf
bdd5a5f8 21d5b605 5dbc79f4 bf6663a4 c68d7181 a2ea5bc3
91be34ff 6d75a22d 54c810c3 91a66faa e84d7db1 603e3ec0
22a75f5c dc5ad5ad b57d0c41 68fca425 2a38515f 8fa865bc
cd310422 1380f24c 2a3d40a2 4d35a04d 34deb254 603e3ec0
9e55ad99 88643549 35cc4733 03d4aceb ed1af9fc 3d5266a0
4927c4a8 1380f24c ae288035 0ddc1c95 74370e8c e428fe4b
9df29e41 628a147a 93164d0c e0e14889 412c3c3a 1de6f897
44fc2b7a 3b6354e3 86cb269b 0ddc1c95 ac116825 e9f31199
74c7d44b fb0f1857 c2b2aab8 b2f5ebaf d55ac838 6608520f
fb3c97dc 352d6971 88851b09 739c67f7 d2511346 e9f31199
dadd04a5 6ef14a99 1bce745d b324afd0 68b5fa01 40db65ef
b3465850 352d6971 4012578d 2bedd4d3 8a20a062 a189de1d
4d09fe95 997d25f8 f00cfb3d 0f1eeb34 2bed321a bb096233
d419442f b853cdd6 cd6cf322 2bedd4d3 0f1e0dc5 c6d6c262
662cd4dc b62b3118 0b834368 c9e002bc 0e484a35 0f3ff5d6
afc5e360 1376c1ad 6649ff59 82316f88 a6c2b696 c6d6c262
248fe74c ba1b28c7 b9cdea39 19fce5ee d264a5d7 288fa5ad
3c7d676e 1376c1ad 10a00352 770fc410 53fc1d0e 556e466d
977ab168 6745c986 2b9c4b8c f4e578dd 3f7d38e5 719264b9
419c84ae ba1b28c8 b9cdea36 770fc410 bc978429 288fa5ad
ba2bf944 1159038e 29534a66 64355d5a 119e271a 5cc32c96
ce67707c 6745c986 64930b78 f4e578de 3f7d38e6 288fa5ad
ce50ce46 95de75f6 4ac7ce24 daf8ffbd 20c81317 d121844c
e53a4bac 6745c986 b85c7256 a2708b86 69e8cbbe 03d29e7f
a942aca9 47439043 40ffe812 0c0ea213 f63e4ebb f9c440cb
37c9519f 95de75f8 4ac7ce2a a2708b86 5840672c d121844c
b292ba10 cd7e92d1 3d721cd5 364695ae b62d7a98 e214567c
81a7682e 47439043 985a2b91 0c0ea215 f63e4ebd d121844c
ac7ca67a 461343d9 7e190a3c 9d80b429 64801416 8c488adb
7a94fe07 47439043 7f49d9a9 cdd373eb 37e39f43 2a121264
fe341c08 bd4b8131 f5ca7f39 61758f0c b355d916 1a1d1b8b
59238b0d 1f32f9b0 2738b05b cdd373eb 1ff325fe 09a5676e
2b83fb4e af17fd7b 700e46a8 56bed7ce 163750d7 b0b4d955
92924574 40aecc76 78a4859d 1883a9a2 caa3ffb6 09a5676e
11eb388b 9b9f7bb8 3db87b50 155f1475 384e1127 3b58c52b
ecf53c79 40aecc76 e689cc92 85e238f3 57c26ee7 77c21e67
24dda185 47ffcdf6 2d072483 57980be2 4a4315b6 48315494
186849e1 8c6994ba 2a4e945a 85e238f3 983926ab 835f6bff
e049ac2d 4f20b373 772afa9c 7257a0af 9ea412da 1542b50a
765472dc 80081f5a 262f1fba dfb62ff8 c26d31a4 835f6bff
1961b813 aff1af9f 15c13a83 a9b3bf99 e4771139 f92f89c8
6262191e 80081f5a 3a388a47 be70a6e0 a3abb8bc 9769003c
5481c537 cfb04dee cfb2fb02 34e5fc6e 792152cf 3f01ab98
0c2490ea aff1af9e 15c13a82 be70a6e0 f3b40840 f92f89c8
dfbe5d08 c758714c b2674fbf 849ebd2e c1f26cd1 b43e33a0
92afe767 cfb04dee 7580d8f2 34e5fc6d 792152cc f92f89c8
e9dba20b 4d83df8d 04577c44 12395205 d9a1123b 6e8d8678
e353f6d6 cfb04dee 8664ee21 f6639c3f bba7329e 88d3987b
10accb6e 913a81d2 e126c583 71cc0365 8440fbe1 f6441ebb
a47c109a 777897cf 3eac3402 f6639c3f 03ef64bd cffc7e37
9f7c8bbd fda18534 4791102a a88a71f9 6ce4a250 40586f86
10d89a0e 2ebfaa0b 676b09c6 6a0811cb 9f84e94b cffc7e37
413e4fcb 570dcfe9 1552bf93 320d859b 2fd69bc4 1f97db99
17a3aedb 2ebfaa0b 6ce0da72 b288d581 47042d01 c8874ae3
f1f3bd92 e9737836 0fd267ad c86f0a69 4f297d51 04f8a4b3
bf9211a8 c07928c6 822658be b288d581 35cea2ba 60b6f590
b64f6504 78df2ae1 310b892d 69467b73 beda409b 682c28e5
bed5b870 28896633 6ad6164b b1c73f29 36814813 60b6f590
5cb4b2c6 9e61da10 7ddbd933 f8ca51d5 05d4bae2 a6e1e8cf
dc72c5db 28896633 cb336530 dcd8458c 5b9e32b6 0211881b
86835aae 79517964 f2a39e4f c80e8e65 35106572 4f1accd7
7882a50f 9e61da30 7ddbd913 dcd8458c 21c6aebb a6e1e8cf
df111633 26925cae 75f2c630 2f6cc846 85330627 1688802a
6f787eb6 79517964 9aeb7a47 c80e8e45 35106552 a6e1e8cf
5ba73c5c 3b671293 dad1e4e7 c42a2ad7 7b1eae90 c9d92977
6d474a59 79517964 98e78f11 fb45ac24 065b4733 a4dedc21
96ee90dc 166bdd28 ff755402 795a429e c66ec6d8 d140bc2d
0040bf0f 3b671294 dad1e4e0 fb45ac24 44712863 c9d92977
82c3f91d 6ba5f4b4 b6ee5659 ecec2a13 f882b1c1 c56dd5ef
8e770586 166bdd28 f7dd2b5c 795a429d c66ec6db c9d92977
f3ed49d3 f90a51c0 754090de 538770ff f255881f 9990d303
33c2d8ec 166bdd28 9a211c34 30b80322 8f8c8764 746cf41f
c467e802 542672e6 4b1cf787 d1f15571 7023ad93 2c809746
de3efff0 f90a51c2 754090dc 30b80322 916afbc2 9990d303
51c19d4d 3cd08895 973058bd 295c7ab5 a3217424 b926e20f
7177ac47 542672e6 d86cb3f8 d1f15573 7023ad91 9990d303
29acc281 f666d729 2b2d75c1 4d4afc1f 0959a13b 81a03c7f
0276cb91 542672e6 896dd009 8e257c66 2ff78484 ea91b4d4
9b34528f 4e75f22e 555c07e6 8b3576cd b8068975 7ec32b22
a803a70d e58779c3 38ccdb2d 8e257c66 bd1683d9 40e4d848
1529a27f a6615937 2a2b9828 e3d42a34 2a00d048 efe3f67a
ba2e8c4c 0fc05e79 d28bfc97 a0085125 933bae9b 40e4d848
9777255a 43b11b00 fa9d26fe 39d17f8f 5ef5c3ce aaa234d5
e60f2754 0fc05e79 b6ec6383 f6c6c200 c5f53dbe 1cc57354
5994e071 b585597b 2bc18eb9 d22a9cec b50e20a9 8fbace99
506860d5 43b11afc fa9d2702 f6c6c200 91e27e41 aaa234d5
1c9bdca7 490aa488 90355ff8 a511ce12 5fbbc940 cab5f243
7c8c1a3d b585597b 0ca96485 d22a9ce8 b50e20ad aaa234d5
194ff496 cf121748 c5bf33e6 2e415c7b aef0266a 98706a8b
2a0d356f b585597b bf287dd4 832fed47 e40b5102 fc231b86
cc457d03 b387a84c 53ab7e9a 4eb7200f ce065a1f 6df01cb3
4e5e4462 cf121747 c5bf33e9 832fed47 039e9756 98706a8b
6588a1b8 14f17547 228b0f6c 9e3f904e 7c24d745 c43dc007
39c50b3b b387a84c b92a8ce2 4eb7200e ce065a1e 98706a8b
08558058 5beceb0e f00c3b2c ebaaf013 c2bc4cc3 a36074f8
981177bb b387a84c 18677860 e22a5d25 629b2735 39a41609
a5103a26 0f0b745b fb1e3dd5 9dcb0af1 5b6bafd5 f84635a6
11a4ddf4 f976d366 52960348 e22a5d25 248af80f b011bc46
8c8273c6 6ab11b27 601c3f8b 2f5e215e 80d5b270 0ede10c6
324ddf44 81c62d21 2a26fd0f c2d15e75 0471fb5d b011bc46
560711e8 224a443e 7dbb47f6 42680faa 254cb3ec 5166fa9f
e67d8ce0 81c62d21 de372eea bd628736 7bc2221e 6421efe3
36cea17e 9273fa57 aef80faa 1134531c 55270e3d e0e08f94
8619fe62 ff38e51b a0c9e6d1 bd628736 f971da14 04459d61
b5c2106f 9e1a618e 35fab1a1 266c751d a4b41a05 503569c5
e1b2e4ca 5f554f99 00a44c53 20fd9dde 64eec0fd 04459d61
940fc696 bf34fd99 514f00ce 54338618 f7c08d03 ca3811dc
7727ef55 5f554f99 b12eb2c6 dbf32871 9fe07552 92d096f6
fb33e8e6 089c8a77 69966616 bdf096c6 1e039dd5 3cc700e6
2fcf687f bf34fd91 514f00c6 dbf32871 7800236a ca3811dc
99d9c8c3 1f9e9a1e 9def9630 3eeeef66 841bf5dc 5e2d20bb
0dccf9dc 089c8a77 e6e77720 bdf096ce 1e039ddd ca3811dc
a76dc732 f9c28e1a a52ab834 8938eca5 1c21e210 b75d62a9
ff50a2b5 089c8a77 5474bc58 40fd2f0b e30e2418 38a44ab4
7a9eaa84 7a79564e 3885ccb4 60f7b4fc f5eeba48 9d71c775
70a98aa8 f9c28e19 a52ab837 40fd2f0b d5e421be b75d62a9
f5ff3acf ee173bee 598c112d 3ff03f9f 3746cbcb 1210573d
50b20f58 7a79564e 26916060 60f7b4fb f5eeba4f b75d62a9
26ae3f77 121eaa9f b4b74ab3 0913dba3 25adb8a4 004ed631
e6f0615a 7a79564e dcd0b660 ca226050 5f3b6ee4 011f0ca9
bbc3801e 137000e9 87ca5ce5 37cfc46e 1b71a76b ee5f5211
e7a1bbc2 121eaaa1 b4b74a8d ca226050 e69c0357 004ed631
44361f65 887ac99d 307f1e90 f93fee34 58f6c58d 11aacd14
55d2043e 137000e9 b5d9e0c5 37cfc46c 1b71a769 004ed631
766f113e da696fe7 6df24559 b20fe6fa 41b834f8 2c600473
44dcf2c8 137000e9 a4eb2a28 ad9da3bb 8123c0be 114020c6
a36cab02 9c7667ea 23453274 89f82029 595c95bf 929be57f
de9f68af b75653cd 00cd790d ad9da3bb 7d391652 8b03baa1
df7bc69c d53d7f2c 73949f01 879ca8ee ef2333c2 7a12700d
2e6a0c31 3d2299e8 8ab9b328 fd6a883d 2dce3dd5 8b03baa1
e8384623 bdfdbb26 64c24022 99b490e5 c8cb47c7 22e8b794
09c13dcd 3d2299e8 e41d6290 744d55c2 a4e9e02a aca88b59
34018702 a7b1c3c0 3660926d 4ffe13d2 ff0dff9d b51bf3aa
59e32bed 1d71d033 c44e2b4f 744d55c2 c4beb9f1 fc8a9d79
4e2c5992 27f81c31 906336f5 ecca66dc 675234c9 dae5ccbd
68430852 4d53b653 946c4d2f 63ad3459 d35ed86e fc8a9d79
6977effe c261a226 1b822105 d2474c99 f4469490 789f36ad
69e7b035 4d53b653 94b03571 55280870 e5dbe447 fd2e251f
a2a9da8d 47b0b073 d73fb937 4e41d98a 68400182 2f4abcce
ec56a387 c261a225 1b822106 55280870 7329d079 789f36ad
00d4d69f d09dbb1a 3ee6464a 83df1512 2d31f7bd 8d37b0db
f57c50ee 47b0b073 9e533350 4e41d989 68400181 789f36ad
0476802d b6c7e71b b40fd69a 9fdb89a4 0ac28716 5d3d5dfc
2c608350 47b0b073 457881f4 d4731214 f272ca1c a183e511
d0f40a3d 0e770474 31ecc686 2e7f19c6 0769a51c 371b67c8
77a4b01a 4ac59547 480da4c2 d4731214 fd65aec8 fa47d65b
8c35287b 2b7a5d6c f299de4d 1db482d4 febb0ce1 d16327f5
a711d9d7 71818c15 7349bd90 a3e5bb5f 8af30781 fa47d65b
5382a35a f95ebb6a cf24c14c 06d1ee08 b622023c 59c51c23
70ac1176 71818c15 47fbf630 59e03e1c 70f682c2 2dfa1efb
c7584459 e664db7c 25f70961 9153c3b7 db56d2d7 5391d170
9b2e76fa 926fe09a a4159abe 59e03e1c 13e52f7f c6787977
82facdeb 1896de00 1a5eef84 56cca910 b162e05e 92c630d6
d644844b 7aeda614 4c97dc30 0cc72bcb 46c23aa9 c6787977
c7daad7d 951ee88c bec44c00 06bc53d0 628a003a 27e7e33e
abe45963 7aeda614 513702e8 36bc02b9 7cb913db bbd8a44f
2be2e407 9e2dc968 7cddd349 21d7890f 7ac2fd1a d0ba6775
09980f6c 8bfe0917 a024adfb 36bc02b9 6da976dc 19a4f240
436d48da 7273ddf6 4409a7c2 63b3be31 7c270970 2444c778
7e8d7df2 adf49b2a 862e3fc6 8da8953f d6bde14a 19a4f240
35c256e2 59ba2ed1 9cde7485 50af0dbb 567405a6 f28facde
d407281a adf49b2a 6890c17f f08aa332 ab9fd747 b32ea7a9
c80f34bc 99194187 fbc95fc9 d15557e2 d78e5ffe 8ffb70d8
95a6236d 59ba2ed2 9cde7486 f08aa332 f651ab2f f28facde
19184066 20726c26 11b2dd50 1ed7ce97 90e3fc2c 5eec0401
b57be8ba 99194187 5c7d1bd3 d15557e3 d78e5fff f28facde
faf53a5e 46ea8458 2f7eaca1 e95b73ac 5df73943 69a9c5a8
d14b3fe3 99194187 f08d697c 9df2b81c 9b29b000 96bf7b85
565cdf28 73ad423b dac320f1 55dd9405 e171dee8 a983ff79
2e5d81ce 46ea845a 2f7eaca3 9df2b81c 295ef2f3 69a9c5a8
4e13b0c9 110ce48a a0ba177b d39ca23a 81974f06 b1cc909e
9676e5f9 73ad423b 1a396ac2 55dd9407 e171deea 69a9c5a8
56879d24 f5d0347a c4108509 885b0034 be943d1f e7f0eb20
ce096e73 73ad423b 426df34f d6c2aa80 626ee06d 31d64e23
0ee98e1c cfaa7b2f 1f44d37b 0d552ad5 cbd00236 38982eb8
66b51789 85862032 b4469147 d6c2aa80 10478264 996a37d9
ebc1a958 97801c4b fe1434b3 90fa79bb 2e39577d d13daf5d
a39631dd 9f42166a ae82a71f 11df9034 d75ab8d1 996a37d9
551dab0f a2607fef 2c406952 e6fab87c 2f592a12 0ecc373d
cf359b1d 9f42166a 116200d3 c625224a 00a00aaf f5c99d1d
d773e7b4 095cddcb bc91da24 6c33ec29 a5907e43 3679286f
3430313d a2607ff3 2c40694e c625224a 0f86b024 0ecc373d
bcfd0cb1 b1d7ddcf 6c9c7f3d 8648cce8 f4565e86 5df7c376
efc6f8e6 095cddcb 877ccb76 6c33ec25 a5907e4f 0ecc373d
b611845c a9a6241d ff63b08f 401b70d7 29f7a86a bd10cef9
367b7ac9 095cddcb 5f994958 1624f60c df876466 d771b513
a2257210 434b2a42 76f448e7 734a154f 1aa6cdf3 9c0a9d0c
5c1a0123 a9a6241e ff63b08c 1624f60c 7fc82eb1 bd10cef9
742ad2a1 b9ba30bd 5a003381 3ca4e6cf dcff39f8 4a053da2
833f21e5 434b2a42 158ebed0 734a154e 1aa6cdf2 bd10cef9
68db4eb8 9892d5dc 29242637 c4bfea39 7b8b6e61 99d926ee
262dc142 434b2a42 f2fdd9b7 11ed7101 7801a9bd 18022e5c
f9700f57 1b5ad90d 773ac8c7 1b6baece df482ee5 bede23ba
3a1aeaf9 9d81d1bb 2c37224c 11ed7101 d5cef134 043505e7
69541fe0 4e666e20 18a3fab0 f531df94 95cb2b9b a943a682
c422bc87 b18efa48 003809bf 93d53b43 57f6bb74 043505e7
9218c588 b70f0c79 c2c4ab54 3f8500e2 f626928b f677c7ad
085e007f b18efa48 c4455d66 9b2db81e 5f0e3829 c849b91e
4e624741 7688888f 8fb0c664 bc20ce95 8aeff3bb af688898
ebec59bd 243ab73e 51f11011 9b2db81e ade28533 2bfbe0dc
51968d01 478c94be f63a6748 0a2f2286 344860f4 67e72da2
1d8a407e 3ff48f78 4a3f2857 11879f5f 2748a273 2bfbe0dc
042554a0 4d38af7f e3eb29de c08299b5 8491c48e 53282038
537260cc 3ff48f78 912709c1 9fe6c5c7 a929f8eb 6503c066
a7e26b60 f6d3486f 80aba3df 4f6c9ed0 94fdcb29 421512db
4c1e0d76 e4b6a82d 4a652e9c 9fe6c5c7 44779026 7a6faddc
b76752d4 f7e97467 8222d340 d1169b5b 5276bcc6 4167ce4a
8c6f314a 501aa2b3 fec92402 5f75c1b3 84e4945a 7a6faddc
8583b1f8 4cf5b77d f7e6622e 1e6b22f6 c6074844 f35fb0d9
70af60ea 501aa2b3 eb0977e1 9d8fbe6c 461eeb85 86affc7d
0d3d3d8d 5fcb1b1a 82273d16 c2945df3 1af83740 16380192
055f2c4e 4cf5b77c f7e6622f 9d8fbe6c 45e3d4de f35fb0d9
11dc223d 12abf103 c026b399 f88ec996 73c3890a 0ad91e21
e85a8cc6 5fcb1b1a e4d8ce49 c2945df4 1af83747 f35fb0d9
deba024b 7732c2e3 6c7d259a 58dc38ea b7082a94 171ea3b5
489eff1c 5fcb1b1a 4484fc61 aa3cd309 7250b9ba 539bc301
4d8e2ef6 34afea59 96275e61 6310f570 8cc4e70c 9e577074
0c1b9fa8 7732c2e5 6c7d259c aa3cd309 45e8c177 171ea3b5
12ea4814 1ab22ad5 dfd6708f 5d3a720b 88ec20f3 c1331698
c4c7fd37 34afea59 2fe00d20 6310f56e 8cc4e712 171ea3b5
11b0dcff 9ff14c56 4d7c0ec1 af70e08e f46594f4 c0578feb
1d82a057 34afea59 e622a8c1 b162ebfd 5eb6f981 ce5bfed4
e72488e6 442debbe 0b0f53c7 44b31d37 b5fdd83e 800d075a
d0aecff9 362a9ce3 e4a7de7a b162ebfd 402c2efb 0377917a
ec9b2892 d95510c3 c21af7bb 2fd8b5b6 668d5e75 4c3a3658
a3d68fb1 814dea07 53c0a89e 7e2aac45 8f646942 0377917a
4acf125d 56844ded 48a988a0 ea0b33e6 2c8e1b0f 85d74bb1
efb90aed 814dea07 9f602f46 bb93f8c9 4add3dce 4f181422
859b20ca c8174f0e e3d9ef9f 55eee00a bab48183 bf6726c6
116755b5 7f598685 617443c0 bb93f8c9 54c9994c b1c64b7a
2b720777 3df01580 ef7d571d 2ae15d33 3b837a9f 6625c8ce
fc9184c7 1be84f55 05c58a10 684aa9b7 8710c836 b1c64b7a
bfda43b7 669bf643 2cf21f8a baa663c9 80a86ba7 97637326
9355a041 1be84f55 5181a69d df4502f4 301f6375 de026ffd
81efd815 2dfaeb2b 1435dcfd 99144c5f a31a4430 86c8c133
da34bc9a 669bf642 2cf21f8b df4502f4 e54b0a9a 97637326
fcea0933 4709c433 e9da4285 709c3e3e 2380df49 fbcd1012
90446a00 2dfaeb2b 679302e2 99144c5e a31a4431 97637326
4e6f8f30 cc594d73 c5097c99 57bb010f 8fd76bba 419c0d70
516ea26d 2dfaeb2b 24aadac7 4eee97f3 74e09f9c 5649bb49
0b91bb64 49bc56a7 be28e9d9 62ccbae8 a0911ca8 1094877f
2568e0cb b64a8902 bf1ab8ec 4eee97f3 8cb331b5 224ff9ef
7c564fcb dd15ed8a 977c0441 b12d313d 84067897 6369b1ce
3d7007e8 6a484a24 63187bca 67077cd6 a55ada92 224ff9ef
f90a810e 97450563 dee05170 790678a3 965c1921 dd3dda48
7d9ae217 6a484a24 23ed1e34 740f1b63 b652bd27 62a51c11
f92c5b4a cf6a0b29 efddb620 a226ed1b 00faf04e b47b94f5
c256d5fb 4ac6c136 03639527 740f1b63 d6d30635 dd692bfd
0c5a3905 7836b50c 716684e3 d915afa8 924a5757 9d1409dc
4c271b25 cfb2d964 86178d75 e61d4e35 44c15362 dd692bfd
9c30957e 525df34e de80140f e77e5c5f c2f96b5e 54f634ce
b1ef8e75 cfb2d964 436f3e65 b005eb47 12d9f610 20a1beed
cf2f3e91 9c945dad b5a69463 5d1be4b9 789cd3f8 f14b175b
c5b80456 525df30e de80144f b005eb47 9582dc46 54f634ce
ef0279f0 7bfc42cc 72b246e1 8ea66624 8a497a44 d16651fa
6a921d04 9c945dad 1049baec 5d1be479 789cd338 54f634ce
d7160661 2bd8f53d bbee66c6 fafe0f14 4e35c1c4 83477cc8
662ac84c 9c945dad 0ca2ce57 e510be36 c0978977 584ee187
6e11d7a8 00d151fd 13f4208b 0ed42255 ba1fec84 06365a43
bd235503 2bd8f53c bbee66c7 e510be36 51db70e6 83477cc8
e6f9791d d4b871ae 4f767d87 fe821360 7630fde2 8edef4f5
eb60f123 00d151fd 90e7c206 0ed42256 ba1fec87 83477cc8
f48370f5 7486d116 a49e7029 3b0f9ca6 138ed14e 4b1656a5
ab0e07e3 00d151fd d0c9f0c0 e3a2043f 5769caee c3298a0a
66333c32 ee6a2c71 2accf5d6 d5122993 fd936479 3fa48f0d
2331db4c 7486d114 a49e702b e3a2043f cb2349d7 4b1656a5
2cd24845 b1b0c746 4bf8815e 75a65408 9e61bcb7 7545fb7c
1281e59a ee6a2c71 3e728d4e d5122995 fd93647f 4b1656a5
1548c6b0 d8a0c05e 436ecc72 d80ecf5d cab92e85 54fc8f55
4f5c72af ee6a2c71 75a4205a eff238b6 c773755c 16cbc191
a45098e4 22bc026e a9b8a0d0 6ada8c01 765a95a7 70d09e6c
d80db4e6 e268f828 79a6f402 eff238b6 f3722117 819a07d8
447156e3 fd91b427 2d891519 6d104064 cfa363bc b5e49ced
700fcdd7 775ea9ef ec90a5c5 87f04f87 9b705627 819a07d8
8efeb541 851509c9 f5037f7b 15646abb 3f5213c5 4df9902a
a477b86f 775ea9ef 0748df59 43f30f5b 5f7316fb 55e27264
8f1d6c72 8d2cec13 63cafdbc 96318ca9 bc07f5d3 ccc92b27
bc6c5a21 851509cd f5037f7f 43f30f5b 69c57625 4df9902a
5208be07 4abaeeb4 79433156 2a6cba4a cda8c651 11dcf95e
0e2dd77f 8d2cec13 fd3a9aa1 96318ca5 bc07f5df 4df9902a
dc9e08a7 f20d3ec4 8209c242 a1b4594c 2ea29560 b68d0a37
0e3c52ab 8d2cec13 fd281094 7b759e10 5143e76a 4de815ff
561a7fb3 88b4327d 7443273f 4d06b3fd c2107fd0 437f22f3
f5594d63 f20d3ec5 8209c243 7b759e10 f463523c b68d0a37
2129e9aa 3a6b949d d7af33a8 9efc2679 de320834 344cb4e5
a3e85777 88b4327d f8b0cefb 4d06b3fc c2107fd1 b68d0a37
4791dced 0b83a766 f1cbe174 56fbd4d4 471d95c0 7d7ce8e8
55b50e8f 88b4327d 72fc7461 3173fe11 be65323c 40d053cd
66a4825f f634ef1b f2b82795 f9fd2f74 43ee0a90 bb4a0cf8
a460d7ca b3b08c3a 49f8ca24 3173fe11 8b60dbfb b1058a88
3c24b208 95993e4c e59dc2c8 528849a0 d9794761 26c240ec
abe3786e c3bb5573 39f3136d 36f593b5 8ce6b65d b1058a88
99eac680 33dea903 17408396 782e7886 521801ff 0281440d
c1bd9de7 c3bb5573 e7257fe5 f7a9e8e0 4dbacd08 db5b6f00
f02191ba 75ae5476 8f6907b2 20973d4f 3220dc92 b3f5d6ed
c72a5f27 1c601169 38fe3bfe f7a9e8e0 e51e093e ddccadc0
67f6cfc8 07da987d fd92de62 f08ea75e f11008eb b376c947
094cab4e 18f3caa7 3c6de030 b142fc87 a3f51d58 ddccadc0
7b0293b1 abb89f26 4b2b6d37 789f165d dde3a03b 274b7230
4d4273c4 18f3caa7 f86038be f0d53b62 e262dabd 99c27542
6d554038 9f1fa26c 8bea30a3 534d87aa f63131c4 5bad12ee
f3cb74b6 abb89f2e 4b2b6d3f f0d53b62 55a98d04 274b7230
41310d28 5b08c155 6a191e9a 73d6ef93 12b33ac4 77c95fe6
11b320e6 9f1fa26c 7f8c507d 534d87b2 f63131dc 274b7230
6e7986ce 6aa67c97 72fba964 19944ba2 6897db3a 4dc4fce0
69ed04c6 9f1fa26c 8742779e 2ccf244b 89b39225 5f155611
5b4d5747 fb75dda5 942f5a98 f563cae2 84605a7b a4c1ae2a
7b3cae37 6aa67c96 72fba965 2ccf244b 5dccb4d3 4dc4fce0
472f07f9 22f2c23d a1ce1596 a51f610b 3d9f143a b8a3fe97
b248058d fb75dda5 e3280856 f563cae1 84605a78 4dc4fce0
dc2a45c7 16833cc2 c3ea6487 18cae003 94da0fb7 5bff9281
f55c865b fb75dda5 2e1c85e2 9082022c e18192b5 0ad07f34
1be5e9e0 c5944193 8bc7ac81 6004d76d ec1438db d4ea274e
a4736bee 16833cc0 c3ea6485 9082022c 1c92ed98 5bff9281
f50bdadf ef96010f 5cfbdb3e fba4387e 4db6974c 3a04146f
94f05c2f c5944193 10fd19d6 6004d76b ec1438dd 5bff9281
195450e8 fbec3420 78d0e396 72c42ad5 b0acc891 d46593d0
c6dcdf4a c5944193 46a8963a 74a2364c f8b2d9fa 09d311e5
b4ce4f45 40d8f67a 030ea50b 7245b49e 20deaae1 787d0247
78ec48d1 8c1e703d 0f22a795 74a2364c 2639282c b7e3867e
cf4a82d5 1e334357 cb5a1b13 564f8e8b c430f0ab 0a10071b
72b903b1 de4ee398 5d723430 6aeced6c 3877f30d b7e3867e
f16d1c38 94ddcc1d a72413eb f642c8d5 ff68ce3f fec749dc
adfa0b0b de4ee398 edb73c72 abf2f8bc f969e6dd 68a08ec0
8210124b 6f14c717 a88fa98d e0443bf3 1978fee3 7bbbdab5
2d40c9c2 84f08a43 b70955ad abf2f8bc 52ce3db0 e81a4c09
b2c4bb92 1349711b 9075a6b7 2b2c5ff6 233836d7 375d43cb
6d83b454 0471cd02 378812ec 6c326b4e 950eae46 e81a4c09
c26cfdfc 3996daa5 80dfacfa be487429 9029a683 31c8f99a
e8f01a25 0471cd02 bd38bb5c 503e681f a902ad17 6d69e279
f15178ad f5ccbb85 241fd887 85a80e52 abc9dcf9 4a52e63d
b45101c6 3996daa4 80dfacfb 503e681f 7e5fbab5 31c8f99a
e210ebc7 c33e27e8 23add5fe d758d373 2c8bec7d 59137550
8acb670a f5ccbb85 4c85cdda 85a80e53 abc9dcf8 31c8f99a
dd07b4ca 386e7977 77a050ed f0098715 810a178a 85355087
734e3245 f5ccbb85 ba029219 52da415a 7cbb93f1 c84dacd7
6dc6482b 9c588e2a 934e8046 97639c33 8685dd2d 924ab142
680152e6 d95129f2 969f006c 52da415a 433c0042 d302cc74
e1909798 18213d28 a1684b75 a892fe6c 736d8d9d 3c7e1931
0eec42df 4e080a51 01c623cf 75c53173 64237069 d302cc74
2b1a2d0d 355e8e41 d89a2979 14960788 edaac283 a1e51353
ad17c4bb 4e080a51 a3ccad6a 678557d4 766316ce 70f94a11
dc14cb65 07414e80 f9ea9eae 0f30c18a f33c870c 598d333a
954884ec 382e0fbc d5eaa886 678557d4 9b891151 48a60a46
3ac54d09 98f70f5d d73926c2 2841646d 9b42621d aaaf8cac
d8cccbe2 e2004f71 0fc4e84b 1a018ace e60dcc4a 48a60a46
9957fcc4 b70c05b7 d07c265a 41991234 908eee8e 018076ca
523b46bd e2004f71 85706c8c 392c49da c5200f5e c2518709
cfb84769 f61d35e6 a632f87d ceb9ef47 1fae13ed ea402078
91eab77e b70c05a7 d07c264a 392c49da e83bb560 018076ca
fd14cf17 8fd2eaea b10ebdc3 d004b5b9 bac90417 d8eca9f6
247811db f61d35e6 916d160b ceb9ef37 1fae139d 018076ca
3aa9d0ba 1afa9025 c6578a31 380c157c cdf94394 fbdaf4bd
53450be2 f61d35e6 2ab02ff3 9c915885 4d86a42f 76bd6cf2
b7f0f1b8 962e0831 3d8440eb f3c1c3af 06349546 cad82383
de2293ad 1afa9024 c6578a30 9c915885 69640e6d fbdaf4bd
f43b7f51 fb23f163 92c623a2 a47c52cc fe9712d7 8913ad69
86f22686 962e0831 4a831225 f3c1c3b0 06349559 fbdaf4bd
9de8476c ac48de53 df518d7d 153496af 1924bba6 4a3e4130
ef6fffec 962e0831 e5375b1d ba87628c 4f723465 92472dd5
40890f68 7441b2ee 4fee4840 8fbc7829 83ac5522 12d4e8b0
37169309 ac48de51 df518d7f ba87628c b6974f85 4a3e4130
2ee44203 7710883e d2843fe3 a0513735 ae8e356e 7cb9a5dd
1863a6e8 7441b2ee 0758e1c0 8fbc782b 83ac5520 4a3e4130
42d6be74 24c83af8 4d2de83c f4bf29a5 48299cb3 8fbd1765
1357271c 7441b2ee 1da4602d 79b1686d 75a14566 410ac0c5
cd6e0d90 f3557dcf 8e524286 faa1dca6 a2329229 1e205181
58a30323 c0c4d46b a92106a9 79b1686d 212226e5 0afee4fa
95950051 49420a6f 3a5b5940 bf05f58c 9430651a 14326568
8b5981c2 769fc862 1f7a1aa0 a8fae5cc f069ab45 0afee4fa
e56df2ab 6ac060c4 9d7fc0d5 652fc862 299c2e85 b7131189
197fd771 769fc862 81206877 94584a7c cccb04f5 98d8b24d
121b938e 4cfa017c fcbca7d7 903270f1 dc819612 6f9a1823
36b474b5 6ac060c0 9d7fc0d1 94584a7c d8ebac9b b7131189
f3cdaf39 8187fe1b 4f7f4df7 ad5321c4 2c12c246 8e4c2568
ca929a24 4cfa017c bb45a16d 903270ed dc81960e b7131189
f99cead4 b74811bd b48bda86 29fe6315 9eff9430 adda24bc
be96b71e 4cfa017c 4f39ca46 53392059 1f8ac6ba c3173cb2
fdc3bdcb cc052984 c76e9de1 1df944d9 aaf8b3fd b5820de6
d05baf10 b74811be b48bda85 53392059 e438d77c adda24bc
002a0a2c 98d8adb7 068dcfc9 756069f5 f6b512a2 486bbbfe
e59b9491 cc052984 cfc6e2bf 1df944da aaf8b3fe adda24bc
8ef8a23a d0218d0d 75b53b2a 9565faa5 2e7ba00e c98a0974
07eaa175 cc052984 69919e5d 9634ff86 213508a2 4fab115a
092a2d18 67e69bd0 704e6529 aa9c909d 9a4b5516 55836c50
ab2e951d 45daf6d5 e04e410e 9634ff86 a6e33bf3 e36f2532
ab2bbf1c 05ba940b 06795f32 c06d1c3f 4286916a 419e388e
09daa2a2 b3a6cb2d 16327cf6 38a8d6e7 087f1290 e36f2532
e43fb836 cf82ed97 7d6bf6a2 f64d63d3 bafe8533 723c8cad
1a760f1c b3a6cb2d 014fd01b 4affb6c9 7a2872be f0c3888d
9aa68266 bcdccfac 7d930a84 ddcbbae8 615d0ffb e72709c9
3275d849 3f65bbc6 8d8ca0f1 4affb6c9 f66903d9 d8c05fd8
1825a06c 4a6105c3 eff5b219 2141ab6d 8edf7dee cb6bfc7a
0b8e03cf 5758e451 e5b1ff66 33988b4f 8f0e3e5e d8c05fd8
3cc30591 214db336 105c6d11 f88bfa83 7e00796d 876e582f
85a7789f 5758e451 66493b8e 102cf8e4 acba4df5 56e92480
289da52b b73c5ca3 39845404 28034b4e 5c9716ed c3b90baa
b55cbec5 0f568b9b 3e47544c 102cf8e4 64b8a4bf 6612e2da
b6f2cf3b 8c3d905e 3ed48b61 b16300a9 b34a27d5 e7ea1e4a
370a33a3 fea8c535 cfb91ae2 8df76e3e f963326d 6612e2da
7b7204ec 0f05a6ba 166ade34 a725786a 23d445bd b55c9b5c
1f68aaea fea8c535 e7c7bdba 2a0faa32 5e9bf661 4e707b92
31c7d267 a9e98705 be3b13e3 5b6f3e8e df9e0358 b3bfb7b4
e4444a24 0f05a6b9 166ade37 2a0faa32 aefe97e5 b55c9b5c
1f6ac4ef bb43fb7c ba66850c 4296c415 d4dd7658 9d12a13f
3724fe8f a9e98705 b086ff8b 5b6f3e8d df9e035b b55c9b5c
91c81a74 455bf48e 2afca2aa 207fd447 001c7f26 5e7e9c6f
89ec1d25 a9e98705 c64ed123 d341b3fd 57b08e2b 0b9478f4
94fac636 7225d90d 288178a4 2e4a6ff0 0e29c493 497be7f4
dc06f9be 455bf490 2afca2b4 d341b3fd f322189c 5e7e9c6f
160541af f50d1500 29a00f1a 541a1341 f750f417 cb846063
83ffbdad 7225d90d 1d828f29 2e4a6fee 0e29c48d 5e7e9c6f
2108ea52 22da2a50 23ff542d 7a5b994d ab4c65e8 9b35d15a
327de57e 7225d90d 7300a77f 9d9f8008 bdfc2b6b effcc4bd
927aa883 167abf16 4a8b2dd6 e616c563 176340b9 b782cf9c
86379a8c 4337b37f 4212cd0c 9d9f8008 6cea05dd 5bb6bb4f
249b3734 7964100c 16c34629 3f6cf262 acb34aad ca389302
b5151f78 d6f9dd11 d7dca362 aec2027c 5fb787a8 5bb6bb4f
5a58844b 3e17a5be c00da24c 5cff19b8 046c573d 9f331a2a
b608e0e9 d6f9dd11 28e3daef 86371f8a 77429a5e 58ab44da
ae4f4029 273680d7 422c3be4 193ae083 1010e67d 2fe82519
2644d5d3 eeae5e2f 10b459d5 86371f8a 8f1d1978 c8e771e0
325920bb 4305c8e5 4220b692 b9ca2727 74e7e1f9 cbf2e859
314cb906 7f0208fd 81180f07 913f443d 981542cb c8e771e0
52123088 36579525 de33b19e 3d478cf1 fd381fee 914784cf
4a9a4647 7f0208fd 97662c47 739da191 7ab7a767 b3318ea0
0543ca17 d8759f13 b30c422e 8b10cff1 4b6f5cef 145d3d51
68ec4c28 36579526 de33b19d 739da191 b3e2328e 914784cf
c8ebc8a4 93a0e3bf a2b13c6f 4dfd9406 365743cc d9f53fe5
80597389 d8759f13 3011bba8 8b10cff0 4b6f5cee 914784cf
2b7e6f38 9ce749c7 2f8a93ec 90b8fd8f 1449c05f 4f5afcf9
4d4fcd05 d8759f13 6b18453e 3db36112 fdccf20c 5c513a41
377d0a26 4ef6e76d 2d9c1c1a af0ccfa3 86f2519d b5056ff1
1416b9ed 41f4aa2d f2997002 3db36112 144dff2a 05084ea9
6204e471 4234bd3f aa509986 d5ec55ea 8649c84e 39fe9931
5ef233eb 188dbdd5 abe067fa 888ee710 a170792a 05084ea9
8f25457e f7b9268f 2e19a996 5e92ccf0 57b8ca05 a46df8ff
70c17ed7 188dbdd5 c12d32cf 8f448cb2 a6ba1288 2b3b0394
ba054580 3840e460 cac5352a 2cf5d852 ee9d3a0b 43ae8d64
71333676 b0f801f5 69588eee 8f448cb2 4d2c6ee8 2ac94b35
c825db54 c8fe2f7f 7b93f551 f947b6eb 2387e16f 04969649
e67a0629 b0a6ba56 6906354d fffd5c8b 3d95bed0 2ac94b35
8ec977e6 8ff01ae4 dc9081da b871ca3a 19c38933 dc57efeb
683a1bc4 b0a6ba56 e3c62088 32867f69 f0ee9d32 a48956f8
094108c7 6a568b16 a4407e41 900bb696 5e420fe7 23798c4e
64707cc9 bc87908c efe70a72 32867f69 fccfc7f8 a8c331f5
025b18ae db874187 0227cebc 60a24e2b 91ad0a5a 2f032612
859b0f69 b8c1b5c7 eba12f39 932b70c9 5d62c878 a8c331f5
e2ade60e 6adac6e1 996935c5 e46c3ef3 640ef739 f7b4a269
644eb481 b8c1b5c7 4b7246e2 fcab3929 32e28198 49168a1c
f00144dc 3b788e6f 2d937d26 ba40e0df 3a222914 1aeca28e
daec9cf4 6adac6e0 996935c4 fcab3929 7cc9f0e3 f7b4a269
3cd8bcba 98cbea1c 4aff41bb 49eabb9f 945c9ee7 d6355aeb
1d59443b 3b788e6f c8cb7d4b ba40e0de 3a222915 f7b4a269
3819cc48 668c9df7 41e89aaa 039c9995 a8ea40c4 298243d2
c18950f4 3b788e6f 1c1c8930 dceef04b 5c8c3980 2b64b6a4
ea28c406 688230e7 0420569c 76e970ef dd9fa9bc 6ec0a2f0
c36fa582 668c9df5 41e89aa8 dceef04b 7798291a 298243d2
9e8e2002 c536e5ad dd7eefd6 88757a09 805ef410 1a6646f2
ad6a2524 688230e7 4fe637ba 76e970f1 dd9fa9a2 298243d2
71446667 5bd46ba2 89e0c000 50c3dc84 ce0ac889 80836151
50ba8eed 688230e7 bab69b42 e3e53c45 4893e516 d452e81a
339fdae1 bfc73277 9002c88a 3e14448a 907f10a3 ec88b5da
0a1f0076 6b76abc2 b9420066 e3e53c45 4d8e686b 8ef76681
f0225d60 d0993a70 f7fd3d2c 0605a953 cac4c067 e426c238
9af3f9d8 b243256b 60778ecf 730174a7 dd6a2088 8ef76681
4c012620 4dc3d165 d09baf0c 2137ee0d 68dbee20 3dcd3d40
4e1fa617 b243256b 2f1b5b06 c370720a 6d1b2625 5a1b394a
73e8fe5a 694dd55f aec939aa c37d283f 8a912816 67f9abcc
29c9a21d 4dc3d169 d09baf00 c370720a 8a9c7227 3dcd3d40
b6963eaf f3c49074 f1d63c16 4a09727c 9e6bc942 a2876b35
29dc68d6 694dd55f f415ab36 c37d2843 8a91286a 3dcd3d40
57fa6ebb 3883103c c8aa0aec b290984f abb1a34a 14fa8bd8
848c8c3f 694dd55f 9964cf8e 83a10883 ca4d08aa 909dd9a8
d39cd499 b4e555ed ad4faa95 5d705706 44516c02 3e7c7080
00ebde4f 3883103b c8aa0aeb 83a10883 9a803386 14fa8bd8
3c23cf13 905991b9 3ca86845 0819ccf1 fc8cba21 d1c36b05
f91a2fc1 b4e555ed 44cc4f3d 5d705705 44516c01 14fa8bd8
45c85227 1285bdda 0acdb7ab 1a38990f 6cf93be0 5363d7d1
d0f9df9c b4e555ed acad5f92 f16db734 e84c8c30 3d197b87
9e3b2ba1 0e5303dd 3742c6ab 9e163774 14526a28 04b20ff8
0e08f0e4 2608783b 3e407246 f16db734 7b29ea66 e3e854ff
b25dbcdf b844f1a8 486deb7a 79248c79 3aab5c3c bbc96552
ea7c8d70 fef97eb3 e6b174ce 0d21eca8 8765b1f8 e3e854ff
605a0c7d bea1218c 8cabe961 17986bff 5e746bd5 d27f87c4
f43fcafe fef97eb3 ccf3b65d 6f07b9d4 e543e484 fdab1370
3da5ada3 be2ae93e c54cabb6 798435db e74d21d3 29b4f837
e9cda710 137e356e 2174fd81 6f07b9d4 f1ceaddf e0597e9e
1981af16 32560cc0 2a1e06bc e2a48255 c25eac27 c696c02a
3f4e11a3 b024f258 822e3ab7 448a4f83 da435b89 e0597e9e
e23bc7ac d534a27f 5c6e5956 27810656 e459c26f 74574212
e8bedfe5 b024f258 397e0979 702befcd eee2fbc7 37a9b0d0
4ab141c1 19c1f139 1713e03a 449396bd 874b528c f9ce57ec
ab402d27 d534a287 5c6e59ae 702befcd b3f32bf4 74574212
bce56785 488c1f9a 6c123535 90420c0e 62e0fe9c 0f9a7190
c728543f 19c1f139 909b0a10 449396c5 874b52f4 74574212
265b211e ed4f2499 0e2114b8 de2a1804 494fef94 cc307b9f
7d156125 19c1f139 faafc119 a73dd3af 64e5179e ce6a7709
77990afb ef3d1830 9efaf91c 20d1e3d3 b7b41442 5a8a2caa
7f4f6db3 ed4f2498 0e2114b9 a73dd3af 3058243f cc307b9f
b4148c86 88a8d42a 38ed8b7f f2dbc095 c20a731e 9907aad4
e1235dce ef3d1830 0c532811 20d1e3d4 b7b41445 cc307b9f
886b62f7 a3f3a2bd b270f9d8 79feedc0 35e26fe0 cf673485
d75680b6 ef3d1830 febe4357 6005bda1 f7604a30 fa45a6e5
8116c6dc 4f1334e3 02fc4fb7 bdb829f4 f1a4abd6 0bd35474
e27412d6 a3f3a2bf b270f9da 6005bda1 2c193f81 cf673485
c4dffe71 aed1e37c 3ee770b9 31722701 9aa917ba 4e1a6ce7
45a2a62d 4f1334e3 5e906f86 bdb829f6 f1a4abd4 cf673485
69bad4fa 287dea3e 9838b556 d7b01252 f237252c 785dacf5
e4ecaade 4f1334e3 ff566bb4 508e2cec 1c92aece 6e293877
8e5d5dbf 17a734de b19ff56d 042cc436 a4b6ca44 b039744b
30838347 a390c10e 13d59e58 508e2cec f01422a1 ba4611ee
7c3dc9d0 c6e495e6 d767ce82 9aac5b7b 8b62e716 1b840dfd
ddffd5c2 55afe7c5 e5eab893 2d825e6f 8d185023 ba4611ee
a32fb3d2 d195f319 d3875f4f 7ae938b8 66692124 e7dea804
6baa9b2a 55afe7c5 57bd4baf 9db1e10a 3d2bef46 0c135f02
79813157 56bcd648 90a9ba0e 278de71d dc53a2e4 8814fb60
a3abffa0 b0f41f3e b2e6b350 9db1e10a 666fa4cf c4123b88
fe00e826 d88f4db0 68ca12e2 520ca099 0ba8c82c 7244ee70
48563dda 7ac92abc 78db86d2 c23c2334 39e266f5 c4123b88
0522adfa d8fd72ae 6eaf6ece 1ebf205a 44adadee ff5b5793
f415ad28 7ac92abc cc9b36dd b0892c44 4b576985 7851ab7b
8532b34f 502ede87 f9a2a446 9bec2cab c1fea11e f295b5f4
731f51c0 d8fd72af 6eaf6ecf b0892c44 ea9ba1f0 ff5b5793
a5c330dc 2f84cc54 a6de377a 08bb8754 31d3fcd6 d2643660
88fc5128 502ede87 e67cc2e7 9bec2cac c1fea119 ff5b5793
fe8979d8 8d824867 fa4e4faa ce82068b 59e7f11c 608e534b
b7724447 502ede87 27e2d94c a821e2b1 f2336f04 c0d542fe
1e6afa8e ce98c384 36c6ccff 5d8e024f 2b4fa0aa 3379dcdb
c540d390 6cddf3b5 1b11f47c a821e2b1 dee04052 b2e7d529
6be4cd93 5268e199 e43afdfb bece4a48 70947150 f16de9c4
286ef17c fad04962 8d1c4eab cb04004d bdc5a2ac b2e7d529
e18a3f7c 7fecec42 d31d15b3 a9b4df52 526a9a90 6ef1890b
7284e306 fad04962 5621b090 b4c24d2f c203efce e80dc752
6c5fb0f5 3e2b1c92 8367dc72 a67d2f2a 193d18bd e01bb6a5
5549cbec 434ede15 efbf27e6 b4c24d2f 0b827abb cfc0efb8
4b3deeb6 dc52b4b0 ab9eb378 0221ef32 3c56f9be 9a9afd8c
1e67fc83 5d1bd5b9 f1ea2c4a ebe03c16 54a00b83 cfc0efb8
1d20a93c 99e7e4e8 42da584e 131f62e0 ef132454 361f1fb2
2faba170 5d1bd5b9 8626692f b986bf7d 06c688e8 fe0cb25b
1cef754a 4a2a5ca7 da522abb 784a6dc6 1c7c3e7c 8c85b4ce
06ede813 0211f1ae d92c4d28 b986bf7d ddb0ecf7 d74afb38
53a7bb87 1f11cc94 b3e03577 1591abdd ce68dc9c a8ff3885
2c12782a a74ea8ed 7c73146b e3382f64 870e7cfe d74afb38
8a456f10 efcb0b8c f776586f c37291a2 6fc02798 6362d387
ef921187 a74ea8ed bff3fb0f d5a3581e b1950b84 14ca9294
488647ad a262ca80 a4cb35b7 f4140e80 58a6b8bb 514f7edb
983a5094 efcb0b8d f776586e d5a3581e 7911ee24 6362d387
bdb385c6 57f8c738 0e2dfa36 c0d0c515 a29877e6 a47abcb3
7aabeaf1 a262ca80 badf9963 f4140e81 58a6b8ba 6362d387
0410b2e2 239ce235 a971c520 495ff762 64b33a8c 248978af
cc5b9fcf a262ca80 288fed97 428f6689 ee3dd0b2 d592a6bb
dec2e6e8 54760867 f12112f9 08f7b7e7 251b7a0b 3ef36c38
3d4041db 239ce233 a971c526 428f6689 6f63ab67 248978af
f8503808 36e6d2f1 4823b3b7 28967b5d 38cbe32b 1861b2de
c4b8f27f 54760867 de9b2f72 08f7b7e5 251b7a09 248978af
f4b81a42 d1504b69 88857662 24128fa9 8ed59f46 89b31e4b
13400477 54760867 0da3356b 87391671 aad5db9d f3718ea6
a542cffb 4a9ef80c 0043a693 686470d1 d1b21dba 641e2acb
932783e8 e05fa7e7 b98a9aea 87391671 3eef7b1d 73160939
64c3d792 4fd71e80 c53a3994 e9b451e8 4035275b a42df341
b3f82deb 602c153a 39f92837 67f5b072 de23dd1f 73160939
ddafc63c a7672640 862a5f66 98ed7eb6 99fc00c1 297d4b16
fa606198 602c153a 41616c18 65091662 dcdf7b0f 3a8e454e
3a7c3f0a b84c3884 bddd5f4a dbd7f83c dac6864f 0dc139be
e9936fc0 a7672644 862a5f62 65091662 64186815 297d4b16
edd97b04 c5c0a7ea 17f40c52 96b9dbf6 983c362f da647dac
1ec04da2 b84c3884 990141a2 dbd7f840 dac68633 297d4b16
d0b914fe ebb3cae1 2a76fcc7 4a663c08 7e1f2cd9 437ca90f
fe480ea2 b84c3884 79890ea3 ee5d84cc ef4cfabf c9f50817
203c935c 731b29d8 d1b2fc77 bafe59da 8e87490a 24614898
74c1afba ebb3cae2 2a76fcc4 ee5d84cc da24941d 437ca90f
d145d612 68db943a 3bbb0edb 6a310e08 4008753a d5180dc9
472172cb 731b29d8 b2de1ffe bafe59db 8e87490b 437ca90f
d5d8dfb3 bf04e2df c1c18383 9f83bf99 1fe1764c 82c610a1
04210fed 731b29d8 0dde489a 4cc2cc4d 78bbdc9d 007cd42b
b883f583 8c5755e8 5f83689d 3352d6d3 e2134797 526e13cd
f902ec5e 0fe3aa62 7126cb22 4cc2cc4d 9d835d17 fd5f3798
ceba4b6b 3c3d586f fdf86e4b 4585c52c 3f355f9a 405f0c7e
73ba708f 92ce4f11 ec0b2e51 d74a379e 060ba6c6 fd5f3798
b59c91bf c29e3c28 f9558714 6a84ed67 6b959317 43fb8d2c
3480d681 92ce4f11 a905f42e 030317ea d24286b2 ba659197
baaf2f17 6201cafb 3f35829a abdad78b 011dc761 8d1229a1
e54cdb68 6c53cea2 5798759c 030317ea a9c40703 6ba99c7e
6fffa7b5 b1b260c0 cf770181 09c1d5be 292803a1 aea34282
aaf57948 3b8f9b89 004420b7 357ab60a 9fbda6e2 6ba99c7e
c437be40 2f919ebb ade092fd 6b8286a3 f54b92b1 30bfc1f5
731208a0 3b8f9b89 b9fe97d7 3856ec2c 9291fcc4 b24eed9e
8120de38 87fa84cb f244aa50 56117613 208fd06e 5e37b115
abb66bee 07673106 85163d50 3856ec2c 4ec84a49 6aea8ed0
e2912731 31f45996 0a3fe2a0 3af1eb6d e0768496 24453da8
ac3e9441 ce0b9008 4c7a9c5e 3dce217f 4b508712 6aea8ed0
89417755 fb4245da 9623084e ae340249 0de15e09 3f27ad07
930eca9f ce0b9008 a36add9d bea14287 c83fe4ea 55dad00f
4a4e941b 12a890d3 ef1ecd2e 7cff5161 df2a0d20 cf7cbd70
f9f3b797 fb4245db 9623084f bea14287 1d741ec7 3f27ad07
549ac60b e47ff519 1b9d7ae8 b09e0a22 c532caa5 d1a8ef63
ba15846c 12a890d3 7fc9dd47 7cff5162 df2a0d23 3f27ad07
985639cf 4253764e 0ad80c54 fda220e3 2e22615d de0bfea1
9f63f0e2 12a890d3 5a23eacb 3c7682de 9fa3de9f 1a51d98b
a0f07033 fe163122 15c01c72 d8eb1b5b 0b6b5ae7 8156b1d7
5b39d7c8 42537650 0ad80c4a 3c7682de eff6c360 de0bfea1
8f9b1998 a9270cef b19a5f02 fbf196f5 85608b7c ae3dd872
ffad3f45 fe163122 b69d4b38 d8eb1b59 0b6b5ae5 de0bfea1
2593a9c5 8ecc42fc 712ecd00 09e84825 6dde1bb0 fbefceae
b4c5d59f fe163122 01f4bed1 4d12a29f 9e92e323 9563147a
1a852ace 5f4d6251 ae1201cb 26c463d7 3af16f29 e1dda9d2
d1c617cf 46cafc57 b92873a5 4d12a29f 5127ae6e f060d62a
78c04208 beff00c8 f6747ad3 f90ddbd1 969e093e 3909c054
b1a95477 6ba03ac9 9442b53b 6d356317 71006fe7 f060d62a
4c57eee4 09419b3e cc468549 09aa21a5 b07c4cc4 de47eaa3
f44ce6ea 6ba03ac9 aea724b2 b9639fb7 a5569347 b58564b3
631a85d2 f7d57f23 ad9e9b5b 38884234 69f79562 a3f4a108
4f665956 a0eb0533 65ec1b4c b9639fb7 e81c48ed 0eafdb0f
c891385e 91c04002 6e22cff4 ac86558e 37843d1f 498b4c8a
8fb5afdf 483daecf 8d3ab0b0 f8b4922e a9cb4570 0eafdb0f
d9790dd3 08db990a 55a911e2 6c01fe8f 7e1c3f15 9478fb5f
260131a8 483daecf 154f2626 a01a7cd4 f165ab8a a71b4579
d4cc4f83 9a30db31 6c184c4d 18e34e72 0afe8fe9 2d2f09f3
15628f8e 08db990b 55a911e3 a01a7cd4 b207bd4e 9478fb5f
409438b0 d00ca0c1 527dac90 70dd4d65 3724ca4e b9777ec7
6d9bbd2f 9a30db31 c74253d9 18e34e73 0afe8fe8 9478fb5f
f023ee75 2be875db 93eda2ac 1d92f462 be47a825 89cc36ea
16ef0f9a 9a30db31 22350c40 9d866235 8f9ba3ae ef0c49e8
71bedea9 e5369f12 e1905ba1 28d54530 5eb62fb0 f48cf7c6
5e0f4cf4 fe76841c 4673536f 9d866235 ebe508b3 a7ec0a86
362d0593 642dd3ce 395f5b24 9a75c66b 894fbcb7 4d58bbfb
dc99b4ec c756c376 7f531405 1f18da2d 697bb0a9 a7ec0a86
cdc50646 a2733050 2886c51f 8e42f8e1 df3d2fbc d49eb1df
01a99634 c756c376 4da3363a f05cffb3 863f9537 7adc285f
23ca00b1 ea75a9f0 c47e335e f601b61b 05b66464 a2d07463
84cf7169 44ab2b6e ce5ede23 f05cffb3 03eb2dcf ffbacf02
1d3dff24 5496bf91 ec9368e3 d59a69c5 5d5f64f8 2ccab126
ce4d8101 bf8984d1 357c719c a6de8f4b 55695d36 ffbacf02
7934e213 6823c6e6 48a61cc9 dbd0dc4b 4782c859 bab6194a
a4bdfbe7 bf8984d1 9f0c5f7e 4a452f75 b9f2fd08 954ab564
9dd8187d 6e5745c6 0071d75f 1a968bc7 c51d0074 9f90b328
6018b53d ab5d3c87 8bd8e7a8 4a452f75 95cea546 51effbbe
380c20a7 75b351f9 ff46a434 f95376c3 1e677048 bc6015dc
d583ce45 6e0ad621 4e8f0d0e 9cba16ed 43319c5e 51effbbe
3c792bdb fe569aad accf7dda b8285492 d7ff1bac 19bc0556
00683dff 6e0ad621 3c933157 16cf5bff c944d14c 84040805
a84ed8e3 e80ec57d 171b3190 00d9f033 6f0ebf0c c63812cc
9dd030ac fe569aac accf7ddb 16cf5bff 791814c1 19bc0556
90cdcd3a 1124b870 26bc5148 7af5b4b1 e218f683 febb0716
77cacf79 e80ec57d ba97220a 00d9f034 6f0ebf0b 19bc0556
45df96af abb4c4f1 0f498753 7ef9d39f 4d849d2a 2129c990
0269ab52 e80ec57d 4cf386dd 887a3e8d e7ad71b2 6c1f617f
2258211d f6b73cc6 ead1e69d d4ceb5b6 e7b3fb01 98936049
4f5f03bd abb4c4f3 0f498751 887a3e8d bb077038 2129c990
6856cc65 4df40c05 1b850b4e bd2b4c4d 379151bb d29d8d37
9be288c4 f6b73cc6 524a7f64 d4ceb5b4 e7b3fb03 2129c990
b67814ec 5f12ae24 688a4719 c55ee206 5e862210 0ea7e36d
090e2e7d f6b73cc6 c12fd5fc c74a2bda f437656d b3c56f28
f5697e91 feee0bd0 ee2c0576 6592f49b f3408d64 ac7d7486
699f0e4e 5a0c6807 6d94813c c74a2bda 51985222 d3544f1b
f58eaa79 5377653e f78a269d cf39785d e1f02f60 40b8a984
66624ce7 bb8087fa 8c186ec1 c1b4ee81 57669778 d3544f1b
56386318 44d95db6 8b653178 3898df81 18b39030 d64cc81e
de41d152 bb8087fa 743ceb30 6d5a3873 fb88418a 6b77d2aa
e8eb63f4 d9b08066 1761a2a9 f5ae526a d5851ddf d5617e1f
637acbe6 44d95db2 8b65317c 6d5a3873 4d7177c2 d64cc81e
85844723 78605959 c91da629 788c81d8 c657a970 b80e5ac4
ebc6d5f5 d9b08066 160ceca8 f5ae5266 d5851dd3 d64cc81e
9d805632 b4436f23 d4b7e770 07d88961 fd66b712 8b0f9d77
5a0efe48 d9b08066 b9440834 2ed2dc06 0ef993b3 6784e3a2
27c5dacd 8fccbd37 2ef84cfc ddde9a3f 2760a44d cb5006ef
b685809d b4436f24 d4b7e777 2ed2dc06 d46ce275 8b0f9d77
5690c690 32bdfd69 bd57f8f1 fe4caacf 63e3d46b ba051abd
679a4155 8fccbd37 ef383564 ddde9a3e 2760a44c 8b0f9d77
da13a31a dbe67863 8d977f22 ab3312cf ede4eb53 72c0a4ce
6c19c053 8fccbd37 d9bdba78 eef5e71b 144bd969 808c1c73
e341eb7c a56079e0 b8d71f8b d4a2b2ed d6a73199 31034c88
8529314a 9714023f c1650572 eef5e71b ecf06461 69bced6a
9abfb3e2 dd6c3ec7 bd98b696 e0489bae d1452b65 74406e70
874330fa ae641174 f8151639 f15fe88b f35a6bf3 69bced6a
9d86ed6f cc89ddb3 a86a600b 56a7daaf 768c9519 6b741908
96d07e49 ae641174 ca87accf 4eb4c3d9 4cb140a1 782fa3d8
aaa6d160 555df0c4 9540229d 9d3f0432 06e7c421 972ccc89
d50d6a7b 48374e0c 2cd4f3b6 4eb4c3d9 d56c03c9 3bf2b7ea
74940b6d e3126b01 b5636c4d 5b74150b 2182cc3b 2d80017d
62e6bdfb 03f451e2 6717ec58 b8c8f059 23103048 3bf2b7ea
763c42a2 1102952b 48c269b7 c292bace 6a75b99c 10332a9e
69dbfcdd 03f451e2 5a34ad76 b5975cab 2e4f9cba 30cff6c4
0683b8c3 b24e493d 687fed8d f2a3bd0b 5a44be51 90a3d2b2
49272087 11029523 48c269bf b5975cab 1d705ff9 10332a9e
0f55b076 747c1118 977fbd0d b1558fe5 da4144d0 9975da1f
861340ef b24e493d eb8eb5a1 f2a3bd03 5a44be59 10332a9e
2ee0cd61 98f74dab a2967123 8ce94daf 03794a66 27f6e9d9
66f300fb b24e493d 882f75b4 19f39367 b114903d f0d36a8b
f4b4b6ee e210ce78 48a6e299 f0d295d2 7f42921a 984bda32
b1d683a9 98f74dac a2967124 19f39367 966394ae 27f6e9d9
4e002b60 faf45aca cf9dc0a5 6deedf82 c59d4b98 22ff47bf
4b098505 e210ce78 d871f2f0 f0d295d3 7f42921b 27f6e9d9
0f4b8f0c c2bd9c2a 037bd7bf c95fe022 b963355a c30a3324
c3a49436 e210ce78 23d685ef 6a1d90d8 e58d9710 af5bf8e8
5dd5b606 2e9361e8 60c722cf 0f6bc0a8 7f5715d2 4f982ab6
aff55ffa c2bd9c28 037bd7bd 6a1d90d8 1a2145a0 c30a3324
f022c0b7 3d04872f dc2ff3a3 b4746e61 cad994a0 e26f5c19
d147af94 2e9361e8 ef552a7d 0f6bc0aa 7f5715d0 c30a3324
aaa30393 0ec81a66 3ba18014 b4d3fa69 e4a2779e 19478455
24e01d4d 2e9361e8 1bfafb85 133d0f54 6301da2e 36ad81fc
2b4f5337 1cb676c4 a2c0066a 261ce460 99f110a2 0e622289
9718d0f6 7e44814b 4b2d1b27 133d0f54 acd0fb89 85554c47
09900e7c 9f4fa809 5e89e39d 1540170c bb10dac3 11b1fd6e
9d74bf54 b0eccf16 8585557a 191165b6 a6fc916a 85554c47
53b74dec 0672bc57 b70f4333 696731d5 7c14d3cc 7dd38008
19484244 b0eccf16 0191306e 53245708 ecc9a3d4 0169b153
d919e01c 21af45e7 64b00bef 1c910744 b2ff5de6 38974353
bcd407d0 9f6d34f8 2e10cb84 53245708 fd4a0db6 a4f5f4c7
8864b8dc b17432de 841da8b6 a174aa0e c4653e3a 28e18fb7
0470c3a8 fad0f964 4bad0618 db879b60 75e9c1da a4f5f4c7
c1901eea 763212bf a4ea38df fd9b1b19 d4546f0d 06a9334f
66d528c2 fad0f964 2808d305 d6e724e2 78897e58 c6501fac
47bb4d84 b693d723 134caf8d d46db98e fda2cd9b d9b0819d
a62c0421 763212be a4ea38de d6e724e2 ff2850f6 06a9334f
1399c997 a96c7e43 f0ac82d8 fa8f1eb0 e6270585 8d920589
98a2ff56 b693d723 644bfd43 d46db98d fda2cd98 06a9334f
07838ed5 1c546ada e86fd54c 9b9b8373 140b84bd e1d16ce7
b6070464 b693d723 42a868b3 53546d5c 7a9b1949 280cc87f
f454e75c 9958c046 e5032db1 22480e1b 649ff78d 98ab8b84
8e809104 d39c5c9e 27a7e30c 53546d5c 158394cc 108b5d1f
3d65600b eba1cc95 3979e6f7 08a4956e 40e24347 ef27c7f1
c2c9fae7 ea32effe 1e09506c 878b4939 c15cb0ab 108b5d1f
3b160e7b 51c95126 de2354b3 ca2ec33d 64409984 8361fae0
7e7b04da ea32effe 65d8ea68 e3f9769b a52e8f09 ac39a323
fefa27ee cdbebdd7 c94b5282 b23c0610 3360193d 5e7f1083
3b31813c 24b7159a ab5d100d e3f9769b 62a569b5 e97326c5
ea85317f 1e1501d2 ea2ebe41 5c8a72fe 6bf2c5fd 4dc4e0c2
4e32f779 67f869fe e8126c69 b8f8a05e 39a4bf71 e97326c5
773ee664 4e58ab74 8ec19234 fdfea3ed 9a42c378 ec2b9c01
bd638bd2 67f869fe a76150ae 0a2afb34 8b76e41b 1a225a7e
61f1bcf8 fc4369a5 c0b98ea5 6c661ed1 0bda7e54 688d49c1
4b6a4dad 4e58ab64 8ec19224 0a2afb34 6d969ba1 ec2b9c01
069f3efb 9fd48aea 7b85e3cb 6426c322 6f6b42e8 0fe3cbf2
e5576938 fc4369a5 3cda50e5 6c661ec1 0bda7e44 ec2b9c01
0a598abd 09aae4bb 3bc1e755 82555cac f7768736 d9640437
54819388 fc4369a5 ce286a4a b894c35a df28a3df 5dfd66b0
3f48c575 8f104743 6c9f7503 64d8c61f 11fb1d84 8a883289
d018f10f 09aae4ba 3bc1e754 b894c35a cdb718c0 d9640437
8624fbb7 ebca2020 67212c20 7ed91a65 af04ae1d 33e40c48
6ca4f3cb 8f104743 bd7b44ad 64d8c61e 11fb1d85 d9640437
894df349 e098f7f0 41b8f3c0 73a26472 b50ee834 b6eecf87
fdd9f385 8f104743 2e304371 e9c01fa2 9ce3c439 4819047b
53d257b0 71882cfa 645480ad ac7847c4 6ad4cb80 2bab77ae
032e3879 e098f7ee 41b8f3de e9c01fa2 2f6c93e4 b6eecf87
08d66f81 1f6c661c 458ce258 073fb651 73af7337 70af4f99
ce97ef99 71882cfa d0a828ca ac7847c2 6ad4cb86 b6eecf87
022f993a e5033e12 69e83217 cde7b57b f7c02820 06e00a2f
dac0f746 71882cfa fd6320f8 41914285 873dcec1 a2b9d759
42fa1d1b 4f4b2402 4a172f8a ffdb0479 77b28a4e 7438ff09
83bedf9b 33452ee6 bfae22e5 41914285 c9f8ccb5 fbc7ff84
615c2472 8e869aa2 2fa69e93 a29ffb67 1e22f925 0ffcf7b1
95672c46 5a332691 d6d82a92 37b8f628 bfd17819 fbc7ff84
f107d75c 57e78980 cc67422c 80fd3a4f 06e0cb53 dbafb6b2
64fd6cef 5a332691 c1b3ed39 c4f5ac27 4c9c2216 0a5dbf29
944e7733 855971ff 282f7fd0 d03f666b 56229773 eda4f935
b50f6574 57e7897c cc6742d0 c4f5ac27 42e85d3b dbafb6b2
f1f6b1ea 0d96dd1d 4a7b89d3 8250d865 8c0b8453 881c3fd0
a24538b4 855971ff 1ed9ba53 d03f6667 5622977f dbafb6b2
36775152 36148240 e3911093 9f56c4e7 a98fc5bd d4f6cb9c
6c5ef3df 855971ff 50dce32d 36bfb820 b0a24938 15b47dd8
950f65c9 773d5483 f2628a82 ceb39d1b f86a9c40 84d116ca
ad1c459b 36148241 e3911092 36bfb820 0066b97a d4f6cb9c
aeaf1d85 4bb0cb2a 8bb0fedb c2dc470e c9903f0c bf716eb9
c528b89f 773d5483 a2b8c650 ceb39d1c f86a9c47 d4f6cb9c
db7431d3 88b5881d d2550c63 2d305191 65616562 451d8a8b
4b8fce08 773d5483 2dddd0c3 a0a5093a 967c0861 5a51bd09
9f2e588a 7db06edd 130cf54f 86cbe675 ae43e684 672b08b0
42908261 68ec53f7 320cd7b5 a0a5093a 882d09f5 534ef160
f66db696 d9358563 0cb017b2 f8737394 69c90df0 cdf3ffed
68d0b819 700307cc 2ae3838e ca64dfb2 e2ecdf7f 534ef160
956e77a5 cd98f819 b61ed307 16afe0a2 90b211b9 bbb51624
486ad143 700307cc 0b852cd1 2372c899 0bfac854 73f4983b
4e33f460 39631e45 8487627f 61bf0d24 5b98907a 37d97a64
cee5603e 81a2a45c fa248f40 2372c899 195555c4 f57b2946
e217607b f02a8013 aaca0450 c589784e ecc19206 d4d5826e
c3b9cb52 01093327 7a8f183b 1e976135 24b0fc69 f57b2946
bf191c66 488e630f ab8dcf32 b38de76d 32212a21 2741dd97
6a3a4833 01093327 e20a9f22 51f80798 6bdf9ac4 5cf8aa2f
badd1dfd b282cc9a d7a4895d 96f18135 21a6f0ea c161463c
09fc4e9e 7e3907b2 9d3aabbf 51f80798 e6af767f 3f3eac82
5fb45ea7 8e1e9a81 f598b195 7049f457 dab9daba d7c12b91
b74bd9bc 9a85dd83 7986718e a3aa9aba 14fdeb55 3f3eac82
e09312bf ab591a37 f96cb20c c106a2d6 092c0c74 1dc90641
2605dd90 9a85dd83 c8b075b9 4c220317 fb7572f8 ae70a8af
34250cd3 3cb0e48a 44c6bf92 33d943a6 fbf3ed05 4409b91e
95bc737e ab591a36 f96cb20d 4c220317 8408adb5 1dc90641
9a3ebd19 b9b6d3ae a7c8797e 7fb813b2 3a888e75 ea1208d7
6de5b38c 3cb0e48a 6e854cb1 33d943a5 fbf3ed06 1dc90641
f7109f46 ccbc1f3a af2cbf43 f1aac10e a99f285b 77096352
5f0f4b4e 3cb0e48a 5f2044f1 e1bd7ac9 2997d46a 2f23fe81
a9135588 04a3928f e8a13a44 c7f90324 9fccea73 ff7b6ba4
0725d69d ccbc1f3c af2cbf45 e1bd7ac9 b988939c 77096352
138bf899 f877c096 ca1cc376 05800c44 498a1b1a 45e3c6bb
21615d7e 04a3928f 673332f6 c7f90326 9fccea71 77096352
b6f2cecb 142a09c3 0a54a31e 0c6f2139 6bd341b3 4a110d9e
679f5386 04a3928f 1add385d 65f39c11 3dc67546 31f76dab
58abe3d6 06941ae4 d826e501 1908531c 6b0542d8 51d716e1
c7caffe2 1e7abb03 000411d0 65f39c11 17fe8dda 91a2c1cf
cb3cd5c6 2be5eec2 48754eba 8f1927ad d0ad5608 d6b4b775
8c2aa37d 3e3e8ee7 20402434 2d13c096 5f1ed15c 91a2c1cf
fe836644 549b0b56 55e8badc d60ee36e 5e676d53 7050a50b
691faa34 3e3e8ee7 3f4d3f61 64c382d5 16ce931f 7497c882
d2104d85 e73d7a6d 176667c6 b5dbf3e5 a0a811e8 bcb09e4f
d0415090 e1a55f1e e0d6ee9c 64c382d5 71b060d4 cdc93226
0b5a8824 9c0ac58a 82746f5d f11a0137 d9d3db72 ead42b77
2c479171 88b4cd4a 89c77cc8 28c9c376 3dba2173 cdc93226
39a2cd98 4ade5132 74e0e2f1 105c37ae c7c15240 1c6972e3
eb1a9730 88b4cd4a b68a7e88 cc1f1b89 d96cf98c 0a943466
48b77b6c 38dd3ab0 65997f44 5e68f6aa 89f59345 3b6f0514
fde7d1b5 4ade5133 74e0e2f0 cc1f1b89 1b827e67 1c6972e3
b2f61554 733f078a 903cab80 8f0da3fb 9ef29132 c12e6b2b
6fb10c9b 38dd3ab0 06e38973 5e68f6ab 89f59344 1c6972e3
0786ed82 296a8368 c841f7fe 4d5f10d1 8575be74 acbed29c
cc8e4dca 38dd3ab0 d9f64e20 15ff502d c26235c2 bf5633b0
adcefac4 b87d9ad4 81f32dc5 1253877a 51a4e397 dde24f0d
f6a772f4 a53739ac 441c4d3e 15ff502d 560834c6 857f0c8e
f231ebd9 4c54aaae 726a196f fb341899 ca39b608 e2924bbf
95dcacea 5f3e6106 be151594 b2ca7217 f13d16fe 857f0c8e
e860a395 30bade22 813610c7 1b482e7d 0e3bcc7b 7de24f89
4543c687 5f3e6106 eeb2afe0 9668e2c6 d59f862f 55e066e2
864c8a22 c3b2792f 405646bb 6753e5b5 3722685f 67c22977
85c918af 6bb88a06 da3444e1 9668e2c6 c6196f2f 956ab8ca
e0242fd4 1a1a00c8 fb31745b c7544354 7a053d92 c5095e75
b047c96a ad3a0fea 1cb6c10d aaf2b401 fa8339e9 956ab8ca
9bac847e ffab6b70 8055faa2 2c409d35 8ea2747b 34fbcbb4
46f10a55 ad3a0fea d2c49e18 a216beeb f2673303 63dc7bd5
6a5fac70 aecb3b71 0f0c406a b98465d8 1b668cb6 56c4b4fd
11d6ba34 ffab6b50 8055fa82 a216beeb 00f457a5 34fbcbb4
cbc7b237 4f0ac34b 0d55b3d3 0fff09b6 4cdd78fe f75caa5a
0860d339 aecb3b71 d135aaa3 b98465f8 1b668c96 34fbcbb4
893b35e2 eb8056f6 d7ae76a2 8cec2178 5374258c b514dc13
cdb042bb aecb3b71 92e51b24 8d575013 2fb5b97d f12b5a37
23d8fab1 a78bd553 c884df28 14e97411 cb7170e4 e7f5c63a
898fc49f eb8056f7 d7ae76a3 8d575013 52cf54e7 b514dc13
4c7ee711 2d9df763 22f0e8b8 9d5d6f69 f8f7486c 8853db99
7139e098 a78bd553 9ba5f507 14e97412 cb7170e7 b514dc13
05e7422b d730be51 5ccf9e9b 0d40d7cc 027c3a39 f8106b8e
c0c8e00e a78bd553 2c74f59b d376eab0 0ceeee45 04e5dc87
69b2c526 e2410f1c 08b3aae9 4dfae3c4 42c60e33 5703f0b9
3c3d5707 d730be53 5ccf9e99 d376eab0 dc4a0745 f8106b8e
cd744a4e 25b12cc8 a20519d9 72537c25 20fe7786 f3c57fd7
c6a15e11 e2410f1c 69be2fd6 4dfae3c6 42c60e31 f8106b8e
920996ee 60d00e43 6fbd119d 606fdf06 eda43219 15363acb
45cf5f03 e2410f1c ed2c10c5 17e1687f 18dd8588 7b7e6a9d
866a6128 e9569163 5e20a07f 418f121b 6ff5324c ee34be13
789a9951 017e4175 0e135ead 17e1687f 399b482f 462baccf
6e2de854 4859174e c3a63785 bbd9f3bc 0574c384 c2bdadc1
eabbe95b b8260767 b74b18bf 85c07875 abba5824 462baccf
397e3798 094eec58 a5be18ed e84fb789 97ecb2cf 1a4a578b
4f3fc438 b8260767 14d6f3d6 71ab9d06 5fd1bd57 e3af81a8
ca4cdc93 51ef0e79 e1349f5b 999386dd e630839f 1e34f3f8
b6da121b 094eec5c a5be18e9 71ab9d06 0e089840 1a4a578b
6cad9ab4 60800bd8 2bfc58d9 49a22ade c796287f b8d5b5d3
ce3278e0 51ef0e79 fd1ffacc 999386e1 e63083a3 1a4a578b
18157b6a 21edfbe6 a4e2eabc 1468b164 5bc943d4 9b7ce4f4
26105b5b 51ef0e79 d4e01f22 65774130 1ad44472 f2687431
a87f42be f91aab2c e03a03b9 18f05058 5751a2e9 2f8e7c2f
4f04cb9e 21edfbe7 a4e2eabd 65774130 2ad6b380 9b7ce4f4
3cee8cdd 549c0875 f02dd6dd 97643787 3c47787d bb1fb243
1c8dda65 f91aab2c 7c15ba76 18f05057 5751a2e6 9b7ce4f4
dd88748f 00697e59 87dd4b42 094137a7 5fb1f247 08168594
19d3363c f91aab2c 7eae9e39 bb93851f f43277ae 9e2208af
f29c90d4 76a8a72a ef3c15d2 c9e7c6d4 fed6ad46 64d91092
d509ac22 e0aa2417 671e1100 bb93851f 8ca2ee83 52f892b1
45520ea2 7ed1747f fbde6527 a6007218 ac804c1c 50536ef0
47f9f2e1 ab82a219 2c36970e 48a3a6dc 7f92cd42 52f892b1
42642a8b f3f43bbb aef25a97 cce102cb b342078a ca5fc402
3d4bde98 ab82a219 f684c336 59a67493 6e971f0d 284abec9
853d35d1 6017f651 2b6c099a 191d43ac 94d6aeb6 51451ab8
77ce1c4a 021d2394 5f1b42ba 59a67493 d46d998a 62cf7c1b
e5238f3e 1f2479bc 98904caa 9c0125c8 f8492d78 8d7d5002
0a91a326 48a85e24 15ae3f0a ad03f37f 20c81e67 62cf7c1b
61d5bbf2 83047b5d a2448793 9fa92767 57812d3e bcfd922d
4f54c886 48a85e24 69e8a2e2 2adfdcbd a71431a5 270a17b3
af7dcccc ecd2090f 89f71d74 721d6296 ba3568c7 00e1a9da
d4a34d18 83047b65 a24487ab 2adfdcbd e2f7d6e4 bcfd922d
0fa1b9b4 2a17e370 2e96a473 06ec9380 03817732 a03ddc5a
1361f73b ecd2090f cd92f5c1 721d629e ba3568cf bcfd922d
690cda12 b0a49265 1996a53f 53553681 d8afa527 4c5cc6e1
eb72a9ad ecd2090f 45e03e54 dda17ea5 158974f4 44eeccba
b847d78b a83a780d f4e1e76e e64712f0 6dbd8157 00062eea
e3c0a3f6 b0a49264 1996a53e dda17ea5 565bed03 4c5cc6e1
f1fe3b25 f51b9dee 538eaf2f 06a104ee de7abd66 49bfc247
f41d3f80 a83a780d 01084f57 e64712ef 6dbd8148 4c5cc6e1
dc43a4e6 8a392c6e 8421e513 2ce9df2a 41109720 9ebd2b72
0902a065 a83a780d a622b172 a22d48f9 29d7db5e b1435906
5d16de55 9daa521c f7e0526f 91e40bd1 fc1d43d9 faee6268
26fcd211 8a392c70 8421e50d a22d48f9 cfd400f3 9ebd2b72
1aa87b9c 1577e8b2 39db8dda 80325ea8 65f48036 bd50c75f
3945974f 9daa521c 93b29b61 91e40bd3 fc1d43db 9ebd2b72
e38c44ea c03bd013 66aee22f 10ca4072 8040858c 21e7700c
90c12884 9daa521c 3b3f60df f657c7c8 9bae8fc0 373994b8
de4bcfc1 a19dde45 e250ecea 128c3cbc cfdab4a8 1a66feee
dad6433d 0d0792ff ab92a03d f657c7c8 2b014f23 7d2eff01
6f3874d6 1d6061e5 1378a899 75763102 c6a58b05 e4b295ba
f6a41e6c 46e330c8 e076020a d9e9ecf9 04bf6413 7d2eff01
3ee6b1ab 0cf60829 478a5bdc b59fd862 16f6b82d 7e936d40
a99cfe21 46e330c8 0d9f63c1 00b4dce0 dde2540a 22161f48
16cc9321 c1de62cc 15148e20 a7f768a7 922c9885 2401fe15
1139855f 9f6898bc d414cbb1 00b4dce0 356f2c3e 9ab36436
d7f690d7 556cec21 f3f9dee7 7099deb0 15d3afe9 f5cc43f3
b889b716 25fe6ba2 6e8238af 9764ce97 a2bf3e4d 9ab36436
797d1a26 43200891 58c1e0b1 7d1893ce 2fe51e06 edef8811
49222a6b 25fe6ba2 3e1f8383 0ac0d4b8 3f1b2462 6b18f94a
1da4913c c01681d9 1d3c5bc2 9b22ecc6 c9df610f af387a0c
cfd55b30 43200890 58c1e0b0 0ac0d4b8 583d5970 edef8811
41d2778e ba3cdf78 9b7c23b1 751de8bf 383e03d7 f34e9cb9
5f736321 c01681d9 dbf769f9 9b22ecc7 c9df610e edef8811
a634a913 f91387b3 24ce4c81 46f54a27 cd0fd986 81085ab9
1d778017 c01681d9 1dcb4aed d25541af 80a8cc66 afeb6b25
22d414c2 7330aa50 6903377e d7fa4fe4 810a8a0e 9a95eda7
ecdcf09d c409b9fc 19d472ca d25541af 84a58443 5e401baf
0a01b8d5 e145cd9c faa425be 7ecb81df df0513db 9c44389d
c8059be5 96680186 4bb5cab0 b5fdd6c7 e30d1329 5e401baf
4c6a2a41 75532c72 d1e2f2d7 cef5be78 fb2e4ea1 f3e8efce
b351af54 96680186 32d9df20 a5b87934 f348bcda 25142f1f
f503c252 6d786f8a d789dacf 31adcc0a 4cf838c8 d7391170
56bcba99 bccd3059 187ceefe a5b87934 d8ed8df5 c0f93ad2
84afc28f 118cbb9e cc5170a9 9e433c6b f079bfbf fa252761
be73df3d 20a82c8a 8419f22d 8dfdded8 f0a82a18 c0f93ad2
7efbf430 58bba85b bceac1aa 00df74e2 b5b60463 d8ce52f9
7e1220d3 20a82c8a c4f9458b d934b418 a46140d8 0098c52c
ffabde36 414f80a7 6170f659 6d44bfee 98a14250 ed312fd3
cfc9c419 99383518 7d695c09 d934b418 2cd14956 b14321e6
43d9fe0b 758a9ce4 d13b4253 41ed6260 4048abd0 71a3977c
83394881 69cad092 8d9bb983 8d243780 78c1cade b14321e6
90cc99a0 cf213ec0 ea68c85c b3c51094 e8f97b1f 96f40c52
c041c614 69cad092 4c83260f e006e408 15e31956 f23baf72
146a9cf7 29fbe9e1 87adf5bf e1f72986 bacb420c 20003214
a48e6534 cf213ebf ea68c823 e006e408 bb3a8f83 96f40c52
c939598f dc813a2b 5728db93 9fb69410 92772fc4 fd53f76f
a29ea2b1 29fbe9e1 0cb21f7d e1f72985 bacb420f 96f40c52
fea4278a e3d30e00 8ef1698e d4d939fb c1cab650 122515b4
eaa6d3a3 29fbe9e1 44d98e6d 1cc2b69e 47fedd14 decc7d42
fbaa3d25 2f2b5570 d93387a9 4909c599 5c1a4a30 9b1b80ff
264fbb55 e3d30e02 8ef1698c 1cc2b69e 09d13935 122515b4
d6b645ff fefe0d15 effb44ea b1e4b7d1 5502f09f b607f823
7294a86e 2f2b5570 420932fe 4909c597 5c1a4a3e 122515b4
f4391105 6c126297 e7bb832a 709b6494 2161f845 f1766e61
501d323b 2f2b5570 a482b4ca cbfda30b deee2ca2 30ac8fe0
5b66f3ab 8c33d0f0 e6b4286a 7958f910 c80110bb 556be074
163c744e cb71af73 40d84ec8 cbfda30b 7aa44aa7 768dc995
996b461f f6db5cf9 9bf93b76 a9c51132 0921c18c 58064f6a
b7e0c0e1 075075e8 8cf99453 2cb8eea4 9de10709 768dc995
31a1f501 ffb37ba9 7684f687 2dc79f63 847b7009 702f3ca1
b5767c74 075075e8 8e67f8c2 ada5df33 1cfc369e 741b7504
b581c900 039fb400 22ec6858 aa231892 039ff7fc 086b8bcb
b14235d1 ffb37ba5 7684f68b ada5df33 04193059 702f3ca1
4b8e8dec 8fed1521 80800ae5 971a75b8 a1102537 f664cf3b
cdc57e6a 039fb400 8aa8392e aa23188e 039ff7e0 702f3ca1
8313ad8f 09aa7abe 9c4ac64c 254a690b 8a8ddf20 dd3f70f6
c1322eac 039fb400 967f08f3 8507ce5c 2cbb2132 7cd86c66
c806098a a813960f 1e3db196 fca85daa 536feb80 fd8cdb9d
60d5323c 09aa7abd 9c4ac64f 8507ce5c 2ac07877 dd3f70f6
f2d797da fa978595 85691458 b2741f73 b03fbac3 c75d45d2
e8b5a2e1 a813960f 3df32afd fca85da9 536feb83 dd3f70f6
4c539e6a d7e3e4d2 c6e6ad37 16f295c3 c96a9128 89ec05a4
6de92fea a813960f b916dff4 86bdcc0a 297a7a20 5863fdff
6d1983a2 3ee78165 a7dd5e0a 1560368e 63938789 a934bf35
1575fbaa 6f3f90fe 7e3ad907 86bdcc0a f04e7d13 20ff29bf
59f8c62e dc4f0b76 49afb786 c33fe62c e85db163 a5da9cb4
dcdd7327 27e06542 36e52cbb 4d55548d 3ba6e596 20ff29bf
16c64792 5aa9a393 9ed5d9fe a8268b5a 019a6437 ab7429e0
285400ad 27e06542 e39c1f2c e6967781 9065c69a d4765a34
fde2dcf8 abdd6166 71e170eb a85e5fb2 f9a4c366 40089e31
d66b5d8a 02e750fe c69b2a91 e6967781 b76ceb56 2a490713
78dcc545 79da7f63 68df369b 5f400dcd c04095d3 76d1d69d
244414ca 2cd4841b e8a8fe74 f88130c1 a97bac17 2a490713
8ae955f5 68a5d44d 1cd52636 bcf9399e 3132d49e 7a3a0d68
d4306cd6 2cd4841b 58a47678 da32f4d2 8bc86804 da3d7f07
ec2d18e5 3c893e70 7cbca81e 3484c036 b5280d52 8473c7c8
b6a23014 5c86b4c1 28f646aa da32f4d2 5b9e39ae b8af23c5
7306f040 0abb29c8 cec753af 663078e1 69bfb7ec 08baabb9
c3137834 7cd8282f 08a8da44 47e23cf2 c64ef186 b8af23c5
f4633d76 eca9a1e6 729a59d7 7ab130a9 8bcf7785 322e74f1
99ce727a 7cd8282f e2ebd01f 30204312 b18c8e66 e272298a
e4bf1370 1e6d5e4e 51ba97d1 bbd13c52 4aaf7b7f e3d2465f
49922f01 eca9a1e7 729a59d6 30204312 c15e043e 322e74f1
5ce2d2c9 532934c7 94bc3fe3 16d09980 30ea8426 5b8f87e5
354321de 1e6d5e4e 805ea67f bbd13c51 4aaf7b7c 322e74f1
2899c4a9 95a06825 1f5342bf 6bab12f3 031a43f1 cc4f0bbd
1980f275 1e6d5e4e 949e74d6 8e41990c 7f3fde21 1eeda758
3bf2ba8e 66ffdbc2 2d40db95 3dbc9fd1 550dced1 8d1ae17a
cb225e90 95a06823 1f5342b9 8e41990c e6f0c80e cc4f0bbd
d04d8c49 973f0fd3 b276f941 6474d69c fc84538d 66a5d7b3
7aa75049 66ffdbc2 ec0cf158 3dbc9fd3 550dced3 cc4f0bbd
5cc056ec f4348814 33a1833d d7a9d966 224c2437 9486c3fe
be18b7bc 66ffdbc2 a16ad0e4 c64ba049 aefaf149 08f0ec49
eff78259 af14f8fb b0185b78 41ddadbe 7aed8879 dd8deb30
30fe0921 397eb08a feebbbad c64ba049 fd7b8581 861652d4
ea92f4b2 352c86e3 bfdfac78 2abacad4 19229043 49747247
25f0d420 3cc45215 fb515932 b349cb48 8879ee81 861652d4
7eccb508 b2ee15e9 f5034113 5483d407 e5da3da6 32d13cd4
a5881a53 3cc45215 7b2906e3 ac4cd11b 977cf4d2 066e9ca3
7820b052 0bad80c1 a1e5a1da c9d353ab 7c65a72d b94db92e
f5146bf5 b74b20d6 f0a67424 ac4cd11b 19fa2591 56f2ed05
7d82480b be5c027a 79c90959 ba7c2f85 b437210d d69aa33a
fdea0630 65c7e880 222abc72 b37f3560 06c9c1ee 56f2ed05
8374f6c7 8f811ec5 1a0c5718 4520aaec 9a50803e 4a421401
0f8a0adb 65c7e880 f04aa15c 2702b35a 92b447d4 a492e1ef
1b38375c eb11cc98 8975884b 880b01d2 577b2b01 17190ef7
e15aff35 8f811ec4 1a0c5719 2702b35a f8729988 4a421401
2504853d c4030bca b073f9a6 d8471aad 602670a8 2925bc91
46632daa eb11cc98 7e9c8545 880b01d1 577b2b02 4a421401
31065c73 fd1fe8f2 1878a99c cafd04fe 3b8343d5 7961be2e
963d3225 eb11cc98 0e768df0 8eb65c4a 51c67699 9a1c0b8c
1ae74781 75404bea 460d4777 8a0277ce c2534307 1d8a12aa
c3857ede 53f2d694 b69597fe 8eb65c4a c6e76885 cfa44777
87cf1fea 201c9adf b591d300 73ef182a b91b34d9 7fca4fee
37a11771 9d79a2b9 781ee3d3 7a9a72a7 32cb466a cfa44777
44d03b2a 0adf627a cadf57b6 3cd3cac7 89653e4a cf05cddf
52386bdb 9d79a2b9 5d799776 a90323d9 e1521714 aa3d3bdc
c62c87da 3520d409 59dd3d72 5c16bf0a d9195f1d 6d346ced
3833e947 da384e00 1a387bce a90323d9 2c0cc3cd c036b940
f977233a 129a6566 f7fd240d 9f800a85 ccf67656 e59dc4de
dcdc5ea5 4433c8a8 8433fd66 cde8bbb7 48e75ba2 c036b940
21ab0ed4 6200066a 0fdd4fd6 7100fee3 d3dce374 01a121a8
72f92b4b 4433c8a8 29ee81d4 6de1b70c e8ee5719 6e13ccee
5b28430a 9ec2610b bb97d6bb e244ff7f 93af5b81 ca667352
0e04e37b 310f8cd1 5cd2c5ed 6de1b70c 1c0a1332 12ee04de
4e57056f 1749c93f d749fcb1 dc45c7f1 21063f0d 6510f170
39a9f081 8bf174c1 e62c3dfd 7c3ec3c6 0dd567b8 12ee04de
c06c9fb2 f9150517 747fcec5 6364ac91 bc6b9844 0cbc8be2
193c732b 8bf174c1 069bbf12 c1dc8c9f b03728e1 327b8775
86c709d6 9f53e0c5 9817ede0 96e75d23 49e869f7 8695cd35
27fb7fbc f9150518 747fceca c1dc8c9f 1ed3b84a 0cbc8be2
9db8861c 1fd9a6c7 0141242c b78442de e810b808 9dea42fc
0cee4f01 9f53e0c5 12392b17 96e75d24 49e869f0 0cbc8be2
540d69a3 e335f1c4 f309aec7 60011cdf 42f0590e ad26b92c
8fdcdbf0 9f53e0c5 8f6fbfc4 67281131 b82725e5 8f8e1f11
22c02799 46f0779b 94324ae6 b441fc91 96b0b942 6fac97a6
ad747dcd e335f1c2 f309aec1 67281131 45d954e0 ad26b92c
883dab08 30b5278e 18d3e688 fcbde8a5 f0081d63 c5511b31
e04a0913 46f0779b 56cc2898 b441fc8f 96b0b95c ad26b92c
1f628c47 7378cb68 6de04986 b2f66f26 fd8ff6b9 e4a67d6f
f6ee6d2c 46f0779b 5868f572 049e2e3c 266f6bef bb82dd12
170f76b4 bca61975 6539ea70 20e1bbfc 636c33e9 7ebf4b49
8edb6b12 678cb9da 79143b32 049e2e3c 4713a62e c3b7db2c
cc9739ca 38639845 285fc747 e0a1dadd fef8be7d b55bb747
ba7b55a0 5d97bbb8 430f3950 30fe0c8a 73738499 c3b7db2c
d29a07fa 9f281fdc a0d9b21e 932e4d6c 1633a157 8be29af5
9cdd8882 5d97bbb8 6266167e b3823ee5 f00fb6f6 e511060a
575cbde6 7a037311 642386c8 77030f43 f21ee37c 6a11e30c
f22e147d 9f281fe0 a0d9b222 b3823ee5 369fd2de 8be29af5
e8ae43b0 18694172 919b716d 6a98a816 491b12b6 d5e31d56
b6afc41f 7a037311 45f2ded3 77030f47 f21ee378 8be29af5
653e40e7 de6c40eb 0222fe27 51ee9596 b8682f8e e6af98a4
1572f2eb 7a037311 a64dcddc 0baa1c3e 8eb7f001 283fac00
55085775 9efc6c52 ef198ab2 f7ab551f 1e2def06 7c46c0b8
dbe2c64f de6c40ea 0222fe26 0baa1c3e e22ca626 e6af98a4
4ac48b7e 793afb73 2013b990 2c98581d ef5d1127 638a1cbc
cfe10f69 9efc6c52 42b2d29e f7ab5520 1e2def39 e6af98a4
994b7051 c41d0389 ec7bc285 47b17a1f 49162b51 012b31e2
1b890d15 9efc6c52 b69aad50 d89fd03b 31196a22 32c79ada
d71baa36 6b4b5a47 4561526c 2a07f9c1 297dc6d1 adad6b65
8ea4b3f5 b8eff157 90893057 d89fd03b dbe5ef25 a7ea243a
9ead0479 51c81c51 8d86a29f 93dbe3d2 02e9f0a4 5bd22206
62950247 c41047f7 ec7686f7 74d05ee9 77aa61f5 a7ea243a
03cd4a95 45b3f516 47e01e9b 15ca0b0f 90d7e733 4e44d8c0
44a868b4 c41047f7 c643ac79 8dbf9f36 8ec5a02a 81d74ec8
efb15c80 445f206c 48b1278b 058dd7a3 4af44e39 d2fc0268
0d1ec06c 100fa274 125c49fb 8dbf9f36 c2c606af c861e610
87c4867b f4c5a74b dca3664a 19017666 62ac638d ee74bb81
a1d1dbeb c8922af8 cac1c177 31f0b6b5 7e892f2d c861e610
830b1c29 9dde9760 86a508fd f61d1ac0 d2db1f38 267c1a7d
8839a7e5 c8922af8 d3e9b56d ba56525f f52fcbc7 e1899a16
25f80649 d8db16f1 e5f17485 be78ef81 9abeea71 482add54
4fcc278e 9dde9758 86a508c5 ba56525f 9e9057a7 267c1a7d
91b3994b 67fc8776 969c4010 d729d58c 64cea3f9 fc61424e
4baec160 d8db16f1 c3a0896c be78ef89 9abeea79 267c1a7d
b6147b8e 731f1890 ffa30325 b8b3c52c 07b9c2bc c1d6cef4
fa6e4d88 d8db16f1 54670d45 aec3eace 8a05ef3e 97bc9694
57a67151 4919e06f 8991d0d4 e2f5a25e 5dffa5cf f5a2e3fa
ac0415e8 731f1891 ffa30324 aec3eace 11c9ed5e c1d6cef4
b7f7a5bf 5b9f0e5a bb478d83 07aa7689 d62543f5 15f33717
63d25c5f 4919e06f c5a5fbda e2f5a25d 5dffa5cc c1d6cef4
b544e394 5d7a8c9a 2392b8cd 1679b2a5 c513011b f7bc854c
1606753d 4919e06f 37f1d43a 7585de76 ca8fd9e7 b402e794
6df85bbb 9b2beed0 1b075417 687a9bd6 bb10286a f9010bbc
55b817e5 5d7a8c9c 2392b8cb 7585de76 a6ef6dc8 f7bc854c
9982a7b5 2316603e b7b1c68b c25f8276 990aa75c 0d7bf7ac
6345d54b 9b2beed0 e5c3da87 687a9bd4 bb102868 f7bc854c
fca9a3f9 e180abf0 01582834 5710bcbd 4eafcc66 0dc37b25
cd5584d6 9b2beed0 7bf36d0b fa9f33e7 29f5805b 59acd4d0
1d5fdf26 51ad81d2 096e2ccc 8dcf8531 30626063 35767e77
29720535 856f2061 65b7a3bb fa9f33e7 4732d6aa bd8b5533
c13e5f38 d3fabd9e ad1289c8 6e26a663 1e75a485 5b9b05ae
272e0fa4 2155a004 c18d23de 004b3e78 bde6db34 bd8b5533
ca6cfe13 524d9bd8 dbbfabd3 fc2ffa75 128a1b69 04884f56
fc005be3 2155a004 a8a79013 c7f0a3c3 7a5d468f 66a50170
f0ca28c8 4e39a7f7 62d5461f 7976e9af f1c0dae2 bce188b3
83438c4d ec5dee09 65afde1a c7f0a3c3 4f469092 19e6d6de
f2dca7d6 47b22d81 a76aae5f e7b7715c f167110b 70cd2aad
9bf75ba1 b998007f 306a306c af5cd6af 27eae5fa 19e6d6de
0d854621 0b2a6ea6 0b758cd2 200fba71 fa471b0a ec6e3a6c
1245043e b998007f b9c7e20a c035cba2 4883f8f7 90548940
e26101b5 2d63dd93 4a2d7f31 ef623954 352a982e 535cfa9a
6e7fb712 0b2a6ea5 0b758cd1 c035cba2 1a7d6ad9 ec6e3a6c
b6b40cbb 572d1442 4c568bd8 01e40f94 05f5d7bd 0789f793
5d53c143 2d63dd93 2d3c3fe7 ef623953 352a9829 ec6e3a6c
69320bfc 122543b2 43a92789 fff5aab7 40ffad20 86a7177a
8ca74718 2d63dd93 7cefb9ae c19e895e 1bd62824 3d9abc35
bed55dea 98b72a22 dcba744d b26520e2 bcc271a6 1cd1cf45
9b6d2e38 61c28d5b 304ee964 c19e895e cf39d81c 2a50d515
a3929217 2c8f7ee2 2cd09c94 b8daff81 7c649c2a d924534a
50e6144a 76786c77 27f40848 8b174f90 85b01ed0 2a50d515
c4ba9813 f0874e8c a9ae0c62 30f13205 b8470153 e91de9b9
4b5b729d 76786c77 2f512e9a 7e0081b9 70a7d0f9 31edb3c3
260038bd a95238ac 0a9c7f82 855b4dd7 fd2b2655 a411b5c0
23da7020 e04186b8 b968c454 7e0081b9 0670ea38 596cb17e
584ce373 1b14f65e 4a989260 19e3bfd3 425d4f38 51cfd2d1
50ef80dd 37c670f3 6eef321f 0cccf1fe 74bc9a7e 596cb17e
7768a8f8 246214fb 0860df92 3fce5066 5ac25ffe a64e19ab
25c50bb8 37c670f3 1bc4bb8a 782ad0c6 005abb46 2c463a0b
9241d923 2a6a352b aea0905b dbfbc994 bef7c61c ff15f3b2
afcd2818 2462150b 0860de62 782ad0c6 1d26df5e a64e19ab
67617ed8 f3a7eab5 7c4def52 7f0af983 51433c91 0a355439
cb1a333a 2a6a352b 0668fe42 dbfbc9a4 bef7c62c a64e19ab
886b004e f0f3109a 996e62e6 cf366704 e4a28dfc 3a5e25b6
8ebcea2f 2a6a352b 43f74756 8a556b9c ef596414 e3e8c0bf
4f970a96 9b6ac3d4 bdf8f15c d5c73061 fe53da98 f752e5c2
570a0f26 f0f3109b 996e62e7 8a556b9c a1c18164 3a5e25b6
25215832 6dfbe037 a0dfe41d b5b5a2d0 4b93a58c 9de4b765
829bcae2 9b6ac3d4 f2f7b1a8 d5c73060 fe53da99 3a5e25b6
083065ec 04e713f2 641e0451 f43477e1 61254cf8 c2e77ce9
897c258d 9b6ac3d4 fb93d475 e2234e32 c9b7a4cb 31b9cadb
ebbbef3e 740c49c2 402944ba a705fc5e 3214c745 961372be
7a2293bf 04e713f4 641e0457 e2234e32 7732752b c2e77ce9
8e15c0b9 517cf7cf c0b20034 7c97b017 0e16593f f3bd5d3f
bf4fe169 740c49c2 14f55e61 a705fc5c 3214c747 c2e77ce9
5a2ba1f2 4f634fe7 82474bc8 b37c22d5 c3146394 eca7ceae
52baf4ef 740c49c2 b9284dea 7a9850fa ef896be1 2f12696e
3fbd7853 11b03e03 cc5e94be 3b782780 4a61bbe5 01350c5b
8dc2f846 5014ab09 9d30af20 7a9850fa 0b81cc98 f06a65c7
5d344b61 12ab434f 725254ed 026890fc 7430a82c 843f7941
296157e6 0d6ca6e2 c048a2cb d5fae59a a4e379f9 f06a65c7
910dee2b f236fb20 079d39bd d5dca55d 803f55f8 0aaf220a
c1f91612 0d6ca6e2 f8c7647b 13450b61 625c9702 18f22437
30cec89f fffa252d 64cde11b bb2fc474 eecc34d5 b03b23a3
d3a4102f f236fb24 079d39b9 13450b61 46a6fbc4 0aaf220a
cc69a3f0 5373a882 64eb41c5 8d74d5c5 2429a633 4c9c48b0
8a5ac936 fffa252d 0a51e7b0 bb2fc478 eecc34d9 0aaf220a
905e3345 912d9f0c e7ab0938 1c86f460 fb919e1f 57943bca
0b7c1e9f fffa252d 897cb318 d5b2d70e 805127af 8b89f5a2
a5eb3b21 453038f5 99376660 6dbb2ada 8aac40a4 bd15042b
d761d0f7 912d9f0b e7ab093f d5b2d70e 32a5bd71 57943bca
196dbf92 7ff526bc 5f70fdec 314c2067 10907822 019380e7
4f6a04c0 453038f5 33b6aec1 6dbb2adb 8aac40a5 57943bca
9d26a468 cdf01db6 5c3eea37 c4c6c399 ab118cd8 58f11560
6a22a29d 453038f5 d4fecf0a 17ed5199 f0fa3be7 72dc9d95
a3262b6a 903790d6 427fc707 6d65dce6 7565c67e cd50e139
9429be6d 7618e95d e7d61ea0 17ed5199 0fed4b7f 8cd78165
05006b45 6e001456 18868260 c94c60b6 e0ae517b 718f1fa0
f858f582 5c1dfd6d cdd30a90 737e8778 6b7e9d9c 8cd78165
cd08e479 9a01d32a 30e08b25 7327ecbd 26c41c1f bfe4b77c
d1669592 5c1dfd6d f6fca561 74cb0e9e 6ccb147a a5e9e174
b09d4cee 1a7e75d0 0a9aa881 813184f7 f159c5b3 3068a7d0
beea566a b48623d0 1e677bdd 74cb0e9e 04a34fd9 ca65228c
8fdab675 7872a6fa e9bc5106 3d7786a0 eaab83fc b152c27a
f4ed5682 10fee2e4 ba1fbae9 3ec40dc6 4eac4c80 ca65228c
58d55c9d 3c6f61ff cd0fa6f1 fa11982a 61c95843 c86fc13e
2e6ce5f3 10fee2e4 e19e2592 a7df6e8d d7b72fcb 10e491f5
d1680e1c e78edfcf ac687a96 c26b04f0 bd18490e 887c047d
137e52a4 2009ef24 d169285a a7df6e8d d8ac230b 2df626a2
2be12aef 6b15561d c1f40e18 ccd33796 2b4616ce e776b731
e161bb74 02f38253 f393452d 35ee985d 4a9dd5d3 2df626a2
0fc0c509 5215a327 a0054100 c886b54e 0613db2d fae885d7
e231dc9d 02f38253 f0e36075 9ff61247 e0855fc9 2ea6414a
516fc0ee 865836b3 581dae78 89d17106 47441f64 e71d3c7b
367f1800 5215a328 a005410f 9ff61247 51637c24 fae885d7
5948ccb4 b9105453 5f72d822 c55d5ac1 c410d6c3 ef3a3022
4c9a7942 865836b3 7448d494 89d17105 47441f67 fae885d7
29699554 ab6ddac7 8d99d8a6 6a8532dd 992e20a9 e562411f
99b95a84 865836b3 a0ac34d0 54ec5b29 9a79354b 2fcba613
55dc6270 f52667d5 ea1a8228 26f0a55b d55bb72d ddab24bb
5310bd88 ab6ddac5 8d99d8a4 54ec5b29 a747495d e562411f
a07cf7eb 5fcbc274 3656b006 a57887d1 fb28eac4 280bb12e
6d1507d4 f52667d5 d3d265b4 26f0a55d d55bb72b e562411f
57854fbb 668764e5 80e5e899 4612f330 231efcb7 60addabe
2ca78dfb f52667d5 1344eba6 9761a4f5 64cab683 a4d0cb31
b3d9a32f 46bfbe81 b3b245e7 7c3e88c9 fd5f1017 de8d89b0
47955c76 82dcee30 64be6242 9761a4f5 16003c24 cfe21abc
47cd7026 e26cfc00 c498fe60 f6383f1f 7a3a294a 107390ab
985cfa30 d7cc7e7b 31aef209 66a93eb7 e7c8a667 cfe21abc
13a700d8 c784821e 388466e4 8d7e447a fc67d815 22474698
bf3e93c8 d7cc7e7b 28cc9a8d b35cdec2 323d4612 e8807340
6d679c2b 8af8eb87 b32e6530 34a93067 da0cd16f b46cae02
2e29e4b5 4510c6af ba10225d b35cdec2 5df93fc6 7997043d
2cd30ba2 eb5da438 0d3f284e 5b15fe92 7ecfd11c 60f8abc5
35bca45e b42955aa 4b29b158 a7c99e9d 496c7f9d 7997043d
b38334cc 009c4302 23e9dcd6 647ec2b6 5f660ce1 98148e65
d2201f42 b42955aa 975cca7f 8512a86f 6bb7496f 9e0bbf20
68d8593d 06a453c6 6ade8ce6 c2a89c98 f9b052ce e119cdb1
d43f2e07 009c4301 23e9dcd5 8512a86f be0a6638 98148e65
ec3e2282 2e2397fd df435084 f3188f12 91809d9f 65ffb609
11d51ae9 06a453c6 25d1cc12 c2a89c99 f9b052cf 98148e65
96fd6bc4 9a20f3d6 0e875579 38e853f8 f67d3d9c 9d7f4a5f
808701b4 06a453c6 9203f56f b727c6eb 8c3f08bd 0946953a
bc573645 1f190980 b9ad130b e3d92ef0 848f6fdf 0a25cad4
71d8c27a 32e1c699 a6466032 b727c6eb d07187c2 f81956f4
3d3c3d20 c0e3e8c6 e3967710 f4c2750e 10bd7810 86e75021
43c23bf7 43bb1cd3 d71cba78 e9419f60 8e17de4b f81956f4
a5ec9d59 cb0abcac af4a6c96 47829e58 a9277f5b ded6ef85
7c69ed80 43bb1cd3 27fbccea 8823987e ef75d955 c7b28082
f99b8bfe df42e570 5787d14e 1873cbde 01ccbb18 b5b02b9f
2af0aa9b f6244c6d 92649c55 8823987e 919ce8bb 912bc799
e9bb3f44 bfd71e37 2b70b89d 558fd3ab 7e58521c c1929e0a
b90266d6 adbf0d44 c9ffdd7c f471cccb edcebc0f 912bc799
8034000f e4712a28 b8df4b51 89ee152c d99f98a4 408c4b5c
a1b0f915 adbf0d44 f1116c5d f15f6b48 e8e01b8c 8999587a
18d4e70d 8d771788 973b5c3c ee633bd9 decdae5f 3df996ed
a8720d1d c4ae3266 9800535f f15f6b48 c1f1feae 805bac72
46f58a90 4b855a2c 2fc58a34 8d63bd1d 23ae8449 87ee1b31
41403df3 cd66b69e 91c8d7a7 8a515b5a baffce9c 805bac72
b589e006 c149cf20 24389786 227cb100 06ed1f47 6d474923
c8053260 cd66b69e 2817ee39 0ac9995b 3a670c9d 091ea3e0
e81584e5 5d5249e2 a99e2857 de65deb1 faf470f7 7ca25232
ac5cd8a3 c149cf1f 243897b9 0ac9995b 2e58371c 6d474923
7f17ec04 00d4e5dc 631eaf88 1d166e89 d50224c9 eba03ad0
f9f09ff4 5d5249e2 b8231144 de65deb2 faf470f4 6d474923
35bdd9dd c0589fdf 5935dcd4 f44bd555 73d3d114 f2e9640f
b5f4e553 5d5249e2 c43f0aeb c1aeee58 e53f401e 21433386
0d5cc810 6e014f28 98dadc48 8a0293f5 0d9a97b6 5057b464
665eb2da c0589fdd 5935dcd6 c1aeee58 4636ea19 f2e9640f
dfe3f944 10e2b6e6 398ed2d6 15bc4c80 3fc52081 82e88536
afe2187b 6e014f28 f76c0c23 8a0293f7 0d9a97b4 f2e9640f
bb68c9ab 9bcef2d6 f804b887 daf752eb 6f92f519 e9f0729d
e04d172f 6e014f28 0dcb057e e56a142a 62f21069 bd466b5a
8c3ba035 0706744c 1fbee15b cb5ce041 068fd0de cec5e8b8
44dce18d b43c7b7d d7f6312a e56a142a 28b924b2 19d79df8
ab661e16 e7f38b4b 7e9ec841 1113a03f cfc8f334 4f7a96aa
fdcb1545 d6eb68d9 b521228e 6c7b2072 a1a810eb 19d79df8
fa5ac55d 767d9556 c804b46f f6de6012 9bbb3d00 f822975b
909afc67 d6eb68d9 689249e4 d88296c5 1551a65c 748674de
bc4a8d2e f4217ad9 7268c4aa f81fc7c3 957a9ad5 bff33495
1c3e1fe2 767d9552 c804b46b d88296c5 b5e7cbd7 f822975b
1829ea9e 6a9dae78 8b7b737b be4d5101 5dacc1b4 1b905329
fb9b2ee0 f4217ad9 4a585be0 f81fc7c7 957a9ad1 f822975b
4216d75c 1538b716 2821243f 142264e2 9a5efdb6 3f01a001
757ab0f0 f4217ad9 c938e9f1 9ac4a73f f7a1fa29 76c3094a
70a98b8a 4d7a008e 5739743a 038cf78a 8df06edf 1c2b818c
3cb819bb 1538b717 2821243e 9ac4a73f 14b83e6b 3f01a001
0bf8ecde 633cd1af 06ae0851 403aab55 e405c123 677ae6d7
5383aa07 4d7a008e 706393a7 038cf78b 8df06ede 3f01a001
dd981c36 57afcb38 7ec3af02 965dac86 0eefcf7b 0034c04e
47d67b08 4d7a008e 641664ba 2532da12 ab4e4347 2b54710c
bae574b0 e3899c81 09f897c1 2d74af72 54d8cbfe ce26abd6
61a00ec8 38a9cbbb 11c5af8d 2532da12 5c9ebe90 0d2204cc
821acb55 7a9f7905 4786ea2e 39e0e66f 241e4be1 20cf33bf
aff7fc24 d64d2ff7 ff214bc1 5b86c8f6 222aac76 0d2204cc
6d1e92eb ca06288b b1504da7 dd46de7f b023836a b4ffdb4e
fdd9fd2c d64d2ff7 ad1b4ad8 a63b8dc3 df97e943 5f0c05c5
f2a83d30 3c21c5ba 56ca9987 071f4e94 b27ae963 f1118489
a3a97593 1206736b 69501645 a63b8dc3 135e2a37 017c8d7a
ed6cc40e a369213d 8a05450a fbaf1898 919ac508 af928c84
4382c5f1 ee98eba2 95ce8e8c 4663dd65 f3067a90 017c8d7a

Fazit der Analyse

Bei den vorstehenden Zahlenreihen fällt auf, daß innerhalb von Spalten mit Abständen von 2 oder 3 Zeilen 2 oder 3 gleiche Werte nicht selten auftauchen. Auch beinahe gleiche Werte kommen in Spalten vor. Ein Widerspruch zu englischen Textteilen oben ist dies nicht, wenn genau gelesen wird. Das Verhalten von UPDATE_F() ist allerdings nicht optimal und auch nicht sehr gut. Die produzierte Zahlenmenge insgesamt ist nicht besonders homogen. Es darf jedoch nicht übersehen werden, daß hier die Funktion UPDATE_F() aus dem Dragon-Algorithmus herausgehoben und isoliert betrachtet wird. So fehlt unter anderem die Wirkung des 1024bit-Schieberegisters komplett.

Die Gleichheit bei Werten wird sicherlich dadurch hervorgerufen, daß in der Funktion UPDATE_F() in drei Funktionsgruppen die DWORDs a,c,e zunächst nur gelesen werden und erst später durch die zu Beginn von a,c,e veränderten b,d,f verändert werden. Die Spalten a,c,e sind daher ohne gleiche Werte. Sie sind jedoch mit geringer Tendenz auf dem Weg zu gleichen Werten, aufsteigend von a über c zu e. Daß die a,b,c,d,e,f gleichzeitig Ein- und Ausgangsparameter sind, ist offensichtlich kein optimales Konzept. Allerdings sind in direkt aufeinander folgenden Zeilen im Überblick keine vertikalen Gleichheiten zu erkennen. Horizontale Gleichheiten gibt es offenbar garnicht.

Der Algorithmus Rabbit scheint die Bits besser zu verwürfeln, obwohl er keine S-Boxen[] hat. Es wird dort jede Gelegenheit genutzt, die Inhalte der Datenobjekte auf mehrere verschiedene Arten gleichzeitig zu zerhacken und wieder zusammenzusetzen. Insbesondere wird dort eine Summe zu einem 64bit-Resultat quadriert (X[]+C[])², halbiert, beide Hälften per XOR verknüpft und an G[] zugewiesen (Zeile 51).

Analyse Rabbit

Die Zeilen 50 - 59 des Rabbit-C-Codes wurden 1-mal pro Ausgabezeile durchlaufen. Nicht 4-mal, wie es normal ist. Als Eingabe wurden die Array-Elemente C[8] (der Counter) mit einem inkrementierten Gray-Code wie bei Dragon jeweils vor der Zeile 50 gesetzt.
Das Ergebnis ist sehr erheblich besser als mit Dragon-UPDATE_F( ). Auch sind in der Zahlenmenge X[] übersichtsweise gar keine gleichen DWORDs vorhanden.

Die Methode, hier Mittelwerte zu errechnen, ist kein bekannter Standard, sondern soll hier nur die Homogenität der Zahlenmenge beurteilen. Optimal wäre es beispielsweise, wenn jeweils nach 1750000 ±10% Aufaddierungen (N) der Mittelwert erreicht wäre.
Deutlich vor 500000000 Loops ist der geforderte Mittelwert offenbar nicht mehr erreichbar. Dieses Verhalten wird daran liegen, daß die Eingabe-Werte durch Inkrement immer größer werden, wodurch ein Bias entsteht.

Eine genau gleiche Bewertung ist mit Teilstücken der sehr verschiedenen Algorithmen nicht möglich. Dies läßt sich nur mit den originalen Ausgaben (Keystream) verwirklichen. Das wiederum ist uninteressant, weil die Ausgabe innerhalb der zulässigen Länge jeweils kryptographisch einwandfrei sein wird, und eine Untersuchung zwangsläufig auf das Versuchen des Knackens des Algorithmus' hinauslaufen würde. Das wiederum haben schon viele Andere durchgezogen.
Analyse Keystream

     Loops       N         MW
 ----------+-----------+----------
     38252:      306019 2147483648
    227690:     1515504 2147483647
    306481:      630329 2147483648
    827133:     4165219 2147483648
   1240623:     3307921 2147483649
   1501170:     2084369 2147483649
   1540990:      318562 2147483648
   1899270:     2866239 2147483649
   2216095:     2534599 2147483648
   2226116:       80175 2147483647
   2262264:      289182 2147483648
   2268088:       46594 2147483648
   2576929:     2470726 2147483646
   6122736:    28366452 2147483649
   6205274:      660303 2147483646
   6348788:     1148119 2147483647
   6477624:     1030681 2147483649
   6552521:      599181 2147483647
   6703489:     1207744 2147483646
   6958153:     2037308 2147483646
   7000582:      339436 2147483646
   7097379:      774371 2147483647
   7152461:      440662 2147483647
   7165484:      104184 2147483648
   7207396:      335292 2147483647
   8055015:     6780951 2147483646
   8897225:     6737679 2147483646
   9152100:     2039002 2147483647
  14582573:    43443782 2147483646
  14630219:      381171 2147483648
  14723474:      746042 2147483648
  14812051:      708611 2147483649
  14975962:     1311288 2147483648
  15912058:     7488772 2147483647
  16435487:     4187433 2147483649
  16557800:      978504 2147483646
  16604516:      373728 2147483649
  17120890:     4130991 2147483649
  17127642:       54018 2147483648
  17160195:      260423 2147483648
  17173483:      106302 2147483646
  17271986:      788023 2147483646
  19464319:    17538666 2147483649
  20329748:     6923428 2147483648
  21235205:     7243661 2147483647
  21876777:     5132576 2147483646
  22095215:     1747503 2147483648
  22130835:      284957 2147483648
  23677988:    12377223 2147483649
  23791858:      910964 2147483647
  25143279:    10811371 2147483648
  25284569:     1130320 2147483646
  26395510:     8887522 2147483649
  26538584:     1144597 2147483646
  27247770:     5673482 2147483648
  29873134:    21002917 2147483646
  29982138:      872034 2147483648
  30388637:     3251990 2147483647
  30809546:     3367270 2147483647
  31104613:     2360540 2147483646
  31209856:      841941 2147483649
  31399159:     1514423 2147483646
  46288722:   119116506 2147483646
  46410294:      972576 2147483647
  46506678:      771074 2147483648
  46520536:      110858 2147483647
  46778624:     2064709 2147483648
  47097491:     2550932 2147483648
  47314344:     1734823 2147483647
  47459864:     1164165 2147483646
  47855054:     3161519 2147483646
  48014589:     1276279 2147483647
  48047368:      262231 2147483648
  48103496:      449028 2147483646
  48143969:      323780 2147483649
  48384122:     1921221 2147483649
  48435715:      412748 2147483648
  49171426:     5885687 2147483648
  49225467:      432330 2147483648
  49528036:     2420553 2147483647
  49763829:     1886342 2147483646
  49886753:      983393 2147483646
  50019730:     1063812 2147483649
  50121514:      814273 2147483647
  50872068:     6004431 2147483647
  51060796:     1509827 2147483646
  51416854:     2848467 2147483649
  52437276:     8163373 2147483649
  52498701:      491403 2147483646
  52565959:      538057 2147483649
  52601808:      286798 2147483646
  52926534:     2597804 2147483646
  53459341:     4262457 2147483646
  54489624:     8242267 2147483646
  54510640:      168125 2147483647
  54738565:     1823399 2147483649
  54922620:     1472438 2147483649
  55125718:     1624788 2147483648
  55141477:      126075 2147483649
  55269039:     1020493 2147483647
  55475105:     1648526 2147483648
  55523613:      388065 2147483648
  55931955:     3266733 2147483648
  55966237:      274261 2147483647
  56273454:     2457733 2147483649
  56399978:     1012193 2147483646
  56445252:      362191 2147483648
  56586532:     1130242 2147483646
  62600589:    48112452 2147483649
  62666688:      528794 2147483647
  62763669:      775853 2147483646
  62850940:      698166 2147483649
  63010983:     1280340 2147483646
  63661880:     5207181 2147483647
  63682291:      163288 2147483646
  64049318:     2936214 2147483648
  83564906:   156124707 2147483647
  83608036:      345035 2147483648
  95601783:    95949980 2147483648
 101300712:    45591433 2147483646
 101366126:      523307 2147483649
 167221933:   526846454 2147483648
 167250573:      229127 2147483649
 167332548:      655795 2147483649
 167417640:      680739 2147483646
 167453277:      285091 2147483647
 169633638:    17442892 2147483648
 170635705:     8016534 2147483646
 170717001:      650367 2147483649
 171045441:     2627522 2147483646
 171083365:      303396 2147483648
 176018667:    39482409 2147483648
 500000000:  2591850663 2147525121


X: 0        1        2        3        4        5        6        7
--------+--------+--------+--------+--------+--------+--------+--------
d1d9a5df 144f9f2a 82c7a609 b58c6651 bc3d6c93 ef19638d d20356cd 787a3cca
dbc9a02b 237cb687 cd94cb60 03dc9d27 70030628 517f53ef 7ff25ed0 6e071121
0384e116 277a4ad3 c7893e25 b99bd943 fbb58617 5caf6dbb a074fe73 bbd534cc
84a91cfd efa242d0 7bb7c48f d4273ce5 81afa93f 57c0be1a f14689d2 f8211cc9
e276abf7 7ae0f9ba 2b8264e0 01d52639 662372b5 e21ee4a2 0b9a7d0e cbcf0ad3
69ffb701 086b68d9 5011a16c 4b3d5df4 2630a89a 74f0632f 8270cffe 073b9963
1765adf9 6ec80c1f c050710b cb6a1812 3d8c73f4 b5dabc13 c1b76c60 60a033f4
c2676efa 0780673d 62c5ecbc ec155ace 11e41ab4 ac12cbf0 15a15bc5 4ff2ddb4
50be6a09 706a8f61 238e52ea 1fdc0c01 6542c66b f7d0177c f54efa86 abfbc68f
287a80a0 19528177 9e92e141 638ef629 2ef66942 b95ef22f 5fed442e a4c3afa8
229a2857 64de75e0 2abe387a 7998e65d c4b4bd17 8d0dce3f 6fa2fdf9 934e7b43
578d6696 d6d8a5cf 461bdea6 231b772a 893cdf31 64cd6bad e1961c59 3992df56
fa9f134c e9008846 242d31e2 105670e4 6a057018 e6263a4b a7acadd6 b1bab76d
63724126 aaa63aff 75cfcdd2 34b655ab f6b9bf14 120d9bd0 3a2a5255 72051589
697d591e 1366e83a 4b8d7b9a 9e74fc9e 7b8cf42d e85b4f84 33912c38 a58ace50
6638d80b 8375ae30 258ba29f 1c94cb71 0fe42011 5abe077e 66c5a1d7 63a3db79
e43f25e4 ae0f8599 eb74d83f c5553484 263a167a 3dc481fa ae35ac3c d4f50092
7e5757e4 05acfca2 a7837cb8 c567a72e 0a36c6d4 29035ab8 cf9ddfa8 33b61a4a
ccc39e76 243a8cfa da0b5763 f94d7b3b 9d2d9a23 32e1908e 9eef2df0 66de4e5b
d5682f48 f19384c0 459fb6e4 d632f7f7 6d1b70b2 7643162b 7ba9d684 fe724399
55df8294 91a7eedf c815fe89 c7da3807 2927d6fb 60997fcb f9c45e48 9a3745fb
68217373 7f4e6724 697f9c0b b3f83e8a de4e9fa5 a4fa36d1 7a185e99 7ba212bb
084fc9ca 2ae67822 bf8ca20f b4985237 7ff000d2 62b3d2b0 4f1376e9 8b172c08
8912bf78 2652e69f 665d02a1 823d4d77 cd137bb2 fe220d9b c0af36f7 68347990
061ee046 1ed4ea63 2ebd6db8 c060620b e4a2c0d9 65c99ef1 64751b66 45c40c18
9da5d17e 82e70803 7b15ca78 0ac81296 78248f1a a04d27a9 574c7c1a 74e5ed79
5f26093c 7ebed9b7 8a004059 a8e442f4 077873e1 2a07b486 b5bb4f14 93fd9114
b38895dd 42a8c253 93955c7c 49aae58c 8beedef4 fd5f6760 2e677b41 76402838
74e1334d 487ee6fa f253d32d 00882109 9e853507 527dfe5a 561ba357 1512f981
0c22d9b7 8803f4aa b8b01757 69ee5a35 21f21320 5c33c4d8 236a93aa 9e291294
fdec1b8d 2e77e7b3 263cd5e4 f5b0392f 7c6bade2 774d04f3 bcbaa5c8 0a8ebc79
6abd381d 78bcd37b 8b53cfaa b4576fe5 09c54788 16d7c507 68e7fec0 d43e592d
0cd1dfb0 e68686f6 6c42e9c2 e60c5d82 92b03008 9bf2fd4c 55786137 804d7f58
e242e67e 2d248b8e 3527102b 0e76f7a8 322ba912 7e426928 3c1b2840 63622861
4fd4f3d7 9e85681e 7d1c5616 359c7a0d db68e68a d1a18eed fafa78e4 c38aa57f
f3ae3d29 30393d4f a5f7faba 92976dc6 f8185c9f cb4cde79 7c15381a cfc9b67f
f8f4f84c 4fdee15e 348c68b6 1223f993 2a3a2ecf 540a4e85 4060283b 8bc3ecba
0973c40f 3b98ed44 1b9b6de0 f282ca01 e93b14a2 85041abe 479fc046 326a3158
b858587c ed2cd55d 4d62165c 79288010 a04248c9 8249adba 832f699b c0c83531
52a516f9 3b70847b e3ebaa94 5b19d45d 5777e74f 07dffadb 6e1ca92a 793a9d43
61d1cd6f 7ab69320 e8d7a344 14114c18 41fedeb4 3900e5ae 02e3a821 5e573df5
23f48292 94fcae1f 1f83062a 54d0b461 3355ed56 2594acf8 b43f6823 3bf141c7
aaf85781 88f0364e 0a80a5cc 7226444a cfa3fc7a b833d0f0 5dcfb6ca 9953d5e2
f13eb4d2 e1a7757b 46383a86 e6862383 83a9c5b5 46fdfc9f e180a2fd 74b931d8
9b633838 2243caff 9cceedde cddb612c 8372db4f dbdd1fde 42a90c27 fa29f6b9
4b6e6cd9 56e6d5d1 9ab62f2e 41384640 c736555c ca9d5a38 3f0b8379 abf0e904
d214baaa dd99ea09 2ecf1b9b 1509f515 3609174e 493869b9 6077ea98 2a8f35f4
e0460e77 fbad3d5d 0eed00a6 d3687cab c49299a7 5d149e09 08382458 3b977626
4ce1c8ad 1a9f5fa3 436f40d4 4042d16b beedc705 63bc79fb b10ebc57 6f7b79be
f247d852 1ff63051 3b2f84f0 b286771f 3fdcb748 27c6d840 6f7c99e1 7211b16f
c971ef25 b46d9056 5fa2d20a 4c61e73b d0577c75 8e716660 fd3c6d8b ed56a1da
66616806 8085f12e f1679e7d 65cb31aa 5ddf8474 2f2a3513 6ea2b322 1854c2a4
a380258f fedf589e bd1c9102 6c5c1d7d 6722882a 656b5058 174d8a44 61c16a02
415e0f91 09f8c66a c2b936f7 5bfce95a 403ed405 0ce4c093 4712a3aa 2e054e25
6a9cc20b 76a493bb 064a080a 38a478e0 2602e5fb a8f36c9a ffe0fc2e a1807e26
492b33a8 679df1fd 3bf4b6d9 aa492572 0dde1995 5d55241b 1dd0b677 f07fff11
68c28731 3423747f e84146b4 6eed1ce5 dd53e145 df36ad1a c03d2a5f b4aaed55
0dd603a4 d51d50b2 39020d43 3ced2adb 64826230 63ff3db5 c114e5b0 9e28fdb8
6d6b684e 7cf8b589 cdbe2b57 cb28176d d54b3ab1 f1133bcf b2fd487a 939e58db
f28fa550 177eb43d fe832794 27de3753 4c66aed9 443ec54b 3ca495c3 bb3968d5
aebbb14f ad33a592 1c900e9c 3a047d44 2eacdbe1 f07e9fdc d9ea7c92 f255a0b3
f1c44e7e 25528bdf 1d680c57 d3132a17 831c2a08 8a8cf0b2 1d31d4f5 07ec9a61
b121bcb0 8990e99f 1d7c136b 4593d566 2fd81945 f06fa124 5d2ddc45 4eee08ef
8d1755df b172ff24 ab62d045 8956d491 789ac2bf da337f32 bfec08f1 9e48751e
554a53aa 076ded46 5f0c35a4 4554ac3a 4e038d6e 7290e9d1 d11b3309 f30e7e38
72263ee2 839579bb 617d90c3 b4878f88 55841e0c 9cac7a52 9a6effad 0892619e
6999875e 7d77c604 5cdba375 5e4c39a0 2a528552 460454ef 66f96498 1c58edcc
d8be80e7 e569289a 235263e6 9bff33d9 891cbf43 9ec84c5d 960ceab3 95fe5848
1a365909 5a5368cd 8ae386f7 6cd6f8b7 b74a7e8a 67ecfe33 1f8a702d 478ab4bf
a49f9ed4 f8c3badf 86423d84 70eb48c4 319de10c be6960fa 9a0e2fbf d9eb486d
96397960 96e17de8 52c88a8d 8df13fab 2a70e075 c099c422 379e0587 d4b02312
ded88aaa cba13d83 f23abc9d 5ba1e4bb 426adfd0 469065a4 3ce5ad31 8b785b8e
49a05d4f bc8ad3c4 3759d481 1e9db25e c61ed271 a12fd73e 16211c44 6329c806
3634467d f89c7562 87e2446e 26a395b3 e06d5cc8 0f8042cf 705edd7a f15b2179
2fdb46ad dfc9e66d b098c421 f5062fe1 96c8cfd2 4922f3ee 2a9e443f 6029516d
434f3be3 daa83d80 100eb7c6 22c14f79 0b856a08 e957c7f2 5b1c0e2d 7d1da2cc
f94a0ca1 23dc304a 70b44b39 833ff4a3 39ed3257 6a85a8d9 dd5e255e d7a52742
ab1fdc3f 2a5d902b b2c90eab 3b15f259 36ec0ad2 814f2407 b9a52cae a6a70372
15b9e9ae f4abb285 8f93f451 79f386a8 ff36afd4 fb0dda15 5986702d 7a998df7
c7b82be6 1984d3c2 ee20e87b 66bf785a 5d2f734e 14278863 7dedcf17 698313dd
4938a23d 542848b0 466897ae c7a41393 b3bd64df a8e559e2 529b7c25 2cd49c4b
04ba44b5 4a5e0cb6 ef0e906a c6b633e3 ce524358 e4e53e52 57ed4123 413174c2
29dcd677 1547a283 8fe07ff3 861ca13a 256b8b93 0f31110a d9427805 b5b0a5c8
c6d1abd4 f417fe94 d93c7902 100fe100 74419128 483641c5 9eb76011 680a6c78
4febd0b7 f6a59a38 52d2ab4c e9b9f233 bce86089 59467c5a 6c312278 8a4f1ad0
e9926b70 66c50b59 e1749bb5 2cb54180 eccd9fd1 6f0c6abb 3ffc4ff1 962bfe42
108761b5 804f02a0 5361a4f9 5d324a7c f68c8343 4ac87e92 5448f0db e26535b9
23bf6497 a881019a 3f108f24 6891b405 3fb7851e 927351f1 3d0472f1 d1d55209
9d3c0966 9973c9d0 cdaeccfa 515c0e1d 31972080 78d45669 5f5b266e 6b728bc7
68b6ba54 e5e850d5 477b166c bb8bb01f 3eab1cfb e51b162e 5a7bbda1 3c66ded7
1335ec3b 88fa15c1 16509093 db1b5641 99d8e846 67dbf77d 1c297a33 b1c45680
6d0a7180 7bc1e510 984bd8de 12720924 80fe5b53 d897b568 62671088 1408eebd
a625222c 3865dc41 b827eabd e13b4295 1ab622d9 e2975896 3c3a302f 4db4d1be
f85b3ad3 4b6e5500 8bf2a207 877c670b c8dc18c3 2dc5b848 c5e6f62c 4deb69c4
3117a620 79f0d20c 0a8d66dd b04e7477 0a4a926b c81feb28 a49d5420 681203c3
6f3d0888 821a4b3e 60187386 98fb2f33 0ef380ee 7eba5214 11d56d08 5fba27db
54b6e66b 0782ff3b 9ffeb4b0 c515f51f db0776f6 91d1b44e 6ab1b3eb 0d376cba
82d9223d 53823d9e e1e5d481 bd1e052b 023a37b7 cc2521fc 9e26e821 3c39c00d
7f2c0ce9 a1bbd7a1 c7d870b2 49261e48 a547b92c 173f2fc4 fd43bbf4 07f4c153
1fc72ed4 e47970bb 18b6607a 6b5fe69f b88b4ffd 6aec14dd 450f9dec a913ffa3
30d1bdb9 b59f4e1d ff232d65 be8cf683 ff5f1102 d6651090 5c3ed157 42f8d117
05db4ff2 f25aacdc 2615d9ac 5c071711 997b78b3 7c47bbe9 ba54c85c 8b9ee63e
78cf36d9 92b25e14 399a005d 8d002cd4 faa5bfc9 959ccb3e 93a59def 0230a9ae
d5d92034 b2072f50 b4f1a228 2d8d3dc2 b90d1c17 becc760e 9d958888 b9dc1450
e37e3ffe 6613df9d 9f4462d5 e131a70e 18d7fc43 f41345a7 0f910040 a00248b2
4579475c 407003d4 ac899fb8 7a8a7d0c 990e1695 528b6f0a ae1c42a9 ae0136e2
fe613096 b3d75f6b 9855266d 203709da ec6ae098 00c6c861 cc31d838 67d4c41a
5b075a40 ebf12a78 ab2a9c16 cd9e74cf 6ea8ddb2 4ca7c65b b8f51fdc 2ffb7296
a1634573 4df8833b 749e4427 6fd59f65 da3e4295 22bcb771 f80c4b50 145bb9f0
936ab1c7 f19b2b94 c11901b5 76c8ae7d 6c8bb8f4 ef6644ae 2cbfe108 52165315
085245d3 265f7cb7 27fdebfd e6095aa4 ac612378 5f6b7a06 913f90a5 65d99efb
ff691dcf 81f27e1d 19ead858 27c37c48 c87b8bfc 46b2c889 9cf73079 12849771
a5a699f5 21b42876 b404a667 5b186e7d 2f614896 5b65a22a 388d71f5 f3eba132
bd4b60d8 7730276d 73a0e9d8 010e4640 ce1b7d8e 6f8c3c06 c5f97a08 25830fb1
3e4e9bf8 a986a7e1 1eaaeca2 bbd0eec3 e4028eda f9d513b6 12592914 03c6ace7
8724d6fe 4d6fb384 59e512ff 15b892e1 7bad66ff d831c997 5f50eac2 76316b57
f48ec1f6 024330c6 318c6cfd b862c07c 661a27b2 06ad576a b0142d85 57ac31f8
40e07eed 48c83fd9 e8384a02 fff353b5 b23d37b3 57aabd17 0145c0e6 05bf2a78
31a9f321 10dbc129 26bb56f4 40d8f7f8 c49b45f7 a40e6f06 d21a54b3 b918d3dd
369f37b3 2633a12d ec5cb299 14c23ab0 885aa4b1 3b173d59 95236d78 4b621fa2
ed5dcc4f 5566fb81 081f7344 956c8da5 e9406650 498de2ff 6822caf5 cdb3b36f
93fcb979 1669cf7d 44490662 793e3dc1 3ac37ca5 83c56dc5 eacca97d 9621aacc
870a4e4a f33d91d1 467166ba baf4432d 09d6e62d 6c6faff2 0e3b7b4d b03dc0bb
d81267e0 1755d43a bb0870f2 0527b166 81a45bda 7ece53f9 63610c7e afd9811c
a2e29193 b2b82a5f 152dae94 cfbe12f8 f3a41597 f836b299 b8e0d045 9cafb018
23d366cd 49455e60 76d5968b be3697fb 97556eaa bd05505f 3f9896be c8e1eabf
0162a3ba bd914e22 c58b3689 abad43ed c90061be 37fe21c8 3c876359 b3763b54
ffd73c24 7ab1cca8 883ca132 e7070cbd fb5f3c74 cd3fd200 f6b8555e 2c41c1f2
1acef8df a09aa657 f5f2c080 723356e2 4f2c34f9 84a49e84 0ac06775 5a8ac6a5
2b35c252 c425d827 2abd4b20 20921797 48e0c184 726d4b1b 87264601 80a63a89
e4ebf1b4 fda6c1dd a8b34e67 abd44b47 d8039d06 1bba55fd a186a181 8414df0b
9a524d25 83374228 26c9fffb a030d803 2b353b54 13401c5a c0509dfc b1a819a1
296b8db6 1c208881 58ec88bb 1bb5975b 425d5043 f6c2c000 f0d0347e 7c4d6f52
15cc8051 78c13bda 816f0ff0 f4a14616 e6cec1c3 49e71711 5ba3266a 45b07adc
547befef 05454182 ed27d5f6 932f6447 3fe583af e1ffbc77 9939795e f95d7820
a07f0651 8f3baa6a d6bceb32 a0a9162a f7dea570 1ddc63e3 a4f9540b f84b62d6
59a9dbbc b156310c 546bc68d beaf83ae ef3c0547 c4dfd6a9 a793b221 1b3b45ec
297a267d e605470f 9746280f 244d01c2 8cf30fc2 59139910 c245fb4d 7ba47bac
1f3a0166 45e00994 781874fb 29400835 c554455e f8e4b415 fec6d3f3 a1e41470
33e1c912 4be9c6a4 46b83a89 08e36dbe d3be9941 eb00f373 97be83c5 fe5e1287
b14f6120 4b7751b4 f7947002 47eb6110 885ad5f2 e3087fa6 d937d4ac 3a9b0257
08635f5a cbefec90 7b4d37f1 f78565f3 4bfddf66 d18c48d3 61195017 495c3cb3
6a36aa25 baaf5678 7446f558 1095d1ed 3bee1508 77ef849f b128457a c3599626
f5c28a47 a4a3ed09 8514e9a4 da735047 58a1e9ff 7bf329f8 ea535fb9 642b1711
99528ddd 069acb26 615cb361 a6225ae4 1f9ed5cb 8460b59d be763717 20aac30a
acdb310a 7a71faf3 6c156cef 2f5edf57 cdd66274 5e9bb272 e03c6661 6368806d
cc700ff5 4b9c2fa0 70be2099 a610841a e9e0859c 0a3e4843 7359c6ce 96655fed
53120d85 7fbe713a 1cde63d1 58b9ea5e 316e2d93 83405a1f bdee27ab dda1ed2c
80df2b76 f402d569 5283c686 65b93f19 2a1ae370 1e93fe35 d5bb6b9f 9d3f9dda
784036c2 c0b18f07 2d859eec 97e09b0d a6383ef9 80b93c35 69d68de3 d879d7fd
4efe7ef3 4d66a778 1ff4f884 4cb1ac49 b83aeebc 175b76d5 fc69c331 915418d9
3bb6a9aa 43aa3a37 c1745f72 3ee7f0d5 777bcbab 1fc8f923 462da286 02717351
61f4c752 2c9f7d34 e308e8b1 cb501251 be87e011 b797d22c 71116747 a754df5a
f4cdcc4a ec083e56 594f554c 1d14fe71 21e00537 4b5f20eb d538dbff 887c5fdd
98c5a72a 0b0fd2bb 1e0ea47d 1e80d228 2f8fb0bd 9966eda7 2261e40f 30843abc
6b0f970b 2a48af2f 65b04b90 4dd78bea 854d7c01 4296a825 769c95ad d6c674db
881d02ba aa68e89e 2c79646c 04d26011 a8c3da88 ab69b727 659a9cb1 b8e64e95
e10276ac f8390807 dc86397f c8e7b55b 7e51d52f 14c405f4 affa739f 3fc5caac
e106df2b 110d4650 b62d6d2b a716dc83 f9f2f961 9692f8f2 a99c7029 3fafb1e0
3fd0af23 cb25cea6 3bc0e873 22bfefc2 b7adb2cf 927f6d56 e0cc59b3 390bbf79
bd98c976 d78f0277 a59accf1 d3a59872 2eb0e1dc 29d22a21 5a2a2c2c 6c48821f
9e19ce2f 8e0ec3af 9c77b848 bf58c24e 8310574e 923964f6 729097ee 7a7f96d3
0e57ec7b 3423f11c 33280f47 4f99e238 69bfb9b2 3523c552 46504330 b5d944f8
9aebdecd f4f29d7b 17e2930a 26be5145 e78a4195 10328f57 5e4077d1 cd932353
afd06c83 b8df2a63 f0d91aa5 a803b3b5 8c10b3e1 09eb83b9 049e1c2a e3abc909
0db969bc 27580287 9f438067 80526fc3 f16e2adc 6bb7831e 5cb37983 c9f626dd
3f983e3c fe0da1ef 94a23299 ff023bc7 9537bdca bcbaf2b2 6b8a426c 51bfa3ad
1f3b5aa6 b7ab507e 58a8803f 827a04da 1ee039dc 00d056a7 b05a5088 34ab7175
05db8edc 7e85a51c aed8ea41 6cf99498 2944c6f4 5b5a805e e7931bfd 617ddb0d
73067529 1e5a29fc f9ccf2dc 9165cb88 77f06406 6fa3d1eb 91fe03a3 9dd0de85
dbf541b5 a56079d8 2e3c0a85 7abb3f4b b47a1169 32e17ba2 f4da6435 a51e36a7
0d5498b7 e094f90c cde60960 536a3c20 90c8f66e efc6e7d0 64a2bbb4 2bc6f381
0cc0debc c05d59b6 f93c60a4 58a67f2d 8a6ba401 af2af480 cabe4c77 ab5c482d
71175590 c3849664 9c859df5 1132f5f9 93bf8828 5cea11da 81944135 2c2a63ab
7eb6bbcf 88c15ca9 24d01fdf bda7f574 c6d3a45d 56b8854a c7ecc8f5 65d1c82a
da52fe22 6ae79482 447d987e 426149dc 169d0e12 094ddcbc 025fc79e ad16335e
fcb8bb41 7a0ad022 49f00462 cff19b1d 78d52b0d 285fac4f 2a5d48d0 8de72808
103cba07 4055b90e 9723032a 672fee16 ad2ab7e9 33bff4a0 8ef2302c df1e69d9
49450e3a d3bb8551 6cf6baed e98e2938 6c420c49 cc2798f3 424361dd 351ff9b1
e3778c4e 1f3a459b 3f5503d2 f7233401 c9b5a762 1c0c8e53 de81524f 5fb25252
f51fd892 466267d7 c7e20ff9 9825b8bc 2c5e840c cba7a7da c4b205ad 9e22a81b
efe65f6c 325227a7 923e2f8d 89dab552 25ad1987 ba879fee 4625063c b74b6008
2a2e2739 4160571e 9e6c9e90 5eaea6bc 4ec167fc 92f6376d 90ff4519 c5170c56
b57b49b2 bfecf081 2214ceae fb9b61b6 8688001f f73b3d37 1c687575 457456d2
ac1ccdcf 62d438d5 31da17b1 a0c6d615 6cec1b06 f2be0046 fe9d66db 714cf40d
7d1c487f 061a8ff6 6842ff0d e9994e64 dcc00ac4 ba7d64ec 2dbd2979 a8b250a1
0213acbc c672d29e 65a94fa4 f85c1126 d17bafc3 a0035a1e 95c9c14e e44a293b
cb11a27d 2bb93a02 931f1653 3258732f deb1092a 81422854 2db2d54f 7816151f
9d22ef20 09cc0aa4 e0821759 f281de79 675d966f a59ae62c c3880bd0 e0a27bca
2b3d2eec 5b217469 4d1bf66e ab1dc94a eef143cf 85bf3ed8 3a7b5fe7 8028ed98
6a1f35ac c3714094 6b009bc1 44462ba6 cfe3c0f2 c82c4b77 54acc39e 82969f35
f4f5d5d4 97549791 418709c5 b286fd8e 5b419a7b 596b04fc ae3c1915 93ce7ac0
7ba79ded 8236b9f0 a91377e8 be81af64 fbabb2bf d59fbfff 550709aa c77b730e
83b9c496 c545c7bf ddf7d2c3 bca54ae2 83db4249 9d9cb16d 02db5e06 95fee91f
6555cffa 969fad3e 00e5f212 1364562f 2c7fdc72 e0664cfa a2f49c0d 33e51380
16aa4b6d 8c274652 72dafee8 5627a5a3 88c4a358 d70a0edb 8c665d1b c45addde
a361c125 63c0d598 5e8b92e0 73e1b881 18b8d98c 2e958092 df873e37 c5393a42
43261a58 7a66b94a c0e01385 ae882cae c1ea7db5 df0e7c8c b903a823 29198e60
2da520ba 6143b7b6 11478c33 780b98f6 5f753359 b0a51d55 ff200ff9 a22b38a0
eaf9fda5 cd333c98 31d38af0 11b17702 45a3778f d960d1ae d1be2611 7ceabc97
7e68ae2f f9ad4052 139cd89e 7e8b6c6a 6fcdabc0 d0d8b711 33c4a23e 29687a0c
5f095842 97896071 01e1ce4a f232e505 ccd0638a e9936562 cb6be285 aeb64d6b
7781f5d2 74d87f96 078f4228 137f88f5 f05c84d0 1267faa2 46f08454 7386311b
4cbbde58 4f363231 3df89a00 9c5084e6 aa6435a0 0901524d e601ded4 6fff436d
7f40a3d0 bcc96b37 c9ff9523 52f0539c f4ee22c2 c947b9f4 7f3194c8 c5f57821
9553752a 7824e3cc 10d30b71 1dd05e74 c7b856a6 1ad8339d 1c5c3290 14073f4f
21f98d3c e5abe745 79036e98 44b1cc4b 28376395 7dca24ec 247f70ed 7d2cce33
5da35c06 4b3059a0 2cb26e48 27eded03 2ebbbc13 44a872f9 45ed8967 26a7a31a
670b361e b96a45c1 ba5abb56 5e34137b 03eff02e d70ea0bc a234d7e6 c9f577c1
8b94dcc3 43a12636 ff138c66 d9cb9364 5579961d b03e1480 d911fef4 a4e50b32
a825de90 379a0f39 d319a652 32dc196e ffc03428 abff3d7c 8bf7daa2 137d0a5d
0133d45a 5fb9af2d 0e9bcc8c 703c9e52 8be3179c e99bf1e8 ce13c53d 3d6bbd3e
6c96f745 b1a3c7de a9d529dd 586b0b2d 9cf0f9b8 b3dfc9ac 5897d00a 9b9be947
cef4f6d5 8bb2152e 84daee05 1cf9b79f d2226c84 26a097c4 dd39686a 99e849d1
d892a789 faef9341 8f4f0068 d34dbb23 c8b2f6eb b9fea293 f93b6b5f db4b5b63
802db8c8 225f71c3 18a18038 3c867ff6 4e54240d f5588275 da63eb88 22674b78
84d1d3f1 91156a01 d7d0b68e c82e9231 95c26652 e6b0dd4e e158fabb e8982f56
5a61b1b8 8314c07b 3f6cb810 addabe01 8eafe928 96e9a330 f310c7bd 2cfa071b
7d7471b0 d1a8b52d 2e11db09 7f3b0b2b 03ed987e c4fc4fd5 4bfed784 cb9e7404
a0fe6f77 93de41d4 7a36ab23 1e8c10a3 0b57ad8e 1a3b802b b5f45c07 aeff42b9
8e89c51d 9a612ec6 5bade757 2241a854 11a53ffb 4b163a39 fe7e0a15 80104919
a3a8439e 6d412ce6 7162d5ba cd94fb42 94a9de43 4c8256d9 4af6d413 3353a6fc
2d445db7 eff1d6ba fb1d0b64 72c83c60 06916d2d 09888f70 76a925c5 b06a9833
82a69875 cb0b3f7a fd12ce03 47faddec 9743d721 28442451 169c73b3 ec913939
7df7e4b8 551107ba 8751e84f e6d9cd1e 5343e05e b13f5759 c8eea14a bff0c295
62d57d46 7e05b088 2c6d4609 c9854339 c259f897 080e6d39 75c61024 0d093a10
7821be6a da3c6601 44364574 397ed7a4 0c2cf580 dd45d8e8 af087e44 e5cb432f
f33a329f 6e6015d7 1a815080 8778864c db4ec9e3 89503fcb 2c7c01be 9511c8ef
676ef111 bc6567b1 b22be1fc 907a9534 ff315108 9181d9d2 c41fe2fe 646ec0e9
7c925bb0 56f00f90 3ac5f170 8e0a0453 a37133cc 206846a2 6870111e 8191f483
8162bc2a 10c1a2a1 3ce61b53 6002d1f4 57c544c1 26920392 078d88e3 8f6e144b
abcc5460 ba639978 9a2c59be 662a72a4 176b944c 44128a53 54c1128e 92173d37
ac11ee3c 8e19df31 518a05fc 6b8ff42c 031826cd e6f45b1e 25af8e1e 91d2bad4
a3312a50 9404e056 036ce04a be5d1b02 bc4d0f67 900d9d2c a52fb791 77b93aea
55f25e26 7534fb0d 4b84ffa2 cb494630 3aba4df2 9c80e73f ed964dac 4c72cd9d
788d245f 4ec1ecc2 91cc6a2c c0b03e23 c99aa743 9b017f40 00b66fe8 79958e6f
cd67d8cf d91dfdc7 c8ad6c5a 8ad5381d 0ff88e65 e0567f9d 7a008887 bf9da122
90e8039f 2573b2a7 cd2b3f3c a8561c7a d65f9754 ba6f7242 bf3b6ec2 8f542b73
ea080f7f 1dc1a351 1388d777 060ecf55 45c15eb6 ba976806 0a0bd0fe a6b5dab3
2ea1b39b 8e5583b0 cb8009aa 99987821 77d7a391 0053c9bf 521838ae f403c420
fc6781f7 f0ecd9a0 05c0d025 d7746074 799c3809 3955f334 84f46c6b db5e6052
4a72e56e feb7f08f 42b67c83 66c70062 6f03fcf0 d5d58785 d226f4ee 69e605d4
8622b0a2 ff952e59 5c60798f 9da300b0 4892617f 665c333f 72f993b3 00b5876b
d12191f2 55552828 19cc6021 3f06a98d 4cd8b7dc e45c175a 5b427d6c 09f0cac6
ef5a703e 543c8579 1c875399 3bbfe581 662cc067 9f7e9744 11efd088 f42da0a7
066dec31 ad96b034 5aea4103 df452728 328ba77d 83aa563d a9fe944e 3a0e6fcd
43929c08 055b64fa 41db9b86 fc8c4355 e66d42d6 86f27e3a 9180c4ca 5903c1e6
9cf722d8 e16f3cb8 aeeaf059 3e85c54c 999b1d70 12d5245b d85a4870 b0f86756
699e40d4 d6635ae7 948ca3d6 58ac380b d93d29f8 6feacf26 4863d51a cee5a8a3
637d3cbe db23f2b9 0253540e 477e153a 80001f3b 42e6f745 a6b7577f 9d6150f3
a7f90f99 5cde4252 a5d51be1 ad94ca11 f06b3ef3 636bd3de fe51fe67 f8355756
bba64d96 a057f743 3328ce27 40810688 72648b8f 2b8d7b00 0a6c9457 2292ae97
e399eba6 36badf59 ce4d1d44 23478ac2 6f9314d1 c1dd1b70 94932492 6aae223d
0927924c c9ef2beb 22b3422d 943c72ca e9218c3d 82011752 08cd102c 1d610fe2
5357abc8 749b6fc6 8abdfe84 e2bb2831 edfa3e07 5235d079 4a15049c 5ec9da09
97d02739 96ed24b3 52476707 f9a232b3 7feb8b1f 8c21cf1e ac688e36 6c1290a9
626e5dcb ab4046e2 8dd81024 38859102 f3e45527 b3409d78 13f5c2b0 f6e47d9f
316cd18d 2e68f49f 8f32f66b 1c0bc55e 3a05d81e 6cc3e586 323d625e f94000b9
0578cbe2 f1e136a0 aa0cfa16 668eda26 b5ab67cd a208d7e3 e12e6a78 287386df
21035f89 cbe7eae5 61f013b3 3b88b387 73aa8293 e053fb03 d552416f da43874d
cf49b675 1e3f8fc0 a009afbd c918d415 ab81a726 236e4603 3cc248c9 885a4aa4
02240a2c 73e7b3ce 83d11553 60d87d79 10e48fbc b5ec62c7 d8d875ce d2f91d0d
18aadffa 12c1d9b0 228cd99b b65779c2 cbbbb904 2a9f3275 608e36ed a2d7eb12
e840caf1 cfe4e4d6 8f8f85b7 84742124 3ce1ace9 23d95c2a 93ce58e0 b25ff388
8ab03121 c9cb2ea4 dd3539d0 f50c912a 7aa4fa4f a3a72aeb 871e00ac 17be8a48
f37eb91f 85fa86f2 df1738a2 da44bb44 c2c420f7 72c1cb2c a3dcedf5 fa29dd73
fedee4b7 dba33ea5 56a01a76 596522b9 b931155e 160d466e 3bfe65ea ebb1697c
1135d0e6 90930b47 87b67132 b30649ba 53d04b62 5e8b609a 0a117bff cc72f71e
134a549d ba77f503 b762795e 879f7092 07797c9e 976a6a25 84b02bd9 b5e0f7e8
e6538386 6ef65427 2adb63c5 04a09085 5e351d86 747bfa4e ff07a1fc 11460f75
cc9d7d0c 9754a0c2 657a7b09 2365232a b2ce503c 7d477a09 3b5edaf1 28ca84ac
c690d9e0 62a1d464 a373728b af795b77 244a107d fd9041b7 a862bf9e 92f9891d
503eac07 53867730 e957acf2 181aaa17 1b7b88ee 2c9d562d 681948fe ec32f779
8f9aa48d e7228acf 83cb71b8 a6d6993e aba8deae 39c30fd0 cff06b17 6c21767c
ea89d532 ec15ccfb b158c5c6 d076ef15 ec315cf2 43813398 c7ccec5b b31926be
5bc71c81 d934d6a0 031d7501 e5f341ed a22b899d d9932c5f dbaf9675 104b6c7b
c224c211 ba4c9335 bb9bee51 55a45295 ff90c378 00866c70 1f7d3437 98ceb67e
ac5ae03e baa84081 b8d8a85c bcd8be7b 655b37a2 8efe07f0 28dfc69e b5046afa
53789692 b8af8cfc 120dd425 48c64477 ac1f83c8 4251e50b cfe69594 445bfcee
442a8929 76174e00 ef66ebde b2425153 79973974 d4a57ded c6ece719 9bb0d4c3
3eeda641 e9de8dc9 cf842529 b7efb5a7 b8cc5214 737fc580 ef068f34 2173c0b6
8ebcc4dc 1d444f86 b3e0df7e 536a9dcf 50a27492 4b6c156e fbd71ee8 5b0e128f
827fb936 68a88d95 53307835 b6cf2b91 50eff584 82b51bff 396c5471 c57258d9
048a60f0 ea0d81da a68e37f0 eb3593af c4d8ebed e5b24d1c 367bdde6 92e1ae50
dcc77a6c 43296662 59a9f54a eaab1d53 b335af2a b7c974a4 66af797e 445ca1f8
d7493feb 4473f3e5 b57021b3 65135131 95136833 f8d34bef e94762e4 d67bdf37
be82ed4d c8b6a804 e47992f8 e9bbfe32 670909ef 27b35aa3 d5cb39b3 217353fe
7ea60178 7a32c9ce 86fc2ed9 373ab2db a5ee0c60 9757ec12 b137f345 c210e365
4c932d45 d1e8cc61 8355839e 9a54f2e3 cae1fa45 414ff8bf 66649ec2 acbb994b
31bfd40c 01a4de84 c7e0a5ee 0f5891c0 6aeb6208 ddcf9269 a6a54d69 87242253
b8a2fccd ee221e5f db17c1bc 1a24edcc ccff861c c6253789 c09adce0 449228e7
673ec050 97575d70 17d37774 a6ef4514 09a5245c fcb71ca9 9808d947 19c4e173
175390ea 7f511c6d 73d0839c 0a7c0cb1 4084dc8a 1199717c 060e1cf6 7ea9a4fd
5c5e0bc5 57fcc198 851ef098 fcb3f45b 090055c0 e108dde4 38051132 9a62f1d2
b6aa5c84 e7718342 a4a797a3 f8718d45 69b228ef 620ae0d1 9b4311b2 a80dcd7d
058d3923 765ea4dc 513638e6 829dbac6 e9fa9722 6ddc673d 1884f5b9 1ada98a2
e5ae7d29 9a2a8f4e a975d3c9 1ce8a94c 4cea3b4c 72b7814b 1cf9f599 dae48453
bee137a1 639556f6 9394e321 69c77ec2 cdd0fed8 6785205c 7b40b392 c9d36ff3
379ccf58 6298da83 234a1470 3a132966 8660bda9 ad38dcf5 490ff75d d86b6412
d3f6add1 925cba8e b8795d4b f97144b1 bed9b35a 88b1eeec 5f4b226f 66b7d860
639c66c9 cf96d271 b832dac8 905fd7a7 a23c8476 7d571436 c4cf1666 a8f0c31c
8242ead3 eff0372f bf589ac7 8667cc01 3e42214e 2d3fb594 139c0973 0bd218da
9d827da1 f484a292 ecf1b234 2cb65ec6 4c10d913 896e64c8 1232f13b b972c0b5
e07b21b9 4b10f375 c7ae2f23 ffab1d8d 7e7e9f1e 5108e4d8 b38fb0ed 55499837
69673b1c b3b2ec7d 34985c57 20ad05ee 15fa650f 915c37bc 9e80eb92 55fa40b2
891fa3f2 f007b0f6 ee86d205 0a58a549 c26efd09 40b76776 7cf0696f 5ac0d5f1
de8e8607 405ebd72 af62741c b394d321 9d9ee4bf feaea700 e2e504f3 e7460c21
d27739c4 52e52249 2a088188 3d9657cd b705183f ed8c215d 74d0e707 082659d9
2ab9cdf8 19bd5127 9f28a05e a3173b92 0e5856d1 a9bb823d 0c08e512 8b931c19
e265d81a 9a729f52 db918d6d 461c7f12 ff9d50fa be731c7a 2f02ffc6 9fdba92b
67cef711 7e0f7441 27eb41d2 6bf512e5 6938f68a eed14a89 cce4eb66 e9482205
c9ae023f 9810160d 31960d44 86dcad9a 360de7df 3df5ae62 769959f3 3528a1e0
25947597 33552e81 9e253f26 75c18a08 98b7b06d 97e9f5d7 f894b8fe 45c783d9
4c6ca710 d128d103 60e98f01 fa1e6338 798ad5ca 5f5b676f 63009ec4 7072621f
ae0005d0 8a84739d e929b514 1a4dca6b 630176f4 d6213707 239231d7 7f26cc09
ef978a67 756bfb6a 7275532d f2df4355 07567009 9f256aa7 9d653cb0 108aef04
34d32cd4 b67bf253 a2074bba d1883b64 1d35b3f2 2705208f e099dee0 e8baed3c
2800cdb2 4e52e12a 540c24ce ec319003 4f0e5517 4244caec d5a2683a 3409c00a
fd33b9f7 28ee4660 c1996b80 c2577fcd 239e2616 1895403d e9166ef6 e049a930
0c04a05f 991284ba 846d1a4a f480eba3 56b76b4a 902b6ee8 eb5fc404 97f7db69
b1c2c6cf 3640a6a4 e951e28f 2fbbb3d0 fee8ad5f 46f314d8 29da9e6a 77e324ea
69d006d1 9d8aa18a 7c96a204 8f9f4fa5 f29347ef cf3ef14c 8fec1fc3 196ac38a
72cda94f 863c8c0d 1e64599d 41824117 a9887ed9 42f2ac88 56476298 1ec28412
26370ced 8761d2b0 301b1bf6 f3ade5fd bc8f2825 36110633 44df5cc2 e7775e33
2e69e17e c12a9ac1 2be017b4 92af5d39 0840397f f07c571e 2b42c487 9f36ffaa
cc9241cc 57659445 888f03a0 f1835673 c03ef96d 7e4fb948 493326a1 404aa7fa
33db2f68 30344a28 de335822 9029a183 96504aa5 f42c624f ccc185c1 11bc0377
1e6dc223 053e86fe 35483bdd a06593e5 de4abafa 8d7d4ecb 0c00678a 4d4bd449
ea175c93 6e955e0d afd6a227 bd657840 4c075709 1b84ef9e ee64b733 7cb8d4ea
e61dfb23 918748e1 982c617f 7be61291 817eb173 89238ba0 89f7f8f0 d93db471
fd857ead 06560c39 65708bbb bbecb58d 0769870c bbc7eec0 95651264 2a417c49
aae82baa a36c90b4 8cc0c4f1 41cb9e3a 332d58ce 917abc5a d76f23b7 458a8f2b
6fc1705c e7521c13 1f1eff89 4fe5b1cd 4402b005 7c10d481 a2d2fb98 76bfa3db
8e340d3e e89db098 021489c5 f317f542 68e4f961 9f07dd11 534a0070 ed41e85f
eb1e395d e36db1d9 f0b2e84a fcadbc34 6459f4cc 20257dd7 e92ba4c9 1792bacf
a22f1e62 dcf8b25e 2e486e46 1d1c75aa 3eef3e3d 07d2d710 58e706cc 86576a08
a274708a 111eaffc 4a661032 68803c91 992ab1a5 819bf301 ccd5a6f3 6492c363
2ede3f2c b78e3dc6 d0940afb 5f61477b 35f300dc d9b97f74 7960f337 c1a2b68e
8bea683c 95dd50ae f8900b38 fe2cb08c 97c1a673 e994eee4 926b7e46 ef3a45e4
02cae499 efc34783 0d23b592 f04f046a 08945ab3 bd4f4ce4 f3816511 a68c41c6
92a4bf0b eed3b083 e401ca7c a361af65 285865ab bff569af 48244a52 5e599d5b
6b2568c6 728057ae 03813364 a60a2e10 2254e61f 8174ca57 eb4d657c 71946477
8400b355 2d2fa92c 11359fdc cc75f25a b9bbd947 78fb8cc0 e3c5a2d8 a9b2f427
4613a9a5 5ccac004 c45cf238 299d2a19 036b7175 ba11b39b f8459b2c 8070a410
4a1b2e1e 44973e70 088952f5 c2b87d76 7d92d1c2 b9e3fc97 dc560ad9 4abc121b
a5054586 8f1137c9 ecfccc61 68fba448 c9d0dd62 4f304864 d6ec5917 a737b354
9852ab14 cbf0741b da4f3700 47973708 dd42d405 d64f371d 0f960aaa 3c71558c
ac4c081a 0087138f de96364f 836d00ef d591508b 54682461 4a6041b1 27c3a6be
66d61e05 ebba0f8e 4f951dbf a8699c76 877242fa a7356898 0b0fb049 c0716a41
0d7419a6 abca789b a04fff8c 1d578754 9f51c043 0620eaee e493676c 74a8ceef
842dd54f a25d3536 c258fca1 722169e7 d30594fb c3815fb9 81546610 6559a0e0
c9550e79 af438cda a8949376 5b5a277b c1976003 bf9db728 2597ce85 b2e032fc
4dbadd0c c25f9770 67ca2689 9e60f0da e8987f5a 70f7b4d9 a35a413f c8a07723
50d668e9 56e6e6b9 26144e76 eefc999c d19c43b2 345f9b0f f06206bb a745e7e0
ad422bc5 89afadb8 10d6ac32 992dc504 e151e8b0 64a71ca5 5ffa5e57 1de7c2c4
49ece62c e58eaa3f 9113e88d 79384e9a df1a6f9d 0553cad2 ae2253bd 83aa90b1
1a7ead89 ff5baeb7 0e97a392 eb69e9b1 b3f22026 d5a5bc25 97306a05 fdddb0ae
9af75c9d fbc7ba93 e0e2c4fe 9761e6e6 22502b4d 20ee2098 24e9a7f5 d705114c
f7b7262b 90268c6f 8060fbde d66e53de 00cddb25 f9560348 e021d77b 67f85aee
5fa93b73 f081c22c ed7ae0a2 d1f73cd9 120c3a64 4ce4f375 3ec8218c 96175428
890074c1 a0a10463 a6797f6a a4a4ad2c cf154fd7 ab5095f1 d5546b64 c6ff6382
f529b846 998da8ff 11c09de1 db5e6a4f c0843f50 0f649ad8 630efc53 ecbd651c
0638804e d6b96d4a 6af4cab3 1c99097b 11f31906 9c3c0efb f90d2549 be107047
38ad616a f7abeefa a84e3b5a 707537e9 cbb01fbe d0c91e81 5dd72b28 ebe61d10
83455769 f55b8967 6f1e9fe9 87261f75 0f8ad7c8 82170208 d8d7b235 c8bd495a
de6ccb39 e4aa35ef d3dffdc8 84a22516 cc3109fd 5016fe36 df19b38d e54addc7
9c8feccc c6953bf3 0642aace 5571a0c3 da8b69ca 01118cc6 beca9f3c 136633f7
c5a52038 eac234f3 fd59fe55 659173b4 60598626 e7b996cf 99374f11 8209572b
50c84edb 279ffaf0 959a49f1 e369c537 dc7ce2b9 03b52126 28d48348 e04efd32
66c92710 75e0318f 9d74be06 c784efd4 adcba1e9 56fcdb9a 1ae7aac1 0943d80f
aa4e7923 0b6ae6b3 26558365 906a783b c8b4ec85 54f27876 44f4c249 59cdc377
52d67c78 b6706b7b 8a5f15a9 422d8b88 a0c08ffd 86e0cb98 06b47dec 2682065a
73d50d49 1d05d1a4 8a2efce0 c06c15d1 a1689fa6 d2d851a2 f32361dc 17ac7f0f
921ae695 63697234 2af0ca1b 50a01367 aa720439 68c06258 29145a4b b62d396d
0a9a10d5 e1f48364 9c728f1d 8e354ede e910f5ac 332b5555 fb712399 c3ffca0a
8381b4a9 846a3bd3 ac52a319 ab5491d3 01ef1ff3 5c42962e 8c7b967e b3b79223
f1d918f3 4fd714f9 fa5370da d0f74588 4f973888 2344c350 1893bbac 83155ef8
de6c9335 5a7ac7ca 59052378 0d6a8d38 d4041e79 35cc06a9 7619f0f7 9f97416e
8622530e 05cc3a43 97962b81 bfe5a9f2 fcb7146b e5d9777f 32feb367 c101b7c7
77a6ff23 c93eb2de 5ad702c4 120ec0a7 973e31d5 c142b59c e0e4f64d 5606ca12
d936304d a91c759a 5e5e8e33 f0205fcf eb051114 adce7293 4920cea4 5c7d0881
829b802a d2943f37 ae342cf7 85395b32 dadf31ce 178de8ff 614c68d5 5731653d
73e1e773 0fef260c 9da641c5 4fa744e3 7d363a5f f561b34a 9c1170c3 1be99bbb
f70d7301 90ea3688 20e4ced7 8c046149 3029116a 86383878 1a512528 baa6ffa8
99177c26 0a063f95 a533a218 69d67029 a1797e01 15f6f55d d4cecd60 c49021d9
4ae56e3c fa911494 696e711b e1d180cd 639edd0d 71184d23 2f9f2016 faa701a2
d791fd25 8ddc6a55 d7fdb9e7 25d684d8 1c558248 90a5a2c0 86933142 a0b4eeed
64eda867 08bad009 2574d470 3dbdf19e 91d1f12e 2e5f64b3 08db4359 f0c4a460
6726de0e 231a98cb 27a3ed78 4f04050f 4eceef1f 7ce935a1 deab1fce 37abc8bb
7f9c532a 7c552e68 d8231efa 3871ad7a 7d1c7d8d 57b43561 bc6b2595 8397bbd3
53e4a307 cc2a6305 22459b8b 22f581e5 466e5025 6fb72b7b 559653af 8b84bd47
7d522230 06b549f5 e8c1704c 48608154 663ff6c7 ea5f3f35 2d1ad853 f575c507
4532ea96 ebdda909 ac556782 8cfa3337 b91f1964 ce1da1d6 593da8c3 77433b6f
92b2a589 8bc9cc78 87c17cda 99f5d977 7595068b 207c32b7 7aa47261 2942086b
36785f77 c027b56b df8396e9 fc14a731 8e198b87 6f282226 9dfd146d 5fb4972e
248bcdc8 3dfa1edf 03157aed 5b8482fc 315cd928 d9b8634b 78b470c2 408dba1b
8fba66e1 0fb7ae84 2790eebe 5f0f1d24 62c95a24 d88f24c9 513e106d 34702754
dbed1c47 00d53545 b83b0539 4d6cd8c8 3d873e20 0de7992b 15666d95 63bb5f2d
d6e770d0 0e128d0e 7770cc8d 1f38e871 fbdc06ea 222ba7bc 7ed80522 e3f4c5dd
467cb36b 959dc389 58febdbc 498102ad 43060577 6f894d64 e5344377 454a1d22
5e923ace e7b3050c 57c9cf65 48e4444f ebe7f4c6 7e0dc6cd 9695ef4b c058f707
31ba0d65 d64c23d5 4dbe1d71 0f9658ab 10a1f71f 762f4816 33740c05 8c151963
3b4387e7 ea0714c5 17face10 d49a78ad 6dbe166d c8d8c94c 03a89820 25337706
c886114f f89d8408 15af74c4 46e6594d 73f9d486 fe5fa400 a97f1122 e2894694
55b189a4 234e4cd0 c73698f2 6a78a2b0 5956fb24 939d7c32 d985c420 3648ba68
6c1fbaab cbe8ea66 012214bf 14f47ce0 cdfb3972 00d4581b a8411b9e 05248b59
4cfd745a 5f206a4f f76e4527 83502141 7ff7c384 283fc422 730e0e64 988a71fa
139f68f7 02193415 285e3338 a84448d6 5d6ff76d 10d9fb83 55afe03a 61bb7e4b
89bd0579 08ecb78e 78430ea4 b9bb4486 3bc4960f 6a0a3382 7e718633 f4016323
c326db00 3987b197 6d909717 1c66d1a5 b2b3fa81 eea712e2 b24b6865 d8dce09a
63db626e 2d53b249 468dfc45 fe81b48b 90aae024 a3b884c7 0d0af66d d074f1ce
7cca0764 6c363846 b71cf070 6ce9ca96 6adcc985 0fb0fe44 c9df5e84 ea4b48ae
3748a70c c218181f 6f4b8cec 2609a3af 26d93877 467b21b7 ecab045b f094d85d
92090035 91f82127 5ff5189e 40524390 d745eba5 acc7d536 d136652b 73bdf7cc
392b9517 2b2f5ed3 efed5395 44392cf9 af0460c3 afd96bc8 6b2bad6e 39bf9be3
1709573c 74a98a45 e4ee4e7c c31a92df 6cb225ea 2f78020d 6e783775 3b8bed63
67edfd20 f931c163 6898097d bd4f6170 5e8e94fa b5a77efe 6e860f21 e2ad2a79
2bfa8a93 6a1c6536 f96a40a3 5f21c405 eb4707df 4b8afc38 3a9c31a8 1996e7c2
3d835265 8e8de87f 91b99b7d 41591568 0fd033a4 4bc5c8ed 93a6f818 997f97bc
62e5a304 373d00c4 f374cd3b 1a449617 e819807c a5babc2a 94e70c60 1b3ac73e
22f2f451 55f5ff79 8336d22a 04f92421 0c2030f1 4ed63b4d 09423de7 9e28d53a
b35d3e8a 8fb01fc4 b086169e 242b9f85 2d735373 e31452cf 07ce9999 0abd5a7c
1558a154 f566a810 79b8f64b 05e0984c 4cb68864 4613e00c 36608f36 b32a5ac6
cbd91c10 95fb654a b6015cc7 05e31e38 43c9d7cf 612cc29f 07c1e45a a8b7cea2
51d3c306 e3eff0b5 ee5821bb 70142b9d c51c7c6f 0a979f4a c78e0845 1845659b
e9dec2de 42b3c294 b8bf50cc b0feab05 302494c8 508bc640 e81af790 63357b5e
555816f1 cdf84626 e64bd580 333fd4d4 b25045a9 7191b80a f69f6bc2 177cce03
296e4495 263820d5 31126298 a7353256 5bdc8d71 ea4ac403 75853004 605ce01c
a2a887e8 233b0384 46be0f16 d2996dba f067657a 8c8a20ca 028cf4be 9f8d3e8b
d2ac747d e3f06c3d 3630c3fe 405938e8 34f8f725 9e597282 28f4cb0a 73540339
ae3d3b6c 51370128 3b07132b 00ec0cd4 4c735065 09a1ae02 eeaf1235 b8ba0fe9
1055383a cecf7654 46524a3d e119aada 3ca53857 3cce671a bf45fdf0 4c3ee8c1
79409099 2293a79a 827ee9c1 01760f5b e2dba665 1d513e67 2fe07f2e 8fa43a45
435ddf84 3ef80c56 92e7d982 252a1896 deafdd60 d19d64be a633ed8a de3d1388
a64afcf9 4223daa4 94d0e9cf cc88b262 8eff326b acea4a8a beeb8b1c 65736546
812c42f1 49dba2c0 d549c1c5 5398e591 c9a3178a b3c7f997 1a06a909 347ab640
3e82b7d0 446d6ef3 b3ac69d1 4e1761b2 065db0f9 5114417f 76248fe3 aa143777
71dfca2f de8e1fd8 24731802 a084aed8 84e03878 b55d584f e5615a28 0a892184
a5851efc 8f3a7737 5e608ef1 a39b68e8 da314695 e7461755 8c3c2b08 81d994e0
c957576c 71762b89 16113205 11c4a713 d4a1ac22 70ed6d36 819bcd5b 691dc281
69f81161 9b56b038 2efbf4fe fde7401b 251180eb a8368317 30f2ec2f 0a282971
531add2d 9e85d318 35246588 a79c9333 85c2da94 f88f04dc bf18915e 3d5908bc
a490cf1e 7174d52a cab04d18 7eba3e19 9fa72767 975262d5 2baa7f3c 68e93ff1
27c439bf c6fd0d84 cf8e3c1a 3a8b67be cdab2fa5 008b0c93 02e34595 46a27577
2ef72165 652d94d6 04f3c03b 78cc1efe 6ad6d5e2 4ba18ff2 98a27d61 85ffa09c
e610c77a f5b89390 650b484e 3bf7286c 6df8a4d2 1d779a34 59c18717 2d3ecaed
05eef765 0c33f995 e82c2c27 ce8aa294 e9802189 ec384c1a 770dea55 b2ac523b
ace34aef 6604df79 d7b82db3 155c9e55 0b9c8c49 4ea48ae5 d04f923a 6831be26
3ad28fba 8c99794d c2186101 c2746cde cdd17e3a ff3e7473 d86ca4ea 01da88db
a52c6fa3 4f1ae9ea fec90a9d 61073deb fb7280a0 ebb36a46 8e683cf1 45848612
ef2569e0 c9a8d267 b65b08dc 008d2ddd 8491826f 957243e4 3dff8222 e12d0bf4
05292c7f 41ebf333 bacde6b1 836aae49 48609a8a 7fc0e5b4 958b7756 678679d2
5385b65f e781224c 52e3487d 855bb37c 8a84793c c8bc7773 0559de89 24da84f0
0d79f1e2 c911cac4 334501d4 2a07f980 22c3f273 411c04bd 85188e78 79f74dbe
b27de4c3 5d4b15f7 164be96e cfb89928 71ee1e71 4fe444a7 47d93a8b 97bc24cd
984d6f47 84854022 96ca8238 bb437ebd b4ea92bb a0cbbc41 57c09dda 47673a57
d0157aee 613519f8 481aeaae 6e13191d 99a3ac6f 7355e46a c73f25e4 bb353709
3baf1ead 88e658ca 9e55f6cf 782e22a8 98c69c66 ec666b4e 51f378e7 20a3f968
5038dde7 3c99dec0 3c12e308 3ad31b2b e1590447 7f2046c6 47d7f567 9fd7d85b
bfa8f73a 46a1c87e a1d5af5f d4dbe116 e56a60d9 4615c5f2 79dedf54 d05b8b27
2920c2bf 9e91070c 60b52d18 85f5493d a8cecd6d 049287ba 62704547 fb83282e
b43f3a93 612a9d93 1432d860 aff38816 f273730e c3b3a703 d3d8ccc2 01be3a4a
b70aff11 8fd6bdc8 9c752608 4881fe43 dca5be00 001f25b8 4b04c2e6 2efc41c0
d1737f6e 33e7d5dc 3bc86c76 44a0c2f5 b10f9331 21b97dfa 947c2a02 787b7ebd
6fae52cc 33161739 d1b1611a 41547880 75ab7b7a 8b9e724d c6164610 ac8b79e3
c9fca8a2 c0a9324c d74cb5c9 55db1e26 872f803b 99ad092f 357c5134 00747ea5
39dd7641 9807c87f 66b4e999 9ca1a1ef 989491ba 1a8437b8 305b9667 48bbdacd
57693f2a 761693a6 f79358dd 44139203 1b228337 12502dd2 ee9693c0 d9d4039d
9912b601 485fc8c5 038101b4 b92281b2 6d5f14f0 43a751c5 4f757cc0 54e64048
e55cb14c b92bf7f3 5e960521 27a216df a8ba1b40 8bbb6ccd 915df83b 888a4ab9
8ecc22c8 56c11614 c45436c2 88f15ebd ca95b5de c72db84d 51831880 75630495
8209b091 618e12a7 9c4fa577 d2b0a2c2 e8fd182e 524a3a6d 8b09ad20 1f1d55b3
49dedbae 99619824 4d41ae2f 8bd31bb5 4c4ac62e 9cedfbfd c46e91cc 7dd1b449
5e37aea4 5d84733d c82eb6d0 32edbc73 8ae95050 24239b00 5bfc689b ac85b765
8e7c0ba9 81453a88 0e3bd821 dfc5f47a 1beea4ec eb2d4f92 5fdaeb76 cdef9f7d
103eb5bf 29b3509d 2b651058 1b4e89d8 e593d7d4 18878ca1 4e024c00 6a275777
bff0ad77 0f1ac8cc 68059b98 e2c8133e bfb0be82 a1927bd0 2d15be6f 93cdd20c
a653a49a 552448c4 fd98abc5 0d6b057d 0935c7ac eb75b938 031e0b1a bf73d10f
a02fe096 030285e2 67cce7ca d3ebf8b0 c98b40b2 2585bf29 0f550cd7 44508fe4
a5ee1dc2 9a72d2c9 cedba882 d6fc5c87 4af103f8 43653b37 99ea1520 5d9ee041
1c504ec7 902ef046 968c5921 cf219ec2 8210f568 68e22695 b451ee50 c43a7c79
54514d7c b2df11e2 1fad00e8 415271e7 2ffb83cf f95cc952 ccc186a1 39b91366
c1cfaed7 bc7c7175 b365e249 1664c82c c65c33b9 869c0bb1 4bfb9bfa f932bca2
fda6c604 15a2dc86 b0b07ad4 a1f64240 1322ccad e9c924ce 8877b1da d7a6c8ee
9e4f0bec 81b2e500 014e7c99 f097fb48 3fe203fd 33b97482 ba4a8df9 28167c03
c3c11f48 c72e57e9 5481c5c9 9c79955a 820ab7fa 92fdf310 529551d0 b488ce4a
1fb197f8 71e1abcb f1bfb0e7 faf80b8b 5b875da8 c4a19a54 49a0d573 136401cc
c4bdd28c cad16787 6b1142ba 14500f3e 524491d7 0f81e0f8 160c93cd 68897094
ed022864 29f7f18e 2f2be86e 4d0ca598 87287370 a58e3d1d 6081dba9 eceb2824
b5d9071b 2c94e4a5 e0276e88 5e760ee0 655c26a7 cecb5709 5b04a26f 76a56386
1587ae53 8056475e 3ae7db54 63946cc4 2f01b1c7 6575f7c7 0e22bc27 109deaa8
6c69285b 0d9e65e2 5fbb5265 bc158f0d eb91b057 dcaff29d 503e4e34 e054314c
7f322230 663e0b82 6531400b 524189bd 1058d5d8 4b522c25 c2c614fa a732b7ec
dac860bf 1b3c05aa 589ff62c a8f8a8cf 893ceadc 98ebb223 78f4db84 7174f168
ac06ea97 c9b4986e e0e113f2 fdb14936 c1d87540 7b38bc4c b78ab680 96353a4b
aac56b30 201d5568 89222aa6 5fe1c7ae b4c66bd5 026886b1 0d469f75 8e201def
1fbdd029 aed094a8 3f04f231 2563719a 021a9b4e 2b86fd32 c05e54a4 553d942e
6299d748 14f14a65 5769fa93 f339aed4 3e2d7f1e a2f30231 392efb40 5efe0b0b
8f6b8f42 ec498e7b 9c4cfdd7 22e99efc b2651fc9 ed010903 b7131da1 ab5dd018
550e0ff8 97bc7d01 652adf93 6c758eba d41b3570 c057f753 4b0cd1a4 85fb22e5
067a2a6c ff5b877b 8e1e80c7 95f10e85 e95e8fbb 5144a2d5 4ee3b2a8 529059db
8c7aae4c eac7679c 9cf4405c efd58e27 98bd4681 f1e29131 a05efa57 22ceabeb
77d9b28c 7caf7951 76a66ab9 607d8695 6c1476b9 350a656a b91a0634 5ce5b1c3
5e465936 9de1ca07 5cdc5864 b481ce96 4872187e 9b0177bc 4ae761d6 058f2580
e7e3b3a1 9caa0f5e f9ad6e66 adeb1e03 3db5bea6 25ce7af7 47cd3a36 46fc8bb3
de6296fd 4febfbb0 dd0bc1f7 f1f47cb0 be4d52e3 f67a0d3b 183b7a61 2c57e35b
f278b50f b83e9ab4 97315ad0 7d047211 7348419f 9753da7e 4b7bf7d2 3b4d03f9
734cda43 d014f03d 3122be84 2948c556 1f1dbcd1 95c951cb a95c7fa8 94cabf29
219b8b7e 6bae35e8 84645fe8 a2068011 c9bb5a51 19c5453a 7f5c9ca8 8a3d4c38
8ae7c9cc 0af3f2c8 958ee2c4 cdd637b0 904aa9d6 3ff24764 3793258c e2b46deb
a811840c feca74fd 72ada719 ee1437a3 1fab1e71 1ee371cd 565db1db acc85563
cb8811b9 c30f5f22 b9b40426 7e2ea7ce c3171580 c2b0b96c 64bd1546 69d56e76
c65128a5 498eff31 68209eed 9b834b79 3bc9fd2a 7de40cf9 9b787a1a a8ae76bc
cd457aa0 08c28fe4 c8f81f48 eb85938d d58981db b5f68306 93079000 3666beed
41e30b28 232414ac d5d2d0ef 4f576cdc 124e7a8f 54e3ca29 1ff737b2 1a414642
9a299825 a52a167c 9e652bfe c64c3358 e1a2ac46 3d8963a9 f974ade6 a8547dca
0141ffc8 4d84d41a 7c34b5f4 695cd5f0 33066b0d 69488cd4 cb8daa9f 7a362a19
7087f4be c83ccd88 95ebe68b b916ec06 959f9bbd 9803dd72 d00f77d0 5fa8c671
a2a8d7ef 2a9af83e 511688a0 d0431f97 d9250869 c697ae6b cd16370a a9f93e6d
46296562 b68a6bb5 9cc060cb ae6f60a6 7de561c8 acda2314 72cedcb7 fa60c098
6f852036 f98022bb a51ae240 1e6e0c19 1683b632 f8bb83fc 5f3f62da 819d2df7
5743934d 1f4f390f a6ef7312 66cde06c 13cd9d31 422e1cc7 015817ad 8bd8514a
62c958f4 bee5d702 00c02316 9273a4b3 3e0c5ba3 50998327 8cff56a9 51c44c16
da5cf794 6675fc2c 343406cc ea68ec3d cb8fd5d1 d776b283 d63d7a61 e0cb6d02
ad5d9ea2 6ad70f49 c8cdd4b1 13a8b943 c94e5284 c0dd1eda 7293840e 08dd656b
8986ca59 0bd476bb bd365986 14cbd55d 9aad489e a6db2a4f 2492437f 57d75605
2038cc50 082e9edc f288afd9 160421ca 646d5ec1 b635bd0c b63117fa d90776c9
2dfd0233 37c2e08c 4fffdeb7 c0868e2c 3d6fe2bd 62b34af2 18026c0a 35efd563
bba29d8d b54161cc 056c0de4 8f475fc5 3f3b83c1 600161bb 40b64106 a6688967
c7ec6a37 1d26bcfb 5041e86f 69f156d6 27bec555 dcfd11e9 7e6dd0eb 2d205e55
d822563c f04df3a0 37562bfa e7bafac8 5aefdf0e b03c208b f55b1d56 884f74c5
2de42123 deaafce3 1aa00274 689aad16 df83f0e4 d0b3131f a5000664 8886b99e
8672cc94 51a4bbb6 d0303f34 16299fd7 65950ba4 5f090545 ee74e058 964feff4
f3fff12b 0edc6ae5 e005a1ac 57a7c083 2a6e59ee c3e9fcd6 e72d50ea 2157a687
573dad24 b8cbae22 26592c8b cb195f9f 7e74a7bb c8121f89 8f26f1f1 ccdf3073
3730f2c1 2b573b9e 9eb7a4de 8fba7377 9bfab82c b98d0ad4 ff9d01f0 79455b36
c5573cf5 0ecba438 893ab4c6 df838a9d 7895bcd3 2d610ec5 78345a38 8874bddf
5938eb32 d467ade1 f536d568 8eb2f002 3472b91c 2988f72b 807d3182 5e21a84c
06830324 6eeaf345 e7906b81 f1186971 1d4cab22 cbefe814 c64a34fd 9270316d
d01e8cff be6ac8a4 da8726ba c99064b3 8c19130c 15b3fbdb 1cd33c66 d6dc43ff
edcf1c19 f954daca b77c4da9 875f5fbe 5e79ba28 cde8c019 0fb59930 f0af018c
8cade6f5 d5b27e9c ba122e82 e28a2335 92154bef 95a39040 64621ab7 3e018cf4
9fb23cd3 b1bbb54b fdecca3e 886af4d7 b8d1bd42 159d174d a93bd830 8f6b05b4
b1fae328 d8b0f856 f32b3b64 9211c7df ed68a7bc 167daadc 826084a5 854eab27
b806132a 7b0ec196 f02198bd de13ed50 ae1ab068 915d68e3 50784d44 d018a983
be8d22ca 9419f183 008ea314 919531c1 7e8b9bbd 717bfdc9 c04b7916 df42441b
86e2a237 117f0a1a 10dba988 692466de 13ff3d5f 78e5d365 d0e1e719 d2f71109
2dc28d8c b4bb86cb 11fbe1c3 d0d0c8cd e49ac222 dfe90e6b b3a48644 6f190034
c0fcc7b5 047f5f2c 90fb580b fdf8163b ae52bd72 121ddfae ae14ba6c ab71dadc
6749b06a 40230aeb 82b1b3ea dc43d487 dd713833 32e32c5c 86ef4f1f 318239bb
15090b31 9ad2e8a0 6b59103b ea692959 764dc88b 8f839f96 91e4c97a ddb4a40d
7beb5e41 32cc385d 9a9299b3 14c33cce 12e492f8 329f4e66 c95cd096 a2c090c2
9e1d66d2 c9211e83 b81076c3 f287659e 0d4bee3f b33f023c 62c1b459 78902d40
3d7a565e a5e86581 3ccac326 048f39de ea09f8b8 4d01e7d1 a683cbec 958a995d
4bb3bee8 5ea257c1 0f912416 d8cbc0a5 9883017c 1d14fe09 9164f5dc 50268a5a
52d97809 68c5d22c 572cff81 ee83c352 7d614fc0 c5bc537c f66d24ca 364ac79b
441bb839 106f47d3 e2e1718d c92825d2 6f608230 66713ab3 c6b43bd5 7ca60360
0c96d9c1 182a6500 5da5f557 5c7c0734 402c9ece bd607727 2f40ce5b 7984838d
d8f82450 2bfcffbb 618dffb3 e7bb29c8 7cd2bb13 f2048634 857447e3 d01c3f3e
c58109c8 3dd1be60 8734cc79 04a8fcac 61627b9b b5153ac9 37cbee21 e30b9fb9
5cd58a28 d25c4808 ed2c8120 9c29f253 00ba08b5 120f074a 6799323d 49370e43
3a5ae2a0 f46cc84a 06588ee5 7a72601b e7c5fed0 d706f802 de95283a 7e8dfb76
dcf37dd6 4fdb56a9 d38ac319 686939ce 5868f7df b53910e8 1e48f23e a315435a
64a6043f df295a34 844d774f 3f910778 e31606b1 e4be469e 81657268 bbb66a1f
5ccc864d 990ab372 51ae0313 17212fb2 86986178 e421ce82 15248b95 8585b3ca
c420b5f3 4fdc498f 928cac74 f3956167 d2f63a7d 20df1316 6cc9fba6 8ef6117c
607b95ad 444a4224 c300191c 2ba31a2e 32cf5e12 9f768922 08e80b04 ca16f061
afeb43ef 24c75a40 8135b764 596b1375 cb28f03a 7058698f 754b991b 29d93c7f
5c38e435 82196b07 8b2acd06 48cca4c9 f63baa67 60707746 bf478ae9 3ce6e464
e945e3e5 1b5b931f 01b6a0cf 2d9e264b 504d0e98 75d0991c 7d7ad6a8 dbe5bd8b
d64faf47 d72bd473 82a65074 8d8fb4c7 44877c3e 56bc0d67 6f4d3362 d17863f1
185e6125 be979261 62a889ed 4aebc16b 587c191e e465f1bd a2634470 ca25a982
f86ec906 0c111729 281ebd9d 2737c9e0 cd724b01 a2211f8e e908e17f cc783c2d
5333eeda 05d8b549 cab577d2 4e921ef5 ec07dc76 2a0a6637 612caddc a6e3ab07
a76e2872 404552bb 726cb603 1199947a c0aefa26 0d05c6aa 805a1846 4aca1867
992197a1 bf9ff9c2 9440d61c 4e3c7205 79927c6d 5eed7e6a f7016bc6 6d5490bc
8c47625d 9a1d6fcc 26063374 9bd8042e 1b0de28f ee416da6 911bfb25 6ccee034
16cb7d1a fb039af8 afeb1ed6 e8d820b1 c20639ea 03f3008a 936ce25a a904a12c
62e5ab8f f922dcb0 87913946 838b7920 f9b24b57 b3943692 fe6f9860 a619735d
9bb11a20 9b7972fb 366cf52e f6271317 ed3cc435 1e224934 abea1623 41f70e28
a9df7991 f7ae84fe 0c8c2abc 06090fec cf01f2dd 7d895fd3 87edc4a8 5451959d
6d3aa525 8de32bda 97fb782e 2de96e05 89ec369d 46ef0983 84d51aa2 400560a0
ebfc4ac9 35bd9561 f6f54eaf 5fb5ee6f cfe77a0f bd1cec7a 3dc13731 309a7a3d
c3546e64 67222927 9d57b027 82bfe743 b7faee1a fd90a04d 8787aed9 6895b959
85f7b0db b4dcb095 d2514d76 b6b372f5 dea156b9 ddc262aa 0aa39f10 7c9a7168
1b3356a4 efc10597 0d387122 48897590 808c6e91 66b92067 474d91b3 c1755357
923b8089 7411101c 352c93f9 f65cb6dc a2e240e2 e38356c6 0eada495 4219b4f7
1a2578de c7323c1b 623f638e 76ddda6c b9543798 092c0561 75302e9d 0ccd715f
a3d3105f ef4211d0 c6dfec7c 4a32dabb 531d4692 6bc9d1f0 c948641b 7cd77bcf
68ec7203 b9090ac7 c170aedf 729cf66e 26e21092 2eae398f 69dbbcca 8bf2aef4
4d50ade2 f08d7ed5 fb0533d7 c69ed9c2 b7cf718f 1575c715 2f7119d3 55cf3216
839c593c ee364cfa 9641857d 87381430 e61dd4b4 54a3ad81 716c8b5c f488f7e6
6680994b ff02036f bc5bcd66 00293000 aaad514f 652183a2 fb54cbac af9f273f
389ff187 1a36a56b bb77df3f ce960fc5 9999558c a4b4c329 e622e549 c0276c3c
0365db0c 8740d854 5e332c51 689453e2 930d5782 12c66b74 6fca3ac0 59880db0
5185f687 33da38d4 98713265 cd34e191 6b593258 bca6c6c6 12d17154 c033e277
84fd0625 776c2ad6 4d4f149c ac3746f3 3762df11 5190b032 9019d430 14a8723f
61f64b57 e2745072 10cc97f8 513d1530 a5e5a824 e37c3d8e 0c37449f e32a096b
03671f57 d6f51883 a1393eb0 23ca94ed 345082ac 385356f1 6398669d 7b668b1a
d35f2451 0bcde570 89bbc487 a8b9d16a 01ee655f 45ec5c81 deb62b8d e8da708e
9e933f36 36c73b1b d5ab0c6d c4d54f03 234623ce 6da6012b 3eb91fbb 20ec1c97
92e7ad92 aa2f5a78 6c402319 8817c947 4e5240e1 e46d0f8e 379456e4 a37724cd
999ef4d1 0d7e4353 6de0f45d 7174e9ca 97ada6ec 0bf43d3f eabe43ad f4c61f33
2fcdbdc3 62838853 d53ea91b 6aadd6eb 94bb6946 6a643f35 592b6e48 5088cd30
50e267de e3c5b213 b3d0385f 133000a8 baedf77f b6025d21 8d8ffc05 afcea741
535f2665 003a874c 7271b885 efc3e940 87f5851c 11fa0a3b c8310f07 a42c6e90
5ebe08f2 cdc1e70f 95f3c649 33a9d41c aac779df 10a54405 505e0368 7eed10f0
d6605b41 24872f3a a5d5718f d08682e3 4a4bd4b8 92801d16 ae18215a a18f377d
ab100ed5 308dbdd6 5463783a 5409077e bc5834b8 d5c330e0 0e9e1667 1d628d16
1b7b7b20 f851b4cd 85bce5b2 10908b7a f0ce4715 6c19e320 24d8d7ab 306cd9fe
d9022630 02369dce a75c5fad 03808bd9 73290812 816c5f02 0332a7d6 250f6346
8e3441bc 99b8318a 3ab1c53c 60f0b0e5 5ecae8c2 c9210a81 ec3e8418 aa349ce4
177e8615 668be447 2f0437b3 e0ed1379 3b941d2d 336502ad 6cf87294 b6c676ef
91cf7a57 e5ac85c4 4a525bc8 2fde30fa 4fc11bb3 a883847b c17b31e1 fcbb438f
8ff1c9a0 2842be36 33ef2ad8 ac2a51b2 dff361ea 0bb98277 5ff8cb64 7868542b
d6fd98e3 b1e4ae6d 023fcc58 e6a1dbaf 0e6ddf44 0650b104 9e6b198a a74e2cea
39a96446 68474606 c543d737 1e609e85 ef48f787 a50fa4b1 7eeb2f44 9b07d546
90e54873 7f4c8278 442b1b2f 51be25df 084ed38b fd950f65 5d8828e4 cc741b40
8d39a66c e6660d24 fff6b3fc e1a02368 c4905d5c eb801296 b4805118 f860888e
ce8153c2 04173f41 cc116c20 3c3a1176 d5da3b62 40e9bf51 a76e6aed 251f6f67
540d0f07 95dea403 a2e2714d f1c8438b b3749537 f89c9a0c 3902b5c5 8b49d3f5
f843598e 20e033a1 3dbd6968 86e46f72 9f8371a9 c780eb7d 9b85e033 d5603ce8
a1832434 ad303dea abab2819 d85f22aa 658ec12c be2e36e6 be754af0 4403734d
dbd6bccb c23f3399 ef3e0df6 b501e8ed 899f1eed 884c1db2 d1fcd922 2e93a884
c09c9d4d d6bca9e8 e903f9d4 998c56d2 dea475c6 52516003 a1691a9f 8b80cca4
542a5a6e 87ede35f 1eeac0fd 81576a28 4b5c5dc8 c328b5c7 6066d57f 2e8d59b8
0f0dc112 1249b5b6 3d829431 529d36f5 5c95fa47 0a013b42 70b6b765 f41b11ad
2512cff9 12c62977 487217a7 4363a037 e020ba2b c525dc56 adbb4869 c1a7f288
af04b308 169541ab 0af8c5bc 4211f701 3c56d8cd 4d42656f 13f66a25 1bd6b4ff
12dac76c 8d5c7f54 a6976086 d7a5eb3b b058c7e7 c633be23 97a636c9 366e30a2
2f6a248b 741f6271 1e151ba7 aec0f298 62093d6b 403c1b10 20e6f927 bf8e1074
0479a7b2 04c3268c e0e42b06 94b8c08d 382745bf 1f67cef2 bca32100 d3cc7ca8
635161a8 1eb6659b 88548dcc 3cefcbab dd20cc44 863dca55 150cf2c3 fd7af0ff
06af9af9 416db7e0 9269555f bb9c5a28 88a1dd28 4a0c13de ef17724f 277acfff
bc2da3eb f170b968 6f94c3d4 d26ad539 b3fe4aa9 0a688f97 a96cf023 fed488cf
49f08737 bdd996ed 1588e3f5 d298f297 b6726498 bf2f8878 21ab3b84 db1cf7a9
179e24de 94196ab8 86d6209c bb4017cb 89513ece e9b33787 05e0753b 55ad8fb0
e5ebdfef 79da4eeb 2ecbe2f4 840fa99a 65bcbeff 55939c0e 64f85e68 71e60a30
6bfee8dd 4b61ced3 63dffd4f adbe6362 91c0f330 28bed31f 6bb2b6f7 bc2fdd10
d6af54a3 b28d1e04 d1b4dab3 e4e948c9 a7deda2b 7f73582a 2fc6288b 1673e063
bc98002c a9a3e919 8fb6ea78 617fb56d df9db2a3 9d1287dc 95097c80 6adc70d0
1f6b4387 f65c8f4e c8fec2f7 90c86091 ca00cb30 270bf6fa 235d7bab 4608a530
35e706da a7d38375 eeba89b1 15bed252 ebbb639d a9ad1e53 f7396ffa 597316fc
bd5f26ec 7df906fc eb2e2037 ef023e31 9c1faedf 201a1494 5adfeb01 bc983e59
ac9c226b 98a8c6df 7948e7a6 e2f456c6 1b092099 2ace7b38 0d318bf2 4a4b7039
6fda677c c967027d f79f901c c12fa109 07a4c1ba 5c04c551 e1464279 15147f2f
3aa1a05e b28c9aba 297418dc 56c3a790 e8015c67 80fb35dc 4326f057 75f37604
101d6f06 23b465d7 5490f313 05c6353c 6de2d087 33859c88 a7503065 45ffba11
aed18b8b ec0b85de 90668e39 592f0e22 12753c78 ffb9d06c 5da776ec 5dfc2614
0eb74833 5827db96 2e88dd63 105bb1fb a709cf0b 881e3076 c20e33fe 828627f9
0086cd11 997396cf d8762575 aab04ef0 1f335d52 32ef7e28 958cc547 dd0256e0
553a3a45 1049829d a6207a05 fa7da777 6af71580 f0146d45 5c856b08 f0f85b80
b407b67f f63173d6 3f73a2d8 51e21c98 ad5d800b 30099ba6 2966f57f 17e8c1a9
91a521b9 d6fd8fbf 85296d6d ccac68b2 f38b6227 d6f80341 9920d3e0 f4717287
fa2b4df8 528f4833 693dd1ce 2ca9929a d2ded8c2 8e446f38 689237a0 c1df2990
8465f404 357ef6e0 a6b06680 99e8b192 115d5629 643e73b3 243360b6 555136a1
8e3b6379 5f499d71 7e31c2a1 b18af5b3 c1587425 13941ed3 6d9c3743 8b86c91f
ae9e38d1 f49ac0af 400d32a5 0f0de4bf b10dfac0 a8b72ef0 3d4fe712 be49e33b
1b2d2704 9d812498 505d0d0d 15e47e74 6bb9d172 5bd22947 26ddb638 9373367c
2febbaeb 113d8f0d 9e142849 d488eda0 d099f0e7 25f6b54d 1f955fed 25ead4f0
9a1f2564 d0c506d7 3527d2a3 cabe13bc d0fe35af f66f9c86 ea206ec8 f2cda167
bc05323a 35d0f302 beea2b17 feb19289 ca288956 22739843 78840695 7a35e4e2
9e450193 e13d12e7 0e40fd4a cf414dea 089c8123 8c8cf2ae 6d5a2e6d ca5d2029
d0a95c45 4ecb67e8 b7fdfd0c 61c7581e e670a95f 85189a68 50272d3c e24d2a69
05a9eaa8 6fdff1fb 9aa27543 d6171c33 11131c41 faea948c b75eb1e5 97bed927
c6b6bf65 9989b18c c06b89a1 71d8d48b bc6826ef 1b3b58e2 27427446 eabf6b80
59aa222b b1546f7f e3b5a18a 8cdcfbca eecdca44 1ebef0c4 6796f32a e22a365a
11b25780 6ee2c77b 95c4f936 3ad2fafd 951bdf15 3c40cd24 a2df784c e314d861
04d0e12b 25e87e1d c68231d6 add84dc4 8ff92e5a 5d23cc18 df7eaa9c b57fc6e5
2bab4765 787bb756 b65f84e0 fee350e1 cff64f39 c35a1a92 091ef652 9ae1fb1a
c440fd50 fdd1ac95 c27f2256 72441155 434fa589 7408bd81 f79b6051 fdb9127f
ea2fd2eb 35f9f3d0 0c589c33 4ac1a434 6aa9953d 75227b8e 7cb44383 8fc566c6
e05e19c1 4158fa2f 0209b7af 6795e668 ade5048c b0153434 c7b5db03 87112239
d7829423 27ab8cb7 1803e256 20f2e2bf 38bf757e eb572a15 f403c327 a592aafd
f4fe83e9 e294050e c83902f1 a1a4fc71 deb1d74d 14a5be11 b455c8d6 a294110b
35b5e468 790e1187 ef945e82 f045d4ae bb6b6f72 a6231374 8da368b8 4a1d57aa
cffe2f39 e1972b42 85bcb01c cb9625ba 39057aec 6fa26520 451415f4 93ff37eb
15ae8841 d18e5bef 40de1294 7a64c0e9 c5a73954 0522ba44 b633542f aac3a73b
f638eb38 232f2685 927c77d7 50fc20a4 20be07e1 835b79ad 938ee0c5 3ac22269
f711f019 1c0c568b e0f2a48a 5b15505b 4625c37b 966032e1 9b345ecc 00ca8863
e40a59f7 110682a9 8537469b 89c9a541 9c277cb4 de6e67d7 21fa1e68 cd4ffd0c
b090a204 dfbc2afd 5181a176 cb22e91a 8f5fa5eb a555955b 7f3de6a0 a4470a4c
86c98304 9bb6ff6e 67bb04f4 24e91904 aa1b5000 8d6bde97 d65e5f2c 49cb72f8
68d0fb0a 43527e0e 98ea99e1 4093e344 bae57cb8 2862e258 81207008 a8f520d4
8276cb79 40aa46f3 7ab12d77 924e5ae9 839e84a7 5bdce992 70804c74 6856c44e
a44a75bb 89309617 49f7643e f6e29d5d ab35a9e0 a0dc88a0 2dc59906 bc4aa0e5
f5f0687d 4a5e4d20 726d774a cbc5af9a e9ff47a6 a76974ee dc58758f c9a86a9a
70f45bc9 a8252554 c42cedef b06d825e 80937d37 fa059748 5cceeee3 b5347cc3
7d3e55e7 1e9ec8da 60c1bfa7 0f3f36fb bb644ee3 700acc91 3a90876a 3e011f46
a679f551 f98aced5 66fc61ad 543922f4 04fae0fa e217a6df c91f59e1 4f1d51f8
d5f0da89 abf2f186 ac6f7d1f 2e891e09 e9ff410a 0fc206fc f6c26df9 77c062cc
d764404e d4d1c065 603a14f3 62625b3a 5035ae90 e3204f3d fb458f2b 2e50dc22
dd219cfc 6964c8b4 4796ac65 6cee61a8 5eefdcc6 b71c7e23 556d051e 0d634caf
cc297ab2 cfe388e1 14042d65 1723235e b61f1d75 994755c8 88da70a9 fe2d5f4b
47a129bb c86e691f 6eb8eebf d616377a 33c9312a 498a8581 6e1e4d48 366728e9
e1f9f486 ab1e6d73 3752623d 1267c91e 339c20fe 6cc43101 9e2400c8 eea2dad9
a9ed8444 8ee0ba70 0e857879 5a020901 7df8b2f7 2269e0a8 4902f2dd 4875a6eb
fc93a7dd 6ba90c25 816e21a0 069c813b 6e5e2abe 20317907 445f1842 4b009e3e
0ca42b71 9995820e 3aef772a 034b6250 20bb2722 ba4d8723 d73864f1 fcac8f1c
2cb7e778 62129998 d206a4fd 800c38f8 afda7d05 5dc3464d 67c3f0e2 51a805c5
62d2afa6 a7b11428 6cdf504f 8337f7d7 9a5ae8e9 3a487a5a f24dc985 f05cd587
dadb0d81 5e5b1e18 9ed7c00f 8859889a 34663de6 0d4efaab 77a030ab d4532805
bf2f5bd8 955c7534 a4d6f31a dea61e30 4ef26ee0 e67f4aa2 66fa93d9 5643a45d
828336d4 19761f88 a8a10af3 891876d8 ca2a82d7 d5c558ee 2e105ac4 ab5ec03a
333f7720 206785d0 b5b6ff93 a9bfbfa0 be91a077 4d09aa1b 5131483b b5fe0098
68d261c9 f4cb603d b6b69548 de85b8c3 0957fda4 ef796604 73d49175 05076d68
7429cb64 55eda8f9 4cd5c02d 8f27d137 12eeb720 b98a84ad 7b868768 083d8ac6
657ed5af 310bddc5 dac32e0f c70f90b6 10859072 b8210d25 fac2cd20 4aba4a33
b97228ca ce30e182 1c8ca470 8eb64357 6d540fac c998930d 7e245c6e d18bd9da
438872cf c431c0f9 8de8deed 05bfab13 58f6969d 6010fc27 6031cb0f 5ecc60f3
30d34064 c1bdd0cf 4283d398 0cc04589 c4c88de8 977f6598 dddd224b 5af5a634
60b7f243 76d1de4b 402b954b aa1b4cef 9ecb6732 92cc57ef 98923bea 3176a859
d3fb4936 df9cce1c d51d3fd3 42809fe8 138dc761 cc28b35e 4b694e76 9950633a
8a597a52 b9182935 b92686c0 d1db952d dc7d315a 3880786f d5d288c4 fd65bbb0
2510e2bd 96542a64 09feb505 cd17de3a a0ca6bd5 0a71c27f 579eb0aa fbcfca86
e542a781 24854650 7a3fd2e8 2ac68977 b3cb5541 0cef1022 1ba4a947 c4dcae12
e49244ca 26964ee9 ae416b12 a62664f9 0d8e4ebb 8efd1da6 dbd01068 34377019
cf319ccb dc0ffecd 1cd05e43 6430d7b4 55344e03 ad696f9a 12c6b70d dc282d17
df0b64ff cd2fe51f e6c685ea 78f46b5a 42a0a488 5f498c39 5d5fc68d 0631aa21
a6b6f0ad ab91f7c5 41db1bec 6822113a ae4d5006 89e28d22 2655a435 e285541f
5357742f a655d56d 63456b5d ff9695d4 f8c9ebbd 59a4ab69 ae0d21f9 7fd92d59
41e66f80 1297f1fc 6c136fa4 d82292e7 479059ac 8b6710cb 7acb9e37 4e41d951
12e676bf 0ca8e680 85344426 eb301668 b0d738a4 1912d231 35c3a92c 425a4a0f
ee806fe5 8365d47a 977d2ad3 ed378099 e40ed365 205a0f8a 43d2ef11 336593cd
822d3709 b71cd96f 7655f5b1 0e4358a2 68712997 8a6dcf8f 25ce85d8 02476bc7
5372e919 aa90e196 5ceac924 3a4795db b1e957cb cb723808 feeafd2e 6335af5b
e8ea00de 9adee101 3fec847f 70732728 5e880b71 8e1a9bc6 e6dc06e5 ab43f653
9751373b dc602917 29328f8b 7cb2a7c4 9c3e0057 412b4585 ab70af15 f8eb19ce
5547dce7 274efc19 24417afc 25abb7e4 89855975 1dc4a593 41424b81 db8c1691
4f164021 228c93b2 0e942120 5970aa5c 3237de8b 46fbd6ff d10708ca 5d2a0fc4
9f6f6ec4 fe138677 ef037a49 29e8f07f f7fe7ba3 9c1e4dae d9e8d205 0ea0e691
3058e7ba 7493ce3f 0bc83e01 3c710c68 0fbb5700 85008418 3d352fd7 f17b0efb
a653b09e 34e786c7 57a0d032 47ef0f4a 00f84e89 9333a485 4768a5fc 7f8241e5
86aa3db4 24f4df70 304f874f 1b91e198 f9580350 a0d474c7 c4ca2bd5 60370dee
d4ea9746 65899818 8ba2e4a3 4b8c30ed 18f36628 fe254ae7 3bd76b29 4c7b405c
c00e9cf3 df5afe7b 235f9ffc 38683b68 9c2aebc6 cd73d4ee 7cf2855d 653f2311
e95656e7 8b7b370e 989b03a7 1afca386 822c971a 7ecdf869 9f5f2488 26e488a3
f8762c0e c82f50fe e24a1bb6 06071b5b d959237c 1d033733 0336840f cf1c928d
c5118fa3 594cd121 6d052bac da1a7ecf 441d150a 16718832 a8d50825 5005e141
4bea67b7 85d66008 38da7068 a8d1a66a f5d6196e ea444dce 0596e15d c17fc805
2cd9a535 297aed85 b5692824 d111eabf 36938a9a b66af422 730ff188 08313db0
148fb69c a8b492e3 aecbfa9c dbcbce28 c99dba72 7636f4e3 05bc83eb 2435293a
6060d167 2057c7af 2390f662 36c0e87e 9d14aa0a caccd90d 85f8022f 09f846f8
b90e101e 5b792361 29f97532 7ff900c3 50491ab0 ff7b4d8f 81b9489a e05fc273
fa5bf576 bd21d9e6 4a70b5fa c5700453 e00d3067 9691a41f e60cc5a2 ad4ae925
9b39c763 3ecea4d3 17149d01 5652b30d f46d4808 a07d42c1 4f940bc5 5bb064be
c7d221c7 30572f50 1eb96d49 56e7438d c8ba669e 84029267 e1b8356c 7af2b9f0
9fb4df22 f1b312dc d1974dc1 7cab4652 efab1d86 c87d5200 3750a717 2545e60f
e8ea56b7 30c27982 f4824913 d7123dc9 58c18641 b11abcd1 d1f92702 676e180a
2e9b1d5a b8fadd24 6fffb541 67e32f26 d970d981 e6b40ebd 8d8d0c42 7e79989a
c23a04b8 1f57af71 e8247910 aedc73e7 399655dd a106a748 d64d1928 b407a55f
1ea0198b 765761ff f991bb8e f5f5f12c 1179c5b6 1e49a724 3f6a1d31 ca0d08f3
411914a7 23fb4eed 1a831a6e 930e5a8e e711276d 42175182 1e24dae6 5afda034
ae2536c4 6394b457 5c190890 bfb22e43 f4f37c91 bc80e893 c13bee4f a5b2678a
7e61de8a ef9e6425 6d28a757 6f4bded9 5e300b25 cee04a60 567b3ca6 208bbd28
320eb889 4eb226d2 d262a64c ebf26186 b343038b 91fe3fb7 80ee4a9d 3ed6f32a
a3762a55 acc6e170 ca50ee0a d4159e53 c7c114f6 556f9849 5186680b 33f30fd4
18ba6668 fe870014 ba36d301 bc407f8d aa0de5e8 7a66847c 12888615 adbf7507
cb7c5b36 c2500c61 9a2076d8 55235bf5 369a3575 f73259e3 025b1375 4ae322fc
37f1ef5f 8b56a8de f6ab420a 79e5475f f32e5753 3212db54 8677bd58 727c5453
98a1b86b a9f47c22 b196d2af 464c6da7 58bd65ad e599b7a1 f279a2eb b0c4448e
8735be37 85caef37 ad57b6c6 79c932bc e0148c9c 6304b237 cd197cf3 d67ab0ad
808d4836 c3c050b6 a47210fa 18803f1c 6034cbbf 3c9b12f9 1d77eeaa 1e19408e
2aa0bc9d 9dd563ae 6c8eb32f d36064ae 53048afc b4da019c 0cde1d9f 4affc7bc
9679baad ef9db8ce 617a5f34 3a3d5e5e 0a94afb5 5ad9c7ae b8dbaf84 a437b8b3
21735a40 4d0b8481 10575dab 4e7b012e ce64b7f8 9828725b 9d245160 b8ba2e66
6d0ce194 863595fc d968de34 7b0e126d 8b8132a3 21fcb42c b635c121 a51f556e
59d17b36 4b2382cf 31a568d2 4d3965d2 37f88c63 7e8b279e cdb9f619 8b2d3a76
315b8abd 4bce6b24 aa47dc8c 5217e486 ff132aad 3f22935d 69affe67 6c2d965e
213602f4 f5c05fb9 09cfe48a 0f7cc434 1cdfd558 beb2c631 05311082 932d695a
d726217d 693402a2 0d134df9 cbeddd72 d8c70fc4 0c04a82a deb0aa23 fb3ba5aa
edf690ae d819c970 90a39e8f 03751c9a 1781986d 6e6a23aa f0616e8d 64763a9f
83416ab2 d34d830a 95b4ee59 29365122 34abdcb0 f1fe265b 13da2b84 d329b89b
064778a0 ba642f63 88666b38 f5da99b7 c5f4d5ce 11cc1df2 f77ca7cf 53d655cc
29afce4e 6693e993 939c7d76 4a4fa724 330d86ed 85a2fd13 5222415c bf5de96f
ffd92759 743f2306 02e1ea9f 82781278 300be197 396ac081 93efdc2b d2888614
fcc085e1 1a015078 c30583a5 864e6f23 e3641ff7 e50d499b f8adf21b bddabee0
72e83ce0 4ab82ce5 b38005e2 8a3aef0e 57637a80 8de7dde2 0341d37c 55cd5eed
33fef1df 553ebba2 16761549 6450574f bcf26a99 7bcf2caa 8dee055c 78f9806b
9a6c90f6 5e947d2c acdc8b57 19d2fe86 1266f7ba fa77b8f5 bc8bba95 0faa0ec5
6c49ed00 37530746 fb9d0496 1ddabead 4f48fd1d 537b3634 2ca14eda 48d91982
6bb6b349 81fe65ab 5c690799 c075a2c3 fa34697d fc00fdb2 c21d5399 461ad386
82316fe2 417b692f 7366a456 17417132 98e3ee52 ff854994 9a5675fa 20f7b290
4f502b9b 6544b83b aba839d3 679504e9 c6e69119 3a438fe6 230e0f6f 9dd0b0a7
822afe98 7fbc7a2f 80c02868 0f4bb86d 8bfabdc3 c69e0deb 8853e38f fc216f63
9ce76466 7caad1f1 56167b8b 59759fca 8a135c2a 9c674903 586e5ba9 44e90b0a
ba90a2e6 3ca82412 be3230c1 fe882967 6761b8b3 620940b4 05bcf760 053fa6dd
cc58f5e3 556bff8f 3e71037a be89840a bfda4dbb bcc4eaa9 7fe986d2 7b42a371
bc477eff 8fbf8a2f a446cb71 78b47ab1 c4cf464a 791098d4 221fec5c 8a078a9a
abf37fa6 58b5db53 30679e4d b53d7e6c 29ac09f9 5220c74f e18e25c6 e49ae022
2138c13a a63d0135 394a2731 a2ded61d d1201578 0967ca40 c099d166 ac7237e8
10db2314 17907f4b f38b0998 2feb328e 5c165d3e 101d835e 1e16ee5a fdd737c8
bd3f1e26 4a03e9f5 1d7939a8 cb49cb5a 50569a30 035422f3 da52bdc5 435cc5c2
dccb583a f35b89a0 b4a39c7a 976e806c 2fad832c 235194ee 37d71a1b fc07e1a0
f6ab63ea 8f8c1e3f 626a2126 932a5b9c 2f7ec222 1b6a87be a0946743 da6eca8e
27e7bc89 0d28be5f 75f4d1a9 4885c165 017af4ce 0ba77170 2fa23932 fac383e3
9a876535 bf9f197e edf6267d 6bb4082a db31d546 349e6f24 6ade118a 0a38467f
0fbb633f b5db8031 596fb886 d4253554 61c9300d 9977f97c bc94630b 25f6dadf
2236866e 0d2c4c23 3620d8be d69f34f1 8bbd64ee d0917c09 31857797 0fec149e
531c2195 b2a7a16d 4d53ab1b 36b31209 f70cfb64 b6436704 843b96f0 e174384a
7067f407 e125bccd b22940e4 08c246ba 6b035540 1b88d438 144dfc18 8e72c893
c52cecc7 e7b13a36 296db27c 98adf0a4 fab9f7b3 defcfae8 c002e7a6 7ea20aa6
6e708a69 1007894e 4d3ccaa4 a8dba7b6 5d7df88b b4de8da7 179f2ed9 e0e32883
2be9c3ae eb7dd88b 1349bd77 d7129ef6 70d06b8c d64da7c4 b6352a81 dc966de9
568c4a12 51c2bae3 33ec0c9f 0e600069 ead36325 5e8b4877 11f3a5cf f0990efb
ff8d976a 116936fc eb9f76df f736bc99 53d8e970 6087b3c7 addbe95d 46fa5009
567739cd 087a3e45 ed8d612d 0f58cc47 aa4726d8 286d22b6 2782f552 9e06ba6c
29c7d5ee e8db522c 1045bd8b dd31af6b 6e8d4390 2e3e5cb4 42cbdae8 1a772346
862a4b46 4295e672 b03e16b5 5fd9bd4d bd90197a 65bd757f b1f0f93a fb7195da
2442a8cd de615313 8a220965 f088a3aa 172be61a f4a31df7 b673a1cc 9a10a695
140a29d7 8d6c0212 76c1852a 6520b76f 466516e8 b8fc5506 d063f75d 3e819cb5
f8022e8a 0d256bca bbc2fc84 e7966781 413b33ed 4957652d 94215cc9 ac52dc8a
53bda7f3 7e1555a3 b443b3be 7d943d8f 1c327edf 9a151e48 1ac518c8 e06e1b15
d8dae310 e3f319ee 664e58b9 58cb20ef 8f78c24e ed96b9a8 ff2ffae7 42db2699
e5288804 707200ff 98a557e8 cbe623c1 8b0fb174 4ad3cdcc 02c10ff0 a33638bd
9ef6964c f6dc7bc6 4faa94d2 863dbebb 07060edb c3cb2f50 03a95e94 59736b02
55170946 6380e2bb 395c1b57 c5d442cc d5d02246 a078fb38 15c5b22a 8e7dd609
2e794657 f3c1690d 57a0860d 09939b28 6c9f9123 371d3a8f 47188cb7 c744b666
ef090b0a 1a608d76 be4db46b 7da7b99d 406b3633 c1c9b841 affe1993 b13a39fc
d03f6cb9 606fba1f 149ee4c5 e1490996 88047805 d2fd7aa0 ba0f65ce c7ec9b86
b620deae 4025f43d e8c673c4 cc1ea1de ca9428b4 38f9ab4b e20ca100 69fb2f91
0ab9c92a 6cd6dccf 249afc7a 2b87ff64 c1b51d97 08b91d50 a6fbcba2 d92d1512
f06da565 0e794d09 db708f05 693f1853 c52a3fcd 84cea826 0f519d02 f8f15190
531f9240 3f60d512 83f2952e 1183521e 4ecd83b9 05eeaf6e d3552416 138247c2
75df52b9 d0386181 9303be82 a9475758 33eedbee 7ce244d0 94798ed5 4cbc525f
0305da36 afeda067 5a8247da 927f788e 5b665022 40ce3e03 de0a10b4 08cb91ce
eb6144a2 ec25538a 25d88b98 220ff5dc dd1f6884 7a741cee a2bcc354 219d1474
c1b797fe ea44cbcf 9d6683e4 e439d5fe ddef950c 7cd923fd 6a72f7ab 562f51df
e426c3bb e4ac5db4 b17b44e4 bef21589 e0626477 b54d779b 89496fdc ec498458
8c059b12 6113ebcc 3081d87a 52d3bc90 13f683c6 340ca1a5 dd8297d7 d5fe2980
09068850 73bbbc75 87a309cd 93f6267a 497cb200 6e3e299c b43b4763 c904017d
c9b9a5c5 c74cd702 ab45ee42 ec8fce39 618e5e0c 0ccbac4b a090a00b 01b12ef1
44e69660 0d9f3f7c 5d4a2160 4c75b380 4a46c878 d429122d 18b52585 cf52b6bf
fd4f2f3e a67c561a a4559c41 bcb004aa 83b686d5 04dfc2e0 3e35acd1 b3300f6c
8e7bc632 dbdf3da1 f9205dd9 6a501444 e8ef6ce2 f35d1a30 dbc854eb 31a82c6b
a3a984b8 03fbcfdb 141e8750 f90e207b d5cc9d36 8ecd9fe5 238cbd8c b421b3c1
109c087c 2b1c6dc3 bb4beb15 921b19ae a35793f4 9ffb563b f9f988a7 9be1954e
2a4c084a ae472c0b a2704459 2673afd0 20619a6b da80e86d 978e975e 5d33df7c
972e07d4 57f147a2 28e84795 1bd8b3b7 0f7c9e0b 22d3fa26 00ec6fa8 08d19ea6
0c0fd5e7 e2ef8b28 945e5805 7f683690 52017c18 ea24fe3a 85e09033 67307d3c
b417ed02 9e912ce8 5d25cc85 ec6037de cc97aef3 70dfe010 0fd7f54e 879e1aba
d2861149 ec517440 0f59f909 894e1d3a b93314a4 06afb412 51ff139a 3a34b86e
32d00857 b2f0e5d8 4f2c0e65 ac159ecd c37af91e 6f373648 eecbcfb3 3b03b7f5
4135ed2e 5d2b1b8f 644aa0ae 7fa2307a 26137e31 ca097ddf 372d03be 6ac8a136
62815c7d 46e88269 62f20a8e c912c4f1 8a860191 06c5d6aa d130dd5e 6dfe6518
0306c12b 780f7fa5 2a5f7f94 35e0d183 eb26887d e654f214 ffcc8204 b40130be
f445937d 5f323fb2 1e57539b e2de7ae6 665fd9b1 dd544dee 6dc3df91 60d606e7
d0ebd758 5e6f5744 789fc87d 31deda57 660081c3 6ccc2b2b 76a1b609 bf40d345
907a20ca 32b0d15d 6c81eeca 6d1dd026 75b91d23 83caae16 b3503168 d801c0d4
5f9d5106 24f5d111 98787e0c bbf5b867 ac53f884 de8249de c08f7ff8 617f1d27
9083cdaa 713f605b 91f0fc25 1a51c224 b7483e62 0838d426 295c7afa e9f5faef
129ce315 7d7cca8a a3101ddd 16d2b669 163cba01 36d57032 ec2cfc24 fbe0474e
57dee280 b6f89499 ddd02b90 df9d8c2c ca379803 e6b0d662 ecff9d25 2dd70591
812af084 779447b1 9af4b6ce 6debd765 a102d0c7 34a1356b 6d17f5c4 d111cea6
e930aa8d f34b7b27 7b1e0156 749c36da 9fecd3a9 1dbfa20d ed6e901f 726c51c7
d33993c9 5602da19 08e71b3b addea11f 765545ba a94efa82 e625723e 3737e219
28b3d61e 0b0b7125 54a30132 a1117d3b 797ff0a1 6c8f030b fe9fc44f 4ab12199
bac80cba 2872893e c3577434 4bc7c05d 4dbda56d 80e5046e fd6533f5 c5fc0784
baefe015 affe931c dc2aa449 fa15b310 45c34587 6e6b2122 c31208fd 9a9e32df
b34f68c6 9572df87 51403c6e f80a5d86 7df02610 9d537372 0819dfb7 584edd8f
9ed8b413 42da0d08 d2c09833 d712c5b0 07b8e078 c156eeb5 45f128e5 e044a215
3c1179ff 991cc321 2e112a1d 4e6f22bb c7aeb659 497ce062 7f8aa5fa c9bb0dc9
eadd7bb1 95173a68 9b51650c 02fd5b32 0074585f bf29aa2b 75b948be 112f4352
517fdf73 e0fbc316 88a5e687 3675211b 9a4090d4 50a47a37 38820341 248ef055
b7d49056 c54ba5f1 9c453c4b 072ab96c 550265fb bfd459b8 31d65e23 979cbdd6
8431ba83 dea2ab4b d6ad4264 444fc6a3 c17c152f cbded509 e6ebd59e f87aa29d
eac8b297 1f6ca576 bfb1429c af226d37 570d927e d2f8cba2 4b1e187c 1e913912
f4ddbb6b 43c6da20 ef38fed2 c40da35b 415515f2 a1b03be8 8711edee ec1be305
c6d4f5f5 a700b143 4aaf3268 ecabccc0 8c0d03ae 0fd27d54 3cbb919f 5644fbd4
4ea96946 d04ae3b7 6d93fbea 5d3564c4 962910c8 3ee8de4d bbcb34d0 36a320e5
9f819e43 011e6d53 23a0b5f5 b5672d4c b02dc59c 23b61748 f38350cd 3071ac97
9d558799 94f63534 e09a73e0 ce365042 be783ae5 e4b1f4a1 000d5d61 54a3b5fd
dbdb4ae9 900921f2 741f3c94 c5e87bbd cbcc01b6 f119d3a8 c03d3817 6b694da4
7026b5bc 216a179c 03201a8f dd703531 f6c143ba 02d9f333 2b7a1fc9 205393bf
f9887d4c f60b2708 84f936ac bdfbb9c1 25e2b506 f87d89fe 99d89b0f 1436fb78
78a3d7e4 61c3787c 4f8cad93 b4edfe43 b7dca234 7d747923 9d5b7d52 ab0b7462
2fa4280c 52324c95 85f73436 85286d04 216fffac e283ff1e 0c9c94d5 d1c06e3b
f4d8faa6 ad9260d6 77c44b70 d296afe7 6611dbab 0eb26734 35374fc2 631ed265
78ec3df6 097a53a0 5e537683 99598995 2c982cf3 f1d61069 0a5dc4c2 8aae6049
e39b5e70 22cb895d a4843c2c af57d8cb 25f99462 25cd5d7b 494d6013 ef52825b
d391b64e f9cc6012 8ba25827 be74ffa9 33248d39 b161a8ee 98464eea 33e4a2dd
9c48eee3 6734fb3e 608ecd06 23e91d7a 51dddbd3 b0cabf4a ccf2061d aa76f88d
238bb70f 2e9fcd63 9edbd5e9 502814d3 e7e53fbb a6fbce49 e49a5b3f 7d3b5029
ce944c26 322f35d3 93a2bbff 46ce012b c4951c8e e0d0972c ddba1940 08c5377f
913df12f 8c381b92 446044f4 571d8e6d 9ee40aa9 1f68db2a 69f42107 e4dca75c
75f9f1be a92eb0a8 b0a76168 b6be803c d6be368d 041ec94d acf9cd8f fbdf81d5
426355b5 0a3f244f 41feeb2b 7c4e320d 5e38ed4d 0a20ed58 2c609e01 6dbcbd45
baf2c76e 5ca23466 0abefd54 b1bf821e 5a97c56f 6bff69ea cd0ddc8f d8c3da24
da829111 e1862d70 8fea4a89 aa1d1294 ea7b0025 f0c6f9ea baf57ee3 4f63b367
efe1431f 807429eb dc46656e 40f1094c dd1e2c00 11631bc5 25b3912b f1160020
3a243929 38331057 13ff2abd 0856f072 69298c50 f6859c85 55b44746 a8349240
6312392a 76ffb2a2 c4f9c10e 91aa9a82 d9c45c93 66c31479 be67fbc1 f5eabc96
578208c0 f1577fcf e6256225 1528ea36 9d348743 c388e63a 3b6287e4 1704af4d
486daa8c 8cbf510d 5faea114 077a3ffa 8d18574f 18d59316 27e1de11 b887a383
aa4b11f0 3dc24693 a1fc42c0 bc134470 bb4e39f3 611207eb 32bd8860 32810b48
beb15b33 32878865 1ab02741 03b81ba8 595eda68 e6baf54e f956ed4f 9bdbad07
c40d670b 6822d9e3 3999741e f945dd82 a962a07c 130d34f0 2038f8ab 2f43dc8f
6a38c8bc 020dacd7 8b2e25f7 43f1fa8f a8c19043 47ef505c 908d55da 5ecb2245
c2637208 3489b5c5 554559cb 74b6dd76 e6c3ce17 35c21990 9b326a08 c2003e15
82ca234d d265d2ff 7f1b0c79 312d49e9 0483ca03 c6eb84dd 5348cdf6 96a0d0ad
473d08ca 4b43d455 b5161a0f b5031926 237491bf bf6de9b4 d66d6cc0 366f7bb4
88edcd0b 6537229a 72f30052 cf7d2e53 dc960c20 eb9f00cd 014069e2 5e931ebc
c58abace 7664282c 9824cbfe ec2658fc a2e640bf 13fc96cf af4b70f5 f53b09e6
65fa47eb 4b25734d fbad93ff c274cb7f fd2f364f 0bf31e49 7172ab49 9b4bda6e
f831c112 630a8d1d bf5dac98 3690aa91 3f0cd93d 41daf39d f89389f0 5233aa81
6d992ea8 fe9c7895 63586ff7 db7fb3b9 ca53b68e b67b7c37 07dd9dab 1c347861
c3b2be04 d9b79b51 87f5c894 52e66b86 0e570a4f fe7685d0 24aa9960 83236db7
a5b47702 9c6b89b1 0e617f19 f66727a7 5bbdde40 20c43a28 12ba86b5 fafd231a
3330310a 8b38ed2e 808e4c54 a7a5113b ee1f6006 5d59c754 f352456e f69902ca
8c0dc6df 1bbd570f b8dd9b2f a424780d 38d169a3 8dc17811 935827d5 472d4719
505128cb 69a18646 aabf73b3 0e923350 908e0b7a c61debea b2352a12 e4b0a360
18112374 c277a167 6929a706 d36ed948 aad5854b f26deed4 5a6c98c3 0a741182
7f21f848 87cc291a f7957f8c 02d714f5 5b608d79 a284664b bfece463 fe3641fb
50bfc0ac 4ef41165 f1cd14f0 637aa530 bb9bd7c3 960bd3f7 2c77abf0 ee1dc368
7071288a 096c8a0d f73a1504 e4f19ce9 525d03da 4007b5e5 724858f3 94255fcd
7c5f5011 330dbf37 947e4e99 112cb84c 093e44d2 8d78336b ee63dcc7 c0349c74
23fc82aa 01809ab9 e032f125 5ad44e3b 430caa90 4e658f74 e4a753f7 95be172c
2d8a925e 28e620c9 c88963cb 24dc505a 026e2d79 32535aef afe8d3be ba7a20b0
2560162d cb088643 f27724aa 7fca1bd9 5b66e143 1d7a2dcd 04e39293 f345aeeb
145fd933 26a7fbbd a8a7c784 25e38f13 1277552d 9f6d84db 51e15547 debc29fd
76339f1d 8d866a70 25eda10d e8fb6b59 6df52266 779e1820 df2936d2 7211a116
c65ab565 a96f9845 9d62af7e c488c377 f84d9cb7 a97bf9a2 99b04db8 0248c624
9099ab70 a1f4e26a 1956427b 2869d4d0 dea98688 093c1f93 f03284cb 23c74d36
62b69b68 7b52c556 10db3b1f 69cc6f10 6ea27634 0c734a7c 8207c461 8f00c99a
095fb90e 2331dea8 7a27db8f bb3260ad 67c267df f13003df baac1f1f 68359528
48adce87 7baa9c89 b8fcf586 ba12799e 57d9ca0d 60fd96aa dbbbe857 5b584dcd
ca772334 4c60c792 a3c1b051 2b572dac 520b3ac6 a742f614 8e50b5e4 7726574f
c5ebba6d fc4bd8ae 79b70393 a69de38e e82f8cf8 b173c15e 30a34358 b6e53f44
b539d450 84ccbde2 07af04ac 40510f9a be7d146d 479d5cc0 8bec5de8 376d604d
93a1fb82 4e00cd6f 3ad39171 5980d815 09490742 c6f9a0d2 0d2e0822 6ef1fc74
7d96b19d 42de0ee0 cd638dbb d0d37b3c 4456fd72 25df7627 e0e0c98f 7269317b
6373b106 8a40f650 18c2efba fb4bf05c 56f05932 0fceb7ec 80bd73dc 6f097e18
d13c633a 8713c163 04e6518a 50356612 0e16d869 f81d3695 98e9a689 517940be
21c1e737 2e0efad3 7514e3d9 45daa8f0 bf2c422f 2975c177 14eb02ac 0134ca3e
da539337 fd886fe8 4fd639e9 428a2e64 e31eb40a 5cb28989 23b2fb02 f50b4365
ca1e9c38 5ff9464d 4ec7a8ce e47da618 b7bf8ac6 07ace50c 4203dd3b 936c3d81
42962aff c7cf88ca d1458143 15802b61 d512b773 23768377 a87de6b3 e0896d07
1ab2ac43 e4d9bc3f c138f015 38631d6c 89698e0d 847b45c3 8a6bf050 e9a367bf
a0bfadff 048dcf11 fe0d214d 1cef8fed 6d081678 2a309427 3b260e3d 8af2387d
b2679617 b285e189 c2891a98 0fa4625d 0b9bca6a da9fbfbc 7f200de3 237b2329
9592835a e4b73329 776e31f0 a8c797c3 9ace76c3 8d99a5aa 027642ce 2c5ec894
0357fc02 519d4d77 00de815a 743a9038 9bb606ed 481d3ddb 846ec77b 5101cce1
153b33aa 40128059 5d32e557 835fe6a9 3daef76b d69a6141 671d3113 eba51442
1559415b e80ecaa0 ca7036b6 3c1c4869 a37dae0c 4a103df0 b9961ea9 1dcbbba9
4a4f7825 0616ded6 a2f8ee6a af540350 ba607ec0 71e04156 7eaf16e0 d53230d7
a2b36d50 349cf27a de22b0ee cb0e7877 70848410 1af68a77 3b18a031 2c9e1cc3
0844e8a5 73bb0ee2 33330be5 8448dd27 db1151f6 1518bcf6 f67ae4d2 a73e37e6
8b6ec5c1 fdc2e9e3 27a30963 56ae7ee3 306e9efe 07bc30e7 fa20eb6e fbd13d76
be67fb5b c5b1f3e1 bd87a1bd 240237d4 1bc074bd b977728a 3873aeee 7345d6e8
33b50d9c 7f48a959 470c8cdb 52974855 6860ed5f 2c85bfc2 5c3754aa b010ccb7
d4e52b65 d80c0705 46712d97 a6ee3676 f171011b 84ce015b 3d9301ac b72041de
1d2d095c b0947dcc 8536b58c 927571bb f5f85e88 92d19afc 5e13be83 ae5c24a1
28dec931 7d2dcabe a5e6bee4 02994062 de32af85 15c684fa 4459c70b 25f172d4
cfdae0ec deb74151 b6f7cb12 500e61b1 5cb3b204 1ff14cd8 1a03556e aca8c727
9fde7bc6 f4b832ac e556d0a6 2976619e 30261748 41b4100a 9e02080d 0467ec13
90f2f5ce 42ff4192 32878a2c 7e4ec8b4 3b3f922b efc2e741 3fa5ea56 e4bcde50
c81aa756 3e465711 6880df63 0c4308e9 21c3535c 08925b4a 4d22d37a 41414a16
e839aa5f c6126a4e 7908880e 4eeb94a7 f622154a e3f0b84b c4aea365 6956c950
397b3a74 087cb697 3cc5c1b3 cc5323d2 b5a61a79 230c98df ff00a95a 5b580121
068bf416 478cf9ae 6d0103a0 5751f51c e9040ab8 76ad2750 bdee22f9 cbfdf39a
911e6889 8afdd5ee c8a9d8d6 28c93413 69878580 e1feca20 d6d83dd9 a496cf91
19b6db70 b1d28460 2cb121d8 0503611e 5badd922 a5966229 c6d36b13 e05281c0
9ad9cd9f 66b8a9bc 8627d20b 62738281 0789101a 09f90181 36b8c1ee 61a76158
313d9661 90b7f465 99441125 3a4abeae 0354d1f7 4d1d21c5 8d923a67 adc0ac0f
39a87b8e f8f3bf09 230055c7 0e714c4e 389ba11a dc9196a4 e63d9f00 8f9a91e0
e8cb5084 215dad1f 2b47899a f0ed3e0e 33273502 0416fb74 c4312e39 4f3a4383
7737a772 bf4fd955 f8f1d217 cdccb1bc 9db39c41 ee186e0e 312eaea1 fd365b40
c9e47e9e 8c16ca23 f591d2c5 169fc539 cadbd741 cbf35838 05daa386 b62b8392
63141fa1 f6933e20 8cd230c1 0a2238b4 6f6bf1f3 b99ab6f6 bfa21933 6f5a2d33
d90c6c25 d3ba6e1c 9ccae1c2 48762fd7 34718aea b52e5cb4 253c4049 30c9d54d
faf996a3 bd885de8 b13c18dc 34b2192c db004844 f2893b9e 960371db b5f6ce9c
575bc34c aa2139ee eec14bce 03cb439a f988bda3 3385bbe0 a61862d2 07a53b34
ab434cde 2a022837 b1ca3d37 37feb95f 65877823 4a825881 442d9680 75a27241
914e2e11 d09c0140 b85e0fbc 7c819103 51c77b6d 993eefc5 97b86840 6f1f4d9c
2020c59f e81e82d4 f00f0ddf 28d8286d d75fbf37 b428c1b9 c6fd7201 14d44a4f
559be9bf 1f8221d1 8ab2607a c7d754ae 3f115973 81925ae0 097344ba 385fedf2
4c11995a 743ceb07 7b610d69 0edeae9e 6348a167 c21ace03 5a29e15f e8ea6ab7
58ef2d58 c823f42f 4e45f5d4 7654a9dd 726c06d6 e5151e64 df3ef9d4 d3fc90ab
a7db5044 da9306da 0ea76a2a 914075f3 c2ce502c e6a77f96 6fb84bf4 49ce85e5
8bbf272c 92f46a51 d487f84f 2f05454d 54d2a3c4 a6433a84 d88a2805 1bd7ced9
a444237d 7933a102 42010521 246304ce 43d1f84a ed753ed2 0ae48a1e 33572e1a
4b833cc2 b557904b 2c7f10c3 e6d8a004 0236a9e9 485cdd89 5ad6d0e1 3722af5b
0234254f 2f3b2141 08017413 eabb6f55 0026a4cb 3545ea3b 4ffed1e6 0cd348e0
72c2034e 0b8c14b9 578da7ef e53e6393 3d188f9d d2e47d7b 1a5a0135 a0b79148
8ed1b000 d410ead1 f13514f7 0c574acb dfd7df32 a01d82ab 6581aa63 26c1df18
c63e9145 5ee04616 875e8595 86919489 40a1a17e 775caec9 52201944 3202401b
8c98bcf2 3d800a27 2d364a1d 7caa89ca 0e8cded7 43899a5c 96cc3d8c 1d0ce2a8
ffa140b4 ce314bb3 596c7a8d 928087e7 b171bf3e c8c4f093 2e273cac 48c273ac
a4be7e85 8accb3de 7f6aedb6 3eed7cac bc84f0fc e17b0a08 32672fe1 8f905bcd
741053c9 65040171 43851d54 c0bbd80a 460db212 b875a98c d2fc499d 839edf3f
8f94e90a 7b37abef 17ce864b ca79e076 4fdfeeb9 ca365cc3 261ca27c 323be3c3
267c2f8a cfbcf5fc e3d00795 912c322e a9563475 ee9b4bda f0adba89 6507c8d5
60078677 e4c25b92 575dcecd 2280377d 8b0294a7 edaeb480 09210b01 902b18ce
69c47774 00a270e6 065e4842 0f1832e5 7c4a8933 e4924849 a6803ad6 2afb6e42
a02e2ea3 f2d80d4e 959dcf27 0ca2f8f7 e8146762 45050d84 b444261a 08962102
0a75c758 4b38d3db edcea283 1e921a37 4fa18ea2 34a48742 a557f6fb 62e63a25
8d71c157 bc7a4990 045b26cb 26363e99 77b8e186 a782bb22 bb5fbcc2 7f8a8316
348e0902 324785a2 2ee7fcc1 37de59e5 30cb9e4d a60bd63d 3698d58e 8fa8a6d7
808d82c6 ea6bb14e f526af9e a3f21ac9 26f1aff3 aed23dff d2e277f0 ef77509c
45ae21f9 0e1d8bc1 23e0e88b 54f92f95 24061fae 5189b7bc 5cbf6afd 2a1a57a6

Analyse Keystream Dragon, Rabbit, Spritz

Es wurden Keystreams mit einer Länge von jeweils 256•10⁶ Bytes generiert. Deshalb pendeln die 256 Werte unten um 10⁶ herum. Wirklich nennenswerte Unterschiede zwischen den hier generierten Daten sind nach gründlicher Durchsicht nicht vorhanden. Das entspricht der Einschätzung im Text weiter oben. Es war unerwartet, daß bis zu 281670 bzw. 189059 aufaddierte Bytes nötig waren, um den Mittelwert (127,5) zu erreichen, angesichts des Minimums von 2 und des Mittelwertes von jeweils ungefähr 1300 für N.

   Loops         N      MW
 ----------+----------+----
         0: ...
 255891695:       3054 127
 255891785:         90 127
 255902232:      10447 127
 255902669:        437 127
 255917619:      14950 127
 255917732:        113 127
 255917840:        108 127
 255921380:       3540 127
 255923203:       1823 127
 255978647:      55444 127
 255979608:        961 127
 255979665:         57 127
 255979936:        271 127
 255980135:        199 127
 255982473:       2338 127
 255982784:        311 127
 255982970:        186 127
 255982972:          2 127
 255983162:        190 127
 255983215:         53 127
 255983297:         82 127
 255983958:        661 127
 255984930:        972 127
 255988973:       4043 127
 255997432:       8459 127
 256000000:       2568 131

n=191760  min=2  max=281670  mw=1334

Byte     N      Byte     N      Byte     N      Byte     N
--------------+---------------+---------------+--------------
  0:   998628     1:   999278     2:  1000482     3:   998890
  4:  1001396     5:   998708     6:   999331     7:  1001607
  8:  1001471     9:  1000006    10:  1000155    11:  1000470
 12:  1000720    13:  1001063    14:   999958    15:  1000121
 16:  1001788    17:   999216    18:   999119    19:   999746
 20:  1000621    21:  1001125    22:   998276    23:  1001511
 24:  1000354    25:  1001765    26:   999268    27:   999310
 28:   998212    29:  1000236    30:  1001184    31:   999120
 32:  1001959    33:  1000343    34:  1001145    35:   999907
 36:  1001047    37:  1001396    38:  1000734    39:  1000007
 40:  1001682    41:   998790    42:  1000356    43:  1000640
 44:   998423    45:  1000922    46:   998727    47:   999083
 48:  1000812    49:   998718    50:   999534    51:  1000053
 52:  1000707    53:  1001014    54:   999161    55:   999689
 56:   999425    57:   998990    58:   998784    59:   999469
 60:   998522    61:   999270    62:   998490    63:  1000534
 64:   998434    65:  1000108    66:  1000862    67:   998457
 68:  1000035    69:   999185    70:  1000375    71:   999788
 72:  1000152    73:   999013    74:   999531    75:  1000223
 76:  1000529    77:   999646    78:   999914    79:  1000626
 80:   999533    81:   999775    82:  1001371    83:  1001557
 84:  1000683    85:  1000148    86:  1000351    87:  1000590
 88:  1002321    89:   999325    90:   999976    91:   999427
 92:  1000964    93:   998906    94:   999728    95:   999936
 96:   999376    97:  1001027    98:   997807    99:  1000585
100:  1000743   101:   998323   102:   999241   103:   999808
104:   999112   105:  1000797   106:  1000581   107:  1000093
108:   999709   109:   998864   110:  1000794   111:   999612
112:  1000325   113:  1000161   114:  1002221   115:   998955
116:   999768   117:   998064   118:  1001995   119:   999739
120:  1001120   121:   999608   122:   999392   123:   999166
124:  1001142   125:   999699   126:   999578   127:  1000897
128:   999516   129:  1000321   130:  1000816   131:   999147
132:  1001564   133:   999658   134:  1000253   135:  1000760
136:  1000361   137:  1001423   138:  1000058   139:   999050
140:  1001234   141:  1000812   142:   999678   143:   997654
144:   999160   145:  1000613   146:  1000936   147:   999371
148:   999017   149:  1000159   150:   999988   151:   998523
152:  1002099   153:   999839   154:   999852   155:  1001519
156:  1001337   157:  1000620   158:   999062   159:  1000593
160:   999593   161:   999937   162:  1000497   163:  1000791
164:   997893   165:  1000233   166:  1000082   167:  1000157
168:  1000538   169:  1002554   170:   999732   171:  1000818
172:   999452   173:  1000989   174:  1000214   175:   999802
176:  1000241   177:  1000177   178:   998944   179:   999246
180:  1000423   181:  1000072   182:  1000249   183:   999945
184:   997861   185:   999299   186:   999652   187:  1000145
188:  1000182   189:  1001022   190:   998795   191:  1000789
192:  1000294   193:   999744   194:  1001335   195:   999013
196:  1000613   197:  1000229   198:   999579   199:  1001138
200:  1000008   201:   998281   202:  1000616   203:   999163
204:   999591   205:  1000889   206:  1000641   207:   999054
208:   997977   209:  1000349   210:  1001116   211:  1000607
212:  1000231   213:   999660   214:  1000176   215:   999864
216:   998530   217:   999468   218:   999902   219:  1000744
220:   999853   221:  1000334   222:   997825   223:   999563
224:   999712   225:   999039   226:   999909   227:  1000011
228:  1000065   229:  1000494   230:   998876   231:   999661
232:   999413   233:   999140   234:  1000009   235:  1000258
236:  1000230   237:   999766   238:  1001305   239:  1000407
240:  1000602   241:   998881   242:   999754   243:  1000660
244:   998558   245:  1001710   246:   999053   247:   999358
248:  1000472   249:   999317   250:  1000751   251:   999810
252:   998691   253:  1000028   254:  1000333   255:  1000784


   Loops         N      MW
 ----------+----------+----
         0: ...
 255987556:       8280 127
 255987849:        293 127
 255988535:        686 127
 255989288:        753 127
 255989338:         50 127
 255989615:        277 127
 255989707:         92 127
 255992495:       2788 127
 255992701:        206 127
 255992932:        231 127
 255992989:         57 127
 255993202:        213 127
 255994104:        902 127
 255994580:        476 127
 255994690:        110 127
 255994710:         20 127
 255994761:         51 127
 255994847:         86 127
 255995000:        153 127
 255995068:         68 127
 255995293:        225 127
 255995815:        522 127
 255995919:        104 127
 255996360:        441 127
 255996394:         34 127
 256000000:       3606 129

n=187105  min=2  max=189059  mw=1368

Byte     N      Byte     N      Byte     N      Byte     N
--------------+---------------+---------------+--------------
  0:  1000411     1:  1000124     2:  1001642     3:   999893
  4:  1000813     5:   998681     6:  1001315     7:   998176
  8:  1000452     9:  1000927    10:  1000346    11:  1001346
 12:  1001978    13:   999626    14:  1000987    15:  1000929
 16:   999111    17:   999087    18:  1001198    19:  1000580
 20:   999424    21:   997891    22:  1000361    23:   998550
 24:   999400    25:   998928    26:   999045    27:   998361
 28:  1000472    29:  1000489    30:  1000077    31:  1000751
 32:   998306    33:  1000769    34:   998987    35:  1001357
 36:   999682    37:  1000459    38:   999453    39:   999364
 40:   997163    41:   997820    42:   999107    43:  1001430
 44:   999011    45:   999252    46:   998964    47:   998419
 48:   999604    49:   999766    50:   999958    51:  1000344
 52:   998462    53:   998563    54:   998604    55:   998677
 56:   999871    57:   998472    58:   998755    59:   999486
 60:   999699    61:  1000405    62:  1000138    63:  1000314
 64:   998100    65:  1000905    66:   999159    67:  1000727
 68:  1000146    69:   999239    70:  1000030    71:   999099
 72:  1000696    73:   999144    74:  1001072    75:  1000778
 76:  1001181    77:   999140    78:   999985    79:   998783
 80:   999318    81:   999342    82:  1000504    83:  1000407
 84:   999962    85:  1000175    86:  1001295    87:   999175
 88:  1000815    89:  1001083    90:  1000692    91:  1000973
 92:   999558    93:   998945    94:   999052    95:  1001614
 96:  1001040    97:  1000414    98:   999495    99:   999399
100:   999338   101:  1001452   102:  1001112   103:   998397
104:  1000188   105:   999829   106:  1000559   107:  1000906
108:  1000839   109:  1001196   110:   999590   111:  1000090
112:  1000109   113:  1001998   114:  1001592   115:   999624
116:  1000634   117:  1000131   118:   999009   119:  1000549
120:   999656   121:  1000150   122:  1000473   123:   998947
124:   999414   125:   999868   126:   999898   127:   999967
128:   998812   129:   999456   130:  1001646   131:  1000353
132:   998343   133:   999946   134:   999748   135:  1000788
136:   999329   137:   999278   138:   999806   139:  1000221
140:  1000672   141:   999484   142:   999005   143:   999653
144:  1001393   145:   999985   146:  1000337   147:   999226
148:   999117   149:   998727   150:   998907   151:  1000652
152:  1000465   153:  1002114   154:   999858   155:   999491
156:   999787   157:   999225   158:  1000641   159:  1000762
160:  1000995   161:  1001884   162:   999384   163:  1000195
164:   999824   165:  1000264   166:  1000420   167:   999712
168:   999751   169:  1001111   170:  1001304   171:   999852
172:   999411   173:   999405   174:   999396   175:  1000000
176:   999780   177:   998246   178:   999146   179:  1000054
180:   999826   181:  1000352   182:   999860   183:  1000842
184:   998406   185:  1001222   186:  1000356   187:  1000123
188:   999675   189:  1000038   190:  1001973   191:  1000243
192:  1001363   193:   999447   194:  1001110   195:  1000728
196:   999631   197:  1001646   198:  1001035   199:  1001241
200:  1000477   201:   999045   202:   999981   203:  1001103
204:  1000883   205:   999322   206:  1000298   207:  1002041
208:   999545   209:  1000385   210:   999572   211:  1000837
212:  1000782   213:   999265   214:  1000475   215:  1000188
216:  1000304   217:  1001739   218:  1001674   219:  1000948
220:   999564   221:  1000343   222:   999452   223:  1000759
224:   998632   225:  1000385   226:   998902   227:   999106
228:   999609   229:  1000604   230:  1000106   231:   999721
232:  1000203   233:   998322   234:  1001221   235:   999811
236:   999879   237:  1000578   238:   998680   239:  1001165
240:   998654   241:   998927   242:  1001354   243:  1000377
244:   998961   245:  1001338   246:  1000168   247:  1001767
248:  1000137   249:  1001171   250:   997123   251:   997812
252:  1000164   253:   998843   254:  1001702   255:  1000129


   Loops         N      MW
 ----------+----------+----
         0: ...
 255968202:        235 127
 255968399:        197 127
 255968882:        483 127
 255968903:         21 127
 255969320:        417 127
 255969378:         58 127
 255969513:        135 127
 255969683:        170 127
 255970077:        394 127
 255971549:       1472 127
 255971760:        211 127
 255971942:        182 127
 255972109:        167 127
 255975414:       3305 127
 255975459:         45 127
 255975626:        167 127
 255975867:        241 127
 255975914:         47 127
 255976063:        149 127
 255976228:        165 127
 255976507:        279 127
 255976881:        374 127
 255976902:         21 127
 255977125:        223 127
 255977435:        310 127
 255977688:        253 127
 255977784:         96 127
 255978443:        659 127
 255983432:       4989 127
 256000000:      16568 128

n=187661  min=2  max=229036  mw=1364

Byte     N      Byte     N      Byte     N      Byte     N
--------------+---------------+---------------+--------------
  0:  1001001     1:  1002024     2:   999378     3:   998633
  4:   999220     5:   998851     6:  1000545     7:  1000421
  8:   999227     9:  1000228    10:  1000642    11:  1000065
 12:   998500    13:  1000698    14:   998468    15:   999755
 16:   998843    17:  1000672    18:   999196    19:  1000264
 20:  1000496    21:   999324    22:   999704    23:  1000804
 24:  1000497    25:  1001750    26:   999607    27:  1000608
 28:  1000450    29:   998779    30:  1001731    31:  1000152
 32:  1000109    33:   999938    34:  1000526    35:   999094
 36:  1000469    37:  1000832    38:  1000026    39:  1001393
 40:  1001068    41:  1000594    42:  1001438    43:  1002078
 44:  1001020    45:  1000637    46:  1000014    47:  1000751
 48:  1000799    49:   999226    50:  1000908    51:  1001766
 52:  1000223    53:  1001275    54:  1000100    55:   998435
 56:   998890    57:   998685    58:   999559    59:  1000152
 60:   999077    61:   998155    62:  1000422    63:  1001196
 64:   998804    65:   999909    66:   998193    67:  1000308
 68:  1000001    69:   998806    70:   997226    71:  1000368
 72:   999628    73:  1000264    74:  1000619    75:  1000256
 76:   998592    77:  1001291    78:  1000483    79:   998612
 80:   998097    81:  1000437    82:  1001644    83:  1001464
 84:   999595    85:  1000059    86:  1000169    87:   999981
 88:  1000545    89:   998715    90:   999357    91:   999877
 92:   998178    93:  1000102    94:  1000985    95:  1000086
 96:  1000427    97:   999171    98:   997897    99:   998150
100:  1000542   101:  1000905   102:   999288   103:   999679
104:  1000262   105:  1000221   106:  1000146   107:  1001232
108:   999479   109:   999322   110:   999460   111:  1001251
112:  1001645   113:   999920   114:   999865   115:  1000153
116:   999897   117:   999291   118:   999629   119:  1000316
120:   998897   121:  1000274   122:  1001397   123:  1000072
124:   999559   125:  1000683   126:   998556   127:  1002034
128:   998778   129:   999612   130:   999900   131:  1000363
132:   999676   133:  1001893   134:   999929   135:  1000396
136:   998749   137:   999170   138:   999938   139:   999000
140:  1001550   141:  1003157   142:  1000069   143:  1001139
144:   998875   145:  1000491   146:   998587   147:  1001540
148:   999929   149:  1000253   150:   999993   151:  1000605
152:  1000673   153:  1000024   154:  1000585   155:  1001851
156:   999973   157:   999478   158:  1001464   159:  1000491
160:  1002054   161:   999767   162:   998724   163:   999598
164:   999769   165:   999914   166:  1000316   167:  1000247
168:   999276   169:  1000284   170:  1000507   171:   999952
172:  1000089   173:  1000912   174:  1001125   175:   999996
176:   998421   177:   999451   178:   999805   179:   999412
180:   999250   181:   999858   182:  1000746   183:   999739
184:   999146   185:  1000091   186:  1000493   187:   999174
188:  1002496   189:  1001055   190:   998588   191:   999746
192:   998492   193:   998545   194:  1000686   195:   999939
196:   999906   197:   998749   198:  1000741   199:   999937
200:   999687   201:  1000029   202:  1001299   203:   999379
204:  1000026   205:  1001064   206:   999163   207:  1000441
208:   999790   209:  1000563   210:   999019   211:  1000579
212:  1001559   213:   999148   214:  1000372   215:   999306
216:  1000845   217:  1000459   218:  1000014   219:  1000852
220:  1000423   221:   999914   222:   999348   223:  1000431
224:   999733   225:  1000825   226:   999845   227:  1000420
228:   997468   229:   998094   230:   998558   231:   999055
232:  1000589   233:   999927   234:   999755   235:   998930
236:  1000389   237:  1000117   238:  1001637   239:   999661
240:   999077   241:   999116   242:   999699   243:   998707
244:   998739   245:   999037   246:  1000741   247:  1000803
248:   998758   249:  1000067   250:   999916   251:  1001292
252:  1001040   253:   998455   254:  1000226   255:   998828

NIST — Statistical Test Suite For Random And Pseudorandom Number Generators For Cryptographic Applications

Die Algorithmen Dragon, Rabbit, Spritz, Rand, Random wurden je 15 Tests unterzogen, die den Grad der Zufälligkeit von deren Bit-Strömen bewerten. Es wurden jeweils 5 × 10·10⁶ Bits untersucht. Ein P-Wert ≥ 0,01 kennzeichnet einen Erfolg (SUCCESS). Alle P-Werte sind < 1,0 . Ein P-Wert von 0.000000 zeigt eine Verhinderung des jeweiligen Tests an. Die Korrektheit der Kompilation der Test-Suite wurde durch übereinstimmende p-Werte bei Verwendung von Test-Bitströmen nachgewiesen. Es ist möglich, daß tendenziell größere P-Werte eine bessere Qualität anzeigen. Die Algorithmen haben jeweils alle Tests erfolgreich bestanden. Dies wurde bereits weiter oben angekündigt. Die folgenden Daten wurden durch ein bish-Skript aus den Daten-Verzeichnissen der Test-Suite herausgezogen und aufbereitet.

Die Algorithmen Rand und Random sind nur mit ihrem ersten Teil (P-Werte) dokumentiert. Dies sind keine kryptographischen Algorithmen, was an deren Daten deutlich erkennbar ist. Die Daten wurden als Demonstration und für Vergleichszwecke eingefügt. Die Funktion rand() wird schon lange als obsolet bezeichnet. Die Daten der Funktion random() sehen hier aber nicht besser aus.
Alle Datenströme wurden unter exakt gleichen Bedingungen und Einstellungen generiert! Es ist folglich so, daß nur die drei P-Wert-Ströme der kryptographischen Algorithmen überzeugend selbst wie Ströme von Zufallszahlen aussehen. Es muß konstatiert werden, daß die Funktionen rand()/random() hier im Vergleich und absolut betrachtet schlicht unbrauchbar aussehen!

Eine komprimierte Archiv-Datei html.a.xz (zaxz) hat ein ähnlich gutes Testergebnis wie ein kryptographischer Algorithmus! Es gibt jedoch keine Garantie, daß eine solche Bitkette über eine ganze Datei hinweg eine hohe Zufallsqualität hat. Die kryptographischen Algorithmen hier erzeugen einen Keystream mit einer Länge von mindestens 2⁶⁴ Bit bei durchgehend hoher Qualität.

NIST-Dokumentation (.pdf)
Besonders interessant ist der Inhalt ab Kapitel 5 → 5.6 . Die kompilierte Test-Suite wurde per assess 10000000 aufgerufen. Im Menü wurde 5 als Anzahl von Bit-Streams aus je 10·10⁶ Bit angegeben. Die binären Bit-Stream-Dateien hatten eine Größe von je 256·10⁶ Byte. Die Ergebnis-Verzeichnis-Struktur wurde für jeden Algorithmus zu einem anderen Ort kopiert, damit später Vergleichsdaten aufbereitet werden konnten.

ApproximateEntropy

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.736896   0.800105   0.520287   0.000000   0.000000   0.104756   
0.682822   0.479755   0.514096   0.000000   0.000000   0.968149   
0.431427   0.977420   0.156975   0.000000   0.000000   0.463498   
0.261489   0.257538   0.908367   0.000000   0.000000   0.079767   
0.572875   0.077973   0.690342   0.000000   0.000000   0.006581   

BlockFrequency

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.250628   0.808178   0.241114   0.147470   0.999998   0.488813   
0.766777   0.121274   0.101070   0.147470   0.999998   0.683514   
0.594287   0.077762   0.362620   0.147470   0.999998   0.739197   
0.772677   0.369751   0.871587   0.147470   0.999998   0.260560   
0.065556   0.864654   0.937731   0.147470   0.999998   0.301780   

CumulativeSums

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.604618   0.034101   0.443232   0.000935   0.000000   0.741496   
0.411962   0.028636   0.496508   0.000759   0.000000   0.804198   
0.968650   0.733390   0.064316   0.000935   0.000000   0.733538   
0.890845   0.911948   0.246637   0.000759   0.000000   0.904505   
0.094368   0.147567   0.388515   0.000935   0.000000   0.165396   
0.103446   0.220832   0.668159   0.000759   0.000000   0.451560   
0.269749   0.828697   0.987953   0.000935   0.000000   0.013645   
0.536571   0.644700   0.862592   0.000759   0.000000   0.013357   
0.082956   0.118595   0.661979   0.000935   0.000000   0.322085   
0.035442   0.236642   0.712892   0.000759   0.000000   0.486841   

FFT

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.098701   0.532687   0.119846   0.000000   0.000000   0.406215   
0.419822   0.219633   0.789488   0.000000   0.000000   0.499777   
0.958342   0.852663   0.409859   0.000000   0.000000   0.287251   
0.648678   0.762806   0.875479   0.000000   0.000000   0.603685   
0.807417   0.870907   0.448812   0.000000   0.000000   0.428570   

Frequency

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.812524   0.018859   0.352521   0.000504   0.000000   0.945879   
0.813996   0.834674   0.182668   0.000504   0.000000   0.843053   
0.064964   0.155280   0.358118   0.000504   0.000000   0.248501   
0.407736   0.469743   0.790036   0.000504   0.000000   0.010821   
0.046484   0.127454   0.956624   0.000504   0.000000   0.343372   

LinearComplexity

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.029843   0.715840   0.895362   0.000000   0.000000   0.635079   
0.301131   0.930091   0.984555   0.000000   0.000000   0.308597   
0.653146   0.151691   0.383888   0.000000   0.000000   0.134452   
0.585527   0.910523   0.967914   0.000000   0.000000   0.797736   
0.112946   0.027182   0.122200   0.000000   0.000000   0.162903   

LongestRun

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.539066   0.410739   0.961623   0.000000   0.000000   0.338366   
0.138939   0.650245   0.030075   0.000000   0.000000   0.474219   
0.224810   0.483981   0.666844   0.000000   0.000000   0.681979   
0.219677   0.602903   0.727001   0.000000   0.000000   0.995976   
0.159830   0.439939   0.010016   0.000000   0.000000   0.989483   

NonOverlappingTemplate

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.981271   0.322009   0.316859   0.357162   0.000000   0.021130   
0.694063   0.731282   0.980771   0.000000   0.000000   0.247702   
0.210375   0.373928   0.335558   0.994581   0.000000   0.238337   
0.949009   0.707349   0.357959   0.000000   0.058993   0.089369   
0.324561   0.855537   0.991627   0.000000   0.000000   0.925942   
0.932830   0.172438   0.677635   0.000000   0.000000   0.023352   
0.426437   0.437662   0.851172   0.000000   0.999999   0.211227   
0.764338   0.947299   0.356729   0.000000   0.003571   0.899409   
0.868218   0.134746   0.228732   0.957097   0.003048   0.745340   
0.097744   0.848792   0.772988   0.000000   0.000563   0.800043   
0.155044   0.486370   0.682735   0.999849   0.000001   0.203699   
0.814876   0.400146   0.310065   0.000076   0.000000   0.656160   
0.098749   0.815789   0.997569   0.000000   0.000000   0.186076   
0.363359   0.321963   0.360348   0.953029   0.000000   0.166022   
0.160131   0.780279   0.474261   0.834097   0.999840   0.118469   
0.479483   0.112577   0.170835   0.999867   0.000000   0.744496   
0.037904   0.168036   0.030886   0.000000   0.000000   0.612824   
0.691504   0.332769   0.132522   0.000000   0.000077   0.059352   
0.954338   0.036704   0.728623   0.000000   0.994082   0.146965   
0.484333   0.710135   0.094717   0.000000   0.000001   0.699422   
0.451611   0.141856   0.505461   0.003437   0.347903   0.077905   
0.315976   0.188386   0.437583   0.165131   0.000000   0.318296   
0.931914   0.088246   0.804867   0.000000   0.000000   0.526968   
0.852540   0.493601   0.288062   0.000000   0.000000   0.631961   
0.237837   0.088231   0.470094   0.000000   0.000000   0.313016   
0.529108   0.516496   0.054175   0.000000   0.000000   0.879787   
0.350920   0.333921   0.265392   0.000590   0.993667   0.305532   
0.193804   0.218432   0.795287   0.000000   0.000000   0.077506   
0.726899   0.568450   0.151384   0.164891   0.000599   0.319519   
0.862109   0.156657   0.241428   0.000008   0.000000   0.965868   
0.513663   0.033691   0.955096   0.000000   0.000000   0.177208   
0.965403   0.788654   0.134589   0.000008   0.000000   0.904480   
0.398041   0.704032   0.727860   0.153710   0.000600   0.923022   
0.957792   0.862803   0.453865   0.000000   0.003399   0.298208   
0.528267   0.056865   0.576287   0.000000   0.000000   0.247834   
0.703758   0.529463   0.173392   0.000000   0.000000   0.709698   
0.780597   0.223504   0.139004   0.163837   0.000008   0.005188   
0.040275   0.298990   0.878353   0.000000   0.000000   0.675165   
0.250782   0.763698   0.099338   0.993486   0.993908   0.053476   
0.558587   0.311615   0.047902   0.000000   0.993394   0.349419   
0.740481   0.228791   0.949081   0.000000   0.944179   0.850991   
0.221014   0.383890   0.978440   0.000000   0.955219   0.196214   
0.294635   0.831755   0.043273   0.995052   0.000000   0.033675   
0.970756   0.191353   0.485237   0.000000   0.000000   0.508536   
0.809509   0.502561   0.289590   0.000001   0.057951   0.851319   
0.235922   0.220637   0.511690   0.003593   0.832485   0.456494   
0.544838   0.083388   0.201105   0.943395   0.000591   0.558148   
0.436176   0.381075   0.306535   0.999863   0.057868   0.086269   
0.243508   0.195904   0.558803   0.956462   0.000000   0.703092   
0.300654   0.912651   0.471347   0.000000   0.000000   0.695291   
0.518100   0.580870   0.716840   0.000000   0.000000   0.803529   
0.314063   0.127921   0.028480   0.957769   0.000000   0.514707   
0.981663   0.213800   0.553307   0.833044   0.833287   0.286180   
0.777906   0.140830   0.929568   0.000000   0.000000   0.431923   
0.721093   0.645603   0.907015   0.057659   0.351820   0.468555   
0.409150   0.762720   0.784052   0.601449   0.813218   0.939449   
0.606627   0.561084   0.965012   0.000000   0.000000   0.439250   
0.145585   0.987742   0.303834   0.000000   0.347686   0.220060   
0.437404   0.311815   0.972311   0.003418   0.057180   0.255662   
0.290442   0.471358   0.356082   0.958102   0.000000   0.102617   
0.428878   0.527901   0.415351   0.058829   0.999999   0.870430   
0.518258   0.690141   0.806606   0.000000   0.000000   0.114718   
0.049378   0.431232   0.093502   0.000008   0.000000   0.747312   
0.594178   0.326941   0.109764   0.000000   0.823217   0.532869   
0.526067   0.388271   0.325412   0.000000   0.000080   0.739592   
0.438925   0.051504   0.114330   0.831013   0.000000   0.202508   
0.576800   0.449213   0.651967   0.000000   0.000001   0.531075   
0.695931   0.845688   0.889907   0.000000   0.000000   0.002181   
0.122282   0.608434   0.695955   0.166438   0.993603   0.077516   
0.172776   0.812765   0.583088   0.056258   0.000001   0.401184   
0.862656   0.811374   0.061816   0.000001   0.835309   0.426803   
0.177540   0.762878   0.977452   0.349278   0.000000   0.478850   
0.953385   0.614461   0.465109   0.000000   0.000000   0.057692   
0.851273   0.282089   0.058797   0.000000   0.000000   0.275181   
0.981271   0.322009   0.316859   0.357162   0.000000   0.021130   
0.418072   0.237192   0.848379   0.000000   0.000564   0.090723   
0.439324   0.372898   0.006765   0.360037   0.959544   0.428935   
0.040063   0.208514   0.016807   0.000000   0.000000   0.183874   
0.380534   0.229286   0.817652   0.000000   0.000000   0.405526   
0.313694   0.423844   0.921893   0.000000   0.000000   0.306121   
0.147778   0.446822   0.207435   0.000001   0.000000   0.572293   
0.618303   0.264852   0.639382   0.000000   0.000008   0.650525   
0.704704   0.026224   0.291952   0.000000   0.000080   0.809809   
0.985915   0.691741   0.369082   0.000000   0.003517   0.248541   
0.421843   0.906218   0.733762   0.000000   0.000000   0.168556   
0.010418   0.436627   0.863463   0.000081   0.000000   0.090330   
0.702304   0.484592   0.446670   0.000000   0.994488   0.371399   
0.015107   0.457360   0.663242   0.003547   0.000000   0.295046   
0.517249   0.719449   0.257933   0.000000   0.000000   0.803288   
0.201157   0.360158   0.932059   0.999874   0.000000   0.287422   
0.421824   0.214892   0.949989   0.612108   0.000000   0.799384   
0.023593   0.370270   0.256749   0.058699   0.000000   0.931244   
0.772490   0.072605   0.168492   0.000000   0.596916   0.232946   
0.709283   0.111714   0.063539   0.000000   0.000000   0.886638   
0.845940   0.655255   0.917017   0.833530   0.000000   0.333653   
0.840220   0.725523   0.740063   0.351238   0.000000   0.508396   
0.969735   0.749508   0.130343   0.000000   0.000000   0.748097   
0.155068   0.649761   0.364344   0.000000   0.000000   0.033412   
0.829257   0.722603   0.644521   0.000000   0.000000   0.300486   
0.405740   0.064722   0.518097   0.000008   0.000001   0.789530   
0.125631   0.818795   0.269555   0.000000   0.000000   0.815369   
0.782005   0.113359   0.112707   0.059339   0.828810   0.763207   
0.886756   0.223898   0.180957   0.000000   0.000007   0.896952   
0.287405   0.198962   0.333973   0.000000   0.999777   0.026238   
0.768881   0.164588   0.142624   0.000000   0.000000   0.316462   
0.603183   0.502565   0.007783   0.000000   0.000000   0.084131   
0.240080   0.313323   0.328413   0.999994   0.000000   0.359860   
0.434980   0.506786   0.737626   0.000000   0.003455   0.640811   
0.853329   0.046879   0.831884   0.000080   0.000000   0.852191   
0.570088   0.284256   0.644626   0.000000   0.164684   0.217745   
0.164974   0.187171   0.566786   0.000000   0.000000   0.026799   
0.569215   0.507857   0.675609   0.000000   0.000000   0.346337   
0.268337   0.454949   0.590561   0.000000   0.999393   0.873719   
0.832857   0.571374   0.698699   0.952807   0.000000   0.028005   
0.513799   0.487893   0.388805   0.059190   0.000000   0.391134   
0.874500   0.752075   0.818536   0.000000   0.610407   0.966773   
0.278091   0.026559   0.914722   0.000000   0.604457   0.609590   
0.727511   0.987094   0.842641   0.000000   0.000000   0.269228   
0.943256   0.219983   0.596792   0.000000   0.994752   0.355307   
0.513282   0.787740   0.460511   0.000000   0.000000   0.505839   
0.536324   0.421032   0.647680   0.000000   0.000000   0.320842   
0.214412   0.209879   0.448908   0.953207   0.000000   0.135978   
0.990073   0.836742   0.345759   0.162221   0.000000   0.764051   
0.919971   0.445388   0.401351   1.000000   0.054383   0.828413   
0.345497   0.075819   0.075321   0.000000   0.000000   0.207977   
0.029546   0.364908   0.188083   0.000000   0.000000   0.225486   
0.348175   0.092966   0.038274   0.000001   0.000000   0.734454   
0.958919   0.697957   0.859030   0.998275   0.000000   0.664772   
0.001620   0.811194   0.187339   0.000000   0.000000   0.688752   
0.031816   0.578865   0.682176   0.994429   0.000546   0.256639   
0.335544   0.841403   0.792907   0.000000   0.000000   0.026984   
0.804964   0.614039   0.342108   0.015756   0.000000   0.340539   
0.470245   0.164042   0.669937   0.000000   0.000000   0.303114   
0.667168   0.574497   0.383517   0.000000   0.000000   0.465071   
0.646229   0.845918   0.713680   0.003534   0.000000   0.751986   
0.562207   0.336056   0.436668   0.000000   0.357677   0.224978   
0.059580   0.924616   0.406188   0.000000   0.000000   0.181742   
0.615988   0.849992   0.849114   0.055383   0.000000   0.552052   
0.754334   0.481271   0.417471   0.000000   0.000000   0.849056   
0.925319   0.741335   0.939198   0.168213   0.016317   0.290584   
0.615488   0.498251   0.287158   0.000000   0.000000   0.582239   
0.475975   0.948438   0.387790   0.600402   0.000000   0.224201   
0.182779   0.101976   0.210476   0.999648   0.058962   0.364173   
0.186225   0.224826   0.740823   0.000000   0.000000   0.323488   
0.946797   0.632652   0.941409   0.000000   0.000000   0.315511   
0.726320   0.777170   0.583525   0.993262   0.150635   0.273047   
0.573289   0.521348   0.395878   0.957102   0.346820   0.127255   
0.851273   0.282089   0.058797   0.000000   0.000000   0.275181   
0.774250   0.186878   0.588300   0.357162   0.000000   0.907729   
0.520915   0.803150   0.646246   0.000000   0.000000   0.111844   
0.183004   0.056922   0.880900   0.994581   0.000000   0.769394   
0.319828   0.675997   0.260114   0.000000   0.058993   0.850311   
0.904766   0.916922   0.708811   0.000000   0.000000   0.085860   
0.795540   0.750924   0.774186   0.000000   0.000000   0.775150   
0.655301   0.155338   0.434420   0.000000   0.999999   0.473363   
0.196113   0.776746   0.122840   0.000000   0.003571   0.788150   
0.038539   0.168850   0.560732   0.957097   0.003048   0.952828   
0.620358   0.317386   0.964309   0.000000   0.000563   0.491950   
0.337435   0.216902   0.036666   0.999849   0.000001   0.358638   
0.274573   0.964150   0.605720   0.000076   0.000000   0.660549   
0.117190   0.189495   0.458186   0.000000   0.000000   0.206062   
0.186746   0.026547   0.842190   0.953029   0.000000   0.646699   
0.514187   0.743065   0.588105   0.834097   0.999840   0.975776   
0.145459   0.701719   0.622569   0.999867   0.000000   0.815972   
0.609794   0.010541   0.176116   0.000000   0.000000   0.587616   
0.248204   0.589137   0.019713   0.000000   0.000077   0.990652   
0.194769   0.125745   0.758818   0.000000   0.994082   0.721568   
0.194969   0.930755   0.834495   0.000000   0.000001   0.153628   
0.614288   0.036105   0.205848   0.003437   0.347903   0.643688   
0.321095   0.097384   0.853490   0.165131   0.000000   0.803302   
0.423595   0.764019   0.926807   0.000000   0.000000   0.977033   
0.643291   0.065748   0.723213   0.000000   0.000000   0.074289   
0.305221   0.891424   0.853199   0.000000   0.000000   0.406149   
0.886820   0.532985   0.673448   0.000000   0.000000   0.512726   
0.952554   0.405070   0.803858   0.000590   0.993667   0.304574   
0.264304   0.093737   0.701670   0.000000   0.000000   0.544698   
0.078936   0.871621   0.288358   0.164891   0.000599   0.679379   
0.278005   0.746802   0.875761   0.000008   0.000000   0.656027   
0.731279   0.287650   0.448070   0.000000   0.000000   0.743264   
0.857507   0.951059   0.519865   0.000008   0.000000   0.698202   
0.259558   0.051206   0.584288   0.153710   0.000600   0.863420   
0.167794   0.327014   0.464209   0.000000   0.003399   0.704631   
0.855271   0.157426   0.213507   0.000000   0.000000   0.318200   
0.896276   0.245047   0.653283   0.000000   0.000000   0.524473   
0.074626   0.939415   0.538790   0.163837   0.000008   0.226357   
0.352094   0.893629   0.668265   0.000000   0.000000   0.261683   
0.870994   0.032531   0.223493   0.993486   0.993908   0.349907   
0.396612   0.677282   0.915134   0.000000   0.993394   0.143150   
0.661970   0.126618   0.922089   0.000000   0.944179   0.244558   
0.808885   0.643871   0.394589   0.000000   0.955219   0.615278   
0.449929   0.547354   0.339749   0.995052   0.000000   0.822585   
0.590517   0.095080   0.191931   0.000000   0.000000   0.919142   
0.544726   0.932819   0.525770   0.000001   0.057951   0.846669   
0.669374   0.370755   0.562993   0.003593   0.832485   0.666713   
0.829024   0.675193   0.507353   0.943395   0.000591   0.755820   
0.040566   0.418222   0.617966   0.999863   0.057868   0.417160   
0.679555   0.001620   0.697287   0.956462   0.000000   0.544454   
0.629513   0.530049   0.496389   0.000000   0.000000   0.409182   
0.642041   0.837642   0.061822   0.000000   0.000000   0.329500   
0.298268   0.575274   0.540049   0.957769   0.000000   0.407932   
0.406247   0.608876   0.774321   0.833044   0.833287   0.246636   
0.149880   0.616829   0.179974   0.000000   0.000000   0.776012   
0.721492   0.188179   0.374331   0.057659   0.351820   0.751588   
0.979167   0.734921   0.115002   0.601449   0.813218   0.641256   
0.265331   0.770901   0.492056   0.000000   0.000000   0.459344   
0.074442   0.259241   0.641102   0.000000   0.347686   0.739362   
0.290974   0.389552   0.043729   0.003418   0.057180   0.164755   
0.948742   0.872868   0.590247   0.958102   0.000000   0.313320   
0.635879   0.045513   0.557515   0.058829   0.999999   0.814989   
0.599861   0.946029   0.831485   0.000000   0.000000   0.287175   
0.509147   0.745207   0.674509   0.000008   0.000000   0.549472   
0.958161   0.388483   0.724985   0.000000   0.823217   0.525436   
0.569029   0.587543   0.303453   0.000000   0.000080   0.121814   
0.125996   0.603091   0.658468   0.831013   0.000000   0.808431   
0.431454   0.981002   0.563905   0.000000   0.000001   0.151060   
0.175184   0.815819   0.851746   0.000000   0.000000   0.261996   
0.035311   0.088488   0.812217   0.166438   0.993603   0.532128   
0.960168   0.756112   0.096045   0.056258   0.000001   0.289788   
0.636991   0.928542   0.749227   0.000001   0.835309   0.579124   
0.949506   0.978573   0.963827   0.349278   0.000000   0.869706   
0.632143   0.163233   0.690973   0.000000   0.000000   0.666431   
0.210433   0.220742   0.580959   0.000000   0.000000   0.894887   
0.774250   0.186878   0.588300   0.357162   0.000000   0.907729   
0.900371   0.072907   0.344769   0.000000   0.000564   0.727922   
0.686574   0.893184   0.345898   0.360037   0.959544   0.068686   
0.607382   0.916277   0.745745   0.000000   0.000000   0.165946   
0.981438   0.928439   0.769926   0.000000   0.000000   0.883235   
0.470027   0.463474   0.774076   0.000000   0.000000   0.053375   
0.293937   0.364274   0.489919   0.000001   0.000000   0.788506   
0.844495   0.014353   0.437488   0.000000   0.000008   0.608630   
0.593963   0.139622   0.087866   0.000000   0.000080   0.174020   
0.990344   0.147401   0.046276   0.000000   0.003517   0.876297   
0.459976   0.944827   0.350397   0.000000   0.000000   0.444530   
0.472077   0.645483   0.317880   0.000081   0.000000   0.717828   
0.315395   0.862795   0.012044   0.000000   0.994488   0.668831   
0.497706   0.423055   0.572406   0.003547   0.000000   0.310441   
0.506669   0.912177   0.456323   0.000000   0.000000   0.423643   
0.900872   0.797591   0.186924   0.999874   0.000000   0.133133   
0.934524   0.461437   0.839486   0.612108   0.000000   0.111912   
0.884312   0.663403   0.283715   0.058699   0.000000   0.450240   
0.580447   0.417452   0.236544   0.000000   0.596916   0.278022   
0.373352   0.145618   0.637462   0.000000   0.000000   0.173814   
0.201505   0.642900   0.202003   0.833530   0.000000   0.350247   
0.661044   0.690831   0.072577   0.351238   0.000000   0.503162   
0.150730   0.602675   0.684985   0.000000   0.000000   0.671910   
0.094928   0.846968   0.892568   0.000000   0.000000   0.925420   
0.545112   0.102836   0.751574   0.000000   0.000000   0.416692   
0.961840   0.231917   0.759538   0.000008   0.000001   0.567301   
0.928634   0.222114   0.954873   0.000000   0.000000   0.766074   
0.989663   0.994188   0.629030   0.059339   0.828810   0.037515   
0.933833   0.182896   0.991639   0.000000   0.000007   0.559422   
0.242926   0.872109   0.928810   0.000000   0.999777   0.914200   
0.274256   0.525201   0.157125   0.000000   0.000000   0.620572   
0.919917   0.681700   0.588344   0.000000   0.000000   0.410435   
0.452698   0.712127   0.401253   0.999994   0.000000   0.043949   
0.387146   0.113304   0.606820   0.000000   0.003455   0.803355   
0.186894   0.039165   0.822560   0.000080   0.000000   0.049547   
0.600693   0.701124   0.370262   0.000000   0.164684   0.906751   
0.909452   0.262578   0.337708   0.000000   0.000000   0.607907   
0.610794   0.874692   0.035907   0.000000   0.000000   0.462243   
0.240008   0.475245   0.555296   0.000000   0.999393   0.279643   
0.288177   0.754610   0.577190   0.952807   0.000000   0.114207   
0.279400   0.800806   0.130142   0.059190   0.000000   0.047583   
0.156098   0.357954   0.214262   0.000000   0.610407   0.047490   
0.343763   0.766265   0.435375   0.000000   0.604457   0.320906   
0.044467   0.544634   0.378012   0.000000   0.000000   0.364115   
0.238039   0.292103   0.836457   0.000000   0.994752   0.776567   
0.236350   0.661425   0.311637   0.000000   0.000000   0.088118   
0.053692   0.102308   0.998575   0.000000   0.000000   0.644786   
0.521139   0.126705   0.976963   0.953207   0.000000   0.451072   
0.442469   0.154951   0.818324   0.162221   0.000000   0.033449   
0.359869   0.281015   0.415899   1.000000   0.054383   0.298137   
0.339052   0.164371   0.581408   0.000000   0.000000   0.703238   
0.376164   0.402221   0.784726   0.000000   0.000000   0.585725   
0.994008   0.058021   0.905584   0.000001   0.000000   0.814241   
0.900406   0.675321   0.654946   0.998275   0.000000   0.836542   
0.653536   0.781338   0.947955   0.000000   0.000000   0.067646   
0.215939   0.509166   0.726244   0.994429   0.000546   0.635755   
0.383116   0.177950   0.019280   0.000000   0.000000   0.198914   
0.962434   0.869325   0.363725   0.015756   0.000000   0.130955   
0.986770   0.196314   0.970692   0.000000   0.000000   0.388436   
0.147925   0.773767   0.810060   0.000000   0.000000   0.978814   
0.141267   0.867869   0.742581   0.003534   0.000000   0.685227   
0.715139   0.876207   0.954759   0.000000   0.357677   0.238003   
0.079142   0.220757   0.471443   0.000000   0.000000   0.229866   
0.539557   0.011250   0.533831   0.055383   0.000000   0.373146   
0.646560   0.517583   0.423816   0.000000   0.000000   0.548378   
0.869739   0.094558   0.051583   0.168213   0.016317   0.312407   
0.596759   0.499947   0.093095   0.000000   0.000000   0.414092   
0.263294   0.342838   0.191021   0.600402   0.000000   0.904770   
0.055939   0.080753   0.208275   0.999648   0.058962   0.324736   
0.394222   0.501281   0.580966   0.000000   0.000000   0.354483   
0.319340   0.894147   0.590160   0.000000   0.000000   0.727676   
0.386641   0.833182   0.276321   0.993262   0.150635   0.138908   
0.165414   0.569275   0.864089   0.957102   0.346820   0.607553   
0.210433   0.220742   0.580959   0.000000   0.000000   0.894887   
0.432830   0.644352   0.246848   0.357162   0.000000   0.112827   
0.035953   0.853920   0.052334   0.000000   0.000000   0.027444   
0.445706   0.249595   0.725883   0.994581   0.000000   0.159622   
0.336506   0.995131   0.395094   0.000000   0.058993   0.122651   
0.926998   0.887028   0.638577   0.000000   0.000000   0.471415   
0.189692   0.481253   0.854759   0.000000   0.000000   0.267371   
0.978029   0.899732   0.793990   0.000000   0.999999   0.768876   
0.286102   0.946889   0.682334   0.000000   0.003571   0.925810   
0.257933   0.840380   0.019420   0.957097   0.003048   0.409570   
0.983716   0.328649   0.769500   0.000000   0.000563   0.099649   
0.868411   0.428718   0.870498   0.999849   0.000001   0.106616   
0.534240   0.476288   0.988238   0.000076   0.000000   0.425292   
0.898068   0.367823   0.709900   0.000000   0.000000   0.706141   
0.789311   0.006385   0.693574   0.953029   0.000000   0.944453   
0.638639   0.319050   0.796417   0.834097   0.999840   0.265802   
0.662863   0.555319   0.193518   0.999867   0.000000   0.422610   
0.829065   0.838512   0.093876   0.000000   0.000000   0.569599   
0.382332   0.119491   0.666187   0.000000   0.000077   0.109923   
0.615621   0.699305   0.868349   0.000000   0.994082   0.060259   
0.553734   0.234051   0.064888   0.000000   0.000001   0.879965   
0.568258   0.250479   0.307018   0.003437   0.347903   0.789298   
0.867348   0.586297   0.477443   0.165131   0.000000   0.121172   
0.659016   0.694391   0.520761   0.000000   0.000000   0.971782   
0.490841   0.335458   0.861274   0.000000   0.000000   0.779931   
0.100459   0.341460   0.224733   0.000000   0.000000   0.253912   
0.063123   0.478260   0.040306   0.000000   0.000000   0.602480   
0.493437   0.666589   0.841955   0.000590   0.993667   0.192292   
0.825832   0.278829   0.959503   0.000000   0.000000   0.483627   
0.165267   0.438725   0.306236   0.164891   0.000599   0.597871   
0.350571   0.965261   0.030661   0.000008   0.000000   0.610889   
0.522260   0.004473   0.601325   0.000000   0.000000   0.670341   
0.769864   0.961768   0.754975   0.000008   0.000000   0.404755   
0.622771   0.651671   0.532714   0.153710   0.000600   0.317320   
0.055304   0.046585   0.766620   0.000000   0.003399   0.017359   
0.586235   0.322630   0.716413   0.000000   0.000000   0.218384   
0.203443   0.896164   0.742967   0.000000   0.000000   0.286880   
0.015923   0.267001   0.020468   0.163837   0.000008   0.371140   
0.185173   0.521205   0.696134   0.000000   0.000000   0.510692   
0.932092   0.561729   0.270734   0.993486   0.993908   0.184397   
0.420408   0.150467   0.179094   0.000000   0.993394   0.639833   
0.325900   0.263025   0.793415   0.000000   0.944179   0.949708   
0.764407   0.081841   0.531854   0.000000   0.955219   0.602922   
0.318814   0.004562   0.874795   0.995052   0.000000   0.869867   
0.254988   0.344986   0.973980   0.000000   0.000000   0.985445   
0.002502   0.087671   0.753510   0.000001   0.057951   0.164964   
0.479846   0.937007   0.427919   0.003593   0.832485   0.018102   
0.028210   0.110912   0.060229   0.943395   0.000591   0.146205   
0.673440   0.773535   0.991842   0.999863   0.057868   0.052846   
0.723182   0.368452   0.709003   0.956462   0.000000   0.898266   
0.353600   0.730883   0.582450   0.000000   0.000000   0.429925   
0.653164   0.486665   0.906207   0.000000   0.000000   0.037963   
0.643656   0.906442   0.894290   0.957769   0.000000   0.712577   
0.316931   0.774685   0.565553   0.833044   0.833287   0.203881   
0.206203   0.891226   0.669632   0.000000   0.000000   0.813386   
0.169982   0.153645   0.288040   0.057659   0.351820   0.669452   
0.097314   0.651948   0.698232   0.601449   0.813218   0.858517   
0.328252   0.083261   0.471155   0.000000   0.000000   0.745468   
0.791237   0.670716   0.747689   0.000000   0.347686   0.257839   
0.435329   0.133431   0.192913   0.003418   0.057180   0.139012   
0.122881   0.488207   0.783464   0.958102   0.000000   0.375646   
0.657452   0.527476   0.118486   0.058829   0.999999   0.835157   
0.590872   0.944736   0.451429   0.000000   0.000000   0.904460   
0.670924   0.982092   0.893878   0.000008   0.000000   0.087207   
0.102046   0.533681   0.329415   0.000000   0.823217   0.900034   
0.812318   0.455620   0.812486   0.000000   0.000080   0.501325   
0.123401   0.142269   0.317524   0.831013   0.000000   0.700890   
0.196245   0.213214   0.335641   0.000000   0.000001   0.846276   
0.176394   0.954911   0.982394   0.000000   0.000000   0.479108   
0.384228   0.643726   0.108355   0.166438   0.993603   0.257893   
0.207771   0.601113   0.643655   0.056258   0.000001   0.087141   
0.121188   0.719865   0.667584   0.000001   0.835309   0.282147   
0.215802   0.387276   0.247649   0.349278   0.000000   0.709039   
0.383485   0.467320   0.630181   0.000000   0.000000   0.910508   
0.402258   0.935595   0.688210   0.000000   0.000000   0.772841   
0.432922   0.644352   0.246848   0.357162   0.000000   0.112827   
0.466898   0.051793   0.723660   0.000000   0.000564   0.901899   
0.026276   0.716842   0.883051   0.360037   0.959544   0.644756   
0.572608   0.234575   0.155782   0.000000   0.000000   0.817228   
0.094052   0.388411   0.806538   0.000000   0.000000   0.470051   
0.383198   0.441250   0.832563   0.000000   0.000000   0.269491   
0.933665   0.565833   0.659194   0.000001   0.000000   0.352076   
0.904294   0.361256   0.693238   0.000000   0.000008   0.756188   
0.570016   0.562744   0.907603   0.000000   0.000080   0.153730   
0.008525   0.658996   0.354609   0.000000   0.003517   0.489416   
0.353421   0.330248   0.983760   0.000000   0.000000   0.464910   
0.711585   0.262453   0.964635   0.000081   0.000000   0.018491   
0.824652   0.454612   0.534901   0.000000   0.994488   0.919576   
0.825285   0.593849   0.784820   0.003547   0.000000   0.451826   
0.562989   0.118367   0.050017   0.000000   0.000000   0.899870   
0.889238   0.874149   0.481409   0.999874   0.000000   0.132420   
0.312688   0.776893   0.336740   0.612108   0.000000   0.416680   
0.848275   0.623950   0.181052   0.058699   0.000000   0.127914   
0.135514   0.743363   0.338511   0.000000   0.596916   0.077319   
0.373126   0.122712   0.255178   0.000000   0.000000   0.003796   
0.627121   0.936585   0.237382   0.833530   0.000000   0.170762   
0.565092   0.526016   0.530281   0.351238   0.000000   0.528061   
0.230951   0.771475   0.629211   0.000000   0.000000   0.721916   
0.667396   0.325767   0.949817   0.000000   0.000000   0.599917   
0.096689   0.728953   0.045595   0.000000   0.000000   0.157208   
0.311673   0.846955   0.737086   0.000008   0.000001   0.461213   
0.864698   0.417224   0.201637   0.000000   0.000000   0.789858   
0.689905   0.762152   0.540520   0.059339   0.828810   0.736298   
0.347707   0.996778   0.227571   0.000000   0.000007   0.728299   
0.908353   0.291888   0.277200   0.000000   0.999777   0.568377   
0.644387   0.847284   0.325973   0.000000   0.000000   0.390708   
0.585253   0.034875   0.095686   0.000000   0.000000   0.873753   
0.389596   0.411130   0.146920   0.999994   0.000000   0.802807   
0.010504   0.192411   0.877730   0.000000   0.003455   0.761770   
0.275358   0.256159   0.922385   0.000080   0.000000   0.106694   
0.649710   0.931878   0.626728   0.000000   0.164684   0.485297   
0.877573   0.257521   0.341602   0.000000   0.000000   0.321569   
0.312524   0.182079   0.887516   0.000000   0.000000   0.884844   
0.366029   0.041526   0.477039   0.000000   0.999393   0.944118   
0.752244   0.444739   0.618944   0.952807   0.000000   0.635548   
0.055227   0.608923   0.984838   0.059190   0.000000   0.228528   
0.962709   0.062972   0.326803   0.000000   0.610407   0.490820   
0.144731   0.678761   0.081361   0.000000   0.604457   0.017025   
0.773618   0.471181   0.390685   0.000000   0.000000   0.218336   
0.015917   0.202426   0.687043   0.000000   0.994752   0.689224   
0.551465   0.790234   0.046230   0.000000   0.000000   0.740367   
0.784785   0.877823   0.507387   0.000000   0.000000   0.235625   
0.215046   0.471581   0.291264   0.953207   0.000000   0.932977   
0.244739   0.588061   0.320712   0.162221   0.000000   0.821834   
0.591902   0.337842   0.085056   1.000000   0.054383   0.487245   
0.781754   0.518110   0.464083   0.000000   0.000000   0.089123   
0.988999   0.795367   0.023392   0.000000   0.000000   0.680738   
0.915646   0.575163   0.545948   0.000001   0.000000   0.005561   
0.970386   0.791512   0.809386   0.998275   0.000000   0.849104   
0.616890   0.565297   0.326843   0.000000   0.000000   0.668460   
0.424439   0.262824   0.918977   0.994429   0.000546   0.930518   
0.063898   0.297361   0.227801   0.000000   0.000000   0.902891   
0.407664   0.442524   0.545687   0.015756   0.000000   0.521360   
0.052815   0.298175   0.890211   0.000000   0.000000   0.091023   
0.439545   0.580330   0.273740   0.000000   0.000000   0.922905   
0.618916   0.544178   0.359621   0.003534   0.000000   0.669378   
0.139403   0.284160   0.761931   0.000000   0.357677   0.133984   
0.489177   0.866546   0.025795   0.000000   0.000000   0.198654   
0.041390   0.334340   0.437952   0.055383   0.000000   0.763516   
0.081647   0.704397   0.695371   0.000000   0.000000   0.145907   
0.909018   0.778568   0.128537   0.168213   0.016317   0.883564   
0.434420   0.089918   0.238877   0.000000   0.000000   0.946380   
0.834461   0.464970   0.470592   0.600402   0.000000   0.526315   
0.804187   0.444794   0.011915   0.999648   0.058962   0.857826   
0.887840   0.473511   0.199280   0.000000   0.000000   0.454475   
0.730125   0.857137   0.652343   0.000000   0.000000   0.329521   
0.360721   0.917824   0.182041   0.993262   0.150635   0.948468   
0.754429   0.336398   0.815637   0.957102   0.346820   0.858362   
0.402258   0.935595   0.688210   0.000000   0.000000   0.772841   
0.153112   0.690185   0.437204   0.357162   0.000000   0.187196   
0.739142   0.932905   0.920269   0.000000   0.000000   0.526358   
0.102575   0.498139   0.326320   0.994581   0.000000   0.001812   
0.370862   0.918861   0.301845   0.000000   0.058993   0.353432   
0.355283   0.657360   0.616906   0.000000   0.000000   0.252351   
0.868697   0.706454   0.344213   0.000000   0.000000   0.052595   
0.084923   0.866832   0.464122   0.000000   0.999999   0.722948   
0.881243   0.232138   0.602254   0.000000   0.003571   0.474203   
0.880823   0.447945   0.639925   0.957097   0.003048   0.031207   
0.173055   0.731961   0.810918   0.000000   0.000563   0.616638   
0.214828   0.010158   0.187617   0.999849   0.000001   0.735117   
0.563355   0.875099   0.302436   0.000076   0.000000   0.007431   
0.383307   0.677542   0.537168   0.000000   0.000000   0.891245   
0.417698   0.509753   0.939293   0.953029   0.000000   0.897377   
0.631594   0.145634   0.398716   0.834097   0.999840   0.139933   
0.192898   0.529962   0.510694   0.999867   0.000000   0.943014   
0.558516   0.864665   0.110852   0.000000   0.000000   0.478114   
0.727398   0.366310   0.567113   0.000000   0.000077   0.088037   
0.596038   0.591002   0.347351   0.000000   0.994082   0.428279   
0.524132   0.302362   0.431527   0.000000   0.000001   0.325221   
0.693732   0.855628   0.206635   0.003437   0.347903   0.533881   
0.518936   0.721456   0.101374   0.165131   0.000000   0.271113   
0.257946   0.216768   0.861969   0.000000   0.000000   0.519087   
0.457232   0.423389   0.974167   0.000000   0.000000   0.044295   
0.041339   0.628958   0.031794   0.000000   0.000000   0.746683   
0.596461   0.042115   0.878039   0.000000   0.000000   0.604131   
0.058380   0.571727   0.501111   0.000590   0.993667   0.783446   
0.159122   0.276004   0.003105   0.000000   0.000000   0.219273   
0.811066   0.347257   0.223684   0.164891   0.000599   0.996551   
0.541448   0.198329   0.960451   0.000008   0.000000   0.786042   
0.364656   0.943620   0.484396   0.000000   0.000000   0.898400   
0.710600   0.481266   0.044375   0.000008   0.000000   0.399048   
0.413515   0.185655   0.171224   0.153710   0.000600   0.834615   
0.948424   0.290446   0.935936   0.000000   0.003399   0.297671   
0.860419   0.322254   0.880515   0.000000   0.000000   0.908123   
0.967709   0.128721   0.702872   0.000000   0.000000   0.000245   
0.993616   0.802705   0.548274   0.163837   0.000008   0.014936   
0.201032   0.428797   0.004358   0.000000   0.000000   0.421832   
0.867056   0.725181   0.803449   0.993486   0.993908   0.068727   
0.704573   0.746834   0.601904   0.000000   0.993394   0.390136   
0.210417   0.380832   0.126252   0.000000   0.944179   0.448038   
0.478640   0.335053   0.294423   0.000000   0.955219   0.691405   
0.072149   0.342471   0.398397   0.995052   0.000000   0.144066   
0.557166   0.503894   0.630968   0.000000   0.000000   0.380521   
0.737454   0.961462   0.210297   0.000001   0.057951   0.536092   
0.222494   0.153243   0.262839   0.003593   0.832485   0.607951   
0.239738   0.176754   0.059152   0.943395   0.000591   0.176669   
0.905799   0.681932   0.972484   0.999863   0.057868   0.861750   
0.234597   0.873727   0.022018   0.956462   0.000000   0.835107   
0.546769   0.333753   0.659953   0.000000   0.000000   0.553711   
0.259095   0.730375   0.061372   0.000000   0.000000   0.173781   
0.118720   0.808003   0.570726   0.957769   0.000000   0.831714   
0.111960   0.749760   0.188727   0.833044   0.833287   0.292139   
0.056115   0.279641   0.497403   0.000000   0.000000   0.441115   
0.318916   0.655387   0.276250   0.057659   0.351820   0.119045   
0.475415   0.592367   0.407727   0.601449   0.813218   0.084355   
0.392681   0.440869   0.293995   0.000000   0.000000   0.037412   
0.656388   0.755300   0.478501   0.000000   0.347686   0.792567   
0.080651   0.164803   0.557652   0.003418   0.057180   0.156915   
0.711639   0.126488   0.896058   0.958102   0.000000   0.101809   
0.383868   0.407116   0.290282   0.058829   0.999999   0.560899   
0.841631   0.564075   0.761797   0.000000   0.000000   0.618486   
0.114608   0.491129   0.105589   0.000008   0.000000   0.833021   
0.113745   0.578149   0.235513   0.000000   0.823217   0.455444   
0.839066   0.149860   0.801483   0.000000   0.000080   0.720477   
0.316774   0.578808   0.734950   0.831013   0.000000   0.910255   
0.959481   0.371675   0.505777   0.000000   0.000001   0.537292   
0.483146   0.658649   0.164802   0.000000   0.000000   0.212883   
0.973140   0.585054   0.324492   0.166438   0.993603   0.132125   
0.926735   0.498415   0.462146   0.056258   0.000001   0.431111   
0.096721   0.883521   0.744568   0.000001   0.835309   0.857492   
0.783591   0.974480   0.103969   0.349278   0.000000   0.498700   
0.010743   0.296379   0.031974   0.000000   0.000000   0.117091   
0.270502   0.810606   0.814626   0.000000   0.000000   0.583059   
0.153112   0.690185   0.437204   0.357162   0.000000   0.187196   
0.286273   0.737870   0.680558   0.000000   0.000564   0.806744   
0.779595   0.753065   0.281598   0.360037   0.959544   0.559436   
0.559652   0.038448   0.140002   0.000000   0.000000   0.106411   
0.316558   0.053430   0.323337   0.000000   0.000000   0.614479   
0.277471   0.288377   0.065969   0.000000   0.000000   0.854941   
0.022757   0.505172   0.764320   0.000001   0.000000   0.115040   
0.157556   0.138292   0.127590   0.000000   0.000008   0.994698   
0.103029   0.112422   0.451165   0.000000   0.000080   0.519397   
0.977174   0.135919   0.535914   0.000000   0.003517   0.587264   
0.827287   0.843871   0.222095   0.000000   0.000000   0.986633   
0.631563   0.896665   0.022593   0.000081   0.000000   0.516114   
0.274520   0.106368   0.410780   0.000000   0.994488   0.492544   
0.258783   0.682524   0.882369   0.003547   0.000000   0.574874   
0.717991   0.172938   0.800571   0.000000   0.000000   0.677605   
0.661916   0.349348   0.461043   0.999874   0.000000   0.754274   
0.088940   0.128237   0.804245   0.612108   0.000000   0.737737   
0.469635   0.992776   0.206573   0.058699   0.000000   0.146919   
0.876434   0.298961   0.064450   0.000000   0.596916   0.025214   
0.019851   0.168203   0.763421   0.000000   0.000000   0.606668   
0.005577   0.192522   0.607848   0.833530   0.000000   0.705525   
0.226049   0.194880   0.587980   0.351238   0.000000   0.724574   
0.336858   0.986577   0.856609   0.000000   0.000000   0.460345   
0.208034   0.826535   0.678961   0.000000   0.000000   0.646046   
0.363416   0.715431   0.515364   0.000000   0.000000   0.790662   
0.419083   0.634788   0.631226   0.000008   0.000001   0.909856   
0.496767   0.417975   0.944748   0.000000   0.000000   0.637386   
0.073463   0.894228   0.401215   0.059339   0.828810   0.282888   
0.415995   0.343359   0.140117   0.000000   0.000007   0.796619   
0.980744   0.858933   0.399415   0.000000   0.999777   0.974421   
0.805262   0.128817   0.563913   0.000000   0.000000   0.227098   
0.984586   0.012095   0.212884   0.000000   0.000000   0.834955   
0.700301   0.618099   0.218723   0.999994   0.000000   0.367616   
0.283042   0.718121   0.492498   0.000000   0.003455   0.809584   
0.677404   0.273326   0.545569   0.000080   0.000000   0.308057   
0.044502   0.610069   0.751641   0.000000   0.164684   0.934721   
0.722938   0.650910   0.459685   0.000000   0.000000   0.821925   
0.153849   0.069116   0.124369   0.000000   0.000000   0.666624   
0.515233   0.754204   0.931918   0.000000   0.999393   0.333850   
0.427418   0.066980   0.203502   0.952807   0.000000   0.889173   
0.950311   0.659264   0.749834   0.059190   0.000000   0.195584   
0.380334   0.723673   0.546829   0.000000   0.610407   0.131347   
0.192188   0.672945   0.631961   0.000000   0.604457   0.972859   
0.013231   0.578795   0.438092   0.000000   0.000000   0.197811   
0.275362   0.036688   0.289232   0.000000   0.994752   0.650926   
0.032676   0.142765   0.019587   0.000000   0.000000   0.022076   
0.275440   0.842563   0.442293   0.000000   0.000000   0.122512   
0.636733   0.502636   0.756585   0.953207   0.000000   0.719182   
0.505264   0.567968   0.543929   0.162221   0.000000   0.485256   
0.750005   0.783911   0.640257   1.000000   0.054383   0.720026   
0.616666   0.457520   0.355726   0.000000   0.000000   0.085267   
0.033291   0.227864   0.152147   0.000000   0.000000   0.985585   
0.426951   0.394041   0.572544   0.000001   0.000000   0.387213   
0.053724   0.551089   0.854909   0.998275   0.000000   0.240417   
0.809647   0.001305   0.363730   0.000000   0.000000   0.082949   
0.814715   0.408561   0.975149   0.994429   0.000546   0.403066   
0.586631   0.718109   0.603225   0.000000   0.000000   0.479435   
0.487256   0.026692   0.050593   0.015756   0.000000   0.231871   
0.288176   0.185463   0.716305   0.000000   0.000000   0.523920   
0.036333   0.598461   0.562690   0.000000   0.000000   0.009661   
0.846647   0.210784   0.690088   0.003534   0.000000   0.503566   
0.492787   0.774901   0.309237   0.000000   0.357677   0.089804   
0.516304   0.758931   0.840360   0.000000   0.000000   0.984534   
0.192230   0.454286   0.814836   0.055383   0.000000   0.552066   
0.709726   0.845331   0.584188   0.000000   0.000000   0.865245   
0.625887   0.295333   0.588482   0.168213   0.016317   0.282615   
0.438075   0.458127   0.880124   0.000000   0.000000   0.778908   
0.900423   0.286108   0.260219   0.600402   0.000000   0.369235   
0.907790   0.782871   0.982421   0.999648   0.058962   0.723267   
0.828554   0.035370   0.172559   0.000000   0.000000   0.549112   
0.564355   0.982480   0.791411   0.000000   0.000000   0.854725   
0.418671   0.075646   0.864255   0.993262   0.150635   0.933078   
0.107346   0.782157   0.632821   0.957102   0.346820   0.802753   
0.270502   0.810606   0.814626   0.000000   0.000000   0.583059   
0.863854   0.698789   0.167582   0.357162   0.000000   0.198092   
0.996503   0.385227   0.128500   0.000000   0.000000   0.659392   
0.277044   0.091436   0.469380   0.994581   0.000000   0.480049   
0.438969   0.616674   0.091004   0.000000   0.058993   0.190524   
0.649241   0.456223   0.379426   0.000000   0.000000   0.389942   
0.245046   0.021295   0.794022   0.000000   0.000000   0.182612   
0.593151   0.802411   0.645989   0.000000   0.999999   0.924949   
0.380469   0.874298   0.732202   0.000000   0.003571   0.305739   
0.827444   0.301355   0.331190   0.957097   0.003048   0.690683   
0.934514   0.710450   0.081714   0.000000   0.000563   0.747112   
0.016627   0.198340   0.264409   0.999849   0.000001   0.348390   
0.024048   0.721375   0.023010   0.000076   0.000000   0.098254   
0.008223   0.209732   0.673204   0.000000   0.000000   0.983662   
0.389747   0.677724   0.931384   0.953029   0.000000   0.942473   
0.841652   0.366191   0.688907   0.834097   0.999840   0.005987   
0.101137   0.562864   0.543766   0.999867   0.000000   0.583469   
0.476327   0.120540   0.932615   0.000000   0.000000   0.603748   
0.505147   0.005032   0.612447   0.000000   0.000077   0.766074   
0.732730   0.818284   0.037950   0.000000   0.994082   0.688959   
0.341971   0.933345   0.552292   0.000000   0.000001   0.028438   
0.064419   0.388855   0.274898   0.003437   0.347903   0.096157   
0.714688   0.484861   0.983616   0.165131   0.000000   0.119420   
0.843681   0.132289   0.348787   0.000000   0.000000   0.386379   
0.584601   0.598264   0.829070   0.000000   0.000000   0.551821   
0.938374   0.280163   0.373566   0.000000   0.000000   0.867385   
0.782274   0.789345   0.802022   0.000000   0.000000   0.754770   
0.010359   0.047901   0.515474   0.000590   0.993667   0.673330   
0.107411   0.163952   0.994410   0.000000   0.000000   0.553090   
0.766235   0.840461   0.515117   0.164891   0.000599   0.833502   
0.478889   0.836668   0.837084   0.000008   0.000000   0.853243   
0.608325   0.432824   0.189535   0.000000   0.000000   0.151403   
0.578358   0.635071   0.042405   0.000008   0.000000   0.106830   
0.598021   0.185102   0.326571   0.153710   0.000600   0.997446   
0.504050   0.078156   0.711023   0.000000   0.003399   0.257657   
0.989171   0.814778   0.695883   0.000000   0.000000   0.986853   
0.619900   0.449971   0.028348   0.000000   0.000000   0.536464   
0.106835   0.684210   0.133553   0.163837   0.000008   0.847870   
0.186452   0.292214   0.653517   0.000000   0.000000   0.942364   
0.170222   0.551566   0.387827   0.993486   0.993908   0.219329   
0.077959   0.304397   0.347875   0.000000   0.993394   0.623325   
0.268106   0.091833   0.857209   0.000000   0.944179   0.022968   
0.619244   0.276520   0.290211   0.000000   0.955219   0.667542   
0.691057   0.292641   0.251469   0.995052   0.000000   0.990942   
0.314312   0.911085   0.565216   0.000000   0.000000   0.908192   
0.408730   0.046958   0.144866   0.000001   0.057951   0.855302   
0.285808   0.741136   0.978528   0.003593   0.832485   0.145398   
0.897262   0.725461   0.947930   0.943395   0.000591   0.194299   
0.255678   0.327906   0.870239   0.999863   0.057868   0.157550   
0.029510   0.212169   0.676233   0.956462   0.000000   0.553321   
0.247058   0.211211   0.309513   0.000000   0.000000   0.040834   
0.737416   0.802839   0.038618   0.000000   0.000000   0.963342   
0.832686   0.341505   0.890666   0.957769   0.000000   0.913647   
0.102552   0.996354   0.759301   0.833044   0.833287   0.732275   
0.497498   0.899225   0.215343   0.000000   0.000000   0.392133   
0.687203   0.973577   0.591401   0.057659   0.351820   0.450940   
0.381437   0.657725   0.088472   0.601449   0.813218   0.172490   
0.657190   0.253286   0.390810   0.000000   0.000000   0.127475   
0.803119   0.858508   0.453680   0.000000   0.347686   0.663765   
0.834422   0.856980   0.023406   0.003418   0.057180   0.149176   
0.526289   0.648525   0.194434   0.958102   0.000000   0.849409   
0.402713   0.653094   0.267292   0.058829   0.999999   0.121848   
0.138821   0.341226   0.259013   0.000000   0.000000   0.557251   
0.077244   0.768808   0.919545   0.000008   0.000000   0.996157   
0.963898   0.769335   0.020760   0.000000   0.823217   0.205856   
0.032332   0.380328   0.939581   0.000000   0.000080   0.466038   
0.502049   0.852260   0.229621   0.831013   0.000000   0.923248   
0.419760   0.221084   0.534175   0.000000   0.000001   0.263131   
0.628053   0.155772   0.358993   0.000000   0.000000   0.448434   
0.410060   0.982965   0.445185   0.166438   0.993603   0.673168   
0.959754   0.442834   0.654671   0.056258   0.000001   0.706097   
0.764242   0.887663   0.829271   0.000001   0.835309   0.386064   
0.300646   0.237082   0.660754   0.349278   0.000000   0.423324   
0.453747   0.324854   0.702628   0.000000   0.000000   0.812938   
0.989104   0.574845   0.698727   0.000000   0.000000   0.984283   
0.863854   0.698141   0.167582   0.357162   0.000000   0.198092   
0.734897   0.981474   0.036751   0.000000   0.000564   0.204176   
0.543175   0.603658   0.092550   0.360037   0.959544   0.856644   
0.423083   0.542650   0.035734   0.000000   0.000000   0.671821   
0.664066   0.272851   0.140730   0.000000   0.000000   0.917190   
0.266910   0.350066   0.853443   0.000000   0.000000   0.656828   
0.195522   0.620351   0.167398   0.000001   0.000000   0.537678   
0.672372   0.122385   0.115938   0.000000   0.000008   0.386645   
0.740495   0.540438   0.068052   0.000000   0.000080   0.267520   
0.614023   0.818256   0.268153   0.000000   0.003517   0.484174   
0.267089   0.907365   0.817138   0.000000   0.000000   0.700259   
0.407174   0.412182   0.061128   0.000081   0.000000   0.245161   
0.385055   0.055859   0.428730   0.000000   0.994488   0.024039   
0.248487   0.767361   0.594006   0.003547   0.000000   0.299610   
0.285858   0.845994   0.749835   0.000000   0.000000   0.039328   
0.834448   0.479547   0.137955   0.999874   0.000000   0.726619   
0.046963   0.589447   0.335983   0.612108   0.000000   0.446526   
0.346002   0.762182   0.013744   0.058699   0.000000   0.098947   
0.889526   0.487063   0.661816   0.000000   0.596916   0.472389   
0.942350   0.414274   0.962036   0.000000   0.000000   0.423337   
0.668108   0.096760   0.852418   0.833530   0.000000   0.314741   
0.544050   0.600116   0.528840   0.351238   0.000000   0.316991   
0.591686   0.915723   0.741179   0.000000   0.000000   0.271671   
0.557406   0.481636   0.808988   0.000000   0.000000   0.317245   
0.878152   0.033583   0.562383   0.000000   0.000000   0.606019   
0.240096   0.704130   0.356209   0.000008   0.000001   0.636437   
0.014633   0.814048   0.839793   0.000000   0.000000   0.460465   
0.717885   0.125608   0.516415   0.059339   0.828810   0.979663   
0.830727   0.187175   0.256239   0.000000   0.000007   0.260635   
0.314683   0.475925   0.297599   0.000000   0.999777   0.486888   
0.253598   0.927375   0.881726   0.000000   0.000000   0.929324   
0.635274   0.195322   0.111709   0.000000   0.000000   0.262659   
0.074412   0.418051   0.815615   0.999994   0.000000   0.652350   
0.272078   0.694647   0.594073   0.000000   0.003455   0.093459   
0.566589   0.027938   0.116879   0.000080   0.000000   0.174280   
0.308991   0.377056   0.087484   0.000000   0.164684   0.665720   
0.429748   0.179242   0.149635   0.000000   0.000000   0.118115   
0.041018   0.110576   0.942591   0.000000   0.000000   0.527834   
0.810426   0.344115   0.699675   0.000000   0.999393   0.444150   
0.105068   0.027839   0.282803   0.952807   0.000000   0.321408   
0.340913   0.607986   0.474017   0.059190   0.000000   0.793328   
0.404641   0.581574   0.187297   0.000000   0.610407   0.868346   
0.721069   0.181712   0.677166   0.000000   0.604457   0.355398   
0.182159   0.128834   0.978093   0.000000   0.000000   0.965845   
0.649408   0.364790   0.461421   0.000000   0.994752   0.332512   
0.575282   0.136169   0.828189   0.000000   0.000000   0.960731   
0.597590   0.600549   0.472466   0.000000   0.000000   0.959835   
0.339633   0.155795   0.235728   0.953207   0.000000   0.540540   
0.305782   0.204078   0.425392   0.162221   0.000000   0.944118   
0.732752   0.018429   0.403183   1.000000   0.054383   0.986717   
0.212770   0.180513   0.327303   0.000000   0.000000   0.824638   
0.122688   0.081475   0.706025   0.000000   0.000000   0.867536   
0.376716   0.630804   0.103690   0.000001   0.000000   0.355559   
0.367459   0.537654   0.103681   0.998275   0.000000   0.721727   
0.187493   0.079248   0.308379   0.000000   0.000000   0.473716   
0.558872   0.990873   0.649273   0.994429   0.000546   0.098951   
0.530736   0.852578   0.528503   0.000000   0.000000   0.926092   
0.394047   0.710818   0.182212   0.015756   0.000000   0.697938   
0.999032   0.284730   0.105956   0.000000   0.000000   0.956987   
0.412455   0.122363   0.690953   0.000000   0.000000   0.268054   
0.900444   0.969777   0.367393   0.003534   0.000000   0.596649   
0.435087   0.367658   0.159415   0.000000   0.357677   0.871462   
0.848571   0.403363   0.798072   0.000000   0.000000   0.032536   
0.309105   0.773350   0.192726   0.055383   0.000000   0.513667   
0.350730   0.504453   0.407738   0.000000   0.000000   0.683899   
0.915004   0.532905   0.923862   0.168213   0.016317   0.307591   
0.307498   0.468054   0.733987   0.000000   0.000000   0.377394   
0.696745   0.448717   0.544801   0.600402   0.000000   0.900034   
0.766777   0.405714   0.008377   0.999648   0.058962   0.044859   
0.473923   0.208315   0.857470   0.000000   0.000000   0.958922   
0.396614   0.112452   0.637373   0.000000   0.000000   0.299193   
0.708573   0.439136   0.015531   0.993262   0.150635   0.002029   
0.965856   0.212547   0.968620   0.957102   0.346820   0.656235   
0.989104   0.574845   0.698727   0.000000   0.000000   0.986672   

OverlappingTemplate

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.064710   0.128554   0.817648   0.000000   0.000000   0.682411   
0.633345   0.304025   0.526037   0.000000   0.000000   0.831487   
0.072534   0.832285   0.357946   0.000000   0.000000   0.992708   
0.948642   0.019857   0.305960   0.000000   0.000000   0.514512   
0.245851   0.646264   0.566413   0.000000   0.000000   0.711156   

RandomExcursions

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.881310   0.845668   0.000000   0.460492   0.000000   0.463102   
0.970232   0.875314   0.000000   0.330076   0.000000   0.275235   
0.296032   0.896723   0.000000   0.203783   0.000000   0.127131   
0.007567   0.243654   0.000000   0.527275   0.000000   0.110945   
0.416810   0.834170   0.000000   0.657659   0.000000   0.351681   
0.194491   0.979818   0.000000   0.115868   0.000000   0.935419   
0.065393   0.854638   0.000000   0.747158   0.000000   0.050951   
0.197618   0.086380   0.000000   0.809514   0.000000   0.542124   
0.191417   0.516544   0.206624   0.460492   0.000000   0.000000   
0.331846   0.776341   0.765003   0.330076   0.000000   0.000000   
0.603466   0.713573   0.431359   0.203783   0.000000   0.000000   
0.346832   0.732486   0.736264   0.527275   0.000000   0.000000   
0.362156   0.486434   0.766942   0.657659   0.000000   0.000000   
0.773498   0.601364   0.713260   0.115868   0.000000   0.000000   
0.833594   0.749219   0.967606   0.747158   0.000000   0.000000   
0.034425   0.822313   0.560716   0.809514   0.000000   0.000000   
0.556259   0.000000   0.000000   0.460492   0.000000   0.000000   
0.291857   0.000000   0.000000   0.330076   0.000000   0.000000   
0.395728   0.000000   0.000000   0.203783   0.000000   0.000000   
0.658213   0.000000   0.000000   0.527275   0.000000   0.000000   
0.170555   0.000000   0.000000   0.657659   0.000000   0.000000   
0.233345   0.000000   0.000000   0.115868   0.000000   0.000000   
0.758999   0.000000   0.000000   0.747158   0.000000   0.000000   
0.205830   0.000000   0.000000   0.809514   0.000000   0.000000   
0.208989   0.616063   0.001112   0.460492   0.000000   0.198161   
0.399008   0.241588   0.050939   0.330076   0.000000   0.194594   
0.137383   0.126235   0.048967   0.203783   0.000000   0.272224   
0.196412   0.138603   0.021081   0.527275   0.000000   0.111640   
0.661531   0.080183   0.557968   0.657659   0.000000   0.076905   
0.704316   0.319682   0.130766   0.115868   0.000000   0.485427   
0.267458   0.456855   0.061221   0.747158   0.000000   0.324545   
0.442825   0.145047   0.775374   0.809514   0.000000   0.504840   
0.916133   0.945286   0.504326   0.460492   0.000000   0.000000   
0.849522   0.663941   0.830578   0.330076   0.000000   0.000000   
0.697375   0.394000   0.844546   0.203783   0.000000   0.000000   
0.366342   0.198771   0.684287   0.527275   0.000000   0.000000   
0.880520   0.043704   0.437258   0.657659   0.000000   0.000000   
0.855372   0.003916   0.257510   0.115868   0.000000   0.000000   
0.802637   0.171502   0.867360   0.747158   0.000000   0.000000   
0.161431   0.341803   0.342263   0.809514   0.000000   0.000000   

RandomExcursionsVariant

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.849786   0.491426   0.000000   0.272689   0.000000   0.165529   
0.901652   0.406935   0.000000   0.458230   0.000000   0.242615   
0.737365   0.243354   0.000000   0.602596   0.000000   0.198528   
0.366101   0.171753   0.000000   0.246951   0.000000   0.170331   
0.271355   0.174256   0.000000   0.175153   0.000000   0.257126   
0.164518   0.291997   0.000000   0.338656   0.000000   0.542461   
0.084786   0.559688   0.000000   0.492140   0.000000   0.441268   
0.123175   0.585096   0.000000   0.449998   0.000000   0.172647   
0.405828   0.744366   0.000000   0.442494   0.000000   0.200411   
0.434874   0.396549   0.000000   0.333496   0.000000   0.522049   
0.051320   0.193944   0.000000   0.153083   0.000000   0.083031   
0.005781   0.044178   0.000000   0.140056   0.000000   0.036352   
0.002172   0.060177   0.000000   0.212362   0.000000   0.128872   
0.001419   0.070338   0.000000   0.239721   0.000000   0.105475   
0.020533   0.044894   0.000000   0.315661   0.000000   0.037831   
0.291453   0.051304   0.000000   0.591649   0.000000   0.083147   
0.769769   0.057072   0.000000   0.697096   0.000000   0.209852   
0.713945   0.051241   0.000000   0.719796   0.000000   0.240977   
0.632682   0.056029   0.639768   0.272689   0.000000   0.000000   
0.582207   0.069899   0.777835   0.458230   0.000000   0.000000   
0.394998   0.223650   0.892285   0.602596   0.000000   0.000000   
0.462161   0.410797   0.827967   0.246951   0.000000   0.000000   
0.872790   0.426706   0.889057   0.175153   0.000000   0.000000   
0.830437   0.623930   0.902087   0.338656   0.000000   0.000000   
0.912280   0.432533   0.755097   0.492140   0.000000   0.000000   
0.797954   0.179057   0.946490   0.449998   0.000000   0.000000   
0.381857   0.390656   0.692664   0.442494   0.000000   0.000000   
0.362069   0.878706   0.163024   0.333496   0.000000   0.000000   
0.221295   0.860122   0.405277   0.153083   0.000000   0.000000   
0.463812   0.527842   0.917189   0.140056   0.000000   0.000000   
0.628283   0.457698   0.751737   0.212362   0.000000   0.000000   
0.562670   0.584481   0.555869   0.239721   0.000000   0.000000   
0.437665   0.881124   0.589356   0.315661   0.000000   0.000000   
0.313587   0.924129   0.752029   0.591649   0.000000   0.000000   
0.223227   0.890309   0.714228   0.697096   0.000000   0.000000   
0.278205   0.959411   0.964019   0.719796   0.000000   0.000000   
0.264642   0.000000   0.000000   0.272689   0.000000   0.000000   
0.155773   0.000000   0.000000   0.458230   0.000000   0.000000   
0.050171   0.000000   0.000000   0.602596   0.000000   0.000000   
0.063125   0.000000   0.000000   0.246951   0.000000   0.000000   
0.134405   0.000000   0.000000   0.175153   0.000000   0.000000   
0.132521   0.000000   0.000000   0.338656   0.000000   0.000000   
0.225531   0.000000   0.000000   0.492140   0.000000   0.000000   
0.160411   0.000000   0.000000   0.449998   0.000000   0.000000   
0.103949   0.000000   0.000000   0.442494   0.000000   0.000000   
0.145487   0.000000   0.000000   0.333496   0.000000   0.000000   
0.152570   0.000000   0.000000   0.153083   0.000000   0.000000   
0.103636   0.000000   0.000000   0.140056   0.000000   0.000000   
0.058686   0.000000   0.000000   0.212362   0.000000   0.000000   
0.101771   0.000000   0.000000   0.239721   0.000000   0.000000   
0.138843   0.000000   0.000000   0.315661   0.000000   0.000000   
0.082711   0.000000   0.000000   0.591649   0.000000   0.000000   
0.044729   0.000000   0.000000   0.697096   0.000000   0.000000   
0.048203   0.000000   0.000000   0.719796   0.000000   0.000000   
0.215495   0.397290   0.211829   0.272689   0.000000   0.506240   
0.148062   0.716980   0.304071   0.458230   0.000000   0.333950   
0.139457   0.967191   0.372929   0.602596   0.000000   0.208711   
0.135531   0.818450   0.217494   0.246951   0.000000   0.152661   
0.096271   0.281178   0.045429   0.175153   0.000000   0.104150   
0.071515   0.101679   0.017968   0.338656   0.000000   0.019769   
0.084609   0.173247   0.010110   0.492140   0.000000   0.012895   
0.105849   0.161958   0.006117   0.449998   0.000000   0.072604   
0.297311   0.039736   0.072761   0.442494   0.000000   0.086731   
0.188241   0.178746   0.367545   0.333496   0.000000   0.957967   
0.073433   0.326191   0.402645   0.153083   0.000000   0.465209   
0.140475   0.532994   0.483411   0.140056   0.000000   0.723674   
0.534977   0.700310   0.255442   0.212362   0.000000   0.912756   
0.851872   0.456383   0.184572   0.239721   0.000000   1.000000   
0.813681   0.441831   0.302989   0.315661   0.000000   0.830134   
0.982704   0.153103   0.591424   0.591649   0.000000   0.872256   
0.713881   0.034105   0.634479   0.697096   0.000000   0.759463   
0.409554   0.034637   0.462066   0.719796   0.000000   0.706106   
0.874286   0.499652   0.859170   0.272689   0.000000   0.000000   
0.907975   0.484531   0.880765   0.458230   0.000000   0.000000   
0.771124   0.588953   0.599478   0.602596   0.000000   0.000000   
0.769441   0.658144   0.533417   0.246951   0.000000   0.000000   
0.928655   0.601034   0.580771   0.175153   0.000000   0.000000   
0.884681   0.901059   0.672375   0.338656   0.000000   0.000000   
0.540486   0.556259   0.824845   0.492140   0.000000   0.000000   
0.900093   0.421712   0.813410   0.449998   0.000000   0.000000   
0.573565   0.979814   0.518605   0.442494   0.000000   0.000000   
0.608900   0.742209   0.651378   0.333496   0.000000   0.000000   
0.416594   0.101813   0.672756   0.153083   0.000000   0.000000   
0.325164   0.110603   0.418923   0.140056   0.000000   0.000000   
0.266158   0.112395   0.660549   0.212362   0.000000   0.000000   
0.363789   0.166606   0.902957   0.239721   0.000000   0.000000   
0.583935   0.359945   0.963779   0.315661   0.000000   0.000000   
0.915242   0.343448   0.938163   0.591649   0.000000   0.000000   
0.565520   0.250222   0.620992   0.697096   0.000000   0.000000   
0.624018   0.229056   0.676325   0.719796   0.000000   0.000000   

Rank

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.912205   0.720802   0.236241   0.000000   0.000000   0.300404   
0.080314   0.235962   0.271969   0.000000   0.000000   0.021623   
0.735363   0.232435   0.844455   0.000000   0.000000   0.586648   
0.693246   0.148959   0.843387   0.000000   0.000000   0.383217   
0.564012   0.432621   0.145714   0.000000   0.000000   0.822825   

Runs

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.268663   0.773407   0.287873   0.000000   0.000000   0.914403   
0.331017   0.779816   0.772986   0.000000   0.000000   0.286255   
0.776575   0.395669   0.890050   0.000000   0.000000   0.101099   
0.273154   0.224565   0.590410   0.000000   0.000000   0.417326   
0.269198   0.607492   0.058703   0.000000   0.000000   0.352891   

Serial

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.704005   0.510736   0.746366   0.000000   0.000000   0.287087   
0.663593   0.732856   0.508280   0.000000   0.000000   0.491022   
0.543518   0.705281   0.513523   0.000000   0.000000   0.158545   
0.527353   0.855892   0.745243   0.000000   0.000000   0.559295   
0.305987   0.628650   0.575457   0.000000   0.000000   0.508357   
0.135652   0.704602   0.573989   0.000000   0.000000   0.632101   
0.153499   0.623033   0.729836   0.000000   0.000000   0.484668   
0.165380   0.454287   0.767581   0.000000   0.000000   0.242331   
0.318065   0.018929   0.269386   0.000000   0.000000   0.612314   
0.573704   0.359571   0.115647   0.000000   0.000000   0.951239   

Universal

dragon     rabbit     spritz     rand       random     zaxz       
---------------------------------------------------------------
0.953363   0.915819   0.249469   0.000000   0.250117   0.495951   
0.166531   0.969654   0.735482   0.000000   0.250117   0.003432   
0.436083   0.865856   0.008307   0.000000   0.250117   0.579998   
0.420845   0.098505   0.020519   0.000000   0.250117   0.112015   
0.433522   0.857140   0.797440   0.000000   0.250117   0.544185   



ApproximateEntropy

	dragon

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 994.928720
		(d) Phi(m)	       = -6.931424
		(e) Phi(m+1)	       = -7.624522
		(f) ApEn                = 0.693097
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.736896

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1001.968708
		(d) Phi(m)	       = -6.931417
		(e) Phi(m+1)	       = -7.624514
		(f) ApEn                = 0.693097
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.682822

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1031.167722
		(d) Phi(m)	       = -6.931417
		(e) Phi(m+1)	       = -7.624513
		(f) ApEn                = 0.693096
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.431427

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1052.502125
		(d) Phi(m)	       = -6.931422
		(e) Phi(m+1)	       = -7.624516
		(f) ApEn                = 0.693095
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.261489

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1015.045848
		(d) Phi(m)	       = -6.931419
		(e) Phi(m+1)	       = -7.624516
		(f) ApEn                = 0.693096
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.572875

	rabbit

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 985.714645
		(d) Phi(m)	       = -6.931421
		(e) Phi(m+1)	       = -7.624518
		(f) ApEn                = 0.693098
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.800105

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1025.631756
		(d) Phi(m)	       = -6.931426
		(e) Phi(m+1)	       = -7.624522
		(f) ApEn                = 0.693096
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.479755

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 935.370077
		(d) Phi(m)	       = -6.931424
		(e) Phi(m+1)	       = -7.624525
		(f) ApEn                = 0.693100
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.977420

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1053.064149
		(d) Phi(m)	       = -6.931417
		(e) Phi(m+1)	       = -7.624512
		(f) ApEn                = 0.693095
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.257538

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1088.867254
		(d) Phi(m)	       = -6.931420
		(e) Phi(m+1)	       = -7.624513
		(f) ApEn                = 0.693093
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.077973

	spritz

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1021.033747
		(d) Phi(m)	       = -6.931426
		(e) Phi(m+1)	       = -7.624522
		(f) ApEn                = 0.693096
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.520287

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1021.735485
		(d) Phi(m)	       = -6.931429
		(e) Phi(m+1)	       = -7.624525
		(f) ApEn                = 0.693096
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.514096

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1069.564728
		(d) Phi(m)	       = -6.931417
		(e) Phi(m+1)	       = -7.624511
		(f) ApEn                = 0.693094
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.156975

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 964.307296
		(d) Phi(m)	       = -6.931425
		(e) Phi(m+1)	       = -7.624524
		(f) ApEn                = 0.693099
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.908367

			APPROXIMATE ENTROPY TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) m (block length)    = 10
		(b) n (sequence length) = 10000000
		(c) Chi^2               = 1001.022727
		(d) Phi(m)	       = -6.931421
		(e) Phi(m+1)	       = -7.624518
		(f) ApEn                = 0.693097
		(g) Log(2)              = 0.693147
		--------------------------------------------
SUCCESS		p_value = 0.690342


BlockFrequency

	dragon

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 78390.468750
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.250628

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 77836.812500
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.766777

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 78030.062500
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.594287

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 77829.156250
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.772677

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 78722.625000
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.065556

	rabbit

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 77780.468750
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.808178

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 78587.187500
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.121274

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 78687.093750
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.077762

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 78255.843750
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.369751

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 77689.750000
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.864654

	spritz

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 78402.437500
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.241114

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 78629.593750
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.101070

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 78263.343750
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.362620

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 77676.968750
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.871587

			BLOCK FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Chi^2           = 77518.750000
		(b) # of substrings = 78125
		(c) block length    = 128
		(d) Note: 0 bits were discarded.
		---------------------------------------------
SUCCESS		p_value = 0.937731


CumulativeSums

	dragon

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 3248
		-------------------------------------------
SUCCESS		p_value = 0.604618

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 3998
		-------------------------------------------
SUCCESS		p_value = 0.411962

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 1825
		-------------------------------------------
SUCCESS		p_value = 0.968650

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 2241
		-------------------------------------------
SUCCESS		p_value = 0.890845

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 6276
		-------------------------------------------
SUCCESS		p_value = 0.094368

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 6152
		-------------------------------------------
SUCCESS		p_value = 0.103446

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 4728
		-------------------------------------------
SUCCESS		p_value = 0.269749

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 3494
		-------------------------------------------
SUCCESS		p_value = 0.536571

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 6447
		-------------------------------------------
SUCCESS		p_value = 0.082956

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 7499
		-------------------------------------------
SUCCESS		p_value = 0.035442

	rabbit

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 7544
		-------------------------------------------
SUCCESS		p_value = 0.034101

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 7745
		-------------------------------------------
SUCCESS		p_value = 0.028636

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 2809
		-------------------------------------------
SUCCESS		p_value = 0.733390

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 2149
		-------------------------------------------
SUCCESS		p_value = 0.911948

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 5654
		-------------------------------------------
SUCCESS		p_value = 0.147567

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 5048
		-------------------------------------------
SUCCESS		p_value = 0.220832

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 2480
		-------------------------------------------
SUCCESS		p_value = 0.828697

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 3109
		-------------------------------------------
SUCCESS		p_value = 0.644700

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 5964
		-------------------------------------------
SUCCESS		p_value = 0.118595

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 4939
		-------------------------------------------
SUCCESS		p_value = 0.236642

	spritz

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 3863
		-------------------------------------------
SUCCESS		p_value = 0.443232

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 3647
		-------------------------------------------
SUCCESS		p_value = 0.496508

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 6775
		-------------------------------------------
SUCCESS		p_value = 0.064316

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 4873
		-------------------------------------------
SUCCESS		p_value = 0.246637

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 4104
		-------------------------------------------
SUCCESS		p_value = 0.388515

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 3029
		-------------------------------------------
SUCCESS		p_value = 0.668159

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 1627
		-------------------------------------------
SUCCESS		p_value = 0.987953

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 2354
		-------------------------------------------
SUCCESS		p_value = 0.862592

		      CUMULATIVE SUMS (FORWARD) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 3050
		-------------------------------------------
SUCCESS		p_value = 0.661979

		      CUMULATIVE SUMS (REVERSE) TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) The maximum partial sum = 2878
		-------------------------------------------
SUCCESS		p_value = 0.712892


FFT

	dragon

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.011380
		(b) N_l        = 4750569.000000
		(c) N_o        = 4750000.000000
		(d) d          = 1.651184
		-------------------------------------------
SUCCESS		p_value = 0.098701

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.005560
		(b) N_l        = 4750278.000000
		(c) N_o        = 4750000.000000
		(d) d          = 0.806730
		-------------------------------------------
SUCCESS		p_value = 0.419822

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 94.999640
		(b) N_l        = 4749982.000000
		(c) N_o        = 4750000.000000
		(d) d          = -0.052234
		-------------------------------------------
SUCCESS		p_value = 0.958342

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.003140
		(b) N_l        = 4750157.000000
		(c) N_o        = 4750000.000000
		(d) d          = 0.455599
		-------------------------------------------
SUCCESS		p_value = 0.648678

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.001680
		(b) N_l        = 4750084.000000
		(c) N_o        = 4750000.000000
		(d) d          = 0.243760
		-------------------------------------------
SUCCESS		p_value = 0.807417

	rabbit

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 94.995700
		(b) N_l        = 4749785.000000
		(c) N_o        = 4750000.000000
		(d) d          = -0.623910
		-------------------------------------------
SUCCESS		p_value = 0.532687

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.008460
		(b) N_l        = 4750423.000000
		(c) N_o        = 4750000.000000
		(d) d          = 1.227506
		-------------------------------------------
SUCCESS		p_value = 0.219633

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 94.998720
		(b) N_l        = 4749936.000000
		(c) N_o        = 4750000.000000
		(d) d          = -0.185722
		-------------------------------------------
SUCCESS		p_value = 0.852663

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.002080
		(b) N_l        = 4750104.000000
		(c) N_o        = 4750000.000000
		(d) d          = 0.301798
		-------------------------------------------
SUCCESS		p_value = 0.762806

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.001120
		(b) N_l        = 4750056.000000
		(c) N_o        = 4750000.000000
		(d) d          = 0.162507
		-------------------------------------------
SUCCESS		p_value = 0.870907

	spritz

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.010720
		(b) N_l        = 4750536.000000
		(c) N_o        = 4750000.000000
		(d) d          = 1.555421
		-------------------------------------------
SUCCESS		p_value = 0.119846

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 94.998160
		(b) N_l        = 4749908.000000
		(c) N_o        = 4750000.000000
		(d) d          = -0.266975
		-------------------------------------------
SUCCESS		p_value = 0.789488

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.005680
		(b) N_l        = 4750284.000000
		(c) N_o        = 4750000.000000
		(d) d          = 0.824141
		-------------------------------------------
SUCCESS		p_value = 0.409859

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.001080
		(b) N_l        = 4750054.000000
		(c) N_o        = 4750000.000000
		(d) d          = 0.156703
		-------------------------------------------
SUCCESS		p_value = 0.875479

				FFT TEST
		-------------------------------------------
		COMPUTATIONAL INFORMATION:
		-------------------------------------------
		(a) Percentile = 95.005220
		(b) N_l        = 4750261.000000
		(c) N_o        = 4750000.000000
		(d) d          = 0.757397
		-------------------------------------------
SUCCESS		p_value = 0.448812


Frequency

	dragon

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = -750
		(b) S_n/n               = -0.000075
		---------------------------------------------
SUCCESS		p_value = 0.812524

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = -744
		(b) S_n/n               = -0.000074
		---------------------------------------------
SUCCESS		p_value = 0.813996

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = 5836
		(b) S_n/n               = 0.000584
		---------------------------------------------
SUCCESS		p_value = 0.064964

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = -2618
		(b) S_n/n               = -0.000262
		---------------------------------------------
SUCCESS		p_value = 0.407736

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = -6296
		(b) S_n/n               = -0.000630
		---------------------------------------------
SUCCESS		p_value = 0.046484

	rabbit

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = 7426
		(b) S_n/n               = 0.000743
		---------------------------------------------
SUCCESS		p_value = 0.018859

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = -660
		(b) S_n/n               = -0.000066
		---------------------------------------------
SUCCESS		p_value = 0.834674

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = 4494
		(b) S_n/n               = 0.000449
		---------------------------------------------
SUCCESS		p_value = 0.155280

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = 2286
		(b) S_n/n               = 0.000229
		---------------------------------------------
SUCCESS		p_value = 0.469743

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = 4820
		(b) S_n/n               = 0.000482
		---------------------------------------------
SUCCESS		p_value = 0.127454

	spritz

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = 2940
		(b) S_n/n               = 0.000294
		---------------------------------------------
SUCCESS		p_value = 0.352521

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = 4214
		(b) S_n/n               = 0.000421
		---------------------------------------------
SUCCESS		p_value = 0.182668

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = -2906
		(b) S_n/n               = -0.000291
		---------------------------------------------
SUCCESS		p_value = 0.358118

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = 842
		(b) S_n/n               = 0.000084
		---------------------------------------------
SUCCESS		p_value = 0.790036

			      FREQUENCY TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) The nth partial sum = 172
		(b) S_n/n               = 0.000017
		---------------------------------------------
SUCCESS		p_value = 0.956624


LinearComplexity

	dragon

-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 190  639 2375 9975 5162 1235  424 13.981529 0.029843
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 204  657 2504 9963 5085 1194  393  7.218286 0.301131
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 221  647 2569 9940 4973 1230  420  4.173972 0.653146
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 212  587 2504 10013 5065 1220  399  4.679496 0.585527
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 197  646 2637 9912 4959 1233  416 10.290334 0.112946
	rabbit

-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 190  631 2488 10087 4976 1224  404  3.710093 0.715840
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 206  644 2508 10033 4930 1263  416  1.883551 0.930091
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 192  633 2505 9888 5024 1340  418  9.412155 0.151691
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 208  608 2525 10052 4929 1261  417  2.097438 0.910523
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 231  587 2576 9933 4959 1245  469 14.228827 0.027182
	spritz

-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 208  636 2547 9920 5002 1256  431  2.249693 0.895362
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 203  625 2483 9969 5039 1253  428  1.027341 0.984555
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 197  603 2482 10074 5048 1212  384  6.361951 0.383888
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 206  631 2469 10038 4972 1274  410  1.365660 0.967914
-----------------------------------------------------
	L I N E A R  C O M P L E X I T Y
-----------------------------------------------------
	M (substring length)     = 500
	N (number of substrings) = 20000
-----------------------------------------------------
        F R E Q U E N C Y                            
-----------------------------------------------------
  C0   C1   C2   C3   C4   C5   C6    CHI2    P-value
-----------------------------------------------------
	Note: 0 bits were discarded!
 196  682 2577 9963 4955 1227  400 10.058742 0.122200

LongestRun

	dragon

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 5.037083
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  71 206 254 203 116  70   80 SUCCESS		p_value = 0.539066

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 9.676797
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		 101 210 219 201 110  81   78 SUCCESS		p_value = 0.138939

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 8.185728
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  79 215 217 212 131  73   73 SUCCESS		p_value = 0.224810

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 8.259856
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  77 220 231 185 143  65   79 SUCCESS		p_value = 0.219677

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 9.253226
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  85 219 272 164 116  77   67 SUCCESS		p_value = 0.159830

	rabbit

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 6.112202
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  80 220 220 207 125  72   76 SUCCESS		p_value = 0.410739

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 4.195456
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  87 197 257 177 130  75   77 SUCCESS		p_value = 0.650245

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 5.479145
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  90 208 257 166 128  72   79 SUCCESS		p_value = 0.483981

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 4.548312
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  80 201 245 187 138  69   80 SUCCESS		p_value = 0.602903

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 5.852286
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  91 195 258 205 127  67   57 SUCCESS		p_value = 0.439939

	spritz

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 1.467520
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  86 212 260 193 116  61   72 SUCCESS		p_value = 0.961623

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 13.960948
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  69 199 237 187 140  81   87 SUCCESS		p_value = 0.030075

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 4.072658
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  87 219 243 180 127  78   66 SUCCESS		p_value = 0.666844

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 3.627021
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		  80 204 250 214 119  66   67 SUCCESS		p_value = 0.727001

			  LONGEST RUNS OF ONES TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) N (# of substrings)  = 1000
		(b) M (Substring Length) = 10000
		(c) Chi^2                = 16.807834
		---------------------------------------------
		      F R E Q U E N C Y
		---------------------------------------------
		<=10  11  12  13  14  15 >=16 P-value  Assignment
		 108 229 247 160 134  53   69 SUCCESS		p_value = 0.010016


NonOverlappingTemplate

	dragon

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2403 2418 2446 2437 2417 2465 2403 2445  1.991514 0.981271 SUCCESS   0
000000011 2375 2428 2457 2466 2408 2497 2382 2440  5.580888 0.694063 SUCCESS   1
000000101 2475 2472 2523 2349 2431 2393 2467 2369 10.849479 0.210375 SUCCESS   2
000000111 2411 2472 2480 2417 2464 2470 2437 2476  2.750818 0.949009 SUCCESS   3
000001001 2379 2522 2419 2381 2502 2395 2448 2478  9.214058 0.324561 SUCCESS   4
000001011 2459 2432 2469 2415 2443 2371 2424 2446  3.024189 0.932830 SUCCESS   5
000001101 2386 2367 2387 2492 2508 2446 2421 2449  8.072328 0.426437 SUCCESS   6
000001111 2406 2490 2389 2385 2461 2422 2476 2429  4.936530 0.764338 SUCCESS   7
000010001 2394 2443 2413 2476 2456 2481 2386 2448  3.875045 0.868218 SUCCESS   8
000010011 2418 2548 2376 2327 2463 2432 2479 2463 13.434656 0.097744 SUCCESS   9
000010101 2448 2432 2569 2468 2502 2480 2404 2508 11.914843 0.155044 SUCCESS  10
000010111 2499 2499 2426 2440 2405 2402 2448 2415  4.445341 0.814876 SUCCESS  11
000011001 2303 2397 2415 2388 2479 2400 2410 2388 13.401901 0.098749 SUCCESS  12
000011011 2438 2364 2395 2525 2476 2442 2507 2437  8.755279 0.363359 SUCCESS  13
000011101 2384 2445 2551 2367 2478 2491 2405 2398 11.804742 0.160131 SUCCESS  14
000011111 2347 2419 2425 2389 2427 2425 2491 2392  7.541539 0.479483 SUCCESS  15
000100011 2561 2399 2403 2450 2343 2475 2443 2341 16.329189 0.037904 SUCCESS  16
000100101 2448 2383 2479 2427 2388 2461 2460 2509  5.603898 0.691504 SUCCESS  17
000100111 2459 2485 2450 2405 2419 2470 2405 2440  2.650594 0.954338 SUCCESS  18
000101001 2425 2471 2503 2366 2487 2394 2405 2479  7.494526 0.484333 SUCCESS  19
000101011 2415 2410 2508 2493 2529 2449 2401 2424  7.816367 0.451611 SUCCESS  20
000101101 2405 2478 2430 2461 2380 2517 2461 2536  9.320610 0.315976 SUCCESS  21
000101111 2505 2478 2458 2426 2460 2432 2432 2414  3.038568 0.931914 SUCCESS  22
000110011 2423 2461 2380 2465 2465 2419 2468 2389  4.050483 0.852540 SUCCESS  23
000110101 2451 2427 2486 2330 2450 2365 2504 2436 10.403543 0.237837 SUCCESS  24
000110111 2453 2433 2368 2510 2480 2411 2504 2434  7.069919 0.529108 SUCCESS  25
000111001 2420 2368 2362 2525 2458 2421 2463 2468  8.898625 0.350920 SUCCESS  26
000111011 2346 2520 2504 2387 2496 2461 2428 2417 11.141597 0.193804 SUCCESS  27
000111101 2466 2457 2424 2369 2427 2426 2476 2508  5.283420 0.726899 SUCCESS  28
000111111 2405 2429 2388 2438 2403 2478 2462 2483  3.944354 0.862109 SUCCESS  29
001000011 2438 2459 2447 2460 2417 2390 2529 2515  7.214627 0.513663 SUCCESS  30
001000101 2457 2499 2435 2420 2449 2462 2414 2421  2.418954 0.965403 SUCCESS  31
001000111 2476 2440 2337 2487 2418 2491 2453 2392  8.371569 0.398041 SUCCESS  32
001001011 2464 2418 2486 2451 2432 2445 2464 2393  2.582119 0.957792 SUCCESS  33
001001101 2452 2548 2381 2422 2460 2416 2456 2442  7.077756 0.528267 SUCCESS  34
001001111 2483 2481 2369 2464 2456 2428 2383 2452  5.493520 0.703758 SUCCESS  35
001010011 2449 2457 2478 2360 2421 2412 2451 2482  4.782050 0.780597 SUCCESS  36
001010101 2533 2362 2561 2406 2518 2462 2471 2415 16.150600 0.040275 SUCCESS  37
001010111 2417 2407 2529 2487 2533 2392 2412 2412 10.207226 0.250782 SUCCESS  38
001011011 2433 2437 2436 2388 2341 2443 2445 2496  6.797898 0.558587 SUCCESS  39
001011101 2357 2424 2459 2421 2405 2462 2447 2394  5.158756 0.740481 SUCCESS  40
001011111 2468 2412 2439 2463 2463 2317 2525 2456 10.671539 0.221014 SUCCESS  41
001100101 2345 2414 2418 2451 2484 2529 2424 2488  9.594657 0.294635 SUCCESS  42
001100111 2445 2472 2458 2476 2486 2462 2461 2455  2.291245 0.970756 SUCCESS  43
001101011 2430 2430 2422 2393 2433 2384 2443 2376  4.499239 0.809509 SUCCESS  44
001101101 2480 2449 2532 2424 2425 2528 2420 2521 10.433279 0.235922 SUCCESS  45
001101111 2417 2369 2427 2507 2480 2503 2440 2468  6.924151 0.544838 SUCCESS  46
001110101 2486 2341 2476 2374 2461 2439 2422 2457  7.972343 0.436176 SUCCESS  47
001110111 2435 2534 2448 2332 2460 2490 2463 2418 10.316546 0.243508 SUCCESS  48
001111011 2494 2452 2398 2408 2475 2368 2480 2534  9.515960 0.300654 SUCCESS  49
001111101 2428 2489 2526 2456 2437 2450 2393 2373  7.172883 0.518100 SUCCESS  50
001111111 2464 2499 2346 2466 2367 2477 2433 2482  9.344627 0.314063 SUCCESS  51
010000011 2415 2457 2429 2448 2476 2468 2481 2449  1.978526 0.981663 SUCCESS  52
010000111 2385 2388 2419 2414 2433 2487 2462 2480  4.807814 0.777906 SUCCESS  53
010001011 2400 2455 2430 2393 2402 2434 2497 2382  5.336379 0.721093 SUCCESS  54
010001111 2516 2470 2449 2464 2376 2487 2405 2511  8.253049 0.409150 SUCCESS  55
010010011 2505 2465 2390 2484 2455 2460 2373 2414  6.363123 0.606627 SUCCESS  56
010010111 2371 2403 2474 2396 2434 2409 2389 2318 12.127961 0.145585 SUCCESS  57
010011011 2457 2553 2465 2454 2441 2373 2432 2466  7.959831 0.437404 SUCCESS  58
010011111 2495 2468 2348 2359 2418 2454 2387 2446  9.650183 0.290442 SUCCESS  59
010100011 2378 2441 2448 2484 2461 2385 2492 2525  8.047146 0.428878 SUCCESS  60
010100111 2471 2448 2419 2391 2412 2378 2508 2381  7.171400 0.518258 SUCCESS  61
010101011 2466 2355 2562 2418 2438 2533 2491 2493 15.544809 0.049378 SUCCESS  62
010101111 2428 2430 2506 2530 2413 2445 2471 2406  6.475037 0.594178 SUCCESS  63
010110011 2507 2383 2497 2457 2397 2494 2472 2436  7.098278 0.526067 SUCCESS  64
010110111 2441 2510 2432 2451 2416 2432 2340 2388  7.944354 0.438925 SUCCESS  65
010111011 2414 2379 2518 2477 2407 2413 2443 2398  6.632059 0.576800 SUCCESS  66
010111111 2452 2390 2425 2429 2462 2394 2496 2507  5.564073 0.695931 SUCCESS  67
011000111 2376 2387 2348 2366 2456 2484 2423 2364 12.708464 0.122282 SUCCESS  68
011001111 2529 2446 2514 2511 2471 2444 2423 2532 11.543247 0.172776 SUCCESS  69
011010111 2437 2433 2373 2422 2419 2450 2417 2496  3.938198 0.862656 SUCCESS  70
011011111 2446 2400 2455 2454 2509 2487 2318 2386 11.448862 0.177540 SUCCESS  71
011101111 2462 2399 2417 2443 2459 2429 2489 2414  2.668984 0.953385 SUCCESS  72
011111111 2493 2459 2440 2489 2465 2457 2420 2497  4.064332 0.851273 SUCCESS  73
100000000 2403 2418 2446 2437 2417 2465 2403 2445  1.991514 0.981271 SUCCESS  74
100010000 2430 2493 2461 2462 2409 2468 2531 2518  8.159233 0.418072 SUCCESS  75
100100000 2449 2372 2535 2393 2476 2417 2431 2412  7.940290 0.439324 SUCCESS  76
100101000 2369 2364 2418 2369 2439 2475 2343 2543 16.166170 0.040063 SUCCESS  77
100110000 2403 2467 2337 2421 2483 2449 2481 2383  8.562511 0.380534 SUCCESS  78
100111000 2473 2451 2490 2426 2486 2468 2509 2336  9.349274 0.313694 SUCCESS  79
101000000 2325 2461 2459 2532 2477 2498 2451 2480 12.077531 0.147778 SUCCESS  80
101000100 2484 2470 2427 2436 2401 2483 2529 2412  6.258477 0.618303 SUCCESS  81
101001000 2517 2413 2459 2380 2462 2410 2449 2471  5.484980 0.704704 SUCCESS  82
101001100 2450 2422 2459 2449 2462 2455 2389 2453  1.825000 0.985915 SUCCESS  83
101010000 2408 2530 2419 2473 2388 2445 2516 2425  8.119938 0.421843 SUCCESS  84
101010100 2518 2568 2454 2387 2494 2374 2523 2351 19.978472 0.010418 SUCCESS  85
101011000 2474 2418 2458 2416 2426 2534 2403 2428  5.506640 0.702304 SUCCESS  86
101011100 2555 2375 2478 2388 2497 2513 2350 2523 18.954124 0.015107 SUCCESS  87
101100000 2372 2462 2447 2431 2425 2417 2347 2399  7.180880 0.517249 SUCCESS  88
101100100 2497 2408 2389 2389 2463 2359 2407 2530 11.009585 0.201157 SUCCESS  89
101101000 2404 2380 2462 2512 2382 2390 2490 2449  8.120136 0.421824 SUCCESS  90
101101100 2496 2335 2483 2308 2410 2390 2446 2507 17.699858 0.023593 SUCCESS  91
101110000 2456 2502 2484 2404 2474 2497 2441 2456  4.859422 0.772490 SUCCESS  92
101110100 2449 2506 2501 2396 2476 2469 2460 2415  5.443580 0.709283 SUCCESS  93
101111000 2386 2438 2438 2505 2483 2435 2469 2449  4.122123 0.845940 SUCCESS  94
101111100 2394 2402 2446 2434 2466 2446 2415 2373  4.183276 0.840220 SUCCESS  95
110000000 2444 2383 2477 2443 2418 2452 2451 2436  2.316599 0.969735 SUCCESS  96
110000010 2371 2489 2484 2452 2433 2411 2308 2455 11.914313 0.155068 SUCCESS  97
110000100 2437 2439 2402 2412 2490 2513 2436 2455  4.298302 0.829257 SUCCESS  98
110001000 2490 2491 2434 2475 2375 2482 2518 2401  8.289219 0.405740 SUCCESS  99
110001010 2351 2432 2486 2433 2492 2475 2556 2390 12.619454 0.125631 SUCCESS 100
110010000 2441 2435 2459 2362 2469 2389 2470 2458  4.768533 0.782005 SUCCESS 101
110010010 2493 2431 2453 2410 2420 2434 2378 2427  3.655943 0.886756 SUCCESS 102
110010100 2374 2356 2465 2381 2417 2495 2402 2484  9.690763 0.287405 SUCCESS 103
110011000 2448 2466 2364 2419 2436 2459 2503 2458  4.893647 0.768881 SUCCESS 104
110011010 2455 2475 2375 2483 2428 2377 2396 2406  6.394037 0.603183 SUCCESS 105
110100000 2354 2412 2405 2508 2523 2472 2397 2416 10.368935 0.240080 SUCCESS 106
110100010 2446 2412 2370 2483 2523 2392 2483 2424  7.984563 0.434980 SUCCESS 107
110100100 2495 2466 2426 2381 2449 2450 2434 2486  4.041838 0.853329 SUCCESS 108
110101000 2373 2479 2395 2485 2381 2436 2477 2468  6.693001 0.570088 SUCCESS 109
110101010 2451 2561 2455 2399 2414 2445 2543 2429 11.702612 0.164974 SUCCESS 110
110101100 2509 2381 2500 2488 2423 2454 2478 2429  6.700944 0.569215 SUCCESS 111
110110000 2360 2484 2502 2457 2428 2368 2378 2402  9.953052 0.268337 SUCCESS 112
110110010 2422 2366 2462 2412 2419 2427 2472 2474  4.260834 0.832857 SUCCESS 113
110110100 2463 2425 2504 2488 2410 2377 2500 2401  7.213343 0.513799 SUCCESS 114
110111000 2450 2504 2451 2421 2494 2459 2478 2434  3.802360 0.874500 SUCCESS 115
110111010 2483 2466 2560 2471 2454 2384 2413 2401  9.817201 0.278091 SUCCESS 116
110111100 2392 2426 2415 2499 2471 2411 2494 2476  5.277820 0.727511 SUCCESS 117
111000000 2408 2424 2451 2447 2425 2455 2504 2470  2.852750 0.943256 SUCCESS 118
111000010 2452 2517 2465 2425 2509 2517 2440 2451  7.218215 0.513282 SUCCESS 119
111000100 2419 2498 2453 2414 2429 2504 2509 2384  7.002860 0.536324 SUCCESS 120
111000110 2504 2452 2473 2490 2399 2380 2512 2528 10.781123 0.214412 SUCCESS 121
111001000 2443 2466 2468 2426 2444 2430 2487 2431  1.642929 0.990073 SUCCESS 122
111001010 2459 2403 2445 2460 2422 2412 2421 2503  3.217567 0.919971 SUCCESS 123
111001100 2455 2533 2368 2430 2506 2488 2466 2431  8.962175 0.345497 SUCCESS 124
111010000 2316 2469 2381 2369 2540 2463 2395 2391 17.054547 0.029546 SUCCESS 125
111010010 2516 2479 2434 2346 2443 2420 2377 2423  8.930704 0.348175 SUCCESS 126
111010100 2491 2425 2424 2463 2484 2450 2444 2416  2.559082 0.958919 SUCCESS 127
111010110 2572 2388 2411 2395 2307 2315 2432 2482 24.893738 0.001620 FAILURE 128
111011000 2357 2525 2399 2505 2455 2396 2384 2322 16.840237 0.031816 SUCCESS 129
111011010 2433 2399 2445 2547 2454 2389 2470 2373  9.080576 0.335544 SUCCESS 130
111011100 2434 2500 2441 2424 2497 2473 2475 2400  4.544505 0.804964 SUCCESS 131
111100000 2379 2429 2482 2510 2451 2463 2407 2518  7.631728 0.470245 SUCCESS 132
111100010 2391 2455 2431 2393 2470 2478 2490 2505  5.821954 0.667168 SUCCESS 133
111100100 2470 2403 2449 2471 2373 2382 2493 2432  6.008950 0.646229 SUCCESS 134
111100110 2449 2520 2454 2422 2503 2513 2456 2449  6.764812 0.562207 SUCCESS 135
111101000 2356 2486 2385 2347 2477 2550 2435 2471 14.977744 0.059580 SUCCESS 136
111101010 2518 2514 2414 2431 2420 2473 2406 2452  6.279210 0.615988 SUCCESS 137
111101100 2425 2453 2453 2528 2481 2403 2435 2414  5.030293 0.754334 SUCCESS 138
111101110 2442 2437 2466 2486 2446 2394 2463 2396  3.139228 0.925319 SUCCESS 139
111110000 2425 2404 2524 2409 2498 2446 2399 2425  6.283685 0.615488 SUCCESS 140
111110010 2426 2376 2434 2418 2354 2402 2472 2390  7.575684 0.475975 SUCCESS 141
111110100 2352 2486 2363 2342 2440 2454 2466 2445 11.347433 0.182779 SUCCESS 142
111110110 2411 2410 2451 2583 2499 2450 2422 2413 11.282043 0.186225 SUCCESS 143
111111000 2443 2470 2419 2421 2472 2451 2461 2500  2.790722 0.946797 SUCCESS 144
111111010 2475 2477 2407 2428 2380 2467 2412 2500  5.288703 0.726320 SUCCESS 145
111111100 2464 2444 2393 2449 2399 2484 2449 2537  6.663913 0.573289 SUCCESS 146
111111110 2493 2459 2440 2489 2465 2457 2420 2497  4.064332 0.851273 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2447 2463 2385 2436 2490 2396 2485 2404  4.842688 0.774250 SUCCESS   0
000000011 2399 2471 2436 2518 2367 2454 2475 2403  7.146470 0.520915 SUCCESS   1
000000101 2444 2548 2422 2427 2542 2375 2453 2429 11.343144 0.183004 SUCCESS   2
000000111 2452 2476 2348 2495 2476 2487 2466 2370  9.272550 0.319828 SUCCESS   3
000001001 2461 2483 2405 2416 2495 2421 2456 2419  3.427189 0.904766 SUCCESS   4
000001011 2419 2431 2392 2432 2489 2443 2394 2384  4.637341 0.795540 SUCCESS   5
000001101 2396 2368 2466 2408 2455 2447 2393 2489  5.927964 0.655301 SUCCESS   6
000001111 2430 2461 2360 2556 2407 2490 2488 2427 11.099707 0.196113 SUCCESS   7
000010001 2502 2398 2502 2295 2467 2517 2405 2433 16.280361 0.038539 SUCCESS   8
000010011 2386 2479 2409 2469 2414 2419 2368 2399  6.240087 0.620358 SUCCESS   9
000010101 2431 2401 2556 2395 2432 2454 2459 2503  9.057897 0.337435 SUCCESS  10
000010111 2442 2376 2352 2459 2417 2459 2358 2388  9.865777 0.274573 SUCCESS  11
000011001 2473 2301 2469 2466 2396 2467 2418 2512 12.847930 0.117190 SUCCESS  12
000011011 2437 2378 2438 2412 2397 2363 2372 2535 11.272233 0.186746 SUCCESS  13
000011101 2477 2479 2517 2435 2431 2484 2517 2472  7.209689 0.514187 SUCCESS  14
000011111 2456 2472 2386 2478 2520 2555 2493 2405 12.130887 0.145459 SUCCESS  15
000100011 2428 2463 2378 2409 2386 2519 2434 2451  6.334711 0.609794 SUCCESS  16
000100101 2395 2469 2483 2410 2486 2331 2401 2389 10.245687 0.248204 SUCCESS  17
000100111 2421 2511 2435 2451 2372 2515 2342 2414 11.124042 0.194769 SUCCESS  18
000101001 2417 2523 2412 2366 2504 2361 2443 2396 11.120427 0.194969 SUCCESS  19
000101011 2439 2387 2540 2484 2454 2444 2443 2455  6.294436 0.614288 SUCCESS  20
000101101 2481 2511 2454 2446 2541 2392 2495 2437  9.256835 0.321095 SUCCESS  21
000101111 2413 2387 2449 2382 2369 2491 2379 2428  8.101747 0.423595 SUCCESS  22
000110011 2470 2360 2481 2504 2447 2456 2409 2437  6.035178 0.643291 SUCCESS  23
000110101 2435 2470 2379 2464 2546 2500 2478 2478  9.457005 0.305221 SUCCESS  24
000110111 2459 2466 2465 2463 2475 2388 2448 2493  3.655162 0.886820 SUCCESS  25
000111001 2446 2488 2469 2406 2465 2417 2452 2412  2.684832 0.952554 SUCCESS  26
000111011 2434 2481 2401 2422 2475 2532 2475 2539 10.010300 0.264304 SUCCESS  27
000111101 2422 2302 2389 2467 2386 2431 2462 2522 14.110259 0.078936 SUCCESS  28
000111111 2459 2401 2387 2410 2540 2466 2472 2519  9.818393 0.278005 SUCCESS  29
001000011 2494 2405 2461 2496 2464 2449 2448 2507  5.243344 0.731279 SUCCESS  30
001000101 2421 2503 2439 2432 2465 2408 2453 2499  3.995751 0.857507 SUCCESS  31
001000111 2418 2418 2400 2383 2360 2426 2362 2375 10.078524 0.259558 SUCCESS  32
001001011 2441 2460 2383 2537 2543 2433 2402 2390 11.644305 0.167794 SUCCESS  33
001001101 2433 2430 2439 2478 2449 2445 2513 2389  4.020482 0.855271 SUCCESS  34
001001111 2418 2472 2403 2494 2438 2410 2405 2424  3.537290 0.896276 SUCCESS  35
001010011 2439 2446 2475 2391 2500 2338 2462 2317 14.285300 0.074626 SUCCESS  36
001010101 2385 2455 2375 2425 2414 2438 2363 2519  8.884948 0.352094 SUCCESS  37
001010111 2428 2446 2449 2470 2367 2415 2464 2406  3.843111 0.870994 SUCCESS  38
001011011 2461 2459 2442 2499 2446 2424 2565 2428  8.386954 0.396612 SUCCESS  39
001011101 2404 2434 2442 2414 2414 2411 2348 2406  5.868399 0.661970 SUCCESS  40
001011111 2432 2419 2424 2398 2411 2394 2445 2373  4.505475 0.808885 SUCCESS  41
001100101 2420 2406 2519 2457 2347 2471 2459 2421  7.833221 0.449929 SUCCESS  42
001100111 2464 2408 2444 2476 2479 2357 2382 2463  6.508030 0.590517 SUCCESS  43
001101011 2410 2529 2402 2420 2509 2440 2428 2411  6.925183 0.544726 SUCCESS  44
001101101 2457 2404 2442 2531 2440 2470 2453 2386  5.802227 0.669374 SUCCESS  45
001101111 2474 2434 2480 2462 2433 2374 2472 2481  4.300711 0.829024 SUCCESS  46
001110101 2512 2422 2521 2485 2301 2455 2413 2380 16.129297 0.040566 SUCCESS  47
001110111 2458 2470 2386 2454 2516 2476 2490 2447  5.711112 0.679555 SUCCESS  48
001111011 2393 2370 2403 2483 2426 2428 2435 2500  6.158227 0.629513 SUCCESS  49
001111101 2429 2471 2377 2425 2446 2531 2469 2445  6.046339 0.642041 SUCCESS  50
001111111 2522 2458 2425 2368 2484 2525 2422 2411  9.547021 0.298268 SUCCESS  51
010000011 2417 2350 2418 2403 2440 2512 2501 2448  8.283831 0.406247 SUCCESS  52
010000111 2436 2442 2518 2521 2495 2554 2464 2451 12.029789 0.149880 SUCCESS  53
010001011 2412 2398 2366 2419 2451 2382 2444 2436  5.332738 0.721492 SUCCESS  54
010001111 2455 2440 2408 2401 2417 2440 2408 2456  2.058467 0.979167 SUCCESS  55
010010011 2471 2385 2447 2387 2514 2407 2456 2342  9.995657 0.265331 SUCCESS  56
010010111 2442 2322 2401 2481 2522 2402 2417 2354 14.292966 0.074442 SUCCESS  57
010011011 2395 2419 2515 2545 2459 2394 2405 2450  9.643100 0.290974 SUCCESS  58
010011111 2449 2442 2412 2456 2381 2408 2425 2423  2.755677 0.948742 SUCCESS  59
010100011 2509 2442 2477 2486 2419 2484 2484 2392  6.101363 0.635879 SUCCESS  60
010100111 2460 2501 2455 2343 2435 2414 2466 2442  6.423893 0.599861 SUCCESS  61
010101011 2461 2537 2459 2494 2455 2429 2445 2506  7.257272 0.509147 SUCCESS  62
010101111 2470 2473 2433 2451 2400 2408 2429 2408  2.574612 0.958161 SUCCESS  63
010110011 2481 2468 2474 2376 2379 2474 2448 2498  6.702639 0.569029 SUCCESS  64
010110111 2490 2454 2537 2518 2462 2453 2549 2451 12.609882 0.125996 SUCCESS  65
010111011 2444 2449 2454 2423 2431 2398 2384 2327  8.020667 0.431454 SUCCESS  66
010111111 2371 2483 2392 2353 2419 2360 2442 2386 11.495267 0.175184 SUCCESS  67
011000111 2456 2543 2426 2301 2500 2491 2414 2485 16.536773 0.035311 SUCCESS  68
011001111 2462 2442 2444 2482 2400 2471 2411 2461  2.533133 0.960168 SUCCESS  69
011010111 2363 2413 2465 2408 2502 2408 2472 2436  6.091433 0.636991 SUCCESS  70
011011111 2466 2461 2440 2488 2468 2407 2468 2468  2.741723 0.949506 SUCCESS  71
011101111 2444 2463 2510 2421 2485 2469 2450 2363  6.134726 0.632143 SUCCESS  72
011111111 2547 2412 2424 2355 2497 2425 2395 2459 10.848486 0.210433 SUCCESS  73
100000000 2447 2463 2385 2436 2490 2396 2485 2404  4.842688 0.774250 SUCCESS  74
100010000 2471 2445 2486 2392 2431 2392 2428 2428  3.484742 0.900371 SUCCESS  75
100100000 2480 2369 2407 2455 2428 2408 2384 2416  5.648171 0.686574 SUCCESS  76
100101000 2523 2455 2510 2415 2448 2439 2491 2457  6.356344 0.607382 SUCCESS  77
100110000 2406 2402 2420 2439 2452 2431 2476 2440  1.986006 0.981438 SUCCESS  78
100111000 2463 2437 2529 2388 2475 2442 2365 2435  7.633859 0.470027 SUCCESS  79
101000000 2461 2534 2416 2464 2517 2435 2504 2495  9.603858 0.293937 SUCCESS  80
101000100 2394 2442 2482 2493 2444 2457 2487 2471  4.137653 0.844495 SUCCESS  81
101001000 2420 2391 2467 2392 2482 2361 2422 2468  6.476970 0.593963 SUCCESS  82
101001100 2435 2463 2444 2416 2431 2449 2428 2393  1.629477 0.990344 SUCCESS  83
101010000 2471 2474 2333 2460 2463 2425 2493 2470  7.733011 0.459976 SUCCESS  84
101010100 2391 2381 2391 2374 2417 2498 2412 2435  7.613775 0.472077 SUCCESS  85
101011000 2455 2392 2406 2469 2346 2459 2463 2528  9.327892 0.315395 SUCCESS  86
101011100 2369 2411 2402 2421 2394 2501 2385 2458  7.366009 0.497706 SUCCESS  87
101100000 2364 2405 2515 2464 2446 2502 2454 2432  7.280733 0.506669 SUCCESS  88
101100100 2501 2444 2389 2418 2451 2413 2420 2440  3.478241 0.900872 SUCCESS  89
101101000 2422 2409 2462 2495 2426 2449 2462 2401  2.997353 0.934524 SUCCESS  90
101101100 2428 2469 2481 2439 2423 2515 2440 2462  3.685666 0.884312 SUCCESS  91
101110000 2398 2408 2356 2464 2461 2420 2435 2379  6.599013 0.580447 SUCCESS  92
101110100 2473 2390 2400 2501 2480 2413 2434 2537  8.642425 0.373352 SUCCESS  93
101111000 2489 2465 2514 2484 2418 2427 2509 2545 11.003429 0.201505 SUCCESS  94
101111100 2417 2401 2406 2478 2387 2407 2396 2388  5.876674 0.661044 SUCCESS  95
110000000 2376 2507 2493 2468 2486 2491 2491 2344 12.010631 0.150730 SUCCESS  96
110000010 2397 2285 2445 2419 2398 2461 2399 2411 13.528008 0.094928 SUCCESS  97
110000100 2460 2459 2429 2446 2479 2459 2327 2415  6.921622 0.545112 SUCCESS  98
110001000 2432 2467 2407 2460 2391 2414 2428 2429  2.497664 0.961840 SUCCESS  99
110001010 2377 2440 2420 2431 2398 2424 2434 2423  3.089222 0.928634 SUCCESS 100
110010000 2476 2436 2455 2438 2432 2419 2436 2398  1.662854 0.989663 SUCCESS 101
110010010 2435 2446 2424 2481 2466 2449 2503 2468  3.008342 0.933833 SUCCESS 102
110010100 2462 2394 2562 2455 2402 2406 2496 2407 10.325390 0.242926 SUCCESS 103
110011000 2407 2387 2477 2316 2433 2428 2480 2462  9.870186 0.274256 SUCCESS 104
110011010 2406 2446 2408 2400 2423 2466 2391 2438  3.218348 0.919917 SUCCESS 105
110100000 2423 2429 2375 2475 2459 2524 2478 2504  7.805484 0.452698 SUCCESS 106
110100010 2458 2428 2417 2506 2475 2367 2523 2480  8.489773 0.387146 SUCCESS 107
110100100 2479 2359 2424 2362 2487 2417 2427 2347 11.269452 0.186894 SUCCESS 108
110101000 2473 2480 2353 2440 2489 2467 2482 2425  6.416412 0.600693 SUCCESS 109
110101010 2467 2463 2475 2443 2458 2489 2494 2422  3.364447 0.909452 SUCCESS 110
110101100 2496 2428 2418 2445 2393 2425 2411 2529  6.325747 0.610794 SUCCESS 111
110110000 2436 2353 2546 2494 2477 2471 2414 2436 10.370047 0.240008 SUCCESS 112
110110010 2566 2481 2425 2402 2423 2441 2500 2454  9.680409 0.288177 SUCCESS 113
110110100 2422 2413 2320 2480 2376 2449 2409 2423  9.799248 0.279400 SUCCESS 114
110111000 2478 2544 2373 2487 2506 2428 2418 2374 11.891793 0.156098 SUCCESS 115
110111010 2434 2330 2453 2504 2441 2427 2435 2508  8.982630 0.343763 SUCCESS 116
110111100 2472 2541 2557 2495 2488 2377 2490 2482 15.857449 0.044467 SUCCESS 117
111000000 2474 2470 2406 2495 2460 2542 2503 2376 10.400405 0.238039 SUCCESS 118
111000010 2476 2417 2467 2409 2541 2437 2343 2480 10.426620 0.236350 SUCCESS 119
111000100 2474 2491 2420 2536 2321 2519 2439 2390 15.293018 0.053692 SUCCESS 120
111000110 2405 2500 2445 2457 2514 2447 2468 2365  7.144378 0.521139 SUCCESS 121
111001000 2393 2514 2391 2471 2449 2356 2458 2438  7.908395 0.442469 SUCCESS 122
111001010 2497 2440 2547 2484 2399 2466 2482 2416  8.795170 0.359869 SUCCESS 123
111001100 2417 2380 2491 2439 2391 2342 2439 2487  9.038580 0.339052 SUCCESS 124
111010000 2383 2434 2409 2392 2485 2497 2409 2527  8.611021 0.376164 SUCCESS 125
111010010 2474 2414 2460 2458 2431 2451 2417 2452  1.416558 0.994008 SUCCESS 126
111010100 2438 2488 2389 2429 2414 2424 2400 2422  3.484279 0.900406 SUCCESS 127
111010110 2478 2411 2514 2431 2362 2445 2438 2449  5.943719 0.653536 SUCCESS 128
111011000 2464 2408 2558 2479 2433 2414 2413 2357 10.755544 0.215939 SUCCESS 129
111011010 2424 2540 2368 2453 2446 2489 2400 2417  8.534006 0.383116 SUCCESS 130
111011100 2462 2417 2417 2423 2502 2439 2450 2454  2.484848 0.962434 SUCCESS 131
111100000 2445 2403 2445 2433 2477 2442 2471 2464  1.790669 0.986770 SUCCESS 132
111100010 2443 2482 2422 2393 2307 2467 2495 2391 12.074181 0.147925 SUCCESS 133
111100100 2372 2479 2461 2545 2454 2351 2385 2444 12.229204 0.141267 SUCCESS 134
111100110 2387 2386 2460 2497 2444 2405 2474 2412  5.390502 0.715139 SUCCESS 135
111101000 2419 2465 2370 2427 2456 2577 2416 2529 14.102130 0.079142 SUCCESS 136
111101010 2452 2482 2386 2384 2495 2411 2430 2375  6.972925 0.539557 SUCCESS 137
111101100 2479 2461 2502 2480 2412 2411 2514 2429  6.005998 0.646560 SUCCESS 138
111101110 2451 2404 2467 2415 2509 2445 2423 2478  3.857582 0.869739 SUCCESS 139
111110000 2416 2360 2400 2434 2456 2386 2418 2490  6.451802 0.596759 SUCCESS 140
111110010 2426 2435 2379 2502 2385 2442 2358 2366 10.024732 0.263294 SUCCESS 141
111110100 2364 2504 2346 2478 2510 2542 2463 2454 15.169109 0.055939 SUCCESS 142
111110110 2458 2494 2500 2472 2453 2519 2495 2383  8.412771 0.394222 SUCCESS 143
111111000 2451 2323 2418 2386 2399 2429 2417 2401  9.278614 0.319340 SUCCESS 144
111111010 2363 2515 2368 2442 2463 2474 2443 2481  8.495293 0.386641 SUCCESS 145
111111100 2471 2371 2429 2333 2415 2480 2392 2369 11.693464 0.165414 SUCCESS 146
111111110 2547 2412 2424 2355 2497 2425 2395 2459 10.848486 0.210433 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2378 2399 2390 2411 2357 2464 2443 2398  8.006554 0.432830 SUCCESS   0
000000011 2458 2344 2395 2377 2368 2405 2421 2316 16.484079 0.035953 SUCCESS   1
000000101 2379 2458 2476 2433 2438 2556 2439 2441  7.875694 0.445706 SUCCESS   2
000000111 2469 2405 2456 2482 2388 2406 2425 2327  9.069031 0.336506 SUCCESS   3
000001001 2449 2408 2397 2452 2413 2408 2446 2395  3.114046 0.926998 SUCCESS   4
000001011 2377 2485 2471 2399 2474 2464 2420 2316 11.217235 0.189692 SUCCESS   5
000001101 2428 2430 2429 2448 2479 2474 2399 2454  2.092943 0.978029 SUCCESS   6
000001111 2458 2406 2416 2523 2446 2379 2345 2471  9.708266 0.286102 SUCCESS   7
000010001 2438 2574 2457 2408 2472 2396 2475 2469 10.102104 0.257933 SUCCESS   8
000010011 2394 2441 2452 2444 2428 2441 2463 2480  1.907562 0.983716 SUCCESS   9
000010101 2504 2449 2402 2437 2423 2454 2392 2467  3.872834 0.868411 SUCCESS  10
000010111 2414 2436 2467 2467 2517 2503 2381 2405  7.022190 0.534240 SUCCESS  11
000011001 2507 2463 2481 2451 2431 2438 2472 2413  3.514412 0.898068 SUCCESS  12
000011011 2461 2418 2402 2472 2504 2485 2484 2447  4.698018 0.789311 SUCCESS  13
000011101 2421 2472 2415 2408 2429 2392 2532 2422  6.076711 0.638639 SUCCESS  14
000011111 2486 2449 2486 2455 2435 2363 2467 2494  5.860429 0.662863 SUCCESS  15
000100011 2460 2481 2455 2431 2426 2370 2478 2477  4.300288 0.829065 SUCCESS  16
000100101 2385 2489 2399 2409 2418 2456 2355 2381  8.542652 0.382332 SUCCESS  17
000100111 2401 2493 2459 2525 2410 2452 2480 2416  6.282494 0.615621 SUCCESS  18
000101001 2398 2535 2447 2468 2483 2455 2455 2493  6.842343 0.553734 SUCCESS  19
000101011 2486 2459 2442 2399 2475 2413 2349 2477  6.709656 0.568258 SUCCESS  20
000101101 2388 2451 2464 2438 2409 2493 2471 2408  3.884988 0.867348 SUCCESS  21
000101111 2446 2427 2493 2413 2461 2407 2349 2452  5.894785 0.659016 SUCCESS  22
000110011 2480 2399 2480 2471 2403 2409 2524 2391  7.431783 0.490841 SUCCESS  23
000110101 2434 2366 2461 2451 2364 2332 2356 2435 13.346890 0.100459 SUCCESS  24
000110111 2323 2410 2353 2514 2441 2518 2472 2448 14.801445 0.063123 SUCCESS  25
000111001 2428 2431 2434 2536 2438 2433 2355 2416  7.406866 0.493437 SUCCESS  26
000111011 2408 2415 2434 2369 2428 2412 2466 2403  4.333691 0.825832 SUCCESS  27
000111101 2427 2379 2409 2424 2307 2492 2448 2480 11.696509 0.165267 SUCCESS  28
000111111 2507 2427 2459 2496 2346 2383 2462 2458  8.902689 0.350571 SUCCESS  29
001000011 2403 2492 2464 2440 2511 2381 2503 2440  7.133879 0.522260 SUCCESS  30
001000101 2493 2446 2461 2445 2404 2458 2365 2472  4.884339 0.769864 SUCCESS  31
001000111 2520 2420 2451 2455 2364 2480 2429 2430  6.218507 0.622771 SUCCESS  32
001001011 2368 2403 2388 2462 2413 2573 2360 2473 15.203704 0.055304 SUCCESS  33
001001101 2428 2483 2391 2539 2434 2427 2465 2467  6.546677 0.586235 SUCCESS  34
001001111 2534 2448 2490 2509 2400 2431 2496 2367 10.969324 0.203443 SUCCESS  35
001010011 2438 2502 2386 2482 2605 2409 2407 2525 18.807707 0.015923 SUCCESS  36
001010101 2447 2393 2453 2471 2314 2468 2408 2369 11.301902 0.185173 SUCCESS  37
001010111 2439 2422 2438 2439 2488 2428 2377 2425  3.035774 0.932092 SUCCESS  38
001011011 2378 2465 2544 2426 2486 2463 2477 2453  8.134872 0.420408 SUCCESS  39
001011101 2520 2422 2376 2429 2480 2495 2378 2393  9.197628 0.325900 SUCCESS  40
001011111 2491 2505 2456 2416 2410 2417 2457 2491  4.935881 0.764407 SUCCESS  41
001100101 2416 2464 2421 2476 2514 2509 2353 2480  9.285168 0.318814 SUCCESS  42
001100111 2522 2472 2418 2483 2491 2360 2513 2437 10.145119 0.254988 SUCCESS  43
001101011 2326 2334 2450 2400 2391 2337 2397 2560 23.772119 0.002502 FAILURE  44
001101101 2428 2464 2490 2488 2526 2473 2473 2383  7.538018 0.479846 SUCCESS  45
001101111 2346 2493 2327 2449 2472 2531 2513 2481 17.188002 0.028210 SUCCESS  46
001110101 2526 2487 2451 2444 2452 2426 2440 2504  5.765858 0.673440 SUCCESS  47
001110111 2433 2447 2467 2413 2446 2516 2445 2368  5.317340 0.723182 SUCCESS  48
001111011 2436 2385 2411 2394 2332 2477 2407 2453  8.867459 0.353600 SUCCESS  49
001111101 2467 2446 2412 2408 2426 2535 2414 2401  5.947042 0.653164 SUCCESS  50
001111111 2475 2431 2474 2452 2413 2369 2483 2505  6.031921 0.643656 SUCCESS  51
010000011 2424 2390 2435 2517 2406 2362 2366 2447  9.308655 0.316931 SUCCESS  52
010000111 2366 2529 2501 2418 2447 2470 2485 2516 10.921224 0.206203 SUCCESS  53
010001011 2477 2401 2379 2439 2357 2500 2347 2408 11.599621 0.169982 SUCCESS  54
010001111 2393 2410 2494 2456 2296 2497 2444 2476 13.448743 0.097314 SUCCESS  55
010010011 2492 2509 2384 2472 2473 2475 2520 2397  9.168858 0.328252 SUCCESS  56
010010111 2451 2465 2451 2410 2418 2440 2422 2533  4.679311 0.791237 SUCCESS  57
010011011 2415 2487 2390 2482 2431 2493 2535 2426  7.980988 0.435329 SUCCESS  58
010011111 2488 2338 2488 2412 2476 2537 2450 2381 12.692391 0.122881 SUCCESS  59
010100011 2443 2403 2451 2424 2346 2416 2488 2454  5.908753 0.657452 SUCCESS  60
010100111 2445 2447 2466 2512 2507 2482 2382 2426  6.504826 0.590872 SUCCESS  61
010101011 2479 2422 2435 2453 2387 2506 2400 2388  5.788365 0.670924 SUCCESS  62
010101111 2436 2404 2548 2485 2521 2437 2399 2349 13.296527 0.102046 SUCCESS  63
010110011 2413 2397 2435 2391 2387 2486 2438 2426  4.471092 0.812318 SUCCESS  64
010110111 2398 2451 2557 2421 2521 2373 2485 2406 12.678489 0.123401 SUCCESS  65
010111011 2542 2366 2435 2349 2417 2470 2422 2446 11.097324 0.196245 SUCCESS  66
010111111 2471 2538 2544 2462 2493 2475 2486 2430 11.471369 0.176394 SUCCESS  67
011000111 2462 2379 2343 2471 2458 2383 2402 2443  8.521773 0.384228 SUCCESS  68
011001111 2483 2530 2462 2389 2473 2523 2510 2417 10.894123 0.207771 SUCCESS  69
011010111 2330 2393 2452 2411 2408 2444 2348 2508 12.737988 0.121188 SUCCESS  70
011011111 2342 2451 2365 2403 2503 2455 2502 2420 10.757835 0.215802 SUCCESS  71
011101111 2479 2411 2412 2410 2470 2500 2509 2357  8.529942 0.383485 SUCCESS  72
011111111 2514 2478 2466 2417 2456 2388 2366 2497  8.326343 0.402258 SUCCESS  73
100000000 2378 2399 2390 2411 2357 2464 2442 2398  8.005614 0.432922 SUCCESS  74
100010000 2487 2450 2416 2395 2493 2346 2428 2476  7.664615 0.466898 SUCCESS  75
100100000 2421 2376 2613 2391 2419 2406 2401 2410 17.392090 0.026276 SUCCESS  76
100101000 2530 2414 2417 2496 2416 2469 2439 2395  6.670096 0.572608 SUCCESS  77
100110000 2310 2377 2415 2436 2418 2410 2369 2497 13.557546 0.094052 SUCCESS  78
100111000 2468 2519 2405 2435 2431 2356 2450 2509  8.533106 0.383198 SUCCESS  79
101000000 2424 2419 2395 2454 2475 2469 2430 2397  3.011003 0.933665 SUCCESS  80
101000100 2412 2480 2447 2438 2437 2425 2515 2442  3.433438 0.904294 SUCCESS  81
101001000 2464 2489 2480 2429 2378 2424 2383 2381  6.693663 0.570016 SUCCESS  82
101001100 2434 2456 2364 2356 2495 2344 2429 2591 20.524261 0.008525 FAILURE  83
101010000 2472 2483 2330 2490 2496 2450 2430 2459  8.869537 0.353421 SUCCESS  84
101010100 2449 2411 2448 2490 2358 2465 2401 2425  5.422727 0.711585 SUCCESS  85
101011000 2406 2380 2434 2458 2409 2453 2391 2407  4.345832 0.824652 SUCCESS  86
101011100 2421 2447 2366 2390 2468 2463 2432 2427  4.339318 0.825285 SUCCESS  87
101100000 2447 2383 2469 2467 2392 2467 2373 2499  6.757676 0.562989 SUCCESS  88
101100100 2506 2430 2436 2404 2476 2442 2456 2479  3.625452 0.889238 SUCCESS  89
101101000 2406 2357 2411 2467 2422 2394 2533 2475  9.361957 0.312688 SUCCESS  90
101101100 2446 2412 2457 2461 2460 2439 2484 2364  4.096914 0.848275 SUCCESS  91
101110000 2425 2537 2466 2532 2480 2537 2451 2457 12.368246 0.135514 SUCCESS  92
101110100 2463 2410 2479 2553 2491 2422 2475 2408  8.644954 0.373126 SUCCESS  93
101111000 2367 2460 2439 2498 2461 2418 2388 2400  6.179609 0.627121 SUCCESS  94
101111100 2488 2431 2454 2409 2465 2436 2335 2464  6.738492 0.565092 SUCCESS  95
110000000 2365 2432 2450 2475 2385 2532 2420 2365 10.511379 0.230951 SUCCESS  96
110000010 2445 2449 2437 2347 2435 2379 2419 2424  5.819915 0.667396 SUCCESS  97
110000100 2418 2598 2409 2463 2500 2428 2437 2481 13.469343 0.096689 SUCCESS  98
110001000 2482 2412 2380 2463 2480 2362 2417 2525  9.374773 0.311673 SUCCESS  99
110001010 2442 2523 2457 2471 2444 2460 2431 2473  3.915135 0.864698 SUCCESS 100
110010000 2415 2414 2527 2460 2416 2404 2480 2466  5.618263 0.689905 SUCCESS 101
110010010 2488 2316 2408 2431 2475 2465 2458 2438  8.936199 0.347707 SUCCESS 102
110010100 2474 2441 2437 2436 2504 2441 2433 2495  3.379302 0.908353 SUCCESS 103
110011000 2418 2394 2473 2486 2418 2410 2363 2469  6.025394 0.644387 SUCCESS 104
110011010 2460 2353 2503 2387 2454 2456 2449 2430  6.555547 0.585253 SUCCESS 105
110100000 2414 2386 2329 2480 2456 2405 2454 2423  8.463015 0.389596 SUCCESS 106
110100010 2387 2458 2377 2480 2383 2449 2616 2376 19.955898 0.010504 SUCCESS 107
110100100 2493 2455 2438 2469 2398 2574 2452 2449  9.854907 0.275358 SUCCESS 108
110101000 2472 2446 2430 2405 2422 2349 2389 2435  5.977877 0.649710 SUCCESS 109
110101010 2481 2440 2430 2472 2431 2503 2393 2444  3.766255 0.877573 SUCCESS 110
110101100 2364 2443 2485 2420 2381 2382 2483 2511  9.364023 0.312524 SUCCESS 111
110110000 2445 2508 2468 2400 2478 2488 2471 2538  8.724934 0.366029 SUCCESS 112
110110010 2506 2401 2469 2384 2464 2454 2453 2406  5.049768 0.752244 SUCCESS 113
110110100 2416 2312 2343 2384 2468 2455 2492 2487 15.207875 0.055227 SUCCESS 114
110111000 2474 2473 2471 2457 2460 2477 2434 2473  2.478877 0.962709 SUCCESS 115
110111010 2427 2355 2528 2474 2507 2393 2512 2413 12.147780 0.144731 SUCCESS 116
110111100 2375 2420 2466 2462 2435 2467 2511 2444  4.848698 0.773618 SUCCESS 117
111000000 2425 2592 2434 2442 2434 2510 2380 2328 18.808674 0.015917 SUCCESS 118
111000010 2426 2549 2459 2443 2467 2480 2398 2435  6.863169 0.551465 SUCCESS 119
111000100 2487 2426 2455 2431 2484 2392 2396 2489  4.741775 0.784785 SUCCESS 120
111000110 2387 2334 2460 2452 2371 2439 2415 2372 10.770478 0.215046 SUCCESS 121
111001000 2359 2462 2515 2506 2408 2422 2381 2490 10.297864 0.244739 SUCCESS 122
111001010 2463 2369 2478 2469 2482 2405 2379 2467  6.495545 0.591902 SUCCESS 123
111001100 2448 2373 2457 2493 2431 2391 2410 2442  4.770942 0.781754 SUCCESS 124
111010000 2466 2420 2451 2485 2432 2421 2453 2424  1.694020 0.988999 SUCCESS 125
111010010 2481 2477 2473 2422 2459 2452 2486 2408  3.279038 0.915646 SUCCESS 126
111010100 2466 2461 2401 2426 2477 2440 2473 2424  2.300500 0.970386 SUCCESS 127
111010110 2356 2474 2504 2434 2437 2420 2486 2439  6.271134 0.616890 SUCCESS 128
111011000 2446 2530 2471 2427 2428 2497 2422 2522  8.092995 0.424439 SUCCESS 129
111011010 2447 2282 2396 2424 2423 2448 2444 2523 14.764110 0.063898 SUCCESS 130
111011100 2477 2524 2483 2383 2374 2462 2409 2425  8.268790 0.407664 SUCCESS 131
111100000 2471 2554 2465 2348 2456 2480 2364 2366 15.342667 0.052815 SUCCESS 132
111100010 2533 2465 2410 2509 2468 2386 2431 2460  7.938052 0.439545 SUCCESS 133
111100100 2411 2423 2496 2466 2450 2452 2507 2515  6.252996 0.618916 SUCCESS 134
111100110 2479 2306 2438 2523 2453 2407 2426 2473 12.273715 0.139403 SUCCESS 135
111101000 2407 2379 2396 2412 2374 2464 2481 2387  7.447790 0.489177 SUCCESS 136
111101010 2491 2433 2372 2420 2444 2599 2514 2444 16.069931 0.041390 SUCCESS 137
111101100 2428 2524 2513 2427 2461 2510 2328 2494 14.004554 0.081647 SUCCESS 138
111101110 2472 2472 2446 2426 2496 2416 2482 2418  3.370312 0.909018 SUCCESS 139
111110000 2526 2504 2466 2402 2418 2450 2395 2388  7.990282 0.434420 SUCCESS 140
111110010 2462 2397 2469 2447 2518 2468 2454 2451  4.244046 0.834461 SUCCESS 141
111110100 2416 2418 2496 2384 2410 2457 2465 2480  4.552211 0.804187 SUCCESS 142
111110110 2399 2425 2456 2441 2469 2476 2411 2500  3.642664 0.887840 SUCCESS 143
111111000 2486 2437 2455 2470 2393 2462 2454 2361  5.253909 0.730125 SUCCESS 144
111111010 2369 2463 2521 2424 2425 2498 2433 2511  8.785413 0.360721 SUCCESS 145
111111100 2495 2445 2426 2451 2413 2370 2469 2486  5.029406 0.754429 SUCCESS 146
111111110 2514 2478 2466 2417 2456 2388 2366 2497  8.326343 0.402258 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2510 2462 2485 2529 2472 2456 2552 2430 11.957461 0.153112 SUCCESS   0
000000011 2440 2426 2457 2427 2486 2371 2509 2441  5.171096 0.739142 SUCCESS   1
000000101 2448 2357 2402 2547 2449 2546 2421 2449 13.279898 0.102575 SUCCESS   2
000000111 2516 2456 2446 2472 2476 2455 2523 2366  8.670361 0.370862 SUCCESS   3
000001001 2484 2407 2544 2464 2479 2449 2508 2472  8.847970 0.355283 SUCCESS   4
000001011 2486 2435 2417 2425 2393 2502 2433 2429  3.869551 0.868697 SUCCESS   5
000001101 2353 2508 2341 2443 2464 2395 2425 2528 13.880896 0.084923 SUCCESS   6
000001111 2463 2439 2431 2469 2510 2427 2479 2408  3.722618 0.881243 SUCCESS   7
000010001 2441 2399 2416 2430 2448 2488 2501 2420  3.727636 0.880823 SUCCESS   8
000010011 2523 2465 2559 2449 2502 2453 2409 2477 11.537647 0.173055 SUCCESS   9
000010101 2431 2416 2437 2456 2334 2551 2413 2451 10.774146 0.214828 SUCCESS  10
000010111 2522 2393 2513 2454 2418 2475 2431 2447  6.754340 0.563355 SUCCESS  11
000011001 2415 2488 2523 2365 2425 2425 2392 2399  8.531901 0.383307 SUCCESS  12
000011011 2355 2516 2388 2479 2462 2417 2470 2453  8.163152 0.417698 SUCCESS  13
000011101 2392 2405 2496 2435 2382 2390 2477 2425  6.139638 0.631594 SUCCESS  14
000011111 2423 2496 2450 2513 2497 2327 2461 2406 11.158147 0.192898 SUCCESS  15
000100011 2479 2388 2348 2459 2474 2461 2466 2415  6.798547 0.558516 SUCCESS  16
000100101 2435 2534 2450 2445 2453 2442 2500 2455  5.278853 0.727398 SUCCESS  17
000100111 2508 2435 2536 2425 2440 2433 2403 2442  6.458289 0.596038 SUCCESS  18
000101001 2460 2413 2520 2486 2495 2468 2393 2402  7.116363 0.524132 SUCCESS  19
000101011 2459 2488 2416 2489 2401 2477 2428 2510  5.583867 0.693732 SUCCESS  20
000101101 2431 2455 2371 2370 2379 2427 2470 2482  7.165032 0.518936 SUCCESS  21
000101111 2519 2385 2495 2407 2364 2425 2380 2465 10.101905 0.257946 SUCCESS  22
000110011 2433 2519 2486 2386 2442 2450 2359 2424  7.760258 0.457232 SUCCESS  23
000110101 2405 2415 2360 2516 2412 2330 2523 2503 16.073599 0.041339 SUCCESS  24
000110111 2375 2475 2407 2442 2419 2469 2505 2498  6.454476 0.596461 SUCCESS  25
000111001 2518 2552 2523 2495 2425 2465 2487 2371 15.039586 0.058380 SUCCESS  26
000111011 2478 2364 2453 2447 2367 2415 2553 2483 11.826336 0.159122 SUCCESS  27
000111101 2474 2410 2401 2456 2488 2456 2501 2414  4.483656 0.811066 SUCCESS  28
000111111 2425 2432 2496 2404 2452 2337 2454 2464  6.955436 0.541448 SUCCESS  29
001000011 2392 2432 2519 2528 2413 2404 2486 2461  8.740517 0.364656 SUCCESS  30
001000101 2524 2424 2455 2373 2443 2465 2456 2449  5.431651 0.710600 SUCCESS  31
001000111 2484 2467 2476 2389 2473 2443 2427 2333  8.207001 0.413515 SUCCESS  32
001001011 2435 2464 2437 2449 2496 2405 2476 2461  2.761463 0.948424 SUCCESS  33
001001101 2431 2418 2387 2441 2506 2433 2480 2439  3.963300 0.860419 SUCCESS  34
001001111 2440 2433 2476 2470 2393 2459 2463 2422  2.365480 0.967709 SUCCESS  35
001010011 2455 2424 2430 2420 2466 2481 2452 2448  1.442892 0.993616 SUCCESS  36
001010101 2435 2341 2381 2424 2421 2425 2351 2386 11.011783 0.201032 SUCCESS  37
001010111 2462 2485 2443 2506 2460 2470 2405 2455  3.888325 0.867056 SUCCESS  38
001011011 2380 2455 2403 2425 2403 2415 2497 2486  5.486158 0.704573 SUCCESS  39
001011101 2523 2416 2482 2525 2432 2480 2519 2396 10.848764 0.210417 SUCCESS  40
001011111 2500 2384 2412 2389 2423 2407 2377 2484  7.549735 0.478640 SUCCESS  41
001100101 2463 2497 2457 2322 2516 2466 2417 2537 14.390012 0.072149 SUCCESS  42
001100111 2372 2510 2463 2383 2479 2437 2415 2418  6.810899 0.557166 SUCCESS  43
001101011 2397 2477 2390 2495 2460 2460 2399 2473  5.186639 0.737454 SUCCESS  44
001101101 2339 2456 2458 2415 2524 2429 2361 2446 10.647324 0.222494 SUCCESS  45
001101111 2463 2498 2419 2538 2416 2509 2460 2515 10.374191 0.239738 SUCCESS  46
001110101 2453 2458 2397 2462 2455 2483 2384 2435  3.413486 0.905799 SUCCESS  47
001110111 2496 2400 2411 2416 2316 2439 2493 2437 10.453973 0.234597 SUCCESS  48
001111011 2516 2416 2407 2453 2401 2451 2510 2393  6.906357 0.546769 SUCCESS  49
001111101 2495 2385 2492 2503 2447 2455 2390 2349 10.085223 0.259095 SUCCESS  50
001111111 2405 2500 2508 2359 2476 2375 2531 2466 12.805484 0.118720 SUCCESS  51
010000011 2412 2419 2467 2407 2435 2368 2323 2531 12.996796 0.111960 SUCCESS  52
010000111 2420 2414 2455 2575 2393 2346 2388 2394 15.159629 0.056115 SUCCESS  53
010001011 2538 2458 2477 2371 2431 2411 2504 2475  9.283897 0.318916 SUCCESS  54
010001111 2432 2381 2405 2375 2492 2463 2406 2377  7.581152 0.475415 SUCCESS  55
010010011 2342 2406 2454 2423 2462 2476 2497 2501  8.429466 0.392681 SUCCESS  56
010010111 2453 2470 2510 2485 2443 2399 2383 2476  5.918259 0.656388 SUCCESS  57
010011011 2361 2392 2562 2436 2504 2393 2499 2432 14.043028 0.080651 SUCCESS  58
010011111 2491 2426 2474 2500 2436 2373 2465 2423  5.422238 0.711639 SUCCESS  59
010100011 2526 2405 2397 2427 2440 2374 2511 2450  8.525731 0.383868 SUCCESS  60
010100111 2378 2424 2444 2389 2459 2418 2411 2410  4.168276 0.841631 SUCCESS  61
010101011 2466 2343 2394 2470 2408 2438 2317 2418 12.920695 0.114608 SUCCESS  62
010101111 2482 2585 2453 2481 2384 2486 2407 2452 12.945320 0.113745 SUCCESS  63
010110011 2494 2416 2441 2460 2438 2415 2398 2501  4.195523 0.839066 SUCCESS  64
010110111 2424 2448 2329 2459 2350 2457 2441 2451  9.310614 0.316774 SUCCESS  65
010111011 2433 2472 2436 2491 2421 2408 2471 2431  2.547458 0.959481 SUCCESS  66
010111111 2418 2495 2368 2432 2445 2466 2359 2479  7.506018 0.483146 SUCCESS  67
011000111 2454 2418 2453 2420 2411 2447 2460 2493  2.229906 0.973140 SUCCESS  68
011001111 2484 2454 2387 2420 2474 2447 2425 2466  3.118005 0.926735 SUCCESS  69
011010111 2374 2498 2424 2469 2501 2368 2351 2518 13.468271 0.096721 SUCCESS  70
011011111 2460 2461 2409 2440 2439 2450 2417 2535  4.753281 0.783591 SUCCESS  71
011101111 2441 2473 2313 2359 2332 2526 2490 2476 19.894308 0.010743 SUCCESS  72
011111111 2421 2523 2421 2336 2463 2475 2494 2420  9.922575 0.270502 SUCCESS  73
100000000 2510 2462 2485 2529 2472 2456 2552 2430 11.957461 0.153112 SUCCESS  74
100010000 2393 2397 2376 2405 2465 2552 2453 2433  9.705962 0.286273 SUCCESS  75
100100000 2436 2371 2457 2478 2422 2406 2446 2497  4.791649 0.779595 SUCCESS  76
100101000 2501 2423 2417 2476 2443 2351 2445 2395  6.788154 0.559652 SUCCESS  77
100110000 2501 2397 2516 2455 2454 2500 2358 2454  9.313315 0.316558 SUCCESS  78
100111000 2411 2465 2575 2441 2462 2426 2430 2386  9.825727 0.277471 SUCCESS  79
101000000 2371 2338 2422 2577 2516 2424 2471 2412 17.802438 0.022757 SUCCESS  80
101000100 2459 2465 2323 2396 2381 2505 2398 2403 11.860097 0.157556 SUCCESS  81
101001000 2401 2495 2549 2454 2375 2380 2389 2377 13.265692 0.103029 SUCCESS  82
101001100 2444 2444 2401 2484 2428 2471 2427 2458  2.118151 0.977174 SUCCESS  83
101010000 2437 2441 2411 2532 2429 2440 2412 2446  4.318691 0.827287 SUCCESS  84
101010100 2462 2359 2451 2409 2475 2383 2460 2406  6.139916 0.631563 SUCCESS  85
101011000 2477 2479 2364 2376 2472 2506 2512 2457  9.866518 0.274520 SUCCESS  86
101011100 2482 2467 2489 2471 2461 2424 2330 2514 10.089751 0.258783 SUCCESS  87
101100000 2414 2535 2444 2459 2454 2465 2481 2418  5.364592 0.717991 SUCCESS  88
101100100 2428 2414 2456 2388 2352 2417 2464 2469  5.868889 0.661916 SUCCESS  89
101101000 2449 2314 2451 2491 2391 2525 2378 2447 13.734983 0.088940 SUCCESS  90
101101100 2435 2468 2480 2475 2413 2338 2433 2497  7.637712 0.469635 SUCCESS  91
101110000 2422 2454 2475 2486 2421 2400 2481 2481  3.779680 0.876434 SUCCESS  92
101110100 2462 2297 2406 2511 2445 2486 2552 2405 18.189339 0.019851 SUCCESS  93
101111000 2521 2589 2438 2390 2371 2444 2399 2558 21.664230 0.005577 FAILURE  94
101111100 2408 2511 2399 2475 2425 2499 2529 2511 10.589692 0.226049 SUCCESS  95
110000000 2469 2486 2490 2450 2453 2425 2566 2458  9.064808 0.336858 SUCCESS  96
110000010 2452 2497 2506 2398 2502 2354 2443 2513 10.889595 0.208034 SUCCESS  97
110000100 2498 2506 2476 2387 2472 2446 2351 2441  8.754631 0.363416 SUCCESS  98
110001000 2405 2354 2405 2411 2469 2517 2421 2475  8.148681 0.419083 SUCCESS  99
110001010 2385 2509 2403 2435 2359 2440 2478 2438  7.374985 0.496767 SUCCESS 100
110010000 2474 2390 2432 2517 2381 2370 2511 2545 14.334074 0.073463 SUCCESS 101
110010010 2477 2462 2415 2386 2406 2340 2450 2394  8.180972 0.415995 SUCCESS 102
110010100 2459 2444 2454 2422 2485 2419 2404 2432  2.008712 0.980744 SUCCESS 103
110011000 2465 2400 2513 2409 2449 2459 2398 2446  4.541553 0.805262 SUCCESS 104
110011010 2407 2405 2461 2468 2455 2430 2462 2432  1.875774 0.984586 SUCCESS 105
110100000 2416 2352 2432 2497 2456 2417 2441 2421  5.524712 0.700301 SUCCESS 106
110100010 2459 2497 2370 2389 2373 2498 2470 2386  9.749600 0.283042 SUCCESS 107
110100100 2364 2439 2420 2444 2429 2426 2521 2423  5.730376 0.677404 SUCCESS 108
110101000 2495 2425 2319 2539 2456 2363 2439 2383 15.855052 0.044502 SUCCESS 109
110101010 2493 2361 2464 2455 2462 2396 2426 2438  5.319565 0.722938 SUCCESS 110
110101100 2434 2380 2440 2359 2358 2431 2455 2543 11.941150 0.153849 SUCCESS 111
110110000 2365 2509 2459 2450 2388 2406 2430 2397  7.199839 0.515233 SUCCESS 112
110110010 2481 2430 2559 2420 2418 2397 2421 2431  8.062200 0.427418 SUCCESS 113
110110100 2418 2394 2458 2452 2480 2467 2424 2413  2.726894 0.950311 SUCCESS 114
110111000 2320 2445 2426 2443 2451 2406 2494 2408  8.564722 0.380334 SUCCESS 115
110111010 2491 2369 2393 2465 2404 2437 2520 2351 11.171161 0.192188 SUCCESS 116
110111100 2540 2514 2382 2428 2327 2548 2392 2445 19.321642 0.013231 SUCCESS 117
111000000 2443 2474 2467 2433 2528 2474 2549 2405  9.854841 0.275362 SUCCESS 118
111000010 2539 2548 2515 2377 2488 2395 2375 2422 16.762759 0.032676 SUCCESS 119
111000100 2419 2428 2489 2442 2459 2518 2375 2540  9.853769 0.275440 SUCCESS 120
111000110 2365 2437 2415 2420 2458 2367 2402 2445  6.093737 0.636733 SUCCESS 121
111001000 2507 2414 2493 2505 2419 2401 2499 2442  7.294052 0.505264 SUCCESS 122
111001010 2424 2481 2454 2455 2523 2410 2422 2483  5.070594 0.750005 SUCCESS 123
111001100 2428 2460 2453 2419 2504 2450 2408 2349  6.273133 0.616666 SUCCESS 124
111010000 2400 2387 2548 2562 2420 2422 2465 2355 16.708583 0.033291 SUCCESS 125
111010010 2399 2364 2408 2499 2371 2444 2484 2448  8.067019 0.426951 SUCCESS 126
111010100 2465 2465 2284 2453 2397 2407 2359 2430 15.291244 0.053724 SUCCESS 127
111010110 2432 2428 2458 2449 2345 2460 2460 2447  4.497862 0.809647 SUCCESS 128
111011000 2359 2446 2462 2441 2447 2393 2470 2433  4.446969 0.814715 SUCCESS 129
111011010 2489 2392 2464 2511 2504 2412 2417 2443  6.543102 0.586631 SUCCESS 130
111011100 2471 2464 2467 2503 2413 2375 2462 2363  7.466299 0.487256 SUCCESS 131
111100000 2413 2449 2430 2314 2450 2451 2505 2479  9.680423 0.288176 SUCCESS 132
111100010 2439 2486 2443 2417 2441 2517 2375 2603 16.453297 0.036333 SUCCESS 133
111100100 2450 2437 2385 2511 2428 2413 2440 2466  4.114510 0.846647 SUCCESS 134
111100110 2433 2392 2407 2465 2503 2534 2412 2438  7.413102 0.492787 SUCCESS 135
111101000 2460 2472 2474 2456 2445 2469 2432 2325  7.189763 0.516304 SUCCESS 136
111101010 2454 2388 2358 2472 2373 2424 2339 2440 11.170394 0.192230 SUCCESS 137
111101100 2515 2407 2451 2448 2400 2480 2429 2389  5.439568 0.709726 SUCCESS 138
111101110 2507 2449 2404 2473 2475 2420 2458 2364  6.190637 0.625887 SUCCESS 139
111110000 2425 2488 2409 2400 2509 2390 2510 2482  7.953000 0.438075 SUCCESS 140
111110010 2428 2471 2413 2459 2448 2410 2491 2492  3.484067 0.900423 SUCCESS 141
111110100 2404 2419 2464 2434 2401 2499 2459 2425  3.386875 0.907790 SUCCESS 142
111110110 2484 2444 2439 2409 2497 2433 2395 2397  4.305584 0.828554 SUCCESS 143
111111000 2460 2482 2443 2362 2512 2428 2413 2482  6.745217 0.564355 SUCCESS 144
111111010 2428 2419 2392 2415 2332 2395 2428 2475  8.152984 0.418671 SUCCESS 145
111111100 2369 2532 2439 2441 2511 2442 2533 2507 13.133270 0.107346 SUCCESS 146
111111110 2421 2523 2421 2336 2463 2475 2494 2420  9.922575 0.270502 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2391 2470 2471 2419 2504 2465 2444 2448  3.924680 0.863854 SUCCESS   0
000000011 2408 2468 2442 2431 2454 2455 2432 2419  1.213833 0.996503 SUCCESS   1
000000101 2468 2443 2474 2396 2502 2536 2485 2511  9.831619 0.277044 SUCCESS   2
000000111 2338 2457 2406 2400 2447 2505 2469 2438  7.943904 0.438969 SUCCESS   3
000001001 2446 2447 2518 2446 2512 2453 2450 2496  5.982061 0.649241 SUCCESS   4
000001011 2375 2446 2470 2435 2447 2516 2448 2557 10.293217 0.245046 SUCCESS   5
000001101 2472 2423 2433 2435 2369 2514 2384 2452  6.484292 0.593151 SUCCESS   6
000001111 2341 2504 2393 2416 2450 2487 2473 2450  8.563226 0.380469 SUCCESS   7
000010001 2496 2422 2425 2392 2490 2451 2421 2406  4.317062 0.827444 SUCCESS   8
000010011 2453 2438 2510 2470 2457 2429 2457 2469  2.997498 0.934514 SUCCESS   9
000010101 2520 2471 2521 2432 2510 2410 2570 2533 18.686790 0.016627 SUCCESS  10
000010111 2466 2467 2406 2426 2498 2528 2525 2587 17.645417 0.024048 SUCCESS  11
000011001 2478 2461 2603 2370 2523 2516 2450 2500 20.621916 0.008223 FAILURE  12
000011011 2439 2340 2472 2443 2388 2481 2396 2489  8.461360 0.389747 SUCCESS  13
000011101 2434 2432 2460 2484 2443 2514 2486 2425  4.168051 0.841652 SUCCESS  14
000011111 2357 2503 2401 2454 2437 2563 2379 2448 13.325297 0.101137 SUCCESS  15
000100011 2429 2437 2446 2517 2456 2492 2346 2432  7.572255 0.476327 SUCCESS  16
000100101 2422 2356 2397 2371 2395 2426 2449 2428  7.295164 0.505147 SUCCESS  17
000100111 2488 2434 2451 2413 2459 2439 2533 2464  5.230038 0.732730 SUCCESS  18
000101001 2430 2499 2385 2478 2446 2352 2375 2412  9.003853 0.341971 SUCCESS  19
000101011 2515 2486 2432 2412 2424 2436 2602 2424 14.739219 0.064419 SUCCESS  20
000101101 2500 2441 2426 2402 2420 2410 2391 2382  5.394593 0.714688 SUCCESS  21
000101111 2412 2437 2486 2460 2449 2500 2496 2451  4.146377 0.843681 SUCCESS  22
000110011 2487 2493 2435 2389 2425 2409 2424 2521  6.561439 0.584601 SUCCESS  23
000110101 2394 2433 2395 2449 2459 2422 2440 2400  2.934941 0.938374 SUCCESS  24
000110111 2448 2369 2406 2481 2429 2415 2416 2482  4.765951 0.782274 SUCCESS  25
000111001 2400 2529 2299 2356 2359 2496 2463 2441 19.994015 0.010359 SUCCESS  26
000111011 2418 2405 2468 2491 2577 2498 2501 2413 13.131297 0.107411 SUCCESS  27
000111101 2423 2406 2391 2401 2417 2382 2445 2400  4.918643 0.766235 SUCCESS  28
000111111 2348 2448 2399 2489 2396 2456 2390 2433  7.547312 0.478889 SUCCESS  29
001000011 2463 2487 2385 2432 2471 2372 2472 2391  6.347884 0.608325 SUCCESS  30
001000101 2440 2485 2382 2486 2469 2371 2459 2488  6.617932 0.578358 SUCCESS  31
001000111 2495 2366 2440 2469 2430 2443 2367 2456  6.440442 0.598021 SUCCESS  32
001001011 2478 2399 2402 2385 2345 2433 2442 2445  7.305583 0.504050 SUCCESS  33
001001101 2445 2436 2437 2482 2480 2416 2446 2452  1.686050 0.989171 SUCCESS  34
001001111 2476 2541 2417 2421 2453 2437 2405 2475  6.244191 0.619900 SUCCESS  35
001010011 2438 2523 2495 2462 2446 2371 2318 2412 13.148694 0.106835 SUCCESS  36
001010101 2417 2416 2545 2425 2548 2489 2432 2467 11.277753 0.186452 SUCCESS  37
001010111 2424 2475 2441 2381 2459 2409 2577 2391 11.594736 0.170222 SUCCESS  38
001011011 2365 2465 2470 2354 2325 2415 2377 2454 14.149184 0.077959 SUCCESS  39
001011101 2385 2418 2418 2388 2431 2391 2490 2548  9.956309 0.268106 SUCCESS  40
001011111 2405 2473 2481 2449 2444 2441 2496 2353  6.250057 0.619244 SUCCESS  41
001100101 2437 2423 2542 2420 2419 2480 2433 2426  5.607910 0.691057 SUCCESS  42
001100111 2448 2534 2459 2396 2442 2440 2530 2498  9.341489 0.314312 SUCCESS  43
001101011 2381 2434 2409 2457 2372 2408 2385 2368  8.257497 0.408730 SUCCESS  44
001101101 2490 2454 2418 2412 2527 2342 2403 2459  9.712224 0.285808 SUCCESS  45
001101111 2455 2453 2412 2491 2475 2426 2493 2416  3.524726 0.897262 SUCCESS  46
001110101 2519 2392 2439 2527 2390 2435 2460 2370 10.135004 0.255678 SUCCESS  47
001110111 2405 2387 2537 2389 2494 2489 2473 2307 17.058082 0.029510 SUCCESS  48
001111011 2452 2433 2365 2385 2451 2354 2382 2380 10.262872 0.247058 SUCCESS  49
001111101 2390 2457 2393 2454 2457 2513 2404 2432  5.186996 0.737416 SUCCESS  50
001111111 2406 2472 2440 2487 2469 2490 2405 2478  4.262621 0.832686 SUCCESS  51
010000011 2429 2456 2408 2543 2417 2574 2451 2477 13.280640 0.102552 SUCCESS  52
010000111 2435 2418 2431 2442 2393 2517 2473 2354  7.367995 0.497498 SUCCESS  53
010001011 2431 2355 2396 2415 2446 2395 2434 2469  5.642531 0.687203 SUCCESS  54
010001111 2497 2341 2410 2460 2457 2404 2399 2394  8.552528 0.381437 SUCCESS  55
010010011 2500 2387 2465 2514 2436 2444 2410 2468  5.911096 0.657190 SUCCESS  56
010010111 2446 2460 2430 2450 2345 2451 2467 2454  4.562789 0.803119 SUCCESS  57
010011011 2474 2448 2447 2435 2486 2387 2457 2381  4.244456 0.834422 SUCCESS  58
010011111 2535 2451 2452 2465 2435 2490 2372 2439  7.096212 0.526289 SUCCESS  59
010100011 2441 2416 2397 2477 2488 2421 2520 2525  8.321484 0.402713 SUCCESS  60
010100111 2486 2444 2504 2518 2472 2363 2364 2377 12.287710 0.138821 SUCCESS  61
010101011 2448 2394 2469 2378 2551 2504 2423 2542 14.177940 0.077244 SUCCESS  62
010101111 2439 2417 2427 2429 2447 2457 2438 2374  2.452755 0.963898 SUCCESS  63
010110011 2584 2446 2458 2464 2502 2351 2408 2367 16.793568 0.032332 SUCCESS  64
010110111 2488 2496 2461 2388 2353 2422 2440 2468  7.324609 0.502049 SUCCESS  65
010111011 2396 2413 2423 2379 2415 2476 2482 2534  8.141624 0.419760 SUCCESS  66
010111111 2374 2376 2449 2456 2434 2474 2456 2377  6.171281 0.628053 SUCCESS  67
011000111 2506 2536 2492 2451 2417 2472 2467 2480  8.243423 0.410060 SUCCESS  68
011001111 2429 2514 2449 2425 2432 2445 2449 2432  2.541791 0.959754 SUCCESS  69
011010111 2434 2425 2383 2385 2389 2462 2468 2412  4.937430 0.764242 SUCCESS  70
011011111 2525 2436 2348 2467 2428 2401 2505 2427  9.516066 0.300646 SUCCESS  71
011101111 2364 2482 2501 2398 2477 2403 2492 2446  7.794998 0.453747 SUCCESS  72
011111111 2386 2443 2433 2451 2446 2444 2415 2436  1.689175 0.989104 SUCCESS  73
100000000 2391 2470 2471 2419 2504 2465 2444 2448  3.924680 0.863854 SUCCESS  74
100010000 2470 2470 2369 2484 2400 2434 2460 2480  5.210153 0.734897 SUCCESS  75
100100000 2372 2417 2418 2491 2508 2452 2383 2443  6.939495 0.543175 SUCCESS  76
100101000 2464 2336 2450 2459 2427 2436 2505 2388  8.107056 0.423083 SUCCESS  77
100110000 2455 2439 2430 2425 2514 2526 2464 2458  5.849678 0.664066 SUCCESS  78
100111000 2512 2523 2459 2491 2393 2368 2409 2460  9.973230 0.266910 SUCCESS  79
101000000 2370 2464 2515 2361 2477 2504 2452 2500 11.110405 0.195522 SUCCESS  80
101000100 2466 2467 2438 2474 2413 2348 2400 2434  5.775417 0.672372 SUCCESS  81
101001000 2436 2417 2414 2446 2501 2362 2420 2463  5.158624 0.740495 SUCCESS  82
101001100 2407 2498 2356 2439 2472 2480 2441 2414  6.296806 0.614023 SUCCESS  83
101010000 2332 2452 2443 2496 2437 2531 2421 2439  9.970688 0.267089 SUCCESS  84
101010100 2426 2356 2493 2443 2414 2485 2473 2366  8.273994 0.407174 SUCCESS  85
101011000 2354 2471 2496 2499 2455 2506 2434 2412  8.512690 0.385055 SUCCESS  86
101011100 2492 2391 2401 2473 2502 2392 2542 2427 10.241451 0.248487 SUCCESS  87
101100000 2429 2492 2499 2428 2518 2530 2444 2496  9.711549 0.285858 SUCCESS  88
101100100 2468 2396 2426 2440 2436 2368 2402 2448  4.244178 0.834448 SUCCESS  89
101101000 2347 2525 2442 2350 2354 2376 2443 2471 15.694787 0.046963 SUCCESS  90
101101100 2332 2485 2457 2430 2365 2454 2414 2429  8.956230 0.346002 SUCCESS  91
101110000 2451 2405 2391 2429 2493 2475 2435 2466  3.621904 0.889526 SUCCESS  92
101110100 2452 2397 2419 2402 2456 2477 2458 2471  2.868267 0.942350 SUCCESS  93
101111000 2420 2439 2501 2354 2434 2413 2415 2464  5.813547 0.668108 SUCCESS  94
101111100 2520 2448 2375 2428 2423 2414 2505 2421  6.931419 0.544050 SUCCESS  95
110000000 2444 2512 2454 2402 2463 2511 2499 2440  6.497491 0.591686 SUCCESS  96
110000010 2474 2463 2495 2374 2490 2387 2410 2470  6.808701 0.557406 SUCCESS  97
110000100 2483 2452 2412 2496 2430 2430 2396 2412  3.759411 0.878152 SUCCESS  98
110001000 2368 2452 2408 2543 2376 2498 2434 2442 10.368696 0.240096 SUCCESS  99
110001010 2429 2481 2364 2597 2393 2424 2415 2343 19.042684 0.014633 SUCCESS 100
110010000 2358 2429 2385 2434 2475 2430 2420 2466  5.365559 0.717885 SUCCESS 101
110010010 2456 2460 2408 2437 2456 2372 2427 2385  4.283037 0.830727 SUCCESS 102
110010100 2446 2408 2545 2443 2512 2486 2388 2423  9.336829 0.314683 SUCCESS 103
110011000 2543 2411 2387 2369 2443 2506 2455 2455 10.165548 0.253598 SUCCESS 104
110011010 2436 2398 2413 2368 2487 2449 2382 2416  6.106764 0.635274 SUCCESS 105
110100000 2471 2483 2516 2331 2485 2526 2473 2499 14.294197 0.074412 SUCCESS 106
110100010 2417 2505 2455 2353 2396 2369 2383 2437  9.900518 0.272078 SUCCESS 107
110100100 2501 2407 2442 2473 2397 2419 2387 2510  6.724855 0.566589 SUCCESS 108
110101000 2384 2379 2462 2422 2525 2446 2478 2518  9.408812 0.308991 SUCCESS 109
110101010 2457 2334 2417 2396 2417 2500 2464 2441  8.038196 0.429748 SUCCESS 110
110101100 2467 2552 2529 2454 2485 2347 2411 2367 16.096635 0.041018 SUCCESS 111
110110000 2426 2447 2479 2393 2436 2470 2494 2387  4.490064 0.810426 SUCCESS 112
110110010 2376 2386 2400 2407 2423 2356 2348 2509 13.202552 0.105068 SUCCESS 113
110110100 2368 2450 2509 2397 2403 2396 2436 2517  9.016417 0.340913 SUCCESS 114
110111000 2411 2431 2384 2449 2419 2450 2382 2336  8.300923 0.404641 SUCCESS 115
110111010 2507 2387 2492 2406 2423 2473 2431 2450  5.336591 0.721069 SUCCESS 116
110111100 2381 2515 2525 2360 2489 2412 2473 2440 11.359309 0.182159 SUCCESS 117
111000000 2389 2478 2383 2489 2471 2457 2463 2494  5.980578 0.649408 SUCCESS 118
111000010 2533 2458 2439 2423 2400 2448 2422 2374  6.645828 0.575282 SUCCESS 119
111000100 2406 2417 2411 2517 2384 2494 2462 2426  6.444321 0.597590 SUCCESS 120
111000110 2406 2494 2371 2512 2439 2403 2377 2483  9.031656 0.339633 SUCCESS 121
111001000 2405 2370 2383 2449 2410 2401 2390 2526  9.449802 0.305782 SUCCESS 122
111001010 2433 2451 2532 2472 2438 2485 2462 2415  5.229840 0.732752 SUCCESS 123
111001100 2490 2404 2445 2349 2442 2508 2535 2443 10.808794 0.212770 SUCCESS 124
111010000 2473 2422 2480 2457 2474 2568 2528 2489 12.697568 0.122688 SUCCESS 125
111010010 2512 2449 2367 2458 2403 2444 2399 2520  8.604878 0.376716 SUCCESS 126
111010100 2482 2374 2478 2420 2479 2473 2517 2508  8.708742 0.367459 SUCCESS 127
111010110 2516 2507 2475 2441 2424 2406 2426 2324 11.258212 0.187493 SUCCESS 128
111011000 2426 2444 2414 2506 2491 2446 2525 2404  6.795290 0.558872 SUCCESS 129
111011010 2361 2452 2480 2452 2386 2423 2507 2469  7.054759 0.530736 SUCCESS 130
111011100 2462 2367 2480 2416 2425 2429 2394 2346  8.414664 0.394047 SUCCESS 131
111100000 2446 2453 2450 2468 2416 2448 2453 2457  0.849453 0.999032 SUCCESS 132
111100010 2455 2448 2477 2456 2369 2440 2415 2333  8.218162 0.412455 SUCCESS 133
111100100 2438 2445 2362 2434 2446 2432 2441 2483  3.483789 0.900444 SUCCESS 134
111100110 2517 2506 2468 2368 2425 2397 2464 2431  7.983464 0.435087 SUCCESS 135
111101000 2484 2496 2478 2424 2430 2473 2445 2487  4.093710 0.848571 SUCCESS 136
111101010 2464 2393 2461 2399 2456 2528 2474 2533  9.407356 0.309105 SUCCESS 137
111101100 2389 2447 2359 2431 2466 2378 2432 2360  8.900836 0.350730 SUCCESS 138
111101110 2398 2417 2444 2409 2453 2446 2380 2424  3.288028 0.915004 SUCCESS 139
111110000 2497 2400 2363 2395 2390 2497 2426 2385  9.427838 0.307498 SUCCESS 140
111110010 2489 2375 2423 2453 2441 2432 2492 2499  5.556752 0.696745 SUCCESS 141
111110100 2491 2494 2504 2444 2394 2439 2454 2447  4.913533 0.766777 SUCCESS 142
111110110 2348 2420 2397 2420 2412 2427 2429 2370  7.595716 0.473923 SUCCESS 143
111111000 2475 2388 2408 2492 2369 2484 2425 2372  8.386941 0.396614 SUCCESS 144
111111010 2475 2450 2497 2423 2515 2403 2423 2473  5.450001 0.708573 SUCCESS 145
111111100 2418 2483 2428 2430 2404 2482 2444 2448  2.408628 0.965856 SUCCESS 146
111111110 2386 2443 2433 2451 2446 2444 2415 2436  1.689175 0.989104 SUCCESS 147

	rabbit

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2411 2415 2388 2491 2348 2476 2381 2405  9.245528 0.322009 SUCCESS   0
000000011 2465 2379 2437 2460 2516 2459 2477 2421  5.243318 0.731282 SUCCESS   1
000000101 2431 2448 2413 2401 2345 2473 2367 2397  8.635977 0.373928 SUCCESS   2
000000111 2405 2349 2488 2421 2428 2436 2450 2454  5.461069 0.707349 SUCCESS   3
000001001 2499 2451 2469 2493 2426 2403 2411 2438  4.017543 0.855537 SUCCESS   4
000001011 2504 2453 2408 2447 2344 2468 2347 2387 11.550026 0.172438 SUCCESS   5
000001101 2489 2461 2474 2534 2501 2414 2480 2415  7.957197 0.437662 SUCCESS   6
000001111 2455 2424 2467 2379 2450 2435 2442 2479  2.781746 0.947299 SUCCESS   7
000010001 2372 2436 2360 2374 2489 2456 2536 2399 12.387192 0.134746 SUCCESS   8
000010011 2500 2402 2475 2472 2456 2427 2476 2410  4.091314 0.848792 SUCCESS   9
000010101 2485 2402 2436 2369 2443 2420 2350 2431  7.474852 0.486370 SUCCESS  10
000010111 2474 2472 2427 2435 2332 2467 2401 2498  8.348956 0.400146 SUCCESS  11
000011001 2456 2446 2406 2438 2356 2452 2479 2429  4.436126 0.815789 SUCCESS  12
000011011 2525 2525 2471 2426 2449 2449 2521 2458  9.246098 0.321963 SUCCESS  13
000011101 2446 2384 2464 2399 2408 2382 2461 2416  4.785095 0.780279 SUCCESS  14
000011111 2296 2471 2504 2439 2395 2433 2467 2484 12.978909 0.112577 SUCCESS  15
000100011 2370 2387 2413 2326 2478 2495 2474 2437 11.639340 0.168036 SUCCESS  16
000100101 2490 2440 2433 2438 2406 2361 2351 2385  9.114020 0.332769 SUCCESS  17
000100111 2523 2371 2567 2428 2500 2465 2502 2382 16.423521 0.036704 SUCCESS  18
000101001 2418 2478 2417 2483 2499 2406 2496 2474  5.435861 0.710135 SUCCESS  19
000101011 2474 2391 2388 2321 2425 2488 2381 2399 12.215223 0.141856 SUCCESS  20
000101101 2361 2343 2427 2475 2473 2426 2358 2412 11.241530 0.188386 SUCCESS  21
000101111 2516 2454 2434 2491 2337 2475 2349 2502 13.759767 0.088246 SUCCESS  22
000110011 2450 2523 2443 2458 2352 2427 2489 2440  7.405291 0.493601 SUCCESS  23
000110101 2414 2411 2496 2548 2537 2523 2416 2438 13.760284 0.088231 SUCCESS  24
000110111 2420 2477 2397 2369 2426 2426 2528 2434  7.187963 0.516496 SUCCESS  25
000111001 2404 2373 2396 2389 2366 2455 2509 2454  9.100118 0.333921 SUCCESS  26
000111011 2468 2339 2519 2452 2359 2427 2467 2459 10.714078 0.218432 SUCCESS  27
000111101 2429 2428 2490 2514 2474 2404 2415 2510  6.707908 0.568450 SUCCESS  28
000111111 2301 2443 2412 2493 2430 2493 2458 2483 11.879599 0.156657 SUCCESS  29
001000011 2373 2559 2366 2384 2352 2431 2475 2390 16.673802 0.033691 SUCCESS  30
001000101 2438 2438 2476 2458 2462 2355 2474 2467  4.704387 0.788654 SUCCESS  31
001000111 2424 2392 2404 2378 2440 2454 2487 2492  5.491044 0.704032 SUCCESS  32
001001011 2466 2431 2402 2474 2402 2430 2376 2439  3.936543 0.862803 SUCCESS  33
001001101 2503 2460 2333 2493 2508 2395 2522 2505 15.119408 0.056865 SUCCESS  34
001001111 2437 2423 2486 2412 2427 2439 2536 2507  7.066609 0.529463 SUCCESS  35
001010011 2545 2429 2344 2392 2431 2442 2395 2437 10.630867 0.223504 SUCCESS  36
001010101 2410 2455 2482 2447 2559 2413 2377 2471  9.537607 0.298990 SUCCESS  37
001010111 2448 2471 2510 2427 2411 2490 2439 2391  4.942554 0.763698 SUCCESS  38
001011011 2435 2349 2430 2447 2478 2459 2343 2396  9.375515 0.311615 SUCCESS  39
001011101 2474 2509 2404 2562 2458 2431 2434 2495 10.545710 0.228791 SUCCESS  40
001011111 2468 2456 2446 2415 2431 2531 2470 2539  8.525493 0.383890 SUCCESS  41
001100101 2416 2389 2412 2509 2438 2471 2453 2426  4.272326 0.831755 SUCCESS  42
001100111 2406 2383 2483 2472 2418 2450 2561 2377 11.186519 0.191353 SUCCESS  43
001101011 2427 2462 2413 2491 2508 2358 2482 2423  7.319737 0.502561 SUCCESS  44
001101101 2528 2530 2481 2433 2371 2474 2487 2452 10.677722 0.220637 SUCCESS  45
001101111 2415 2502 2352 2357 2494 2523 2495 2408 13.938290 0.083388 SUCCESS  46
001110101 2395 2537 2385 2448 2494 2420 2393 2452  8.556527 0.381075 SUCCESS  47
001110111 2452 2402 2510 2406 2426 2330 2518 2433 11.103494 0.195904 SUCCESS  48
001111011 2456 2432 2449 2449 2448 2400 2430 2367  3.320703 0.912651 SUCCESS  49
001111101 2441 2403 2433 2368 2460 2525 2477 2447  6.595186 0.580870 SUCCESS  50
001111111 2367 2477 2488 2469 2527 2494 2432 2540 12.559783 0.127921 SUCCESS  51
010000011 2515 2356 2338 2436 2471 2421 2441 2414 10.791423 0.213800 SUCCESS  52
010000111 2382 2478 2394 2447 2312 2407 2499 2419 12.239597 0.140830 SUCCESS  53
010001011 2421 2389 2423 2456 2403 2395 2367 2405  6.014537 0.645603 SUCCESS  54
010001111 2417 2459 2412 2466 2505 2502 2479 2428  4.951755 0.762720 SUCCESS  55
010010011 2417 2437 2436 2391 2423 2387 2517 2503  6.775073 0.561084 SUCCESS  56
010010111 2447 2443 2486 2460 2426 2457 2477 2438  1.749918 0.987742 SUCCESS  57
010011011 2498 2549 2406 2456 2426 2411 2458 2508  9.372986 0.311815 SUCCESS  58
010011111 2494 2490 2498 2392 2429 2461 2518 2413  7.620818 0.471358 SUCCESS  59
010100011 2530 2450 2481 2459 2418 2364 2433 2424  7.081172 0.527901 SUCCESS  60
010100111 2478 2486 2358 2433 2454 2425 2427 2489  5.616145 0.690141 SUCCESS  61
010101011 2372 2483 2470 2385 2521 2439 2410 2474  8.022944 0.431232 SUCCESS  62
010101111 2404 2473 2508 2384 2386 2415 2380 2378  9.184878 0.326941 SUCCESS  63
010110011 2448 2511 2364 2363 2464 2466 2474 2413  8.477473 0.388271 SUCCESS  64
010110111 2458 2316 2349 2412 2483 2361 2390 2454 15.418305 0.051504 SUCCESS  65
010111011 2465 2506 2445 2528 2493 2409 2392 2431  7.840410 0.449213 SUCCESS  66
010111111 2491 2470 2457 2429 2458 2450 2412 2511  4.124837 0.845688 SUCCESS  67
011000111 2388 2410 2383 2490 2447 2504 2412 2465  6.346904 0.608434 SUCCESS  68
011001111 2421 2396 2479 2449 2469 2414 2474 2378  4.466604 0.812765 SUCCESS  69
011010111 2473 2507 2432 2438 2459 2406 2477 2393  4.480571 0.811374 SUCCESS  70
011011111 2453 2351 2467 2451 2448 2453 2445 2392  4.950273 0.762878 SUCCESS  71
011101111 2447 2455 2536 2468 2488 2429 2459 2393  6.292887 0.614461 SUCCESS  72
011111111 2463 2516 2451 2493 2455 2502 2433 2543  9.762548 0.282089 SUCCESS  73
100000000 2411 2415 2388 2491 2348 2476 2381 2405  9.245528 0.322009 SUCCESS  74
100010000 2553 2462 2402 2366 2472 2495 2458 2422 10.413539 0.237192 SUCCESS  75
100100000 2469 2331 2484 2422 2494 2405 2471 2424  8.647509 0.372898 SUCCESS  76
100101000 2460 2426 2528 2484 2485 2415 2376 2347 10.881333 0.208514 SUCCESS  77
100110000 2456 2499 2374 2421 2407 2387 2471 2548 10.537819 0.229286 SUCCESS  78
100111000 2492 2426 2540 2421 2386 2424 2486 2470  8.099165 0.423844 SUCCESS  79
101000000 2434 2438 2450 2487 2435 2374 2438 2333  7.864453 0.446822 SUCCESS  80
101000100 2508 2435 2461 2520 2517 2445 2360 2456 10.002476 0.264852 SUCCESS  81
101001000 2380 2448 2500 2519 2439 2291 2512 2455 17.397770 0.026224 SUCCESS  82
101001100 2425 2344 2444 2422 2411 2433 2487 2438  5.601767 0.691741 SUCCESS  83
101010000 2441 2377 2389 2452 2471 2449 2450 2447  3.407913 0.906218 SUCCESS  84
101010100 2535 2411 2448 2399 2488 2502 2479 2437  7.967749 0.436627 SUCCESS  85
101011000 2377 2455 2424 2349 2477 2480 2465 2476  7.492023 0.484592 SUCCESS  86
101011100 2420 2504 2380 2474 2477 2453 2375 2384  7.758987 0.457360 SUCCESS  87
101100000 2446 2459 2475 2404 2440 2483 2379 2377  5.351340 0.719449 SUCCESS  88
101100100 2528 2421 2388 2429 2482 2473 2390 2374  8.791860 0.360158 SUCCESS  89
101101000 2431 2443 2440 2533 2480 2390 2331 2466 10.773073 0.214892 SUCCESS  90
101101100 2419 2385 2436 2486 2418 2489 2442 2332  8.677020 0.370270 SUCCESS  91
101110000 2413 2595 2404 2405 2500 2435 2499 2442 14.370497 0.072605 SUCCESS  92
101110100 2431 2409 2479 2554 2496 2333 2457 2463 13.003945 0.111714 SUCCESS  93
101111000 2410 2432 2401 2404 2424 2506 2495 2391  5.928374 0.655255 SUCCESS  94
101111100 2422 2371 2480 2508 2430 2454 2453 2470  5.295985 0.725523 SUCCESS  95
110000000 2410 2448 2425 2428 2433 2483 2474 2354  5.075215 0.749508 SUCCESS  96
110000010 2495 2463 2361 2472 2460 2401 2411 2463  5.977427 0.649761 SUCCESS  97
110000100 2473 2459 2428 2420 2421 2377 2498 2388  5.322623 0.722603 SUCCESS  98
110001000 2511 2407 2452 2301 2415 2481 2521 2424 14.724854 0.064722 SUCCESS  99
110001010 2392 2427 2494 2411 2466 2463 2457 2389  4.405662 0.818795 SUCCESS 100
110010000 2419 2373 2424 2316 2430 2386 2500 2389 12.956402 0.113359 SUCCESS 101
110010010 2476 2409 2533 2457 2373 2502 2368 2420 10.624472 0.223898 SUCCESS 102
110010100 2496 2412 2433 2479 2520 2403 2426 2328 11.048576 0.198962 SUCCESS 103
110011000 2422 2505 2473 2339 2461 2436 2381 2529 11.710649 0.164588 SUCCESS 104
110011010 2489 2491 2391 2385 2396 2381 2467 2463  7.319697 0.502565 SUCCESS 105
110100000 2476 2386 2388 2509 2419 2357 2494 2441  9.353947 0.313323 SUCCESS 106
110100010 2429 2405 2362 2489 2490 2443 2373 2451  7.279621 0.506786 SUCCESS 107
110100100 2463 2368 2517 2481 2403 2366 2553 2507 15.700109 0.046879 SUCCESS 108
110101000 2422 2465 2339 2486 2498 2392 2380 2429  9.733169 0.284256 SUCCESS 109
110101010 2497 2439 2436 2337 2450 2528 2512 2440 11.264249 0.187171 SUCCESS 110
110101100 2379 2482 2436 2415 2502 2439 2509 2390  7.269479 0.507857 SUCCESS 111
110110000 2486 2431 2504 2445 2396 2491 2415 2357  7.783003 0.454949 SUCCESS 112
110110010 2504 2404 2379 2434 2506 2476 2462 2468  6.681310 0.571374 SUCCESS 113
110110100 2445 2437 2474 2517 2418 2411 2347 2421  7.460156 0.487893 SUCCESS 114
110111000 2431 2518 2428 2445 2430 2462 2456 2512  5.051344 0.752075 SUCCESS 115
110111010 2474 2411 2425 2505 2464 2259 2457 2467 17.361361 0.026559 SUCCESS 116
110111100 2459 2452 2417 2408 2467 2465 2464 2423  1.777337 0.987094 SUCCESS 117
111000000 2328 2478 2488 2400 2373 2468 2474 2415 10.688472 0.219983 SUCCESS 118
111000010 2463 2469 2474 2401 2441 2419 2412 2365  4.713231 0.787740 SUCCESS 119
111000100 2471 2426 2494 2387 2436 2424 2551 2442  8.128371 0.421032 SUCCESS 120
111000110 2493 2425 2406 2400 2369 2451 2330 2486 10.857939 0.209879 SUCCESS 121
111001000 2475 2472 2446 2380 2419 2389 2416 2456  4.220069 0.836742 SUCCESS 122
111001010 2495 2511 2466 2385 2506 2408 2429 2482  7.878898 0.445388 SUCCESS 123
111001100 2357 2356 2501 2455 2398 2406 2512 2527 14.235943 0.075819 SUCCESS 124
111010000 2471 2346 2375 2429 2412 2381 2444 2481  8.737658 0.364908 SUCCESS 125
111010010 2395 2396 2511 2450 2519 2388 2544 2501 13.594511 0.092966 SUCCESS 126
111010100 2399 2442 2417 2484 2496 2418 2369 2452  5.545829 0.697957 SUCCESS 127
111010110 2404 2474 2414 2462 2463 2391 2495 2474  4.482372 0.811194 SUCCESS 128
111011000 2438 2405 2426 2483 2398 2477 2380 2368  6.613338 0.578865 SUCCESS 129
111011010 2427 2390 2439 2470 2405 2395 2434 2390  4.170699 0.841403 SUCCESS 130
111011100 2474 2468 2540 2411 2429 2394 2448 2442  6.296660 0.614039 SUCCESS 131
111100000 2288 2395 2455 2447 2408 2464 2433 2450 11.722061 0.164042 SUCCESS 132
111100010 2464 2438 2497 2441 2397 2518 2506 2450  6.652951 0.574497 SUCCESS 133
111100100 2395 2474 2505 2459 2444 2419 2459 2478  4.122361 0.845918 SUCCESS 134
111100110 2450 2408 2538 2397 2396 2422 2520 2459  9.074433 0.336056 SUCCESS 135
111101000 2431 2488 2404 2396 2444 2406 2438 2462  3.149674 0.924616 SUCCESS 136
111101010 2387 2434 2474 2446 2472 2443 2379 2415  4.078286 0.849992 SUCCESS 137
111101100 2420 2422 2395 2418 2467 2513 2413 2354  7.524182 0.481271 SUCCESS 138
111101110 2445 2533 2494 2455 2455 2421 2428 2437  5.150879 0.741335 SUCCESS 139
111110000 2389 2361 2494 2466 2425 2474 2480 2397  7.360806 0.498251 SUCCESS 140
111110010 2471 2480 2492 2449 2451 2441 2472 2419  2.761198 0.948438 SUCCESS 141
111110100 2462 2450 2398 2334 2529 2491 2509 2494 13.298751 0.101976 SUCCESS 142
111110110 2423 2340 2397 2535 2476 2485 2448 2418 10.609432 0.224826 SUCCESS 143
111111000 2420 2391 2461 2415 2395 2498 2408 2504  6.130185 0.632652 SUCCESS 144
111111010 2498 2476 2453 2416 2510 2409 2423 2432  4.814845 0.777170 SUCCESS 145
111111100 2393 2450 2497 2441 2430 2502 2492 2512  7.142419 0.521348 SUCCESS 146
111111110 2463 2516 2451 2493 2455 2502 2433 2543  9.762548 0.282089 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2384 2517 2387 2468 2449 2387 2541 2410 11.269757 0.186878 SUCCESS   0
000000011 2377 2458 2430 2455 2463 2448 2496 2391  4.562485 0.803150 SUCCESS   1
000000101 2457 2446 2400 2496 2358 2561 2379 2516 15.116362 0.056922 SUCCESS   2
000000111 2378 2471 2411 2437 2465 2469 2412 2367  5.742980 0.675997 SUCCESS   3
000001001 2425 2414 2400 2482 2464 2417 2487 2430  3.261072 0.916922 SUCCESS   4
000001011 2472 2409 2391 2506 2386 2453 2440 2448  5.062054 0.750924 SUCCESS   5
000001101 2354 2482 2496 2375 2385 2483 2449 2361 11.908408 0.155338 SUCCESS   6
000001111 2497 2477 2473 2426 2444 2441 2367 2426  4.818896 0.776746 SUCCESS   7
000010001 2467 2408 2422 2334 2403 2405 2366 2514 11.622671 0.168850 SUCCESS   8
000010011 2402 2413 2430 2478 2467 2339 2525 2442  9.302975 0.317386 SUCCESS   9
000010101 2430 2443 2357 2486 2392 2532 2490 2497 10.739484 0.216902 SUCCESS  10
000010111 2433 2408 2434 2396 2446 2475 2409 2458  2.447155 0.964150 SUCCESS  11
000011001 2514 2506 2485 2540 2474 2386 2406 2436 11.220876 0.189495 SUCCESS  12
000011011 2394 2391 2518 2431 2316 2489 2395 2341 17.362672 0.026547 SUCCESS  13
000011101 2376 2405 2473 2447 2457 2418 2446 2373  5.134899 0.743065 SUCCESS  14
000011111 2367 2488 2463 2440 2417 2479 2485 2411  5.511923 0.701719 SUCCESS  15
000100011 2411 2388 2415 2317 2433 2396 2348 2569 19.946379 0.010541 SUCCESS  16
000100101 2428 2476 2447 2392 2389 2380 2371 2450  6.520475 0.589137 SUCCESS  17
000100111 2401 2460 2410 2483 2356 2390 2562 2466 12.616475 0.125745 SUCCESS  18
000101001 2379 2440 2487 2457 2449 2421 2446 2419  3.056613 0.930755 SUCCESS  19
000101011 2405 2374 2521 2529 2365 2551 2456 2472 16.471726 0.036105 SUCCESS  20
000101101 2527 2400 2350 2543 2444 2466 2496 2462 13.446439 0.097384 SUCCESS  21
000101111 2422 2449 2396 2392 2471 2448 2432 2517  4.939535 0.764019 SUCCESS  22
000110011 2599 2473 2451 2504 2402 2409 2401 2465 14.676556 0.065748 SUCCESS  23
000110101 2418 2500 2453 2399 2451 2486 2452 2461  3.598351 0.891424 SUCCESS  24
000110111 2440 2405 2481 2429 2405 2543 2431 2399  7.033854 0.532985 SUCCESS  25
000111001 2469 2533 2427 2400 2455 2420 2445 2530  8.296355 0.405070 SUCCESS  26
000111011 2455 2506 2449 2518 2430 2317 2368 2414 13.568230 0.093737 SUCCESS  27
000111101 2437 2466 2436 2434 2532 2451 2438 2447  3.835856 0.871621 SUCCESS  28
000111111 2493 2465 2426 2419 2424 2380 2432 2504  5.100317 0.746802 SUCCESS  29
001000011 2492 2414 2392 2490 2381 2513 2518 2431  9.687466 0.287650 SUCCESS  30
001000101 2408 2485 2462 2477 2412 2446 2415 2452  2.712979 0.951059 SUCCESS  31
001000111 2437 2560 2412 2320 2457 2392 2399 2489 15.435741 0.051206 SUCCESS  32
001001011 2441 2400 2469 2486 2490 2338 2479 2389  9.183978 0.327014 SUCCESS  33
001001101 2525 2340 2453 2504 2491 2459 2379 2438 11.862917 0.157426 SUCCESS  34
001001111 2441 2444 2343 2477 2354 2418 2511 2459 10.293204 0.245047 SUCCESS  35
001010011 2425 2432 2437 2499 2433 2445 2492 2418  2.917717 0.939415 SUCCESS  36
001010101 2409 2422 2369 2406 2458 2442 2434 2428  3.570760 0.893629 SUCCESS  37
001010111 2351 2361 2387 2562 2390 2507 2419 2438 16.775734 0.032531 SUCCESS  38
001011011 2416 2469 2403 2456 2421 2534 2404 2448  5.731475 0.677282 SUCCESS  39
001011101 2446 2434 2443 2431 2528 2547 2341 2413 12.593610 0.126618 SUCCESS  40
001011111 2485 2425 2404 2428 2409 2458 2506 2512  6.030001 0.643871 SUCCESS  41
001100101 2491 2507 2473 2444 2520 2443 2404 2472  6.900968 0.547354 SUCCESS  42
001100111 2577 2496 2396 2396 2402 2384 2402 2436 13.522898 0.095080 SUCCESS  43
001101011 2423 2482 2438 2442 2437 2408 2452 2379  3.024375 0.932819 SUCCESS  44
001101101 2432 2366 2478 2394 2357 2390 2444 2478  8.671565 0.370755 SUCCESS  45
001101111 2455 2452 2436 2376 2491 2456 2478 2371  5.750169 0.675193 SUCCESS  46
001110101 2363 2351 2458 2402 2445 2439 2453 2387  8.157671 0.418222 SUCCESS  47
001110111 2482 2443 2344 2535 2319 2320 2346 2448 24.893645 0.001620 FAILURE  48
001111011 2427 2468 2499 2419 2458 2388 2529 2475  7.061154 0.530049 SUCCESS  49
001111101 2376 2414 2481 2444 2492 2467 2452 2444  4.210576 0.837642 SUCCESS  50
001111111 2476 2458 2399 2343 2430 2460 2475 2475  6.645894 0.575274 SUCCESS  51
010000011 2468 2452 2506 2422 2510 2475 2392 2405  6.342946 0.608876 SUCCESS  52
010000111 2430 2451 2405 2449 2430 2458 2554 2452  6.271677 0.616829 SUCCESS  53
010001011 2422 2538 2370 2492 2503 2461 2385 2484 11.245396 0.188179 SUCCESS  54
010001111 2431 2451 2367 2374 2435 2412 2466 2464  5.209927 0.734921 SUCCESS  55
010010011 2484 2396 2419 2434 2466 2519 2421 2436  4.874502 0.770901 SUCCESS  56
010010111 2440 2409 2570 2436 2483 2393 2404 2468 10.083118 0.259241 SUCCESS  57
010011011 2475 2393 2423 2366 2487 2357 2436 2406  8.463492 0.389552 SUCCESS  58
010011111 2408 2401 2396 2439 2471 2424 2492 2463  3.821385 0.872868 SUCCESS  59
010100011 2500 2489 2416 2364 2344 2396 2557 2437 15.788272 0.045513 SUCCESS  60
010100111 2467 2405 2443 2472 2464 2437 2468 2491  2.804359 0.946029 SUCCESS  61
010101011 2439 2435 2414 2419 2512 2412 2500 2480  5.115092 0.745207 SUCCESS  62
010101111 2336 2445 2382 2482 2435 2486 2431 2481  8.475156 0.388483 SUCCESS  63
010110011 2412 2444 2431 2433 2454 2472 2488 2336  6.534867 0.587543 SUCCESS  64
010110111 2492 2428 2427 2427 2413 2444 2336 2437  6.394871 0.603091 SUCCESS  65
010111011 2434 2441 2439 2433 2495 2455 2405 2427  2.000318 0.981002 SUCCESS  66
010111111 2388 2451 2381 2446 2463 2477 2448 2487  4.435822 0.815819 SUCCESS  67
011000111 2340 2540 2518 2478 2466 2391 2424 2399 13.751109 0.088488 SUCCESS  68
011001111 2493 2393 2475 2407 2436 2412 2501 2433  5.013690 0.756112 SUCCESS  69
011010111 2441 2474 2428 2431 2452 2463 2503 2481  3.090626 0.928542 SUCCESS  70
011011111 2427 2423 2474 2399 2454 2416 2465 2453  2.076605 0.978573 SUCCESS  71
011101111 2472 2421 2353 2558 2442 2406 2406 2392 11.739034 0.163233 SUCCESS  72
011111111 2460 2428 2491 2319 2492 2499 2472 2421 10.676001 0.220742 SUCCESS  73
100000000 2384 2517 2387 2468 2449 2387 2541 2410 11.269757 0.186878 SUCCESS  74
100010000 2326 2482 2436 2440 2477 2556 2404 2497 14.357614 0.072907 SUCCESS  75
100100000 2445 2506 2411 2420 2444 2459 2394 2459  3.576347 0.893184 SUCCESS  76
100101000 2396 2425 2474 2447 2476 2431 2486 2473  3.270168 0.916277 SUCCESS  77
100110000 2459 2473 2394 2479 2412 2434 2433 2478  3.092201 0.928439 SUCCESS  78
100111000 2456 2483 2467 2418 2445 2385 2464 2335  7.698376 0.463474 SUCCESS  79
101000000 2467 2389 2376 2502 2396 2523 2465 2445  8.744860 0.364274 SUCCESS  80
101000100 2407 2444 2495 2521 2456 2610 2444 2519 19.096251 0.014353 SUCCESS  81
101001000 2450 2506 2342 2344 2428 2435 2370 2436 12.268446 0.139622 SUCCESS  82
101001100 2372 2345 2481 2458 2447 2485 2385 2355 12.086150 0.147401 SUCCESS  83
101010000 2429 2403 2408 2497 2446 2462 2452 2458  2.825489 0.944827 SUCCESS  84
101010100 2450 2419 2479 2416 2418 2538 2421 2477  6.015610 0.645483 SUCCESS  85
101011000 2408 2469 2489 2391 2422 2458 2398 2450  3.936636 0.862795 SUCCESS  86
101011100 2453 2403 2412 2533 2405 2452 2477 2516  8.107347 0.423055 SUCCESS  87
101100000 2393 2496 2470 2416 2417 2461 2436 2449  3.327230 0.912177 SUCCESS  88
101100100 2466 2484 2445 2515 2445 2494 2449 2427  4.617257 0.797591 SUCCESS  89
101101000 2492 2526 2459 2489 2459 2389 2486 2471  7.718526 0.461437 SUCCESS  90
101101100 2382 2461 2434 2469 2380 2466 2435 2373  5.855596 0.663403 SUCCESS  91
101110000 2442 2416 2450 2461 2501 2351 2401 2372  8.165720 0.417452 SUCCESS  92
101110100 2392 2456 2402 2439 2471 2541 2332 2482 12.127206 0.145618 SUCCESS  93
101111000 2453 2379 2410 2485 2374 2437 2466 2488  6.038673 0.642900 SUCCESS  94
101111100 2471 2464 2363 2471 2445 2421 2378 2461  5.609949 0.690831 SUCCESS  95
110000000 2462 2477 2369 2490 2445 2414 2512 2449  6.398605 0.602675 SUCCESS  96
110000010 2400 2460 2407 2427 2483 2468 2481 2394  4.111041 0.846968 SUCCESS  97
110000100 2379 2362 2484 2337 2463 2365 2434 2396 13.271729 0.102836 SUCCESS  98
110001000 2357 2507 2393 2412 2490 2461 2387 2508 10.496088 0.231917 SUCCESS  99
110001010 2467 2414 2539 2439 2356 2520 2463 2425 10.653533 0.222114 SUCCESS 100
110010000 2468 2482 2451 2431 2453 2458 2448 2424  1.404139 0.994188 SUCCESS 101
110010010 2474 2446 2496 2542 2427 2384 2533 2415 11.345196 0.182896 SUCCESS 102
110010100 2403 2375 2428 2468 2479 2463 2439 2461  3.830203 0.872109 SUCCESS 103
110011000 2452 2515 2487 2479 2484 2431 2415 2513  7.106367 0.525201 SUCCESS 104
110011010 2414 2395 2476 2439 2455 2365 2493 2416  5.691888 0.681700 SUCCESS 105
110100000 2503 2421 2383 2447 2410 2427 2382 2421  5.417816 0.712127 SUCCESS 106
110100010 2480 2478 2428 2497 2535 2465 2399 2557 12.957964 0.113304 SUCCESS 107
110100100 2496 2459 2311 2411 2373 2525 2368 2448 16.232911 0.039165 SUCCESS 108
110101000 2394 2390 2413 2488 2425 2475 2492 2476  5.517285 0.701124 SUCCESS 109
110101010 2480 2432 2524 2429 2472 2508 2487 2529 10.035006 0.262578 SUCCESS 110
110101100 2416 2435 2441 2401 2463 2426 2391 2383  3.800122 0.874692 SUCCESS 111
110110000 2339 2490 2482 2444 2428 2426 2423 2390  7.582807 0.475245 SUCCESS 112
110110010 2430 2428 2436 2454 2423 2468 2448 2340  5.027711 0.754610 SUCCESS 113
110110100 2498 2488 2392 2448 2454 2418 2394 2438  4.585628 0.800806 SUCCESS 114
110111000 2447 2486 2454 2384 2472 2392 2341 2398  8.817161 0.357954 SUCCESS 115
110111010 2386 2462 2452 2454 2389 2422 2396 2493  4.918365 0.766265 SUCCESS 116
110111100 2471 2369 2450 2399 2404 2463 2511 2482  6.926031 0.544634 SUCCESS 117
111000000 2432 2494 2405 2558 2398 2410 2437 2396  9.628113 0.292103 SUCCESS 118
111000010 2518 2383 2425 2392 2441 2422 2476 2424  5.873271 0.661425 SUCCESS 119
111000100 2446 2528 2338 2508 2484 2370 2410 2470 13.288279 0.102308 SUCCESS 120
111000110 2523 2494 2398 2401 2394 2362 2483 2522 12.591360 0.126705 SUCCESS 121
111001000 2448 2492 2524 2428 2344 2351 2412 2441 11.916895 0.154951 SUCCESS 122
111001010 2371 2353 2403 2511 2422 2440 2484 2399  9.777178 0.281015 SUCCESS 123
111001100 2456 2551 2457 2423 2455 2428 2399 2554 11.715190 0.164371 SUCCESS 124
111010000 2467 2438 2446 2373 2413 2513 2350 2440  8.326740 0.402221 SUCCESS 125
111010010 2449 2404 2343 2392 2380 2487 2317 2416 15.058333 0.058021 SUCCESS 126
111010100 2397 2489 2429 2450 2438 2474 2531 2441  5.749031 0.675321 SUCCESS 127
111010110 2441 2447 2474 2454 2487 2372 2405 2399  4.774941 0.781338 SUCCESS 128
111011000 2361 2452 2529 2450 2420 2422 2432 2398  7.257087 0.509166 SUCCESS 129
111011010 2511 2524 2437 2430 2522 2404 2359 2419 11.440826 0.177950 SUCCESS 130
111011100 2453 2499 2428 2391 2446 2431 2391 2458  3.862335 0.869325 SUCCESS 131
111100000 2396 2447 2316 2508 2396 2406 2417 2447 11.096080 0.196314 SUCCESS 132
111100010 2486 2461 2436 2399 2430 2490 2510 2435  4.847282 0.773767 SUCCESS 133
111100100 2406 2442 2456 2468 2443 2382 2481 2398  3.879030 0.867869 SUCCESS 134
111100110 2495 2436 2408 2457 2457 2455 2397 2489  3.782355 0.876207 SUCCESS 135
111101000 2478 2406 2415 2331 2420 2444 2369 2378 10.675749 0.220757 SUCCESS 136
111101010 2415 2554 2461 2444 2456 2536 2583 2502 19.768200 0.011250 SUCCESS 137
111101100 2416 2462 2495 2459 2403 2445 2523 2374  7.177742 0.517583 SUCCESS 138
111101110 2361 2478 2504 2414 2565 2479 2430 2493 13.540440 0.094558 SUCCESS 139
111110000 2360 2444 2400 2454 2429 2396 2513 2480  7.344627 0.499947 SUCCESS 140
111110010 2416 2364 2455 2469 2506 2397 2528 2442  8.993579 0.342838 SUCCESS 141
111110100 2473 2303 2399 2392 2390 2474 2381 2404 14.039043 0.080753 SUCCESS 142
111110110 2470 2518 2483 2396 2468 2439 2502 2392  7.331917 0.501281 SUCCESS 143
111111000 2429 2408 2413 2389 2415 2434 2487 2469  3.564246 0.894147 SUCCESS 144
111111010 2418 2432 2380 2468 2416 2502 2445 2466  4.257431 0.833182 SUCCESS 145
111111100 2444 2408 2454 2380 2480 2425 2535 2457  6.700401 0.569275 SUCCESS 146
111111110 2460 2428 2491 2319 2492 2499 2472 2421 10.676001 0.220742 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2401 2348 2483 2447 2413 2473 2449 2457  6.025712 0.644352 SUCCESS   0
000000011 2441 2399 2445 2517 2427 2425 2480 2447  4.035350 0.853920 SUCCESS   1
000000101 2397 2368 2512 2445 2523 2456 2410 2504 10.224888 0.249595 SUCCESS   2
000000111 2468 2415 2439 2461 2423 2431 2471 2447  1.334181 0.995131 SUCCESS   3
000001001 2464 2468 2459 2402 2452 2438 2404 2378  3.652620 0.887028 SUCCESS   4
000001011 2498 2415 2459 2437 2512 2474 2376 2498  7.524354 0.481253 SUCCESS   5
000001101 2399 2465 2448 2382 2459 2459 2469 2472  3.493003 0.899732 SUCCESS   6
000001111 2456 2393 2406 2460 2415 2436 2434 2482  2.789067 0.946889 SUCCESS   7
000010001 2449 2455 2453 2521 2439 2438 2478 2399  4.181582 0.840380 SUCCESS   8
000010011 2367 2407 2418 2392 2459 2444 2512 2360  9.164025 0.328649 SUCCESS   9
000010101 2417 2529 2470 2392 2469 2446 2483 2371  8.048801 0.428718 SUCCESS  10
000010111 2430 2378 2390 2484 2496 2386 2426 2496  7.572639 0.476288 SUCCESS  11
000011001 2359 2455 2398 2492 2429 2396 2476 2517  8.704625 0.367823 SUCCESS  12
000011011 2386 2563 2565 2403 2540 2417 2409 2507 21.303054 0.006385 FAILURE  13
000011101 2556 2405 2451 2444 2390 2508 2436 2457  9.282229 0.319050 SUCCESS  14
000011111 2405 2492 2375 2490 2403 2379 2450 2437  6.827819 0.555319 SUCCESS  15
000100011 2467 2379 2474 2436 2418 2421 2384 2437  4.201388 0.838512 SUCCESS  16
000100101 2328 2521 2471 2476 2413 2390 2376 2407 12.784274 0.119491 SUCCESS  17
000100111 2375 2451 2442 2406 2387 2448 2496 2405  5.533689 0.699305 SUCCESS  18
000101001 2331 2484 2373 2479 2418 2415 2422 2496 10.462525 0.234051 SUCCESS  19
000101011 2459 2485 2419 2468 2461 2400 2550 2359 10.211728 0.250479 SUCCESS  20
000101101 2447 2500 2491 2424 2530 2467 2431 2466  6.546120 0.586297 SUCCESS  21
000101111 2475 2393 2464 2466 2393 2415 2367 2439  5.577935 0.694391 SUCCESS  22
000110011 2387 2464 2421 2528 2442 2488 2363 2483  9.081609 0.335458 SUCCESS  23
000110101 2443 2402 2434 2455 2426 2478 2574 2459  9.009917 0.341460 SUCCESS  24
000110111 2369 2491 2469 2481 2496 2489 2463 2487  7.553429 0.478260 SUCCESS  25
000111001 2424 2500 2470 2397 2521 2445 2412 2445  5.827131 0.666589 SUCCESS  26
000111011 2537 2407 2427 2520 2479 2452 2408 2503  9.807073 0.278829 SUCCESS  27
000111101 2404 2408 2452 2523 2394 2401 2368 2427  7.946380 0.438725 SUCCESS  28
000111111 2449 2432 2466 2449 2428 2414 2501 2462  2.422185 0.965261 SUCCESS  29
001000011 2425 2497 2551 2463 2499 2292 2522 2374 22.250148 0.004473 FAILURE  30
001000101 2425 2460 2470 2446 2433 2386 2476 2431  2.499213 0.961768 SUCCESS  31
001000111 2436 2481 2460 2518 2470 2375 2410 2448  5.960374 0.651671 SUCCESS  32
001001011 2434 2490 2513 2537 2325 2447 2376 2492 15.718910 0.046585 SUCCESS  33
001001101 2417 2421 2414 2355 2465 2463 2516 2364  9.237849 0.322630 SUCCESS  34
001001111 2436 2457 2439 2438 2465 2517 2426 2402  3.538720 0.896164 SUCCESS  35
001010011 2342 2489 2348 2484 2419 2429 2435 2454  9.971945 0.267001 SUCCESS  36
001010101 2458 2452 2442 2440 2508 2455 2340 2481  7.143756 0.521205 SUCCESS  37
001010111 2457 2502 2423 2456 2420 2410 2536 2408  6.769181 0.561729 SUCCESS  38
001011011 2431 2542 2474 2517 2466 2459 2351 2489 12.016549 0.150467 SUCCESS  39
001011101 2377 2393 2486 2361 2491 2395 2386 2409 10.028584 0.263025 SUCCESS  40
001011111 2414 2348 2464 2537 2378 2351 2461 2478 13.997114 0.081841 SUCCESS  41
001100101 2428 2483 2360 2337 2321 2532 2374 2517 22.197918 0.004562 FAILURE  42
001100111 2433 2477 2417 2518 2527 2457 2370 2415  8.968199 0.344986 SUCCESS  43
001101011 2416 2357 2418 2355 2438 2562 2484 2422 13.780448 0.087671 SUCCESS  44
001101101 2442 2492 2483 2425 2471 2450 2423 2475  2.957329 0.937007 SUCCESS  45
001101111 2355 2468 2382 2519 2509 2414 2526 2418 13.027340 0.110912 SUCCESS  46
001110101 2468 2473 2405 2392 2378 2452 2484 2436  4.849493 0.773535 SUCCESS  47
001110111 2506 2412 2357 2522 2438 2473 2413 2434  8.697515 0.368452 SUCCESS  48
001111011 2450 2401 2497 2501 2416 2391 2418 2424  5.246972 0.730883 SUCCESS  49
001111101 2334 2430 2401 2467 2461 2392 2414 2452  7.472005 0.486665 SUCCESS  50
001111111 2479 2442 2422 2386 2447 2415 2470 2401  3.404920 0.906442 SUCCESS  51
010000011 2455 2388 2376 2401 2400 2432 2416 2447  4.838544 0.774685 SUCCESS  52
010000111 2458 2436 2464 2417 2407 2436 2435 2365  3.600813 0.891226 SUCCESS  53
010001011 2426 2444 2501 2452 2421 2308 2364 2432 11.945651 0.153645 SUCCESS  54
010001111 2332 2430 2451 2465 2446 2407 2452 2442  5.957898 0.651948 SUCCESS  55
010010011 2384 2399 2466 2292 2389 2423 2474 2414 13.943069 0.083261 SUCCESS  56
010010111 2439 2479 2436 2487 2406 2396 2442 2524  5.790232 0.670716 SUCCESS  57
010011011 2340 2430 2408 2368 2515 2454 2524 2443 12.419867 0.133431 SUCCESS  58
010011111 2432 2385 2425 2507 2509 2413 2426 2377  7.457137 0.488207 SUCCESS  59
010100011 2454 2406 2451 2488 2419 2486 2355 2497  7.085131 0.527476 SUCCESS  60
010100111 2438 2494 2412 2442 2478 2403 2456 2440  2.827078 0.944736 SUCCESS  61
010101011 2461 2423 2404 2432 2421 2399 2436 2455  1.964121 0.982092 SUCCESS  62
010101111 2529 2515 2468 2419 2478 2432 2454 2415  7.027380 0.533681 SUCCESS  63
010110011 2525 2437 2389 2465 2404 2467 2378 2397  7.776317 0.455620 SUCCESS  64
010110111 2441 2561 2515 2424 2463 2520 2416 2480 12.205465 0.142269 SUCCESS  65
010111011 2437 2445 2560 2364 2464 2419 2505 2460 10.801300 0.213214 SUCCESS  66
010111111 2428 2380 2457 2448 2453 2457 2458 2478  2.639447 0.954911 SUCCESS  67
011000111 2496 2478 2472 2456 2371 2474 2389 2441  6.031299 0.643726 SUCCESS  68
011001111 2502 2484 2427 2501 2472 2416 2436 2376  6.412639 0.601113 SUCCESS  69
011010111 2456 2386 2474 2452 2431 2512 2468 2490  5.347553 0.719865 SUCCESS  70
011011111 2385 2493 2404 2507 2491 2406 2495 2485  8.488343 0.387276 SUCCESS  71
011101111 2545 2478 2444 2510 2421 2451 2426 2418  7.660458 0.467320 SUCCESS  72
011111111 2447 2446 2434 2420 2374 2437 2485 2444  2.980181 0.935595 SUCCESS  73
100000000 2401 2348 2483 2447 2413 2473 2449 2457  6.025712 0.644352 SUCCESS  74
100010000 2321 2438 2499 2410 2481 2393 2533 2369 15.401504 0.051793 SUCCESS  75
100100000 2404 2405 2483 2419 2493 2507 2467 2431  5.375038 0.716842 SUCCESS  76
100101000 2423 2453 2342 2365 2434 2450 2353 2418 10.454317 0.234575 SUCCESS  77
100110000 2420 2340 2416 2398 2405 2382 2398 2444  8.475937 0.388411 SUCCESS  78
100111000 2338 2447 2449 2388 2509 2459 2428 2439  7.920748 0.441250 SUCCESS  79
101000000 2473 2383 2467 2506 2451 2409 2400 2503  6.731740 0.565833 SUCCESS  80
101000100 2388 2465 2418 2363 2465 2353 2473 2406  8.779283 0.361256 SUCCESS  81
101001000 2409 2460 2476 2424 2373 2434 2527 2473  6.759913 0.562744 SUCCESS  82
101001100 2389 2367 2463 2423 2410 2429 2411 2494  5.894971 0.658996 SUCCESS  83
101010000 2373 2390 2412 2368 2486 2420 2440 2516  9.144563 0.330248 SUCCESS  84
101010100 2413 2486 2369 2409 2504 2483 2411 2531 10.036793 0.262453 SUCCESS  85
101011000 2499 2518 2405 2433 2427 2436 2389 2372  7.786366 0.454612 SUCCESS  86
101011100 2433 2387 2396 2519 2467 2430 2485 2480  6.478003 0.593849 SUCCESS  87
101100000 2407 2440 2382 2559 2382 2440 2395 2519 12.815228 0.118367 SUCCESS  88
101100100 2447 2464 2496 2457 2434 2508 2430 2417  3.806464 0.874149 SUCCESS  89
101101000 2429 2467 2488 2471 2408 2500 2491 2419  4.817493 0.776893 SUCCESS  90
101101100 2422 2497 2380 2449 2462 2434 2361 2421  6.207955 0.623950 SUCCESS  91
101110000 2401 2429 2470 2445 2535 2450 2419 2454  5.132145 0.743363 SUCCESS  92
101110100 2460 2361 2443 2400 2477 2300 2429 2447 12.696906 0.122712 SUCCESS  93
101111000 2451 2447 2457 2467 2402 2490 2432 2397  2.964187 0.936585 SUCCESS  94
101111100 2406 2454 2360 2526 2442 2411 2428 2420  7.098754 0.526016 SUCCESS  95
110000000 2402 2428 2405 2524 2465 2433 2413 2428  4.869061 0.771475 SUCCESS  96
110000010 2368 2497 2437 2418 2505 2498 2368 2447  9.199256 0.325767 SUCCESS  97
110000100 2456 2464 2376 2411 2387 2386 2427 2425  5.264633 0.728953 SUCCESS  98
110001000 2427 2400 2477 2387 2487 2436 2474 2461  4.111187 0.846955 SUCCESS  99
110001010 2328 2420 2433 2463 2440 2393 2477 2484  8.168103 0.417224 SUCCESS 100
110010000 2428 2452 2443 2464 2530 2400 2439 2405  4.957091 0.762152 SUCCESS 101
110010010 2439 2458 2470 2423 2407 2454 2437 2441  1.186030 0.996778 SUCCESS 102
110010100 2350 2442 2367 2429 2397 2437 2363 2465  9.630973 0.291888 SUCCESS 103
110011000 2488 2411 2427 2431 2374 2418 2445 2407  4.107638 0.847284 SUCCESS 104
110011010 2483 2327 2501 2371 2435 2528 2357 2475 16.573036 0.034875 SUCCESS 105
110100000 2533 2451 2461 2512 2402 2402 2491 2438  8.232130 0.411130 SUCCESS 106
110100010 2471 2447 2484 2381 2354 2352 2463 2379 11.167070 0.192411 SUCCESS 107
110100100 2488 2350 2497 2487 2399 2383 2493 2423 10.127961 0.256159 SUCCESS 108
110101000 2441 2461 2440 2452 2463 2434 2371 2476  3.039137 0.931878 SUCCESS 109
110101010 2416 2457 2331 2401 2417 2427 2507 2505 10.108088 0.257521 SUCCESS 110
110101100 2555 2484 2398 2442 2456 2515 2385 2404 11.360845 0.182079 SUCCESS 111
110110000 2438 2470 2347 2570 2499 2383 2417 2507 16.060266 0.041526 SUCCESS 112
110110010 2465 2457 2545 2390 2439 2501 2413 2433  7.885451 0.444739 SUCCESS 113
110110100 2473 2392 2498 2501 2450 2490 2489 2433  6.342522 0.608923 SUCCESS 114
110111000 2398 2420 2541 2382 2569 2495 2439 2442 14.808767 0.062972 SUCCESS 115
110111010 2461 2464 2460 2519 2478 2378 2470 2434  5.718222 0.678761 SUCCESS 116
110111100 2400 2450 2496 2440 2406 2506 2480 2362  7.622553 0.471181 SUCCESS 117
111000000 2456 2437 2498 2525 2512 2461 2377 2364 10.987184 0.202426 SUCCESS 118
111000010 2477 2388 2403 2445 2496 2405 2464 2416  4.689055 0.790234 SUCCESS 119
111000100 2484 2464 2494 2393 2473 2421 2447 2441  3.763303 0.877823 SUCCESS 120
111000110 2372 2459 2422 2513 2385 2488 2407 2470  7.618634 0.471581 SUCCESS 121
111001000 2441 2478 2489 2423 2515 2409 2492 2392  6.530193 0.588061 SUCCESS 122
111001010 2391 2454 2423 2457 2518 2423 2361 2515  9.053038 0.337842 SUCCESS 123
111001100 2506 2428 2371 2510 2402 2435 2427 2408  7.172790 0.518110 SUCCESS 124
111010000 2474 2457 2459 2487 2414 2390 2451 2380  4.639036 0.795367 SUCCESS 125
111010010 2453 2378 2455 2438 2372 2372 2464 2476  6.646900 0.575163 SUCCESS 126
111010100 2410 2486 2406 2403 2384 2450 2416 2405  4.676637 0.791512 SUCCESS 127
111010110 2501 2493 2432 2450 2507 2427 2412 2377  6.736625 0.565297 SUCCESS 128
111011000 2516 2458 2474 2501 2399 2426 2447 2547 10.031471 0.262824 SUCCESS 129
111011010 2428 2500 2443 2534 2462 2415 2386 2520  9.558870 0.297361 SUCCESS 130
111011100 2424 2390 2505 2422 2495 2440 2447 2533  7.907839 0.442524 SUCCESS 131
111100000 2530 2494 2478 2410 2420 2528 2472 2415  9.548239 0.298175 SUCCESS 132
111100010 2397 2443 2458 2442 2443 2396 2454 2336  6.600072 0.580330 SUCCESS 133
111100100 2430 2489 2462 2442 2539 2455 2434 2380  6.930241 0.544178 SUCCESS 134
111100110 2413 2348 2396 2523 2383 2475 2453 2434  9.734467 0.284160 SUCCESS 135
111101000 2421 2479 2439 2494 2384 2437 2477 2444  3.894137 0.866546 SUCCESS 136
111101010 2493 2539 2376 2451 2491 2422 2470 2406  9.095060 0.334340 SUCCESS 137
111101100 2456 2437 2503 2475 2475 2377 2400 2413  5.487747 0.704397 SUCCESS 138
111101110 2489 2422 2435 2497 2430 2400 2435 2502  4.801486 0.778568 SUCCESS 139
111110000 2484 2527 2423 2477 2369 2523 2535 2411 13.700361 0.089918 SUCCESS 140
111110010 2439 2457 2397 2516 2453 2362 2379 2437  7.683614 0.464970 SUCCESS 141
111110100 2432 2393 2473 2475 2388 2356 2502 2426  7.884895 0.444794 SUCCESS 142
111110110 2463 2431 2449 2538 2501 2414 2381 2446  7.599741 0.473511 SUCCESS 143
111111000 2418 2471 2418 2472 2404 2421 2503 2411  3.999855 0.857137 SUCCESS 144
111111010 2467 2472 2462 2402 2433 2393 2469 2411  3.248283 0.917824 SUCCESS 145
111111100 2437 2406 2466 2399 2422 2490 2553 2391  9.070329 0.336398 SUCCESS 146
111111110 2447 2446 2434 2420 2374 2437 2485 2444  2.980181 0.935595 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2403 2475 2430 2449 2442 2422 2402 2349  5.615748 0.690185 SUCCESS   0
000000011 2463 2466 2419 2458 2493 2491 2454 2440  3.023011 0.932905 SUCCESS   1
000000101 2434 2398 2456 2401 2455 2386 2371 2368  7.361878 0.498139 SUCCESS   2
000000111 2445 2418 2435 2448 2425 2515 2416 2467  3.233507 0.918861 SUCCESS   3
000001001 2477 2410 2386 2399 2487 2498 2434 2480  5.909574 0.657360 SUCCESS   4
000001011 2488 2514 2432 2462 2416 2376 2436 2440  5.469159 0.706454 SUCCESS   5
000001101 2455 2499 2428 2411 2498 2462 2455 2469  3.890880 0.866832 SUCCESS   6
000001111 2467 2356 2395 2468 2380 2481 2350 2425 10.492606 0.232138 SUCCESS   7
000010001 2372 2383 2506 2435 2478 2387 2478 2420  7.853147 0.447945 SUCCESS   8
000010011 2442 2389 2379 2380 2460 2436 2411 2467  5.237095 0.731961 SUCCESS   9
000010101 2403 2349 2580 2466 2504 2371 2356 2405 20.047357 0.010158 SUCCESS  10
000010111 2468 2501 2421 2396 2476 2461 2417 2448  3.795356 0.875099 SUCCESS  11
000011001 2519 2433 2451 2471 2412 2453 2481 2379  5.729145 0.677542 SUCCESS  12
000011011 2411 2404 2382 2450 2495 2522 2484 2439  7.251539 0.509753 SUCCESS  13
000011101 2522 2503 2389 2416 2361 2436 2355 2410 12.126822 0.145634 SUCCESS  14
000011111 2470 2387 2418 2378 2412 2385 2387 2405  7.061962 0.529962 SUCCESS  15
000100011 2420 2483 2501 2485 2452 2404 2448 2448  3.915505 0.864665 SUCCESS  16
000100101 2424 2552 2415 2442 2479 2502 2452 2395  8.721744 0.366310 SUCCESS  17
000100111 2451 2411 2465 2383 2469 2480 2360 2480  6.503661 0.591002 SUCCESS  18
000101001 2428 2358 2426 2386 2398 2353 2404 2471  9.493837 0.302362 SUCCESS  19
000101011 2359 2432 2448 2456 2438 2407 2429 2473  4.016537 0.855628 SUCCESS  20
000101101 2479 2425 2427 2512 2481 2397 2451 2487  5.333069 0.721456 SUCCESS  21
000101111 2471 2533 2404 2358 2367 2405 2469 2452 10.741709 0.216768 SUCCESS  22
000110011 2473 2462 2424 2445 2382 2458 2545 2388  8.103878 0.423389 SUCCESS  23
000110101 2431 2490 2451 2478 2433 2535 2428 2401  6.163192 0.628958 SUCCESS  24
000110111 2489 2356 2457 2354 2525 2418 2551 2470 16.018575 0.042115 SUCCESS  25
000111001 2383 2509 2404 2460 2408 2380 2415 2420  6.678106 0.571727 SUCCESS  26
000111011 2502 2487 2422 2487 2341 2454 2403 2499  9.845971 0.276004 SUCCESS  27
000111101 2510 2509 2477 2415 2489 2479 2403 2510  8.941481 0.347257 SUCCESS  28
000111111 2464 2367 2382 2374 2361 2376 2441 2406 11.059883 0.198329 SUCCESS  29
001000011 2450 2469 2418 2387 2409 2434 2463 2413  2.846461 0.943620 SUCCESS  30
001000101 2394 2406 2508 2429 2351 2424 2476 2442  7.524235 0.481266 SUCCESS  31
001000111 2426 2502 2479 2523 2393 2453 2551 2428 11.292794 0.185655 SUCCESS  32
001001011 2385 2477 2418 2494 2451 2528 2430 2356  9.650130 0.290446 SUCCESS  33
001001101 2462 2470 2392 2464 2492 2454 2417 2561  9.242497 0.322254 SUCCESS  34
001001111 2471 2431 2531 2391 2437 2364 2355 2509 12.539143 0.128721 SUCCESS  35
001010011 2404 2464 2463 2460 2464 2360 2454 2469  4.566880 0.802705 SUCCESS  36
001010101 2345 2411 2464 2395 2442 2433 2364 2449  8.047981 0.428797 SUCCESS  37
001010111 2343 2423 2406 2454 2447 2467 2448 2460  5.299109 0.725181 SUCCESS  38
001011011 2460 2474 2364 2490 2411 2452 2412 2422  5.100026 0.746834 SUCCESS  39
001011101 2470 2397 2553 2404 2447 2496 2427 2423  8.559214 0.380832 SUCCESS  40
001011111 2412 2445 2385 2491 2474 2468 2522 2523  9.086481 0.335053 SUCCESS  41
001100101 2453 2436 2353 2437 2403 2389 2485 2357  8.997922 0.342471 SUCCESS  42
001100111 2523 2425 2391 2470 2419 2441 2493 2503  7.307066 0.503894 SUCCESS  43
001101011 2434 2435 2472 2472 2485 2444 2453 2485  2.505766 0.961462 SUCCESS  44
001101101 2346 2545 2428 2496 2453 2453 2380 2407 11.954548 0.153243 SUCCESS  45
001101111 2443 2381 2544 2367 2381 2417 2445 2497 11.464273 0.176754 SUCCESS  46
001110101 2507 2390 2454 2428 2415 2472 2410 2382  5.689810 0.681932 SUCCESS  47
001110111 2457 2490 2444 2419 2450 2483 2490 2400  3.811389 0.873727 SUCCESS  48
001111011 2533 2431 2437 2502 2461 2446 2499 2516  9.102144 0.333753 SUCCESS  49
001111101 2448 2431 2516 2470 2470 2472 2385 2411  5.251619 0.730375 SUCCESS  50
001111111 2468 2481 2435 2411 2376 2458 2438 2388  4.514279 0.808003 SUCCESS  51
010000011 2502 2437 2471 2458 2450 2392 2375 2427  5.072871 0.749760 SUCCESS  52
010000111 2518 2543 2420 2373 2418 2423 2447 2471  9.795951 0.279641 SUCCESS  53
010001011 2458 2379 2441 2448 2396 2368 2488 2454  5.927196 0.655387 SUCCESS  54
010001111 2448 2443 2453 2493 2442 2511 2527 2424  6.491348 0.592367 SUCCESS  55
010010011 2518 2443 2423 2415 2443 2517 2365 2457  7.924614 0.440869 SUCCESS  56
010010111 2379 2453 2505 2464 2438 2480 2456 2402  5.021276 0.755300 SUCCESS  57
010011011 2354 2502 2395 2508 2480 2403 2379 2495 11.706174 0.164803 SUCCESS  58
010011111 2495 2374 2586 2455 2458 2426 2415 2438 12.597000 0.126488 SUCCESS  59
010100011 2445 2453 2402 2429 2488 2562 2420 2419  8.274603 0.407116 SUCCESS  60
010100111 2417 2399 2520 2404 2500 2461 2487 2449  6.747773 0.564075 SUCCESS  61
010101011 2379 2444 2450 2426 2437 2435 2327 2428  7.429016 0.491129 SUCCESS  62
010101111 2403 2406 2424 2442 2479 2417 2342 2468  6.619825 0.578149 SUCCESS  63
010110011 2472 2414 2493 2528 2425 2379 2474 2335 12.030226 0.149860 SUCCESS  64
010110111 2426 2524 2474 2495 2393 2455 2480 2417  6.613854 0.578808 SUCCESS  65
010111011 2498 2418 2497 2451 2481 2503 2463 2529  8.661225 0.371675 SUCCESS  66
010111111 2430 2449 2396 2458 2516 2401 2505 2429  5.898069 0.658649 SUCCESS  67
011000111 2450 2451 2384 2416 2480 2375 2368 2432  6.557348 0.585054 SUCCESS  68
011001111 2434 2441 2377 2471 2412 2437 2424 2336  7.359243 0.498415 SUCCESS  69
011010111 2455 2494 2443 2442 2496 2427 2395 2462  3.695238 0.883521 SUCCESS  70
011011111 2412 2459 2465 2458 2407 2443 2472 2409  2.193987 0.974480 SUCCESS  71
011101111 2461 2520 2399 2397 2431 2524 2377 2407  9.571739 0.296379 SUCCESS  72
011111111 2433 2487 2414 2457 2491 2377 2461 2420  4.488264 0.810606 SUCCESS  73
100000000 2403 2475 2430 2449 2442 2422 2402 2349  5.615748 0.690185 SUCCESS  74
100010000 2399 2485 2486 2479 2439 2424 2372 2444  5.182813 0.737870 SUCCESS  75
100100000 2476 2401 2428 2485 2421 2365 2468 2447  5.042116 0.753065 SUCCESS  76
100101000 2557 2521 2369 2490 2531 2387 2437 2430 16.287312 0.038448 SUCCESS  77
100110000 2442 2337 2371 2336 2356 2419 2405 2434 15.307767 0.053430 SUCCESS  78
100111000 2523 2403 2467 2432 2537 2506 2466 2448  9.677735 0.288377 SUCCESS  79
101000000 2363 2511 2378 2439 2447 2464 2451 2481  7.294926 0.505172 SUCCESS  80
101000100 2428 2511 2516 2466 2470 2547 2365 2436 12.300486 0.138292 SUCCESS  81
101001000 2385 2413 2444 2530 2324 2380 2414 2419 12.983411 0.112422 SUCCESS  82
101001100 2484 2405 2345 2397 2335 2386 2425 2452 12.358290 0.135919 SUCCESS  83
101010000 2487 2451 2419 2485 2503 2457 2464 2467  4.144339 0.843871 SUCCESS  84
101010100 2414 2469 2422 2414 2382 2479 2444 2414  3.532338 0.896665 SUCCESS  85
101011000 2451 2498 2497 2404 2470 2375 2348 2538 13.162834 0.106368 SUCCESS  86
101011100 2440 2475 2429 2392 2401 2504 2472 2498  5.684501 0.682524 SUCCESS  87
101100000 2444 2434 2464 2468 2483 2392 2388 2579 11.539990 0.172938 SUCCESS  88
101100100 2389 2421 2439 2469 2426 2382 2478 2551  8.916975 0.349348 SUCCESS  89
101101000 2476 2413 2496 2485 2510 2548 2370 2481 12.551614 0.128237 SUCCESS  90
101101100 2430 2468 2460 2439 2448 2461 2477 2416  1.495863 0.992776 SUCCESS  91
101110000 2364 2411 2443 2378 2491 2453 2510 2376  9.537978 0.298961 SUCCESS  92
101110100 2350 2396 2448 2516 2506 2365 2424 2475 11.635898 0.168203 SUCCESS  93
101111000 2383 2498 2376 2349 2411 2418 2433 2368 11.165045 0.192522 SUCCESS  94
101111100 2429 2441 2431 2532 2397 2558 2485 2459 11.122043 0.194880 SUCCESS  95
110000000 2476 2408 2435 2415 2450 2455 2430 2413  1.798534 0.986577 SUCCESS  96
110000010 2421 2403 2405 2417 2458 2378 2485 2427  4.326449 0.826535 SUCCESS  97
110000100 2371 2442 2478 2381 2393 2457 2453 2434  5.387854 0.715431 SUCCESS  98
110001000 2459 2428 2508 2461 2445 2404 2364 2400  6.111107 0.634788 SUCCESS  99
110001010 2386 2445 2498 2389 2374 2492 2400 2479  8.160252 0.417975 SUCCESS 100
110010000 2478 2463 2457 2412 2399 2405 2486 2461  3.563226 0.894228 SUCCESS 101
110010010 2372 2429 2438 2524 2430 2511 2499 2408  8.987409 0.343359 SUCCESS 102
110010100 2470 2492 2463 2427 2458 2374 2464 2438  3.979890 0.858933 SUCCESS 103
110011000 2414 2408 2379 2363 2334 2410 2385 2486 12.536680 0.128817 SUCCESS 104
110011010 2416 2517 2392 2571 2492 2516 2553 2439 19.569064 0.012095 SUCCESS 105
110100000 2387 2473 2439 2463 2436 2485 2370 2499  6.260304 0.618099 SUCCESS 106
110100010 2387 2522 2464 2442 2474 2479 2444 2427  5.363414 0.718121 SUCCESS 107
110100100 2480 2425 2406 2529 2422 2409 2336 2431  9.883108 0.273326 SUCCESS 108
110101000 2470 2452 2358 2498 2453 2493 2464 2418  6.332248 0.610069 SUCCESS 109
110101010 2448 2502 2408 2445 2377 2481 2407 2393  5.967166 0.650910 SUCCESS 110
110101100 2497 2424 2574 2402 2392 2378 2408 2506 14.522805 0.069116 SUCCESS 111
110110000 2513 2470 2463 2421 2464 2412 2426 2500  5.031497 0.754204 SUCCESS 112
110110010 2357 2388 2395 2515 2421 2432 2501 2555 14.619520 0.066980 SUCCESS 113
110110100 2468 2389 2431 2515 2439 2500 2450 2479  5.892574 0.659264 SUCCESS 114
110111000 2432 2448 2480 2411 2486 2376 2502 2434  5.312865 0.723673 SUCCESS 115
110111010 2453 2408 2455 2477 2459 2400 2412 2531  5.770293 0.672945 SUCCESS 116
110111100 2384 2511 2465 2409 2396 2474 2392 2424  6.613973 0.578795 SUCCESS 117
111000000 2491 2400 2374 2328 2386 2517 2449 2350 16.424832 0.036688 SUCCESS 118
111000010 2343 2442 2467 2321 2496 2459 2443 2467 12.193788 0.142765 SUCCESS 119
111000100 2472 2436 2467 2425 2529 2428 2436 2435  4.158333 0.842563 SUCCESS 120
111000110 2449 2367 2402 2478 2370 2470 2443 2495  7.319022 0.502636 SUCCESS 121
111001000 2450 2476 2446 2463 2398 2389 2533 2474  6.712291 0.567968 SUCCESS 122
111001010 2454 2476 2441 2450 2536 2439 2450 2414  4.750196 0.783911 SUCCESS 123
111001100 2459 2377 2430 2392 2340 2421 2447 2465  7.757398 0.457520 SUCCESS 124
111010000 2380 2375 2507 2359 2415 2492 2394 2429 10.560538 0.227864 SUCCESS 125
111010010 2517 2421 2481 2470 2470 2471 2346 2418  8.414731 0.394041 SUCCESS 126
111010100 2496 2378 2433 2467 2449 2413 2355 2429  6.866625 0.551089 SUCCESS 127
111010110 2464 2475 2659 2408 2356 2443 2399 2412 25.447338 0.001305 FAILURE 128
111011000 2529 2519 2483 2435 2463 2395 2427 2476  8.259284 0.408561 SUCCESS 129
111011010 2457 2424 2380 2490 2394 2457 2490 2475  5.363520 0.718109 SUCCESS 130
111011100 2523 2395 2489 2388 2402 2494 2592 2445 17.347036 0.026692 SUCCESS 131
111100000 2463 2444 2406 2361 2400 2505 2527 2368 11.296408 0.185463 SUCCESS 132
111100010 2368 2463 2445 2413 2482 2455 2364 2415  6.436483 0.598461 SUCCESS 133
111100100 2482 2447 2546 2486 2465 2478 2536 2430 10.842502 0.210784 SUCCESS 134
111100110 2431 2452 2402 2377 2402 2496 2456 2414  4.836491 0.774901 SUCCESS 135
111101000 2418 2482 2465 2389 2439 2497 2396 2408  4.987317 0.758931 SUCCESS 136
111101010 2453 2404 2425 2488 2469 2372 2354 2476  7.789623 0.454286 SUCCESS 137
111101100 2439 2474 2464 2461 2463 2358 2460 2445  4.128676 0.845331 SUCCESS 138
111101110 2535 2375 2440 2390 2464 2491 2448 2503  9.585482 0.295333 SUCCESS 139
111110000 2418 2403 2487 2393 2399 2462 2521 2384  7.751361 0.458127 SUCCESS 140
111110010 2512 2414 2491 2527 2489 2465 2504 2416  9.708186 0.286108 SUCCESS 141
111110100 2407 2429 2477 2407 2405 2469 2418 2372  4.760205 0.782871 SUCCESS 142
111110110 2362 2439 2363 2500 2503 2317 2501 2459 16.531847 0.035370 SUCCESS 143
111111000 2429 2418 2434 2424 2479 2420 2448 2401  1.950908 0.982480 SUCCESS 144
111111010 2364 2479 2423 2422 2386 2330 2408 2347 14.243052 0.075646 SUCCESS 145
111111100 2490 2422 2485 2411 2426 2412 2428 2375  4.767076 0.782157 SUCCESS 146
111111110 2433 2487 2414 2457 2491 2377 2461 2420  4.488264 0.810606 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2480 2459 2429 2364 2483 2435 2403 2398  5.538336 0.698789 SUCCESS   0
000000011 2438 2461 2357 2391 2463 2385 2498 2385  8.510797 0.385227 SUCCESS   1
000000101 2358 2558 2517 2475 2501 2416 2417 2446 13.647257 0.091436 SUCCESS   2
000000111 2432 2439 2399 2407 2467 2412 2523 2501  6.273067 0.616674 SUCCESS   3
000001001 2384 2437 2484 2370 2507 2459 2384 2427  7.770306 0.456223 SUCCESS   4
000001011 2316 2506 2428 2488 2462 2525 2521 2361 17.990811 0.021295 SUCCESS   5
000001101 2381 2449 2423 2410 2377 2427 2468 2415  4.569793 0.802411 SUCCESS   6
000001111 2472 2451 2407 2498 2434 2422 2435 2497  3.804730 0.874298 SUCCESS   7
000010001 2416 2414 2333 2398 2428 2481 2506 2480  9.506865 0.301355 SUCCESS   8
000010011 2432 2425 2430 2367 2425 2443 2365 2415  5.433015 0.710450 SUCCESS   9
000010101 2457 2494 2558 2401 2495 2431 2378 2412 11.059684 0.198340 SUCCESS  10
000010111 2452 2511 2480 2481 2467 2493 2441 2406  5.333810 0.721375 SUCCESS  11
000011001 2486 2405 2519 2338 2454 2504 2458 2406 10.860455 0.209732 SUCCESS  12
000011011 2375 2495 2477 2420 2376 2450 2454 2443  5.727516 0.677724 SUCCESS  13
000011101 2413 2353 2358 2481 2415 2420 2487 2456  8.723094 0.366191 SUCCESS  14
000011111 2437 2445 2420 2487 2431 2392 2464 2543  6.758815 0.562864 SUCCESS  15
000100011 2429 2453 2311 2444 2437 2431 2542 2492 12.755610 0.120540 SUCCESS  16
000100101 2424 2436 2321 2405 2524 2379 2599 2450 21.938078 0.005032 FAILURE  17
000100111 2433 2416 2473 2413 2430 2452 2455 2355  4.410852 0.818284 SUCCESS  18
000101001 2480 2494 2442 2427 2407 2458 2422 2470  3.016073 0.933345 SUCCESS  19
000101011 2488 2435 2497 2367 2446 2512 2378 2430  8.471092 0.388855 SUCCESS  20
000101101 2409 2408 2367 2429 2523 2460 2477 2402  7.489428 0.484861 SUCCESS  21
000101111 2485 2496 2510 2483 2509 2353 2383 2489 12.448438 0.132289 SUCCESS  22
000110011 2476 2456 2521 2395 2454 2493 2473 2403  6.438257 0.598264 SUCCESS  23
000110101 2444 2386 2424 2455 2419 2472 2539 2534  9.788802 0.280163 SUCCESS  24
000110111 2419 2447 2466 2390 2377 2461 2466 2488  4.697688 0.789345 SUCCESS  25
000111001 2391 2606 2422 2490 2464 2434 2476 2494 15.635725 0.047901 SUCCESS  26
000111011 2423 2357 2325 2407 2376 2451 2465 2465 11.723954 0.163952 SUCCESS  27
000111101 2503 2407 2397 2416 2451 2397 2429 2449  4.180721 0.840461 SUCCESS  28
000111111 2489 2500 2414 2404 2453 2450 2432 2484  4.220850 0.836668 SUCCESS  29
001000011 2402 2533 2496 2425 2490 2426 2438 2497  8.006620 0.432824 SUCCESS  30
001000101 2474 2410 2384 2413 2357 2455 2421 2418  6.108578 0.635071 SUCCESS  31
001000111 2423 2502 2331 2449 2528 2441 2489 2467 11.303240 0.185102 SUCCESS  32
001001011 2342 2397 2425 2401 2536 2360 2485 2395 14.141293 0.078156 SUCCESS  33
001001101 2413 2442 2426 2384 2419 2384 2393 2446  4.446334 0.814778 SUCCESS  34
001001111 2523 2417 2454 2434 2435 2445 2518 2370  7.832797 0.449971 SUCCESS  35
001010011 2507 2488 2394 2407 2465 2493 2438 2457  5.669381 0.684210 SUCCESS  36
001010101 2446 2480 2432 2500 2452 2396 2546 2509  9.626643 0.292214 SUCCESS  37
001010111 2467 2425 2511 2411 2448 2419 2348 2426  6.862242 0.551566 SUCCESS  38
001011011 2449 2357 2354 2451 2480 2413 2513 2445  9.467596 0.304397 SUCCESS  39
001011101 2399 2434 2472 2472 2539 2515 2471 2329 13.633501 0.091833 SUCCESS  40
001011111 2484 2553 2478 2426 2402 2375 2450 2478  9.838834 0.276520 SUCCESS  41
001100101 2401 2454 2383 2523 2427 2394 2350 2448  9.620990 0.292641 SUCCESS  42
001100111 2495 2431 2495 2433 2428 2452 2460 2405  3.342204 0.911085 SUCCESS  43
001101011 2449 2340 2481 2364 2362 2360 2467 2516 15.695118 0.046958 SUCCESS  44
001101101 2421 2348 2471 2435 2460 2482 2437 2451  5.152719 0.741136 SUCCESS  45
001101111 2405 2402 2426 2460 2356 2408 2419 2453  5.296554 0.725461 SUCCESS  46
001110101 2387 2467 2396 2541 2457 2433 2367 2427  9.173081 0.327906 SUCCESS  47
001110111 2439 2421 2405 2401 2364 2511 2399 2539 10.818975 0.212169 SUCCESS  48
001111011 2564 2451 2467 2382 2429 2429 2402 2375 10.835233 0.211211 SUCCESS  49
001111101 2407 2442 2435 2488 2387 2397 2432 2490  4.565556 0.802839 SUCCESS  50
001111111 2447 2533 2447 2441 2356 2485 2427 2383  9.009387 0.341505 SUCCESS  51
010000011 2418 2436 2453 2485 2432 2441 2455 2445  1.228344 0.996354 SUCCESS  52
010000111 2461 2502 2432 2404 2439 2461 2410 2478  3.499544 0.899225 SUCCESS  53
010001011 2430 2408 2418 2482 2473 2414 2440 2448  2.218295 0.973577 SUCCESS  54
010001111 2439 2447 2347 2441 2506 2438 2449 2414  5.906317 0.657725 SUCCESS  55
010010011 2529 2416 2469 2471 2507 2362 2383 2436 10.170155 0.253286 SUCCESS  56
010010111 2414 2416 2439 2480 2406 2430 2377 2410  3.984629 0.858508 SUCCESS  57
010011011 2485 2454 2432 2368 2420 2439 2415 2414  4.001589 0.856980 SUCCESS  58
010011111 2500 2489 2430 2423 2420 2411 2476 2368  5.988455 0.648525 SUCCESS  59
010100011 2462 2364 2482 2455 2453 2400 2385 2469  5.947664 0.653094 SUCCESS  60
010100111 2470 2469 2377 2414 2508 2461 2534 2404  9.012697 0.341226 SUCCESS  61
010101011 2479 2474 2415 2475 2402 2438 2513 2465  4.894335 0.768808 SUCCESS  62
010101111 2501 2418 2513 2444 2459 2412 2475 2440  4.889344 0.769335 SUCCESS  63
010110011 2343 2410 2449 2444 2468 2412 2371 2387  8.564788 0.380328 SUCCESS  64
010110111 2450 2393 2426 2420 2482 2431 2374 2454  4.053555 0.852260 SUCCESS  65
010111011 2433 2520 2539 2470 2481 2471 2384 2388 10.670387 0.221084 SUCCESS  66
010111111 2442 2484 2387 2486 2370 2328 2484 2402 11.898902 0.155772 SUCCESS  67
011000111 2416 2479 2412 2437 2442 2431 2435 2403  1.934147 0.982965 SUCCESS  68
011001111 2456 2524 2450 2424 2375 2381 2388 2423  7.904702 0.442834 SUCCESS  69
011010111 2453 2415 2454 2471 2400 2389 2438 2489  3.644835 0.887663 SUCCESS  70
011011111 2357 2384 2430 2409 2498 2371 2381 2407 10.415247 0.237082 SUCCESS  71
011101111 2433 2428 2456 2477 2497 2545 2440 2520  9.210457 0.324854 SUCCESS  72
011111111 2497 2461 2438 2497 2364 2393 2426 2418  6.649786 0.574845 SUCCESS  73
100000000 2480 2459 2429 2364 2483 2434 2403 2398  5.544174 0.698141 SUCCESS  74
100010000 2409 2414 2432 2450 2476 2411 2417 2444  1.984802 0.981474 SUCCESS  75
100100000 2482 2419 2496 2375 2426 2380 2423 2476  6.389774 0.603658 SUCCESS  76
100101000 2431 2394 2353 2499 2469 2487 2437 2448  6.944341 0.542650 SUCCESS  77
100110000 2450 2373 2541 2443 2496 2367 2446 2430  9.889727 0.272851 SUCCESS  78
100111000 2352 2480 2501 2404 2510 2417 2421 2471  8.908594 0.350066 SUCCESS  79
101000000 2437 2446 2361 2393 2473 2482 2488 2474  6.240153 0.620351 SUCCESS  80
101000100 2464 2350 2516 2490 2389 2365 2501 2474 12.705697 0.122385 SUCCESS  81
101001000 2512 2481 2500 2508 2415 2428 2456 2411  6.964770 0.540438 SUCCESS  82
101001100 2429 2465 2402 2409 2437 2423 2405 2515  4.411143 0.818256 SUCCESS  83
101010000 2454 2485 2429 2389 2475 2478 2459 2425  3.392581 0.907365 SUCCESS  84
101010100 2467 2429 2439 2547 2394 2455 2512 2437  8.221035 0.412182 SUCCESS  85
101011000 2344 2426 2371 2364 2472 2399 2548 2409 15.173452 0.055859 SUCCESS  86
101011100 2462 2411 2388 2487 2466 2437 2422 2507  4.908012 0.767361 SUCCESS  87
101100000 2447 2491 2514 2425 2459 2406 2430 2443  4.121540 0.845994 SUCCESS  88
101100100 2376 2482 2455 2474 2420 2341 2437 2433  7.540917 0.479547 SUCCESS  89
101101000 2404 2479 2409 2471 2477 2495 2522 2439  6.517682 0.589447 SUCCESS  90
101101100 2483 2473 2440 2513 2394 2466 2443 2410  4.956813 0.762182 SUCCESS  91
101110000 2393 2474 2391 2385 2393 2489 2394 2482  7.468166 0.487063 SUCCESS  92
101110100 2466 2386 2401 2393 2492 2442 2508 2510  8.199031 0.414274 SUCCESS  93
101111000 2356 2385 2420 2506 2450 2569 2432 2426 13.466987 0.096760 SUCCESS  94
101111100 2430 2369 2488 2388 2437 2393 2419 2485  6.421602 0.600116 SUCCESS  95
110000000 2411 2492 2410 2425 2457 2426 2418 2397  3.277953 0.915723 SUCCESS  96
110000010 2378 2471 2415 2407 2504 2522 2419 2449  7.520647 0.481636 SUCCESS  97
110000100 2437 2415 2485 2340 2550 2332 2493 2434 16.683176 0.033583 SUCCESS  98
110001000 2458 2448 2379 2461 2439 2481 2394 2374  5.490157 0.704130 SUCCESS  99
110001010 2441 2448 2425 2393 2388 2447 2446 2371  4.453695 0.814048 SUCCESS 100
110010000 2444 2506 2490 2413 2392 2329 2422 2525 12.620063 0.125608 SUCCESS 101
110010010 2338 2387 2510 2414 2468 2387 2403 2393 11.264183 0.187175 SUCCESS 102
110010100 2514 2483 2394 2472 2445 2528 2428 2443  7.576174 0.475925 SUCCESS 103
110011000 2455 2407 2431 2401 2471 2406 2397 2430  3.108353 0.927375 SUCCESS 104
110011010 2481 2477 2486 2400 2369 2480 2555 2434 11.114019 0.195322 SUCCESS 105
110100000 2427 2393 2371 2405 2413 2485 2523 2474  8.159458 0.418051 SUCCESS 106
110100010 2469 2383 2489 2500 2455 2403 2479 2456  5.575632 0.694647 SUCCESS 107
110100100 2537 2367 2559 2471 2518 2420 2401 2384 17.215898 0.027938 SUCCESS 108
110101000 2424 2411 2465 2366 2480 2523 2452 2509  8.601091 0.377056 SUCCESS 109
110101010 2500 2424 2422 2522 2344 2497 2479 2393 11.415631 0.179242 SUCCESS 110
110101100 2396 2366 2427 2318 2515 2402 2463 2454 13.037216 0.110576 SUCCESS 111
110110000 2525 2421 2523 2448 2504 2438 2398 2477  8.978473 0.344115 SUCCESS 112
110110010 2397 2538 2412 2537 2362 2329 2442 2421 17.226105 0.027839 SUCCESS 113
110110100 2457 2450 2535 2434 2464 2502 2460 2405  6.350929 0.607986 SUCCESS 114
110111000 2389 2478 2443 2367 2386 2401 2413 2462  6.588818 0.581574 SUCCESS 115
110111010 2444 2380 2502 2407 2456 2459 2374 2556 11.367902 0.181712 SUCCESS 116
110111100 2446 2356 2402 2507 2481 2561 2421 2430 12.536243 0.128834 SUCCESS 117
111000000 2372 2451 2409 2488 2450 2548 2453 2411  8.738995 0.364790 SUCCESS 118
111000010 2444 2494 2486 2396 2573 2375 2453 2463 12.352160 0.136169 SUCCESS 119
111000100 2431 2401 2462 2439 2417 2448 2491 2342  6.417710 0.600549 SUCCESS 120
111000110 2403 2513 2401 2531 2334 2448 2456 2447 11.898399 0.155795 SUCCESS 121
111001000 2432 2558 2399 2406 2502 2420 2445 2512 10.958216 0.204078 SUCCESS 122
111001010 2594 2485 2432 2466 2511 2523 2486 2505 18.398551 0.018429 SUCCESS 123
111001100 2500 2409 2531 2457 2484 2362 2364 2446 11.391005 0.180513 SUCCESS 124
111010000 2471 2402 2343 2409 2362 2469 2549 2477 14.011161 0.081475 SUCCESS 125
111010010 2478 2351 2414 2441 2471 2392 2470 2452  6.146695 0.630804 SUCCESS 126
111010100 2399 2413 2469 2416 2490 2453 2425 2540  6.990534 0.537654 SUCCESS 127
111010110 2307 2403 2446 2432 2485 2434 2342 2399 14.097933 0.079248 SUCCESS 128
111011000 2452 2459 2459 2482 2457 2470 2428 2454  1.602442 0.990873 SUCCESS 129
111011010 2484 2484 2443 2397 2495 2461 2415 2442  4.050073 0.852578 SUCCESS 130
111011100 2457 2468 2422 2373 2393 2379 2437 2465  5.429678 0.710818 SUCCESS 131
111100000 2391 2448 2427 2534 2476 2517 2441 2373  9.726761 0.284730 SUCCESS 132
111100010 2425 2419 2418 2421 2422 2474 2483 2283 12.706279 0.122363 SUCCESS 133
111100100 2435 2469 2399 2463 2403 2420 2441 2463  2.315580 0.969777 SUCCESS 134
111100110 2488 2478 2498 2357 2501 2410 2441 2488  8.706492 0.367658 SUCCESS 135
111101000 2517 2439 2417 2469 2361 2415 2505 2478  8.314547 0.403363 SUCCESS 136
111101010 2438 2349 2469 2448 2460 2468 2460 2415  4.851254 0.773350 SUCCESS 137
111101100 2476 2493 2438 2466 2432 2400 2389 2532  7.301757 0.504453 SUCCESS 138
111101110 2487 2418 2526 2482 2488 2399 2411 2458  7.034595 0.532905 SUCCESS 139
111110000 2452 2485 2391 2382 2495 2411 2435 2363  7.653242 0.468054 SUCCESS 140
111110010 2438 2480 2478 2501 2366 2422 2503 2489  7.845388 0.448717 SUCCESS 141
111110100 2512 2457 2333 2446 2421 2428 2479 2465  8.289497 0.405714 SUCCESS 142
111110110 2469 2524 2442 2542 2436 2447 2433 2530 10.884749 0.208315 SUCCESS 143
111111000 2489 2493 2390 2392 2376 2449 2433 2314 12.982524 0.112452 SUCCESS 144
111111010 2434 2435 2345 2420 2360 2464 2458 2480  7.942209 0.439136 SUCCESS 145
111111100 2518 2471 2522 2471 2364 2397 2415 2389 10.812567 0.212547 SUCCESS 146
111111110 2497 2461 2438 2497 2364 2393 2426 2418  6.649786 0.574845 SUCCESS 147

	spritz

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2495 2497 2375 2474 2412 2516 2383 2415  9.309555 0.316859 SUCCESS   0
000000011 2407 2459 2425 2435 2492 2438 2458 2432  2.007825 0.980771 SUCCESS   1
000000101 2443 2342 2463 2499 2438 2515 2458 2396  9.080417 0.335558 SUCCESS   2
000000111 2422 2423 2355 2412 2487 2452 2451 2344  8.817108 0.357959 SUCCESS   3
000001001 2445 2473 2432 2425 2450 2436 2453 2487  1.562141 0.991627 SUCCESS   4
000001011 2505 2482 2409 2458 2479 2458 2374 2425  5.728311 0.677635 SUCCESS   5
000001101 2448 2413 2475 2382 2444 2406 2492 2425  4.065431 0.851172 SUCCESS   6
000001111 2429 2422 2381 2357 2510 2375 2462 2444  8.831275 0.356729 SUCCESS   7
000010001 2488 2388 2472 2366 2409 2436 2362 2518 10.546663 0.228732 SUCCESS   8
000010011 2469 2502 2403 2439 2437 2393 2385 2443  4.854696 0.772988 SUCCESS   9
000010101 2404 2438 2458 2453 2437 2487 2391 2358  5.682608 0.682735 SUCCESS  10
000010111 2461 2458 2345 2450 2475 2479 2347 2415  9.395149 0.310065 SUCCESS  11
000011001 2451 2432 2449 2440 2444 2396 2443 2458  1.095577 0.997569 SUCCESS  12
000011011 2435 2407 2459 2384 2352 2410 2466 2521  8.789676 0.360348 SUCCESS  13
000011101 2383 2439 2385 2505 2428 2383 2448 2381  7.592419 0.474261 SUCCESS  14
000011111 2460 2424 2360 2315 2492 2441 2460 2407 11.582317 0.170835 SUCCESS  15
000100011 2435 2444 2447 2384 2502 2527 2324 2550 16.926268 0.030886 SUCCESS  16
000100101 2336 2481 2386 2446 2403 2399 2538 2473 12.442586 0.132522 SUCCESS  17
000100111 2485 2454 2392 2444 2457 2381 2494 2477  5.267652 0.728623 SUCCESS  18
000101001 2433 2469 2491 2350 2556 2483 2412 2509 13.535105 0.094717 SUCCESS  19
000101011 2451 2431 2375 2468 2385 2526 2439 2402  7.292185 0.505461 SUCCESS  20
000101101 2446 2364 2474 2455 2481 2386 2512 2485  7.958004 0.437583 SUCCESS  21
000101111 2478 2487 2424 2403 2395 2482 2402 2428  4.545472 0.804867 SUCCESS  22
000110011 2502 2456 2322 2464 2459 2430 2384 2463  9.681945 0.288062 SUCCESS  23
000110101 2407 2427 2538 2492 2437 2433 2379 2414  7.633210 0.470094 SUCCESS  24
000110111 2493 2493 2504 2302 2380 2458 2414 2492 15.265983 0.054175 SUCCESS  25
000111001 2380 2370 2392 2481 2470 2438 2378 2518  9.994784 0.265392 SUCCESS  26
000111011 2482 2408 2449 2457 2489 2454 2450 2368  4.639817 0.795287 SUCCESS  27
000111101 2421 2370 2457 2491 2409 2372 2519 2532 11.995975 0.151384 SUCCESS  28
000111111 2509 2495 2526 2376 2441 2371 2448 2418 10.348268 0.241428 SUCCESS  29
001000011 2403 2433 2451 2471 2418 2484 2473 2460  2.635819 0.955096 SUCCESS  30
001000101 2348 2459 2470 2452 2316 2425 2432 2498 12.391084 0.134589 SUCCESS  31
001000111 2443 2434 2506 2456 2455 2520 2407 2420  5.274629 0.727860 SUCCESS  32
001001011 2368 2427 2378 2473 2504 2415 2490 2413  7.793820 0.453865 SUCCESS  33
001001101 2503 2476 2425 2374 2426 2430 2411 2509  6.636706 0.576287 SUCCESS  34
001001111 2472 2443 2523 2421 2386 2318 2471 2447 11.530921 0.173392 SUCCESS  35
001010011 2365 2418 2384 2424 2540 2408 2395 2519 12.283301 0.139004 SUCCESS  36
001010101 2512 2394 2442 2405 2454 2434 2451 2439  3.757027 0.878353 SUCCESS  37
001010111 2474 2488 2376 2485 2519 2499 2462 2330 13.382876 0.099338 SUCCESS  38
001011011 2432 2311 2393 2488 2398 2435 2533 2512 15.635659 0.047902 SUCCESS  39
001011101 2425 2460 2398 2432 2464 2407 2449 2395  2.749507 0.949081 SUCCESS  40
001011111 2457 2434 2417 2470 2471 2398 2459 2430  2.080617 0.978440 SUCCESS  41
001100101 2409 2436 2561 2444 2308 2397 2487 2461 15.938250 0.043273 SUCCESS  42
001100111 2405 2481 2384 2367 2480 2461 2378 2434  7.485788 0.485237 SUCCESS  43
001101011 2459 2522 2450 2554 2497 2430 2437 2441  9.661530 0.289590 SUCCESS  44
001101101 2335 2464 2447 2422 2418 2499 2427 2469  7.233242 0.511690 SUCCESS  45
001101111 2516 2489 2486 2435 2345 2373 2462 2483 11.010499 0.201105 SUCCESS  46
001110101 2335 2464 2456 2387 2496 2427 2391 2402  9.440164 0.306535 SUCCESS  47
001110111 2484 2425 2520 2429 2378 2474 2443 2391  6.795925 0.558803 SUCCESS  48
001111011 2383 2408 2528 2494 2394 2413 2430 2445  7.620924 0.471347 SUCCESS  49
001111101 2424 2450 2403 2459 2487 2388 2414 2511  5.375052 0.716840 SUCCESS  50
001111111 2574 2341 2532 2411 2411 2399 2414 2426 17.160569 0.028480 SUCCESS  51
010000011 2429 2504 2417 2413 2494 2366 2457 2486  6.846262 0.553307 SUCCESS  52
010000111 2409 2472 2405 2430 2423 2431 2493 2468  3.074923 0.929568 SUCCESS  53
010001011 2433 2434 2491 2407 2418 2463 2474 2488  3.397268 0.907015 SUCCESS  54
010001111 2461 2503 2501 2436 2488 2457 2471 2429  4.748845 0.784052 SUCCESS  55
010010011 2465 2430 2441 2381 2415 2467 2448 2441  2.427812 0.965012 SUCCESS  56
010010111 2330 2444 2415 2404 2473 2412 2513 2412  9.474838 0.303834 SUCCESS  57
010011011 2420 2462 2419 2435 2438 2410 2405 2481  2.251593 0.972311 SUCCESS  58
010011111 2460 2376 2465 2513 2424 2356 2443 2387  8.838742 0.356082 SUCCESS  59
010100011 2373 2372 2414 2430 2364 2439 2387 2441  8.187724 0.415351 SUCCESS  60
010100111 2406 2447 2415 2373 2486 2451 2414 2476  4.528194 0.806606 SUCCESS  61
010101011 2582 2361 2440 2397 2465 2463 2403 2478 13.576227 0.093502 SUCCESS  62
010101111 2585 2485 2467 2468 2508 2440 2454 2393 13.061114 0.109764 SUCCESS  63
010110011 2485 2445 2454 2416 2389 2517 2345 2406  9.203612 0.325412 SUCCESS  64
010110111 2384 2342 2386 2481 2414 2419 2540 2483 12.928599 0.114330 SUCCESS  65
010111011 2420 2495 2405 2423 2491 2405 2466 2373  5.957726 0.651967 SUCCESS  66
010111111 2455 2466 2473 2454 2471 2438 2509 2475  3.617191 0.889907 SUCCESS  67
011000111 2414 2480 2455 2403 2426 2467 2459 2531  5.563862 0.695955 SUCCESS  68
011001111 2423 2428 2390 2393 2441 2480 2364 2391  6.575115 0.583088 SUCCESS  69
011010111 2387 2530 2430 2561 2516 2479 2474 2399 14.865406 0.061816 SUCCESS  70
011011111 2402 2464 2431 2461 2410 2436 2478 2433  2.110022 0.977452 SUCCESS  71
011101111 2425 2475 2524 2418 2396 2455 2483 2368  7.682237 0.465109 SUCCESS  72
011111111 2542 2431 2515 2371 2405 2349 2436 2371 15.017979 0.058797 SUCCESS  73
100000000 2495 2497 2375 2474 2412 2516 2383 2415  9.309555 0.316859 SUCCESS  74
100010000 2454 2518 2413 2434 2461 2418 2411 2411  4.095789 0.848379 SUCCESS  75
100100000 2428 2385 2359 2444 2601 2397 2535 2501 21.147727 0.006765 FAILURE  76
100101000 2390 2404 2505 2454 2284 2366 2500 2485 18.656856 0.016807 SUCCESS  77
100110000 2489 2472 2449 2422 2425 2503 2455 2391  4.417273 0.817652 SUCCESS  78
100111000 2409 2395 2486 2427 2432 2456 2423 2480  3.189724 0.921893 SUCCESS  79
101000000 2417 2318 2454 2479 2476 2460 2523 2430 10.899922 0.207435 SUCCESS  80
101000100 2447 2523 2439 2460 2427 2425 2374 2489  6.070078 0.639382 SUCCESS  81
101001000 2413 2462 2488 2423 2522 2450 2546 2403  9.630112 0.291952 SUCCESS  82
101001100 2409 2489 2445 2412 2409 2333 2452 2383  8.690405 0.369082 SUCCESS  83
101010000 2433 2475 2516 2466 2454 2488 2428 2392  5.220572 0.733762 SUCCESS  84
101010100 2454 2444 2437 2460 2495 2468 2477 2379  3.929102 0.863463 SUCCESS  85
101011000 2383 2437 2406 2506 2495 2444 2439 2524  7.865976 0.446670 SUCCESS  86
101011100 2374 2493 2392 2464 2453 2382 2444 2441  5.857039 0.663242 SUCCESS  87
101100000 2459 2422 2389 2415 2384 2476 2318 2442 10.102104 0.257933 SUCCESS  88
101100100 2429 2457 2424 2439 2450 2432 2458 2519  3.036304 0.932059 SUCCESS  89
101101000 2404 2449 2451 2419 2408 2394 2473 2435  2.732839 0.949989 SUCCESS  90
101101100 2502 2453 2502 2482 2432 2562 2431 2438 10.119355 0.256749 SUCCESS  91
101110000 2452 2361 2448 2338 2400 2353 2417 2446 11.629980 0.168492 SUCCESS  92
101110100 2444 2354 2425 2319 2476 2353 2393 2416 14.781361 0.063539 SUCCESS  93
101111000 2386 2436 2387 2417 2435 2466 2429 2457  3.259722 0.917017 SUCCESS  94
101111100 2456 2488 2502 2495 2469 2392 2448 2444  5.162609 0.740063 SUCCESS  95
110000000 2464 2451 2388 2438 2397 2550 2352 2376 12.497637 0.130343 SUCCESS  96
110000010 2513 2529 2428 2426 2379 2415 2414 2487  8.744065 0.364344 SUCCESS  97
110000100 2449 2402 2422 2447 2433 2413 2335 2444  6.024202 0.644521 SUCCESS  98
110001000 2469 2513 2420 2415 2496 2418 2492 2503  7.172909 0.518097 SUCCESS  99
110001010 2389 2473 2386 2369 2471 2480 2481 2355  9.935881 0.269555 SUCCESS 100
110010000 2365 2365 2337 2475 2426 2446 2503 2495 12.975162 0.112707 SUCCESS 101
110010010 2462 2366 2334 2404 2513 2464 2412 2405 11.382439 0.180957 SUCCESS 102
110010100 2410 2393 2474 2464 2381 2381 2511 2508  9.099482 0.333973 SUCCESS 103
110011000 2465 2502 2421 2350 2380 2404 2348 2485 12.197111 0.142624 SUCCESS 104
110011010 2580 2536 2429 2575 2447 2473 2436 2399 20.770332 0.007783 FAILURE 105
110100000 2416 2408 2469 2386 2563 2440 2409 2427  9.166898 0.328413 SUCCESS 106
110100010 2493 2484 2413 2402 2463 2489 2427 2491  5.185064 0.737626 SUCCESS 107
110100100 2439 2427 2440 2464 2513 2461 2497 2414  4.270989 0.831884 SUCCESS 108
110101000 2503 2426 2494 2421 2391 2503 2416 2446  6.023262 0.644626 SUCCESS 109
110101010 2524 2411 2435 2452 2506 2497 2429 2418  6.723054 0.566786 SUCCESS 110
110101100 2393 2487 2435 2465 2483 2492 2407 2386  5.746449 0.675609 SUCCESS 111
110110000 2481 2400 2357 2458 2387 2432 2401 2443  6.507633 0.590561 SUCCESS 112
110110010 2438 2359 2414 2498 2440 2461 2447 2485  5.539143 0.698699 SUCCESS 113
110110100 2397 2373 2503 2354 2404 2439 2464 2442  8.471634 0.388805 SUCCESS 114
110111000 2468 2374 2412 2446 2397 2461 2480 2462  4.408296 0.818536 SUCCESS 115
110111010 2476 2420 2401 2376 2440 2439 2435 2454  3.291973 0.914722 SUCCESS 116
110111100 2494 2437 2422 2410 2378 2401 2445 2440  4.157499 0.842641 SUCCESS 117
111000000 2380 2392 2493 2435 2449 2410 2447 2369  6.451497 0.596792 SUCCESS 118
111000010 2432 2455 2442 2411 2554 2381 2419 2456  7.727701 0.460511 SUCCESS 119
111000100 2415 2457 2398 2467 2478 2441 2538 2441  5.996002 0.647680 SUCCESS 120
111000110 2392 2533 2491 2488 2458 2461 2474 2405  7.843468 0.448908 SUCCESS 121
111001000 2383 2440 2394 2547 2408 2496 2426 2440  8.959090 0.345759 SUCCESS 122
111001010 2494 2537 2464 2408 2451 2432 2511 2408  8.336048 0.401351 SUCCESS 123
111001100 2379 2437 2449 2345 2360 2461 2411 2553 14.256451 0.075321 SUCCESS 124
111010000 2393 2449 2506 2341 2515 2376 2452 2432 11.247183 0.188083 SUCCESS 125
111010010 2396 2359 2367 2368 2392 2393 2496 2546 16.300618 0.038274 SUCCESS 126
111010100 2461 2464 2415 2458 2433 2479 2384 2389  3.978817 0.859030 SUCCESS 127
111010110 2369 2353 2467 2482 2518 2510 2465 2432 11.261111 0.187339 SUCCESS 128
111011000 2502 2469 2425 2456 2448 2362 2469 2404  5.687625 0.682176 SUCCESS 129
111011010 2373 2463 2485 2402 2435 2440 2486 2422  4.663053 0.792907 SUCCESS 130
111011100 2454 2404 2429 2551 2400 2425 2482 2379  9.002224 0.342108 SUCCESS 131
111100000 2417 2452 2548 2446 2459 2413 2453 2423  5.797196 0.669937 SUCCESS 132
111100010 2386 2514 2389 2382 2475 2451 2478 2387  8.529597 0.383517 SUCCESS 133
111100100 2492 2466 2457 2498 2417 2428 2425 2370  5.403742 0.713680 SUCCESS 134
111100110 2529 2513 2436 2451 2417 2468 2385 2404  7.967325 0.436668 SUCCESS 135
111101000 2449 2431 2504 2433 2532 2419 2479 2514  8.284466 0.406188 SUCCESS 136
111101010 2463 2456 2463 2408 2402 2382 2435 2489  4.087819 0.849114 SUCCESS 137
111101100 2467 2395 2404 2532 2459 2399 2509 2428  8.165522 0.417471 SUCCESS 138
111101110 2460 2435 2441 2498 2421 2398 2473 2439  2.921318 0.939198 SUCCESS 139
111110000 2454 2435 2547 2412 2457 2413 2430 2344  9.694073 0.287158 SUCCESS 140
111110010 2489 2438 2473 2485 2475 2417 2513 2352  8.482729 0.387790 SUCCESS 141
111110100 2472 2489 2497 2452 2444 2403 2381 2560 10.847745 0.210476 SUCCESS 142
111110110 2494 2421 2416 2436 2479 2509 2483 2417  5.155605 0.740823 SUCCESS 143
111111000 2456 2448 2446 2378 2469 2429 2448 2402  2.884260 0.941409 SUCCESS 144
111111010 2410 2439 2497 2388 2401 2388 2483 2490  6.571170 0.583525 SUCCESS 145
111111100 2537 2393 2463 2414 2488 2396 2447 2388  8.394871 0.395878 SUCCESS 146
111111110 2542 2431 2515 2371 2405 2349 2436 2371 15.017979 0.058797 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2416 2418 2472 2421 2382 2493 2445 2523  6.528035 0.588300 SUCCESS   0
000000011 2357 2404 2442 2418 2501 2450 2474 2462  6.008805 0.646246 SUCCESS   1
000000101 2474 2409 2466 2506 2406 2443 2424 2460  3.726722 0.880900 SUCCESS   2
000000111 2382 2529 2453 2410 2479 2379 2481 2509 10.070474 0.260114 SUCCESS   3
000001001 2410 2426 2460 2370 2383 2477 2409 2463  5.447843 0.708811 SUCCESS   4
000001011 2400 2369 2402 2469 2441 2411 2407 2449  4.843297 0.774186 SUCCESS   5
000001101 2386 2442 2453 2370 2525 2400 2427 2482  7.990282 0.434420 SUCCESS   6
000001111 2391 2532 2453 2391 2493 2333 2459 2484 12.693477 0.122840 SUCCESS   7
000010001 2460 2408 2435 2404 2394 2388 2528 2419  6.778290 0.560732 SUCCESS   8
000010011 2454 2455 2405 2463 2413 2451 2472 2399  2.443593 0.964309 SUCCESS   9
000010101 2478 2443 2481 2468 2354 2537 2448 2306 16.426579 0.036666 SUCCESS  10
000010111 2508 2418 2480 2444 2481 2521 2416 2439  6.371265 0.605720 SUCCESS  11
000011001 2501 2411 2423 2442 2433 2553 2432 2412  7.750778 0.458186 SUCCESS  12
000011011 2448 2370 2416 2388 2455 2415 2426 2433  4.162318 0.842190 SUCCESS  13
000011101 2397 2525 2408 2414 2417 2402 2442 2392  6.529796 0.588105 SUCCESS  14
000011111 2402 2473 2413 2449 2490 2366 2385 2435  6.220307 0.622569 SUCCESS  15
000100011 2492 2398 2461 2355 2485 2332 2411 2439 11.476851 0.176116 SUCCESS  16
000100101 2336 2406 2543 2309 2424 2392 2444 2437 18.208947 0.019713 SUCCESS  17
000100111 2418 2468 2376 2475 2406 2431 2494 2410  4.988376 0.758818 SUCCESS  18
000101001 2506 2417 2427 2488 2417 2468 2450 2480  4.243689 0.834495 SUCCESS  19
000101011 2413 2442 2498 2471 2423 2561 2383 2388 10.927381 0.205848 SUCCESS  20
000101101 2425 2431 2385 2432 2463 2403 2494 2407  4.040077 0.853490 SUCCESS  21
000101111 2488 2429 2478 2467 2445 2453 2410 2485  3.116919 0.926807 SUCCESS  22
000110011 2546 2428 2455 2453 2456 2421 2463 2438  5.317062 0.723213 SUCCESS  23
000110101 2505 2427 2457 2443 2474 2393 2471 2469  4.043268 0.853199 SUCCESS  24
000110111 2468 2360 2480 2490 2457 2427 2440 2397  5.765792 0.673448 SUCCESS  25
000111001 2408 2405 2411 2522 2448 2436 2456 2466  4.555468 0.803858 SUCCESS  26
000111011 2405 2515 2450 2380 2479 2417 2421 2442  5.512360 0.701670 SUCCESS  27
000111101 2475 2525 2455 2439 2414 2339 2482 2482  9.677987 0.288358 SUCCESS  28
000111111 2448 2375 2389 2431 2450 2430 2424 2475  3.787598 0.875761 SUCCESS  29
001000011 2498 2500 2403 2479 2383 2493 2425 2493  7.851889 0.448070 SUCCESS  30
001000101 2479 2424 2351 2517 2425 2473 2441 2437  7.156320 0.519865 SUCCESS  31
001000111 2524 2389 2422 2452 2410 2447 2388 2481  6.564272 0.584288 SUCCESS  32
001001011 2415 2429 2507 2429 2372 2410 2434 2525  7.691120 0.464209 SUCCESS  33
001001101 2434 2495 2398 2335 2515 2452 2501 2425 10.796362 0.213507 SUCCESS  34
001001111 2465 2370 2421 2454 2418 2502 2449 2382  5.945983 0.653283 SUCCESS  35
001010011 2443 2385 2375 2496 2400 2471 2384 2437  6.980022 0.538790 SUCCESS  36
001010101 2458 2390 2505 2448 2442 2471 2508 2404  5.812144 0.668265 SUCCESS  37
001010111 2496 2456 2475 2465 2388 2539 2437 2353 10.631052 0.223493 SUCCESS  38
001011011 2423 2489 2436 2382 2478 2426 2438 2444  3.286214 0.915134 SUCCESS  39
001011101 2422 2498 2453 2461 2430 2414 2490 2428  3.186864 0.922089 SUCCESS  40
001011111 2359 2471 2478 2491 2464 2489 2515 2455  8.408799 0.394589 SUCCESS  41
001100101 2455 2398 2464 2386 2385 2517 2490 2375  9.030266 0.339749 SUCCESS  42
001100111 2516 2481 2372 2493 2351 2484 2430 2482 11.175888 0.191931 SUCCESS  43
001101011 2494 2413 2448 2455 2546 2406 2442 2469  7.101058 0.525770 SUCCESS  44
001101101 2390 2423 2406 2420 2507 2409 2401 2376  6.757636 0.562993 SUCCESS  45
001101111 2422 2378 2473 2503 2505 2463 2449 2383  7.274245 0.507353 SUCCESS  46
001110101 2354 2501 2469 2449 2402 2458 2417 2460  6.261496 0.617966 SUCCESS  47
001110111 2375 2506 2397 2457 2475 2434 2468 2421  5.551867 0.697287 SUCCESS  48
001111011 2447 2527 2481 2485 2382 2397 2425 2470  7.378600 0.496389 SUCCESS  49
001111101 2542 2503 2413 2403 2480 2521 2388 2532 14.865115 0.061822 SUCCESS  50
001111111 2454 2379 2397 2476 2461 2394 2361 2453  6.968371 0.540049 SUCCESS  51
010000011 2517 2444 2478 2437 2469 2388 2416 2432  4.842012 0.774321 SUCCESS  52
010000111 2467 2523 2332 2484 2389 2391 2422 2429 11.401438 0.179974 SUCCESS  53
010001011 2419 2485 2439 2413 2323 2393 2451 2468  8.631476 0.374331 SUCCESS  54
010001111 2546 2367 2355 2434 2480 2389 2462 2484 12.909481 0.115002 SUCCESS  55
010010011 2498 2435 2455 2419 2399 2527 2437 2508  7.420119 0.492056 SUCCESS  56
010010111 2365 2458 2484 2432 2393 2421 2495 2416  6.054720 0.641102 SUCCESS  57
010011011 2425 2519 2433 2408 2589 2507 2427 2380 15.907097 0.043729 SUCCESS  58
010011111 2476 2364 2456 2475 2378 2492 2448 2456  6.510466 0.590247 SUCCESS  59
010100011 2472 2395 2391 2449 2516 2407 2483 2485  6.807708 0.557515 SUCCESS  60
010100111 2456 2482 2442 2421 2448 2436 2408 2360  4.275146 0.831485 SUCCESS  61
010101011 2362 2408 2466 2480 2438 2401 2432 2393  5.756299 0.674509 SUCCESS  62
010101111 2446 2421 2471 2430 2367 2466 2387 2397  5.300897 0.724985 SUCCESS  63
010110011 2373 2396 2396 2504 2466 2368 2501 2452  9.479750 0.303453 SUCCESS  64
010110111 2413 2406 2477 2386 2422 2500 2383 2459  5.899684 0.658468 SUCCESS  65
010111011 2414 2528 2495 2465 2477 2463 2482 2412  6.749322 0.563905 SUCCESS  66
010111111 2377 2479 2441 2469 2444 2498 2439 2435  4.059168 0.851746 SUCCESS  67
011000111 2452 2440 2437 2423 2518 2481 2467 2486  4.472111 0.812217 SUCCESS  68
011001111 2557 2497 2393 2511 2410 2406 2406 2510 13.490686 0.096045 SUCCESS  69
011010111 2453 2446 2480 2438 2473 2532 2474 2434  5.077823 0.749227 SUCCESS  70
011011111 2465 2473 2433 2439 2476 2459 2438 2390  2.454331 0.963827 SUCCESS  71
011101111 2468 2481 2441 2478 2476 2478 2502 2383  5.608664 0.690973 SUCCESS  72
011111111 2387 2443 2399 2483 2520 2406 2473 2416  6.594379 0.580959 SUCCESS  73
100000000 2416 2418 2472 2421 2382 2493 2445 2523  6.528035 0.588300 SUCCESS  74
100010000 2503 2393 2456 2427 2365 2513 2439 2381  8.970754 0.344769 SUCCESS  75
100100000 2410 2505 2392 2395 2449 2350 2396 2409  8.957448 0.345898 SUCCESS  76
100101000 2425 2385 2469 2395 2466 2392 2451 2492  5.110114 0.745745 SUCCESS  77
100110000 2439 2424 2413 2504 2470 2459 2503 2481  4.883744 0.769926 SUCCESS  78
100111000 2437 2507 2416 2425 2490 2400 2435 2487  4.844343 0.774076 SUCCESS  79
101000000 2468 2390 2433 2378 2414 2522 2495 2443  7.440654 0.489919 SUCCESS  80
101000100 2486 2433 2340 2396 2503 2420 2448 2432  7.958971 0.437488 SUCCESS  81
101001000 2442 2538 2397 2473 2318 2467 2377 2428 13.773404 0.087866 SUCCESS  82
101001100 2500 2415 2353 2443 2341 2517 2529 2483 15.738729 0.046276 SUCCESS  83
101010000 2422 2420 2415 2521 2381 2447 2414 2348  8.904728 0.350397 SUCCESS  84
101010100 2571 2399 2482 2453 2470 2428 2418 2437  9.296805 0.317880 SUCCESS  85
101011000 2480 2504 2567 2499 2538 2341 2398 2421 19.580767 0.012044 SUCCESS  86
101011100 2450 2335 2454 2417 2389 2462 2462 2444  6.671936 0.572406 SUCCESS  87
101100000 2466 2543 2490 2426 2507 2426 2431 2454  7.769313 0.456323 SUCCESS  88
101100100 2431 2462 2594 2475 2439 2431 2404 2453 11.268883 0.186924 SUCCESS  89
101101000 2438 2385 2463 2412 2461 2481 2385 2426  4.191074 0.839486 SUCCESS  90
101101100 2369 2519 2417 2535 2474 2435 2468 2465  9.740491 0.283715 SUCCESS  91
101110000 2488 2374 2419 2440 2513 2417 2357 2374 10.423601 0.236544 SUCCESS  92
101110100 2429 2546 2458 2457 2394 2442 2425 2426  6.087223 0.637462 SUCCESS  93
101111000 2480 2416 2494 2386 2342 2486 2519 2432 10.994638 0.202003 SUCCESS  94
101111100 2400 2414 2420 2606 2444 2385 2466 2452 14.371688 0.072577 SUCCESS  95
110000000 2406 2423 2505 2449 2492 2446 2479 2502  5.662430 0.684985 SUCCESS  96
110000010 2370 2438 2449 2466 2444 2468 2443 2397  3.584065 0.892568 SUCCESS  97
110000100 2438 2379 2373 2438 2406 2400 2436 2460  5.056004 0.751574 SUCCESS  98
110001000 2440 2424 2444 2482 2439 2437 2343 2451  4.981624 0.759538 SUCCESS  99
110001010 2449 2478 2405 2474 2410 2454 2424 2473  2.640188 0.954873 SUCCESS 100
110010000 2395 2469 2415 2523 2396 2427 2401 2422  6.162543 0.629030 SUCCESS 101
110010010 2433 2474 2458 2451 2459 2441 2449 2484  1.561505 0.991639 SUCCESS 102
110010100 2470 2432 2504 2427 2413 2473 2433 2422  3.086535 0.928810 SUCCESS 103
110011000 2446 2404 2497 2386 2433 2314 2493 2403 11.869444 0.157125 SUCCESS 104
110011010 2404 2388 2435 2406 2469 2416 2475 2527  6.527638 0.588344 SUCCESS 105
110100000 2417 2409 2490 2356 2469 2501 2425 2503  8.337094 0.401253 SUCCESS 106
110100010 2467 2444 2394 2342 2432 2406 2428 2468  6.361388 0.606820 SUCCESS 107
110100100 2410 2446 2409 2428 2383 2509 2442 2451  4.367280 0.822560 SUCCESS 108
110101000 2444 2493 2378 2443 2418 2447 2504 2345  8.677113 0.370262 SUCCESS 109
110101010 2476 2417 2443 2485 2466 2358 2342 2426  9.054640 0.337708 SUCCESS 110
110101100 2469 2467 2448 2454 2585 2328 2437 2503 16.487799 0.035907 SUCCESS 111
110110000 2505 2531 2457 2422 2437 2420 2487 2412  6.828031 0.555296 SUCCESS 112
110110010 2402 2471 2541 2445 2466 2467 2405 2415  6.628524 0.577190 SUCCESS 113
110110100 2401 2475 2449 2469 2485 2558 2352 2392 12.502760 0.130142 SUCCESS 114
110111000 2429 2437 2397 2450 2528 2413 2333 2385 10.783638 0.214262 SUCCESS 115
110111010 2435 2531 2458 2448 2466 2436 2409 2535  7.980525 0.435375 SUCCESS 116
110111100 2404 2469 2447 2420 2481 2486 2541 2377  8.590460 0.378012 SUCCESS 117
111000000 2428 2426 2489 2439 2458 2362 2458 2462  4.223074 0.836457 SUCCESS 118
111000010 2486 2355 2371 2433 2391 2478 2380 2440  9.375237 0.311637 SUCCESS 119
111000100 2430 2436 2426 2433 2455 2425 2418 2469  0.944500 0.998575 SUCCESS 120
111000110 2450 2491 2454 2440 2450 2448 2484 2461  2.124281 0.976963 SUCCESS 121
111001000 2492 2416 2460 2502 2489 2423 2463 2452  4.410454 0.818324 SUCCESS 122
111001010 2500 2402 2492 2508 2424 2449 2395 2372  8.181978 0.415899 SUCCESS 123
111001100 2461 2483 2428 2483 2385 2360 2479 2459  6.590314 0.581408 SUCCESS 124
111010000 2499 2479 2477 2426 2402 2439 2491 2472  4.742345 0.784726 SUCCESS 125
111010010 2423 2429 2408 2414 2394 2483 2411 2413  3.416346 0.905584 SUCCESS 126
111010100 2446 2527 2423 2402 2378 2430 2466 2439  5.931128 0.654946 SUCCESS 127
111010110 2406 2429 2405 2406 2476 2456 2408 2436  2.769949 0.947955 SUCCESS 128
111011000 2472 2407 2403 2448 2477 2402 2518 2454  5.289405 0.726244 SUCCESS 129
111011010 2407 2478 2544 2517 2497 2574 2419 2385 18.271623 0.019280 SUCCESS 130
111011100 2448 2488 2511 2477 2493 2439 2346 2465  8.751109 0.363725 SUCCESS 131
111100000 2436 2436 2451 2439 2432 2485 2473 2489  2.292861 0.970692 SUCCESS 132
111100010 2402 2419 2417 2500 2447 2385 2430 2407  4.493732 0.810060 SUCCESS 133
111100100 2517 2427 2391 2480 2486 2447 2440 2429  5.139374 0.742581 SUCCESS 134
111100110 2436 2469 2443 2473 2428 2409 2474 2395  2.642412 0.954759 SUCCESS 135
111101000 2493 2422 2387 2422 2404 2488 2488 2518  7.619984 0.471443 SUCCESS 136
111101010 2433 2478 2492 2429 2379 2387 2386 2391  7.025990 0.533831 SUCCESS 137
111101100 2504 2379 2484 2453 2487 2375 2471 2486  8.099456 0.423816 SUCCESS 138
111101110 2491 2488 2515 2545 2448 2487 2356 2520 15.413711 0.051583 SUCCESS 139
111110000 2341 2326 2434 2445 2368 2479 2441 2484 13.590089 0.093095 SUCCESS 140
111110010 2506 2378 2462 2532 2502 2433 2365 2438 11.192636 0.191021 SUCCESS 141
111110100 2488 2466 2373 2331 2408 2484 2497 2436 10.885438 0.208275 SUCCESS 142
111110110 2489 2398 2517 2473 2497 2472 2454 2464  6.594313 0.580966 SUCCESS 143
111111000 2361 2431 2369 2427 2464 2478 2454 2478  6.511247 0.590160 SUCCESS 144
111111010 2438 2461 2418 2401 2300 2455 2463 2438  9.841588 0.276321 SUCCESS 145
111111100 2378 2444 2408 2417 2492 2428 2414 2447  3.922033 0.864089 SUCCESS 146
111111110 2387 2443 2399 2483 2520 2406 2473 2416  6.594379 0.580959 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2434 2358 2409 2507 2415 2348 2477 2407 10.266036 0.246848 SUCCESS   0
000000011 2436 2367 2344 2496 2464 2317 2452 2395 15.370218 0.052334 SUCCESS   1
000000101 2469 2481 2486 2433 2386 2494 2437 2394  5.292701 0.725883 SUCCESS   2
000000111 2455 2351 2389 2484 2457 2427 2396 2375  8.403344 0.395094 SUCCESS   3
000001001 2532 2459 2464 2448 2371 2457 2445 2449  6.077267 0.638577 SUCCESS   4
000001011 2429 2457 2456 2417 2398 2491 2479 2391  4.026122 0.854759 SUCCESS   5
000001101 2402 2398 2482 2472 2428 2428 2501 2409  4.652488 0.793990 SUCCESS   6
000001111 2441 2416 2402 2451 2473 2466 2413 2348  5.686209 0.682334 SUCCESS   7
000010001 2364 2478 2566 2387 2523 2407 2347 2464 18.251141 0.019420 SUCCESS   8
000010011 2476 2466 2510 2456 2413 2490 2473 2416  4.887782 0.769500 SUCCESS   9
000010101 2409 2406 2439 2444 2406 2448 2460 2513  3.848831 0.870498 SUCCESS  10
000010111 2486 2424 2413 2436 2439 2437 2421 2464  1.728337 0.988238 SUCCESS  11
000011001 2454 2450 2439 2460 2432 2401 2374 2364  5.437993 0.709900 SUCCESS  12
000011011 2457 2404 2423 2476 2483 2504 2400 2390  5.585283 0.693574 SUCCESS  13
000011101 2450 2378 2453 2464 2454 2402 2384 2407  4.628762 0.796417 SUCCESS  14
000011111 2384 2449 2423 2521 2494 2525 2514 2406 11.146827 0.193518 SUCCESS  15
000100011 2389 2433 2588 2385 2494 2483 2444 2437 13.563517 0.093876 SUCCESS  16
000100101 2503 2513 2475 2399 2420 2448 2404 2445  5.830719 0.666187 SUCCESS  17
000100111 2435 2486 2492 2423 2382 2442 2467 2436  3.873536 0.868349 SUCCESS  18
000101001 2441 2531 2415 2528 2457 2419 2318 2391 14.716964 0.064888 SUCCESS  19
000101011 2362 2485 2489 2510 2428 2448 2492 2507  9.433981 0.307018 SUCCESS  20
000101101 2343 2407 2373 2411 2463 2420 2450 2461  7.561386 0.477443 SUCCESS  21
000101111 2407 2397 2375 2433 2518 2438 2435 2499  7.147913 0.520761 SUCCESS  22
000110011 2507 2483 2422 2434 2422 2431 2414 2401  3.953728 0.861274 SUCCESS  23
000110101 2358 2497 2397 2475 2472 2410 2541 2434 10.610941 0.224733 SUCCESS  24
000110111 2476 2379 2473 2557 2405 2551 2416 2373 16.148296 0.040306 SUCCESS  25
000111001 2500 2417 2406 2470 2449 2489 2476 2427  4.164820 0.841955 SUCCESS  26
000111011 2440 2397 2485 2464 2423 2432 2433 2475  2.547008 0.959503 SUCCESS  27
000111101 2426 2418 2414 2327 2389 2492 2456 2395  9.443990 0.306236 SUCCESS  28
000111111 2367 2402 2467 2551 2502 2501 2504 2346 16.947412 0.030661 SUCCESS  29
001000011 2450 2497 2501 2499 2460 2423 2478 2386  6.410732 0.601325 SUCCESS  30
001000101 2447 2390 2421 2464 2520 2443 2460 2483  5.024308 0.754975 SUCCESS  31
001000111 2412 2416 2426 2510 2355 2404 2428 2408  7.036369 0.532714 SUCCESS  32
001001011 2444 2493 2422 2453 2407 2422 2360 2426  4.915015 0.766620 SUCCESS  33
001001101 2441 2428 2466 2388 2519 2436 2418 2491  5.378931 0.716413 SUCCESS  34
001001111 2443 2426 2493 2453 2381 2371 2449 2462  5.135812 0.742967 SUCCESS  35
001010011 2398 2553 2420 2528 2350 2423 2346 2390 18.102858 0.020468 SUCCESS  36
001010101 2455 2419 2459 2484 2460 2507 2491 2498  5.562246 0.696134 SUCCESS  37
001010111 2407 2504 2517 2461 2412 2440 2522 2511  9.919331 0.270734 SUCCESS  38
001011011 2304 2424 2449 2390 2417 2446 2389 2400 11.418517 0.179094 SUCCESS  39
001011101 2494 2450 2400 2459 2408 2408 2409 2388  4.658101 0.793415 SUCCESS  40
001011111 2395 2490 2454 2393 2510 2456 2505 2416  7.044366 0.531854 SUCCESS  41
001100101 2462 2456 2446 2367 2476 2465 2468 2459  3.798918 0.874795 SUCCESS  42
001100111 2413 2484 2441 2429 2447 2393 2446 2435  2.207505 0.973980 SUCCESS  43
001101011 2478 2406 2406 2406 2500 2418 2494 2448  5.037972 0.753510 SUCCESS  44
001101101 2472 2483 2420 2484 2509 2477 2427 2531  8.057036 0.427919 SUCCESS  45
001101111 2431 2421 2547 2479 2389 2557 2399 2376 14.944751 0.060229 SUCCESS  46
001110101 2449 2448 2414 2448 2420 2437 2394 2435  1.550225 0.991842 SUCCESS  47
001110111 2430 2454 2529 2496 2425 2443 2401 2439  5.446109 0.709003 SUCCESS  48
001111011 2394 2384 2433 2397 2360 2465 2456 2465  6.580888 0.582450 SUCCESS  49
001111101 2405 2441 2412 2464 2416 2377 2444 2418  3.408058 0.906207 SUCCESS  50
001111111 2433 2428 2486 2485 2468 2486 2481 2441  3.562445 0.894290 SUCCESS  51
010000011 2500 2489 2454 2416 2413 2477 2509 2389  6.734295 0.565553 SUCCESS  52
010000111 2492 2467 2450 2514 2370 2436 2442 2442  5.799924 0.669632 SUCCESS  53
010001011 2490 2365 2467 2423 2482 2421 2403 2542  9.682250 0.288040 SUCCESS  54
010001111 2426 2441 2410 2485 2482 2401 2513 2402  5.543353 0.698232 SUCCESS  55
010010011 2414 2394 2512 2446 2454 2403 2476 2526  7.622804 0.471155 SUCCESS  56
010010111 2491 2464 2429 2492 2392 2405 2391 2436  5.092095 0.747689 SUCCESS  57
010011011 2403 2399 2509 2398 2559 2429 2397 2467 11.157882 0.192913 SUCCESS  58
010011111 2473 2392 2418 2460 2414 2374 2407 2421  4.754499 0.783464 SUCCESS  59
010100011 2507 2412 2358 2427 2564 2458 2492 2435 12.811931 0.118486 SUCCESS  60
010100111 2465 2528 2461 2442 2425 2417 2348 2462  7.818181 0.451429 SUCCESS  61
010101011 2458 2358 2452 2437 2444 2453 2471 2435  3.567635 0.893878 SUCCESS  62
010101111 2452 2489 2549 2439 2395 2441 2488 2499  9.154692 0.329415 SUCCESS  63
010110011 2408 2377 2479 2421 2426 2414 2392 2447  4.469410 0.812486 SUCCESS  64
010110111 2352 2471 2394 2443 2448 2512 2387 2388  9.301241 0.317524 SUCCESS  65
010111011 2498 2471 2402 2415 2341 2428 2504 2411  9.079411 0.335641 SUCCESS  66
010111111 2424 2436 2480 2401 2435 2416 2463 2439  1.953861 0.982394 SUCCESS  67
011000111 2481 2433 2462 2312 2441 2477 2533 2491 13.102977 0.108355 SUCCESS  68
011001111 2448 2481 2362 2461 2409 2468 2503 2461  6.031934 0.643655 SUCCESS  69
011010111 2456 2459 2414 2382 2519 2472 2479 2465  5.818234 0.667584 SUCCESS  70
011011111 2361 2467 2483 2438 2389 2547 2436 2479 10.254002 0.247649 SUCCESS  71
011101111 2379 2451 2446 2463 2380 2370 2407 2441  6.152256 0.630181 SUCCESS  72
011111111 2404 2444 2425 2418 2492 2482 2507 2492  5.633489 0.688210 SUCCESS  73
100000000 2434 2358 2409 2507 2415 2348 2477 2407 10.266036 0.246848 SUCCESS  74
100010000 2502 2460 2504 2448 2424 2403 2445 2494  5.312984 0.723660 SUCCESS  75
100100000 2500 2467 2475 2448 2395 2449 2410 2458  3.700905 0.883051 SUCCESS  76
100101000 2548 2410 2429 2383 2357 2488 2421 2491 11.898691 0.155782 SUCCESS  77
100110000 2358 2459 2429 2427 2442 2491 2451 2464  4.528869 0.806538 SUCCESS  78
100111000 2430 2495 2429 2484 2483 2493 2415 2441  4.263905 0.832563 SUCCESS  79
101000000 2529 2473 2446 2440 2380 2439 2406 2455  5.893197 0.659194 SUCCESS  80
101000100 2439 2462 2377 2392 2385 2461 2485 2468  5.588302 0.693238 SUCCESS  81
101001000 2438 2431 2449 2423 2483 2399 2497 2412  3.389377 0.907603 SUCCESS  82
101001100 2390 2485 2472 2405 2510 2426 2533 2469  8.855768 0.354609 SUCCESS  83
101010000 2456 2432 2488 2419 2443 2473 2434 2463  1.905960 0.983760 SUCCESS  84
101010100 2416 2408 2394 2441 2452 2436 2480 2452  2.436298 0.964635 SUCCESS  85
101011000 2428 2458 2497 2497 2484 2363 2485 2449  7.016060 0.534901 SUCCESS  86
101011100 2420 2453 2455 2458 2510 2439 2500 2486  4.741444 0.784820 SUCCESS  87
101100000 2438 2359 2372 2497 2466 2307 2388 2422 15.506295 0.050017 SUCCESS  88
101100100 2462 2397 2463 2463 2510 2382 2495 2499  7.522845 0.481409 SUCCESS  89
101101000 2488 2470 2401 2556 2436 2392 2448 2475  9.066225 0.336740 SUCCESS  90
101101100 2324 2379 2367 2413 2410 2404 2462 2435 11.380612 0.181052 SUCCESS  91
101110000 2432 2556 2508 2474 2414 2456 2418 2408  9.045041 0.338511 SUCCESS  92
101110100 2412 2540 2413 2490 2418 2366 2462 2382 10.142326 0.255178 SUCCESS  93
101111000 2469 2444 2486 2420 2424 2409 2300 2445 10.410586 0.237382 SUCCESS  94
101111100 2392 2386 2494 2456 2432 2530 2450 2454  7.058996 0.530281 SUCCESS  95
110000000 2412 2401 2377 2488 2415 2389 2453 2395  6.160928 0.629211 SUCCESS  96
110000010 2428 2509 2440 2461 2446 2477 2442 2447  2.736003 0.949817 SUCCESS  97
110000100 2419 2528 2554 2463 2531 2487 2517 2458 15.782897 0.045595 SUCCESS  98
110001000 2418 2420 2532 2447 2423 2440 2442 2493  5.190028 0.737086 SUCCESS  99
110001010 2438 2571 2507 2425 2487 2464 2408 2471 11.001099 0.201637 SUCCESS 100
110010000 2462 2446 2510 2512 2416 2441 2492 2497  6.964015 0.540520 SUCCESS 101
110010010 2446 2401 2385 2510 2450 2347 2364 2462 10.565225 0.227571 SUCCESS 102
110010100 2493 2459 2456 2339 2372 2473 2464 2498  9.829461 0.277200 SUCCESS 103
110011000 2399 2365 2521 2398 2450 2468 2419 2509  9.196727 0.325973 SUCCESS 104
110011010 2451 2420 2451 2355 2555 2382 2399 2367 13.502628 0.095686 SUCCESS 105
110100000 2441 2481 2375 2451 2398 2392 2392 2316 12.097192 0.146920 SUCCESS 106
110100010 2447 2433 2399 2435 2437 2398 2449 2512  3.764402 0.877730 SUCCESS 107
110100100 2426 2458 2505 2446 2429 2485 2433 2413  3.182535 0.922385 SUCCESS 108
110101000 2425 2417 2435 2459 2498 2535 2432 2405  6.183117 0.626728 SUCCESS 109
110101010 2419 2347 2387 2394 2436 2382 2460 2389  9.008235 0.341602 SUCCESS 110
110101100 2419 2492 2462 2486 2449 2391 2447 2419  3.646636 0.887516 SUCCESS 111
110110000 2440 2346 2436 2412 2473 2401 2500 2399  7.565318 0.477039 SUCCESS 112
110110010 2455 2365 2443 2404 2509 2438 2478 2479  6.252744 0.618944 SUCCESS 113
110110100 2462 2457 2450 2481 2409 2440 2415 2460  1.866373 0.984838 SUCCESS 114
110111000 2397 2469 2428 2494 2455 2523 2350 2413  9.186559 0.326803 SUCCESS 115
110111010 2401 2531 2413 2464 2410 2451 2414 2299 14.015543 0.081361 SUCCESS 116
110111100 2519 2384 2484 2436 2484 2424 2360 2448  8.451153 0.390685 SUCCESS 117
111000000 2494 2461 2382 2447 2401 2500 2433 2403  5.643961 0.687043 SUCCESS 118
111000010 2399 2470 2473 2596 2534 2444 2434 2473 15.741669 0.046230 SUCCESS 119
111000100 2462 2392 2512 2403 2362 2455 2469 2417  7.273928 0.507387 SUCCESS 120
111000110 2452 2522 2325 2397 2442 2456 2424 2431  9.639248 0.291264 SUCCESS 121
111001000 2517 2434 2467 2544 2398 2419 2406 2477  9.261588 0.320712 SUCCESS 122
111001010 2516 2369 2554 2419 2390 2374 2481 2438 13.875971 0.085056 SUCCESS 123
111001100 2418 2367 2467 2383 2479 2461 2416 2516  7.692365 0.464083 SUCCESS 124
111010000 2452 2476 2317 2440 2305 2415 2393 2383 17.724245 0.023392 SUCCESS 125
111010010 2415 2512 2508 2472 2411 2487 2487 2428  6.913916 0.545948 SUCCESS 126
111010100 2471 2463 2461 2443 2474 2425 2372 2389  4.500470 0.809386 SUCCESS 127
111010110 2451 2504 2399 2509 2389 2480 2452 2358  9.186069 0.326843 SUCCESS 128
111011000 2478 2415 2465 2399 2425 2404 2477 2424  3.231839 0.918977 SUCCESS 129
111011010 2339 2385 2503 2438 2370 2432 2420 2484 10.561544 0.227801 SUCCESS 130
111011100 2445 2399 2451 2439 2429 2495 2335 2433  6.916326 0.545687 SUCCESS 131
111100000 2464 2450 2435 2455 2389 2500 2456 2405  3.613418 0.890211 SUCCESS 132
111100010 2471 2485 2513 2426 2389 2423 2338 2404  9.877348 0.273740 SUCCESS 133
111100100 2416 2453 2511 2480 2405 2372 2358 2465  8.798017 0.359621 SUCCESS 134
111100110 2445 2418 2414 2356 2490 2448 2415 2442  4.959170 0.761931 SUCCESS 135
111101000 2434 2495 2319 2482 2303 2399 2464 2454 17.445035 0.025795 SUCCESS 136
111101010 2487 2430 2482 2380 2443 2410 2541 2426  7.954244 0.437952 SUCCESS 137
111101100 2482 2388 2405 2470 2436 2456 2519 2426  5.569118 0.695371 SUCCESS 138
111101110 2458 2436 2399 2458 2491 2521 2387 2317 12.543882 0.128537 SUCCESS 139
111110000 2504 2429 2489 2512 2448 2489 2543 2465 10.387470 0.238877 SUCCESS 140
111110010 2363 2417 2486 2423 2372 2451 2378 2438  7.628325 0.470592 SUCCESS 141
111110100 2333 2477 2359 2420 2362 2439 2565 2508 19.610279 0.011915 SUCCESS 142
111110110 2331 2380 2434 2497 2471 2366 2457 2454 11.042896 0.199280 SUCCESS 143
111111000 2503 2494 2487 2506 2427 2457 2430 2467  5.954377 0.652343 SUCCESS 144
111111010 2337 2388 2417 2461 2472 2432 2538 2483 11.361573 0.182041 SUCCESS 145
111111100 2412 2448 2519 2431 2413 2485 2415 2447  4.437662 0.815637 SUCCESS 146
111111110 2404 2444 2425 2418 2492 2482 2507 2492  5.633489 0.688210 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2476 2349 2388 2482 2437 2472 2416 2387  7.961870 0.437204 SUCCESS   0
000000011 2437 2377 2400 2462 2451 2459 2471 2440  3.213277 0.920269 SUCCESS   1
000000101 2503 2489 2420 2422 2371 2519 2434 2380  9.192477 0.326320 SUCCESS   2
000000111 2425 2401 2310 2428 2405 2440 2472 2470  9.500523 0.301845 SUCCESS   3
000001001 2394 2398 2452 2353 2429 2394 2456 2453  6.270988 0.616906 SUCCESS   4
000001011 2506 2465 2455 2392 2468 2484 2499 2352  8.977321 0.344213 SUCCESS   5
000001101 2434 2397 2512 2517 2468 2492 2470 2478  7.691981 0.464122 SUCCESS   6
000001111 2462 2446 2385 2418 2357 2409 2441 2494  6.402391 0.602254 SUCCESS   7
000010001 2404 2405 2417 2426 2471 2501 2362 2436  6.065232 0.639925 SUCCESS   8
000010011 2442 2483 2437 2431 2442 2409 2443 2529  4.485139 0.810918 SUCCESS   9
000010101 2498 2361 2447 2456 2457 2476 2476 2323 11.255895 0.187617 SUCCESS  10
000010111 2534 2359 2390 2474 2472 2461 2461 2401  9.492884 0.302436 SUCCESS  11
000011001 2421 2494 2441 2481 2446 2343 2401 2462  6.995035 0.537168 SUCCESS  12
000011011 2439 2490 2421 2483 2445 2449 2467 2482  2.919742 0.939293 SUCCESS  13
000011101 2342 2363 2415 2389 2436 2433 2433 2431  8.364314 0.398716 SUCCESS  14
000011111 2378 2479 2382 2438 2406 2368 2433 2479  7.242642 0.510694 SUCCESS  15
000100011 2395 2380 2410 2477 2461 2546 2347 2393 13.029114 0.110852 SUCCESS  16
000100101 2378 2389 2485 2474 2449 2399 2443 2376  6.720076 0.567113 SUCCESS  17
000100111 2394 2394 2475 2478 2479 2455 2517 2524  8.940369 0.347351 SUCCESS  18
000101001 2447 2468 2384 2443 2346 2510 2432 2473  8.019913 0.431527 SUCCESS  19
000101011 2447 2464 2501 2485 2527 2432 2534 2380 10.913731 0.206635 SUCCESS  20
000101101 2521 2392 2466 2532 2428 2467 2334 2403 13.317763 0.101374 SUCCESS  21
000101111 2472 2396 2374 2467 2425 2455 2433 2417  3.945930 0.861969 SUCCESS  22
000110011 2462 2422 2436 2482 2461 2432 2409 2476  2.202474 0.974167 SUCCESS  23
000110101 2582 2389 2491 2381 2466 2517 2492 2394 16.842236 0.031794 SUCCESS  24
000110111 2454 2453 2422 2480 2422 2500 2479 2480  3.760748 0.878039 SUCCESS  25
000111001 2375 2473 2437 2428 2406 2450 2524 2501  7.333532 0.501111 SUCCESS  26
000111011 2290 2394 2336 2308 2461 2444 2452 2456 23.209569 0.003105 FAILURE  27
000111101 2480 2445 2473 2345 2360 2488 2508 2449 10.627941 0.223684 SUCCESS  28
000111111 2443 2473 2416 2440 2443 2405 2447 2387  2.527188 0.960451 SUCCESS  29
001000011 2479 2490 2432 2367 2429 2421 2511 2495  7.493917 0.484396 SUCCESS  30
001000101 2407 2591 2480 2461 2379 2480 2388 2380 15.863592 0.044375 SUCCESS  31
001000111 2360 2362 2390 2493 2426 2402 2359 2464 11.574466 0.171224 SUCCESS  32
001001011 2439 2425 2464 2461 2471 2371 2442 2437  2.974686 0.935936 SUCCESS  33
001001101 2480 2403 2413 2399 2490 2442 2413 2433  3.731316 0.880515 SUCCESS  34
001001111 2417 2349 2482 2459 2463 2477 2444 2429  5.501516 0.702872 SUCCESS  35
001010011 2461 2506 2470 2427 2363 2469 2387 2470  6.892508 0.548274 SUCCESS  36
001010101 2606 2408 2484 2455 2343 2470 2373 2356 22.318782 0.004358 FAILURE  37
001010111 2430 2515 2406 2457 2441 2431 2477 2393  4.559519 0.803449 SUCCESS  38
001011011 2465 2391 2484 2504 2420 2373 2417 2465  6.405529 0.601904 SUCCESS  39
001011101 2384 2497 2539 2418 2514 2406 2521 2462 12.603169 0.126252 SUCCESS  40
001011111 2433 2393 2351 2488 2445 2456 2469 2347  9.597450 0.294423 SUCCESS  41
001100101 2437 2444 2431 2493 2368 2470 2346 2482  8.367743 0.398397 SUCCESS  42
001100111 2466 2440 2392 2495 2505 2388 2472 2414  6.145225 0.630968 SUCCESS  43
001101011 2526 2458 2501 2424 2428 2536 2372 2422 10.850803 0.210297 SUCCESS  44
001101101 2397 2502 2522 2524 2414 2407 2466 2488 10.031259 0.262839 SUCCESS  45
001101111 2497 2435 2389 2466 2460 2459 2552 2568 14.999682 0.059152 SUCCESS  46
001110101 2441 2441 2453 2414 2500 2440 2422 2466  2.247104 0.972484 SUCCESS  47
001110111 2309 2419 2353 2320 2426 2478 2436 2449 17.896241 0.022018 SUCCESS  48
001111011 2417 2457 2422 2354 2430 2460 2497 2403  5.886418 0.659953 SUCCESS  49
001111101 2376 2465 2348 2526 2468 2427 2331 2405 14.887410 0.061372 SUCCESS  50
001111111 2480 2421 2451 2393 2455 2456 2545 2459  6.687202 0.570726 SUCCESS  51
010000011 2343 2501 2447 2420 2406 2383 2372 2499 11.235175 0.188727 SUCCESS  52
010000111 2451 2464 2447 2433 2425 2464 2552 2502  7.368908 0.497403 SUCCESS  53
010001011 2431 2445 2503 2414 2341 2380 2375 2459  9.842568 0.276250 SUCCESS  54
010001111 2454 2512 2407 2486 2426 2341 2412 2437  8.268129 0.407727 SUCCESS  55
010010011 2545 2397 2403 2403 2479 2401 2395 2484  9.603103 0.293995 SUCCESS  56
010010111 2380 2405 2503 2428 2486 2388 2402 2490  7.551085 0.478501 SUCCESS  57
010011011 2512 2383 2477 2470 2490 2484 2475 2458  6.806451 0.557652 SUCCESS  58
010011111 2463 2424 2439 2516 2475 2436 2415 2454  3.540070 0.896058 SUCCESS  59
010100011 2470 2471 2480 2476 2434 2388 2425 2318  9.652315 0.290282 SUCCESS  60
010100111 2439 2520 2434 2456 2415 2422 2412 2499  4.960427 0.761797 SUCCESS  61
010101011 2592 2438 2475 2412 2414 2488 2401 2398 13.186599 0.105589 SUCCESS  62
010101111 2386 2479 2502 2417 2462 2419 2482 2326 10.439661 0.235513 SUCCESS  63
010110011 2525 2436 2449 2430 2458 2445 2457 2386  4.578955 0.801483 SUCCESS  64
010110111 2461 2392 2505 2503 2414 2457 2420 2428  5.209663 0.734950 SUCCESS  65
010111011 2422 2442 2493 2395 2512 2505 2494 2456  7.289193 0.505777 SUCCESS  66
010111111 2385 2353 2425 2484 2422 2474 2436 2327 11.706200 0.164802 SUCCESS  67
011000111 2377 2526 2433 2386 2499 2496 2469 2457  9.214918 0.324492 SUCCESS  68
011001111 2464 2429 2396 2447 2500 2421 2522 2370  7.711509 0.462146 SUCCESS  69
011010111 2464 2459 2473 2409 2478 2371 2414 2488  5.121010 0.744568 SUCCESS  70
011011111 2535 2510 2411 2535 2450 2471 2481 2516 13.236446 0.103969 SUCCESS  71
011101111 2398 2362 2415 2297 2429 2421 2369 2506 16.825859 0.031974 SUCCESS  72
011111111 2489 2408 2441 2446 2420 2470 2488 2381  4.447870 0.814626 SUCCESS  73
100000000 2476 2349 2388 2482 2437 2472 2416 2387  7.961870 0.437204 SUCCESS  74
100010000 2402 2429 2452 2431 2348 2390 2438 2454  5.702123 0.680558 SUCCESS  75
100100000 2407 2488 2500 2386 2435 2551 2425 2471  9.769234 0.281598 SUCCESS  76
100101000 2430 2395 2400 2551 2438 2436 2328 2436 12.259350 0.140002 SUCCESS  77
100110000 2565 2468 2444 2412 2417 2483 2426 2490  9.229138 0.323337 SUCCESS  78
100111000 2465 2324 2373 2339 2428 2400 2446 2498 14.666269 0.065969 SUCCESS  79
101000000 2475 2440 2353 2463 2466 2406 2444 2422  4.936702 0.764320 SUCCESS  80
101000100 2368 2410 2380 2511 2348 2508 2406 2425 12.568336 0.127590 SUCCESS  81
101001000 2452 2438 2510 2382 2430 2538 2456 2462  7.820829 0.451165 SUCCESS  82
101001100 2469 2461 2423 2509 2400 2470 2366 2489  7.006660 0.535914 SUCCESS  83
101010000 2464 2536 2429 2488 2485 2394 2382 2366 10.653837 0.222095 SUCCESS  84
101010100 2495 2459 2527 2479 2325 2438 2356 2345 17.823026 0.022593 SUCCESS  85
101011000 2509 2446 2419 2410 2442 2521 2519 2473  8.235824 0.410780 SUCCESS  86
101011100 2489 2479 2439 2417 2476 2416 2473 2401  3.709113 0.882369 SUCCESS  87
101100000 2507 2409 2438 2440 2456 2503 2452 2478  4.587944 0.800571 SUCCESS  88
101100100 2471 2448 2434 2477 2499 2473 2407 2339  7.722432 0.461043 SUCCESS  89
101101000 2434 2449 2490 2425 2363 2479 2430 2459  4.551642 0.804245 SUCCESS  90
101101100 2473 2491 2483 2484 2388 2376 2459 2335 10.914803 0.206573 SUCCESS  91
101110000 2415 2499 2475 2360 2354 2547 2420 2380 14.737750 0.064450 SUCCESS  92
101110100 2462 2389 2476 2438 2480 2455 2381 2397  4.945162 0.763421 SUCCESS  93
101111000 2396 2402 2498 2468 2413 2473 2486 2502  6.352160 0.607848 SUCCESS  94
101111100 2423 2437 2334 2436 2438 2432 2489 2475  6.530921 0.587980 SUCCESS  95
110000000 2441 2401 2389 2450 2424 2483 2470 2395  4.005694 0.856609 SUCCESS  96
110000010 2470 2483 2496 2424 2483 2498 2405 2404  5.716435 0.678961 SUCCESS  97
110000100 2461 2355 2468 2423 2443 2504 2441 2506  7.198607 0.515364 SUCCESS  98
110001000 2474 2368 2513 2478 2408 2422 2443 2432  6.142922 0.631226 SUCCESS  99
110001010 2449 2476 2468 2468 2435 2450 2492 2405  2.826866 0.944748 SUCCESS 100
110010000 2383 2532 2414 2400 2455 2505 2452 2406  8.337504 0.401215 SUCCESS 101
110010010 2516 2534 2353 2448 2465 2387 2386 2460 12.256610 0.140117 SUCCESS 102
110010100 2442 2373 2474 2498 2394 2448 2395 2521  8.356807 0.399415 SUCCESS 103
110011000 2500 2454 2467 2473 2360 2474 2438 2496  6.749242 0.563913 SUCCESS 104
110011010 2537 2434 2407 2504 2463 2405 2348 2415 10.806874 0.212884 SUCCESS 105
110100000 2468 2351 2374 2365 2470 2389 2392 2437 10.709258 0.218723 SUCCESS 106
110100010 2499 2370 2449 2415 2410 2445 2444 2527  7.415869 0.492498 SUCCESS 107
110100100 2470 2443 2518 2514 2462 2445 2389 2407  6.917412 0.545569 SUCCESS 108
110101000 2479 2435 2461 2473 2477 2380 2471 2385  5.055382 0.751641 SUCCESS 109
110101010 2481 2489 2518 2436 2396 2456 2384 2387  7.735897 0.459685 SUCCESS 110
110101100 2492 2539 2386 2442 2482 2548 2462 2477 12.652752 0.124369 SUCCESS 111
110110000 2462 2382 2440 2395 2430 2442 2430 2413  3.038501 0.931918 SUCCESS 112
110110010 2464 2545 2498 2471 2425 2443 2473 2345 10.968304 0.203502 SUCCESS 113
110110100 2388 2516 2434 2459 2450 2462 2462 2489  5.072183 0.749834 SUCCESS 114
110111000 2350 2482 2445 2406 2421 2456 2471 2382  6.905801 0.546829 SUCCESS 115
110111010 2399 2396 2488 2457 2408 2472 2376 2398  6.136355 0.631961 SUCCESS 116
110111100 2427 2391 2396 2452 2415 2507 2518 2496  7.952828 0.438092 SUCCESS 117
111000000 2410 2467 2393 2426 2375 2429 2514 2535  9.666309 0.289232 SUCCESS 118
111000010 2534 2297 2389 2387 2411 2496 2488 2484 18.227019 0.019587 SUCCESS 119
111000100 2448 2349 2434 2469 2508 2387 2481 2459  7.910183 0.442293 SUCCESS 120
111000110 2399 2456 2492 2409 2410 2494 2393 2431  5.009268 0.756585 SUCCESS 121
111001000 2366 2479 2448 2400 2514 2459 2471 2409  6.932531 0.543929 SUCCESS 122
111001010 2392 2351 2443 2460 2448 2393 2432 2471  6.062266 0.640257 SUCCESS 123
111001100 2474 2479 2392 2536 2366 2464 2452 2415  8.842846 0.355726 SUCCESS 124
111010000 2432 2387 2371 2337 2522 2394 2427 2462 11.978909 0.152147 SUCCESS 125
111010010 2400 2453 2541 2486 2411 2422 2416 2435  6.670679 0.572544 SUCCESS 126
111010100 2420 2468 2484 2411 2481 2381 2457 2453  4.024467 0.854909 SUCCESS 127
111010110 2393 2502 2389 2449 2409 2540 2469 2424  8.751056 0.363730 SUCCESS 128
111011000 2432 2433 2501 2410 2434 2444 2450 2424  2.175624 0.975149 SUCCESS 129
111011010 2470 2413 2419 2437 2529 2434 2432 2513  6.393667 0.603225 SUCCESS 130
111011100 2335 2447 2334 2388 2346 2428 2420 2409 15.471952 0.050593 SUCCESS 131
111100000 2397 2425 2446 2473 2470 2410 2490 2514  5.379911 0.716305 SUCCESS 132
111100010 2449 2394 2403 2455 2482 2345 2473 2434  6.760403 0.562690 SUCCESS 133
111100100 2464 2476 2371 2400 2475 2477 2488 2459  5.616621 0.690088 SUCCESS 134
111100110 2477 2509 2382 2405 2349 2462 2491 2432  9.405675 0.309237 SUCCESS 135
111101000 2466 2382 2416 2406 2469 2409 2456 2484  4.181793 0.840360 SUCCESS 136
111101010 2397 2464 2480 2410 2470 2465 2490 2399  4.445751 0.814836 SUCCESS 137
111101100 2451 2431 2530 2384 2442 2453 2415 2499  6.565172 0.584188 SUCCESS 138
111101110 2466 2443 2409 2417 2370 2381 2408 2384  6.526393 0.588482 SUCCESS 139
111110000 2414 2456 2408 2479 2400 2458 2457 2497  3.735976 0.880124 SUCCESS 140
111110010 2427 2361 2352 2416 2478 2468 2489 2377 10.068965 0.260219 SUCCESS 141
111110100 2431 2401 2421 2465 2438 2414 2439 2475  1.952934 0.982421 SUCCESS 142
111110110 2523 2436 2487 2429 2498 2407 2357 2524 11.547603 0.172559 SUCCESS 143
111111000 2438 2481 2461 2465 2455 2461 2405 2360  4.677616 0.791411 SUCCESS 144
111111010 2498 2414 2480 2474 2473 2443 2436 2400  3.920153 0.864255 SUCCESS 145
111111100 2439 2462 2380 2397 2473 2428 2483 2368  6.128676 0.632821 SUCCESS 146
111111110 2489 2408 2441 2446 2420 2470 2488 2381  4.447870 0.814626 SUCCESS 147

		  NONPERIODIC TEMPLATES TEST
-------------------------------------------------------------------------------------
		  COMPUTATIONAL INFORMATION
-------------------------------------------------------------------------------------
	LAMBDA = 2441.390625	M = 1250000	N = 8	m = 9	n = 10000000
-------------------------------------------------------------------------------------
		F R E Q U E N C Y
Template   W_1  W_2  W_3  W_4  W_5  W_6  W_7  W_8    Chi^2   P_value Assignment Index
-------------------------------------------------------------------------------------
000000001 2415 2398 2537 2334 2464 2430 2388 2414 11.648661 0.167582 SUCCESS   0
000000011 2414 2357 2484 2373 2346 2424 2493 2385 12.544823 0.128500 SUCCESS   1
000000101 2479 2438 2512 2471 2504 2451 2366 2409  7.640214 0.469380 SUCCESS   2
000000111 2427 2387 2453 2329 2395 2337 2421 2388 13.662284 0.091004 SUCCESS   3
000001001 2383 2467 2457 2418 2515 2401 2415 2354  8.574771 0.379426 SUCCESS   4
000001011 2455 2410 2505 2464 2436 2487 2387 2455  4.652183 0.794022 SUCCESS   5
000001101 2478 2488 2471 2360 2415 2436 2485 2418  6.011095 0.645989 SUCCESS   6
000001111 2474 2410 2418 2401 2444 2485 2435 2520  5.234884 0.732202 SUCCESS   7
000010001 2418 2451 2386 2466 2518 2416 2510 2519  9.133138 0.331190 SUCCESS   8
000010011 2304 2431 2433 2487 2538 2445 2401 2472 14.001986 0.081714 SUCCESS   9
000010101 2516 2463 2487 2421 2558 2442 2464 2410 10.008791 0.264409 SUCCESS  10
000010111 2390 2406 2371 2476 2538 2470 2345 2553 17.771060 0.023010 SUCCESS  11
000011001 2438 2407 2362 2461 2429 2515 2454 2440  5.767976 0.673204 SUCCESS  12
000011011 2377 2435 2437 2446 2485 2414 2440 2459  3.046829 0.931384 SUCCESS  13
000011101 2487 2437 2466 2384 2476 2393 2389 2473  5.627226 0.688907 SUCCESS  14
000011111 2450 2453 2424 2374 2497 2501 2501 2408  6.934041 0.543766 SUCCESS  15
000100011 2394 2400 2431 2432 2469 2452 2463 2482  3.027579 0.932615 SUCCESS  16
000100101 2399 2458 2391 2508 2501 2436 2488 2451  6.310932 0.612447 SUCCESS  17
000100111 2272 2380 2458 2465 2493 2486 2450 2464 16.325627 0.037950 SUCCESS  18
000101001 2481 2360 2409 2430 2435 2440 2522 2425  6.855583 0.552292 SUCCESS  19
000101011 2470 2463 2511 2489 2487 2469 2389 2345  9.861276 0.274898 SUCCESS  20
000101101 2431 2469 2464 2469 2435 2477 2453 2411  1.911137 0.983616 SUCCESS  21
000101111 2478 2484 2395 2459 2440 2352 2389 2510  8.923541 0.348787 SUCCESS  22
000110011 2393 2408 2416 2446 2411 2414 2428 2506  4.300235 0.829070 SUCCESS  23
000110101 2497 2490 2443 2366 2410 2381 2487 2391  8.640029 0.373566 SUCCESS  24
000110111 2398 2380 2411 2421 2449 2389 2473 2443  4.573632 0.802022 SUCCESS  25
000111001 2407 2394 2451 2470 2381 2468 2478 2358  7.197575 0.515474 SUCCESS  26
000111011 2437 2405 2445 2447 2441 2446 2409 2470  1.388398 0.994410 SUCCESS  27
000111101 2417 2482 2475 2460 2348 2481 2462 2492  7.200938 0.515117 SUCCESS  28
000111111 2421 2493 2440 2399 2443 2479 2499 2423  4.216468 0.837084 SUCCESS  29
001000011 2392 2367 2495 2457 2529 2375 2474 2394 11.220135 0.189535 SUCCESS  30
001000101 2450 2555 2427 2468 2554 2368 2490 2500 15.998239 0.042405 SUCCESS  31
001000111 2344 2422 2406 2482 2375 2497 2479 2445  9.189406 0.326571 SUCCESS  32
001001011 2500 2417 2490 2469 2467 2376 2417 2430  5.427825 0.711023 SUCCESS  33
001001101 2466 2400 2399 2433 2480 2376 2490 2470  5.564510 0.695883 SUCCESS  34
001001111 2329 2407 2581 2450 2404 2510 2409 2443 17.173902 0.028348 SUCCESS  35
001010011 2473 2390 2346 2547 2466 2454 2494 2398 12.416822 0.133553 SUCCESS  36
001010101 2468 2379 2458 2430 2505 2452 2470 2505  5.943891 0.653517 SUCCESS  37
001010111 2489 2457 2455 2460 2535 2368 2487 2414  8.482319 0.387827 SUCCESS  38
001011011 2519 2488 2507 2447 2456 2522 2456 2401  8.934226 0.347875 SUCCESS  39
001011101 2418 2418 2449 2396 2440 2411 2371 2460  3.999047 0.857209 SUCCESS  40
001011111 2475 2418 2379 2366 2443 2425 2336 2429  9.653255 0.290211 SUCCESS  41
001100101 2469 2382 2377 2408 2530 2427 2391 2504 10.197018 0.251469 SUCCESS  42
001100111 2475 2431 2432 2491 2435 2344 2400 2471  6.737366 0.565216 SUCCESS  43
001101011 2448 2459 2431 2346 2431 2502 2565 2448 12.144642 0.144866 SUCCESS  44
001101101 2404 2450 2450 2452 2441 2457 2387 2448  2.077955 0.978528 SUCCESS  45
001101111 2441 2437 2497 2466 2451 2479 2455 2475  2.770386 0.947930 SUCCESS  46
001110101 2397 2435 2453 2477 2434 2455 2437 2515  3.851823 0.870239 SUCCESS  47
001110111 2456 2389 2409 2393 2509 2468 2410 2472  5.740862 0.676233 SUCCESS  48
001111011 2357 2471 2396 2441 2345 2450 2442 2494  9.402166 0.309513 SUCCESS  49
001111101 2567 2437 2453 2482 2470 2521 2470 2328 16.274311 0.038618 SUCCESS  50
001111111 2456 2433 2449 2405 2425 2439 2452 2361  3.607777 0.890666 SUCCESS  51
010000011 2393 2489 2486 2438 2505 2456 2432 2413  4.983848 0.759301 SUCCESS  52
010000111 2482 2421 2517 2439 2485 2483 2497 2337 10.765513 0.215343 SUCCESS  53
010001011 2436 2532 2401 2406 2419 2399 2485 2437  6.500060 0.591401 SUCCESS  54
010001111 2440 2582 2454 2439 2373 2524 2413 2456 13.751678 0.088472 SUCCESS  55
010010011 2444 2390 2496 2470 2397 2482 2349 2478  8.449789 0.390810 SUCCESS  56
010010111 2514 2406 2493 2378 2376 2427 2429 2465  7.795674 0.453680 SUCCESS  57
010011011 2561 2448 2322 2499 2454 2384 2520 2458 17.722431 0.023406 SUCCESS  58
010011111 2455 2469 2547 2453 2409 2513 2400 2363 11.130132 0.194434 SUCCESS  59
010100011 2455 2481 2438 2389 2341 2495 2513 2472  9.967815 0.267292 SUCCESS  60
010100111 2435 2431 2347 2498 2534 2449 2418 2490 10.086415 0.259013 SUCCESS  61
010101011 2413 2414 2473 2409 2482 2447 2457 2487  3.223697 0.919545 SUCCESS  62
010101111 2452 2460 2485 2518 2614 2384 2464 2413 18.062848 0.020760 SUCCESS  63
010110011 2363 2421 2445 2449 2433 2430 2436 2437  2.914949 0.939581 SUCCESS  64
010110111 2546 2449 2479 2404 2411 2491 2468 2358 10.532483 0.229621 SUCCESS  65
010111011 2500 2428 2473 2390 2384 2384 2402 2407  7.022799 0.534175 SUCCESS  66
010111111 2531 2481 2416 2397 2506 2435 2400 2390  8.805219 0.358993 SUCCESS  67
011000111 2334 2466 2436 2449 2374 2405 2463 2448  7.880950 0.445185 SUCCESS  68
011001111 2450 2417 2387 2478 2490 2366 2410 2439  5.933591 0.654671 SUCCESS  69
011010111 2476 2432 2422 2457 2497 2484 2495 2420  4.298156 0.829271 SUCCESS  70
011011111 2488 2487 2444 2396 2438 2525 2422 2428  5.879268 0.660754 SUCCESS  71
011101111 2478 2412 2370 2382 2428 2401 2439 2460  5.503714 0.702628 SUCCESS  72
011111111 2480 2478 2465 2349 2445 2409 2445 2450  5.538892 0.698727 SUCCESS  73
100000000 2415 2398 2537 2334 2464 2430 2388 2414 11.648661 0.167582 SUCCESS  74
100010000 2293 2536 2464 2502 2489 2424 2422 2467 16.419774 0.036751 SUCCESS  75
100100000 2377 2423 2554 2443 2529 2484 2381 2484 13.608770 0.092550 SUCCESS  76
100101000 2431 2537 2370 2378 2362 2519 2495 2368 16.501979 0.035734 SUCCESS  77
100110000 2375 2396 2378 2446 2437 2540 2393 2362 12.241967 0.140730 SUCCESS  78
100111000 2415 2486 2483 2481 2443 2435 2389 2469  4.040593 0.853443 SUCCESS  79
101000000 2463 2440 2425 2388 2442 2396 2462 2295 11.652434 0.167398 SUCCESS  80
101000100 2356 2540 2376 2485 2453 2499 2502 2432 12.883028 0.115938 SUCCESS  81
101001000 2476 2278 2392 2468 2407 2409 2434 2474 14.570613 0.068052 SUCCESS  82
101001100 2534 2351 2492 2418 2432 2440 2417 2387  9.955647 0.268153 SUCCESS  83
101010000 2490 2401 2451 2391 2466 2440 2483 2403  4.422476 0.817138 SUCCESS  84
101010100 2567 2527 2484 2455 2469 2462 2508 2508 14.899564 0.061128 SUCCESS  85
101011000 2513 2508 2426 2416 2410 2519 2410 2465  8.048669 0.428730 SUCCESS  86
101011100 2431 2356 2425 2369 2480 2413 2435 2435  6.476586 0.594006 SUCCESS  87
101100000 2520 2443 2416 2430 2416 2412 2456 2384  5.072169 0.749835 SUCCESS  88
101100100 2473 2394 2394 2429 2539 2426 2540 2504 12.308641 0.137955 SUCCESS  89
101101000 2484 2421 2492 2458 2412 2323 2404 2450  9.075307 0.335983 SUCCESS  90
101101100 2366 2395 2350 2518 2402 2459 2311 2508 19.216401 0.013744 SUCCESS  91
101110000 2387 2406 2391 2422 2468 2436 2367 2420  5.869776 0.661816 SUCCESS  92
101110100 2430 2421 2381 2469 2425 2438 2439 2416  2.493440 0.962036 SUCCESS  93
101111000 2453 2441 2447 2421 2476 2391 2395 2497  4.051820 0.852418 SUCCESS  94
101111100 2456 2489 2401 2434 2407 2356 2505 2444  7.072421 0.528840 SUCCESS  95
110000000 2396 2417 2483 2400 2435 2415 2382 2399  5.152322 0.741179 SUCCESS  96
110000010 2422 2392 2461 2476 2482 2449 2481 2387  4.504442 0.808988 SUCCESS  97
110000100 2346 2433 2382 2416 2472 2477 2435 2422  6.763210 0.562383 SUCCESS  98
110001000 2353 2464 2479 2501 2401 2435 2393 2501  8.837272 0.356209 SUCCESS  99
110001010 2433 2393 2496 2488 2402 2467 2443 2431  4.187817 0.839793 SUCCESS 100
110010000 2473 2431 2512 2403 2532 2455 2457 2469  7.188717 0.516415 SUCCESS 101
110010010 2558 2370 2482 2444 2411 2434 2392 2453 10.126796 0.256239 SUCCESS 102
110010100 2471 2480 2350 2502 2359 2438 2407 2428  9.555759 0.297599 SUCCESS 103
110011000 2428 2394 2470 2468 2467 2439 2383 2414  3.716832 0.881726 SUCCESS 104
110011010 2406 2439 2417 2367 2412 2527 2453 2319 13.004078 0.111709 SUCCESS 105
110100000 2423 2469 2423 2424 2473 2426 2422 2357  4.437887 0.815615 SUCCESS 106
110100010 2451 2464 2384 2421 2408 2470 2536 2432  6.475977 0.594073 SUCCESS 107
110100100 2417 2345 2460 2507 2425 2451 2327 2490 12.856615 0.116879 SUCCESS 108
110101000 2485 2414 2341 2351 2420 2447 2521 2372 13.787186 0.087484 SUCCESS 109
110101010 2512 2562 2499 2434 2446 2457 2495 2490 12.035323 0.149635 SUCCESS 110
110101100 2440 2470 2468 2439 2439 2500 2475 2467  2.864162 0.942591 SUCCESS 111
110110000 2412 2415 2356 2475 2428 2424 2492 2436  5.530352 0.699675 SUCCESS 112
110110010 2408 2427 2327 2483 2470 2411 2513 2438  9.752843 0.282803 SUCCESS 113
110110100 2469 2461 2522 2471 2429 2365 2387 2420  7.594802 0.474017 SUCCESS 114
110111000 2435 2368 2456 2477 2404 2418 2329 2370 11.261892 0.187297 SUCCESS 115
110111010 2466 2455 2416 2423 2416 2459 2452 2338  5.732508 0.677166 SUCCESS 116
110111100 2467 2437 2427 2425 2486 2408 2450 2466  2.091023 0.978093 SUCCESS 117
111000000 2409 2390 2466 2389 2464 2394 2356 2475  7.718685 0.461421 SUCCESS 118
111000010 2422 2470 2425 2425 2523 2437 2436 2483  4.309357 0.828189 SUCCESS 119
111000100 2350 2404 2496 2391 2450 2420 2470 2478  7.609962 0.472466 SUCCESS 120
111000110 2304 2483 2440 2472 2454 2430 2403 2405 10.436298 0.235728 SUCCESS 121
111001000 2430 2465 2475 2373 2442 2370 2527 2454  8.083132 0.425392 SUCCESS 122
111001010 2544 2449 2448 2448 2409 2381 2505 2456  8.316466 0.403183 SUCCESS 123
111001100 2422 2444 2483 2485 2498 2378 2392 2352  9.180456 0.327303 SUCCESS 124
111010000 2432 2413 2433 2513 2503 2450 2410 2397  5.473038 0.706025 SUCCESS 125
111010010 2421 2411 2448 2404 2361 2537 2333 2475 13.245118 0.103690 SUCCESS 126
111010100 2465 2421 2416 2360 2425 2537 2550 2484 13.245382 0.103681 SUCCESS 127
111010110 2351 2418 2473 2506 2367 2452 2413 2398  9.416597 0.308379 SUCCESS 128
111011000 2410 2519 2414 2413 2443 2459 2507 2472  5.981783 0.649273 SUCCESS 129
111011010 2513 2391 2454 2408 2454 2400 2368 2419  7.075559 0.528503 SUCCESS 130
111011100 2411 2396 2532 2437 2512 2418 2368 2373 11.358303 0.182212 SUCCESS 131
111100000 2432 2372 2483 2455 2420 2366 2353 2543 13.175398 0.105956 SUCCESS 132
111100010 2394 2480 2490 2403 2438 2377 2459 2476  5.608850 0.690953 SUCCESS 133
111100100 2439 2433 2503 2375 2441 2395 2515 2510  8.709484 0.367393 SUCCESS 134
111100110 2372 2439 2438 2467 2501 2485 2383 2325 11.820061 0.159415 SUCCESS 135
111101000 2476 2469 2392 2488 2447 2492 2481 2429  4.612530 0.798072 SUCCESS 136
111101010 2498 2457 2427 2453 2451 2527 2549 2501 11.161298 0.192726 SUCCESS 137
111101100 2350 2531 2397 2453 2463 2422 2429 2447  8.268009 0.407738 SUCCESS 138
111101110 2459 2429 2461 2465 2457 2391 2451 2385  3.160835 0.923862 SUCCESS 139
111110000 2464 2472 2408 2413 2492 2414 2377 2480  5.218507 0.733987 SUCCESS 140
111110010 2459 2452 2470 2342 2408 2398 2486 2426  6.924495 0.544801 SUCCESS 141
111110100 2506 2407 2410 2453 2482 2613 2362 2373 20.571698 0.008377 FAILURE 142
111110110 2490 2450 2407 2434 2476 2417 2405 2390  3.996161 0.857470 SUCCESS 143
111111000 2415 2485 2467 2387 2496 2510 2430 2423  6.088017 0.637373 SUCCESS 144
111111010 2431 2485 2450 2407 2273 2541 2398 2475 18.877056 0.015531 SUCCESS 145
111111100 2424 2473 2499 2422 2437 2419 2440 2445  2.343727 0.968620 SUCCESS 146
111111110 2480 2478 2465 2349 2445 2409 2445 2450  5.538892 0.698727 SUCCESS 147


OverlappingTemplate

	dragon

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3425 1780 1381 982 703 1418  10.398079 0.064710 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3544 1820 1299 957 666 1403  3.434342 0.633345 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3424 1798 1373 1015 682 1397  10.096977 0.072534 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3527 1788 1362 957 676 1379  1.160160 0.948642 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3534 1846 1374 972 645 1318  6.676266 0.245851 SUCCESS

	rabbit

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3462 1761 1390 1016 671 1389  8.547035 0.128554 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3517 1747 1311 1014 700 1400  6.022613 0.304025 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3578 1736 1364 980 679 1352  2.120135 0.832285 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3419 1798 1396 954 729 1393  13.406063 0.019857 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3535 1813 1384 956 669 1332  3.349552 0.646264 SUCCESS

	spritz

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3577 1759 1336 992 694 1331  2.222026 0.817648 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3485 1817 1348 951 705 1383  4.164118 0.526037 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3521 1809 1326 923 690 1420  5.500000 0.357946 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3461 1831 1370 958 674 1395  6.002664 0.305960 SUCCESS

		    OVERLAPPING TEMPLATE OF ALL ONES TEST
		-----------------------------------------------
		COMPUTATIONAL INFORMATION:
		-----------------------------------------------
		(a) n (sequence_length)      = 10000000
		(b) m (block length of 1s)   = 9
		(c) M (length of substring)  = 1032
		(d) N (number of substrings) = 9689
		(e) lambda [(M-m+1)/2^m]     = 2.000000
		(f) eta                      = 1.000000
		-----------------------------------------------
		   F R E Q U E N C Y
		  0   1   2   3   4 >=5   Chi^2   P-value  Assignment
		-----------------------------------------------
		3550 1808 1387 948 674 1322  3.882783 0.566413 SUCCESS


RandomExcursions

	dragon

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 0788
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  1.759580 p_value = 0.881310
SUCCESS		x = -3 chi^2 =  0.899858 p_value = 0.970232
SUCCESS		x = -2 chi^2 =  6.106098 p_value = 0.296032
FAILURE		x = -1 chi^2 = 15.758883 p_value = 0.007567
SUCCESS		x =  1 chi^2 =  4.992386 p_value = 0.416810
SUCCESS		x =  2 chi^2 =  7.370809 p_value = 0.194491
SUCCESS		x =  3 chi^2 = 10.370489 p_value = 0.065393
SUCCESS		x =  4 chi^2 =  7.324283 p_value = 0.197618

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 3296
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  7.417172 p_value = 0.191417
SUCCESS		x = -3 chi^2 =  5.744820 p_value = 0.331846
SUCCESS		x = -2 chi^2 =  3.632327 p_value = 0.603466
SUCCESS		x = -1 chi^2 =  5.602549 p_value = 0.346832
SUCCESS		x =  1 chi^2 =  5.461772 p_value = 0.362156
SUCCESS		x =  2 chi^2 =  2.519882 p_value = 0.773498
SUCCESS		x =  3 chi^2 =  2.110920 p_value = 0.833594
SUCCESS		x =  4 chi^2 = 12.026583 p_value = 0.034425

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 2085
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  3.952612 p_value = 0.556259
SUCCESS		x = -3 chi^2 =  6.150416 p_value = 0.291857
SUCCESS		x = -2 chi^2 =  5.167960 p_value = 0.395728
SUCCESS		x = -1 chi^2 =  3.271463 p_value = 0.658213
SUCCESS		x =  1 chi^2 =  7.750120 p_value = 0.170555
SUCCESS		x =  2 chi^2 =  6.833188 p_value = 0.233345
SUCCESS		x =  3 chi^2 =  2.615567 p_value = 0.758999
SUCCESS		x =  4 chi^2 =  7.205081 p_value = 0.205830

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 2946
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  7.160293 p_value = 0.208989
SUCCESS		x = -3 chi^2 =  5.140223 p_value = 0.399008
SUCCESS		x = -2 chi^2 =  8.361972 p_value = 0.137383
SUCCESS		x = -1 chi^2 =  7.342159 p_value = 0.196412
SUCCESS		x =  1 chi^2 =  3.249830 p_value = 0.661531
SUCCESS		x =  2 chi^2 =  2.971914 p_value = 0.704316
SUCCESS		x =  3 chi^2 =  6.420119 p_value = 0.267458
SUCCESS		x =  4 chi^2 =  4.783849 p_value = 0.442825

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 3056
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  1.473274 p_value = 0.916133
SUCCESS		x = -3 chi^2 =  1.997275 p_value = 0.849522
SUCCESS		x = -2 chi^2 =  3.016935 p_value = 0.697375
SUCCESS		x = -1 chi^2 =  5.424084 p_value = 0.366342
SUCCESS		x =  1 chi^2 =  1.765707 p_value = 0.880520
SUCCESS		x =  2 chi^2 =  1.954738 p_value = 0.855372
SUCCESS		x =  3 chi^2 =  2.324668 p_value = 0.802637
SUCCESS		x =  4 chi^2 =  7.907089 p_value = 0.161431

	rabbit

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 1881
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  2.025054 p_value = 0.845668
SUCCESS		x = -3 chi^2 =  1.805772 p_value = 0.875314
SUCCESS		x = -2 chi^2 =  1.637132 p_value = 0.896723
SUCCESS		x = -1 chi^2 =  6.703349 p_value = 0.243654
SUCCESS		x =  1 chi^2 =  2.106858 p_value = 0.834170
SUCCESS		x =  2 chi^2 =  0.754937 p_value = 0.979818
SUCCESS		x =  3 chi^2 =  1.960102 p_value = 0.854638
SUCCESS		x =  4 chi^2 =  9.631367 p_value = 0.086380

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 1374
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  4.231828 p_value = 0.516544
SUCCESS		x = -3 chi^2 =  2.501024 p_value = 0.776341
SUCCESS		x = -2 chi^2 =  2.911855 p_value = 0.713573
SUCCESS		x = -1 chi^2 =  2.788937 p_value = 0.732486
SUCCESS		x =  1 chi^2 =  4.451237 p_value = 0.486434
SUCCESS		x =  2 chi^2 =  3.646378 p_value = 0.601364
SUCCESS		x =  3 chi^2 =  2.679714 p_value = 0.749219
SUCCESS		x =  4 chi^2 =  2.189768 p_value = 0.822313

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 0170
		(b) Sequence Length (n)  = 10000000
		---------------------------------------------
		WARNING:  TEST NOT APPLICABLE.  THERE ARE AN
			  INSUFFICIENT NUMBER OF CYCLES.
		---------------------------------------------

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 5115
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  3.548497 p_value = 0.616063
SUCCESS		x = -3 chi^2 =  6.728993 p_value = 0.241588
SUCCESS		x = -2 chi^2 =  8.597533 p_value = 0.126235
SUCCESS		x = -1 chi^2 =  8.337243 p_value = 0.138603
SUCCESS		x =  1 chi^2 =  9.830499 p_value = 0.080183
SUCCESS		x =  2 chi^2 =  5.863961 p_value = 0.319682
SUCCESS		x =  3 chi^2 =  4.674696 p_value = 0.456855
SUCCESS		x =  4 chi^2 =  8.209777 p_value = 0.145047

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 0781
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  1.195737 p_value = 0.945286
SUCCESS		x = -3 chi^2 =  3.234129 p_value = 0.663941
SUCCESS		x = -2 chi^2 =  5.182640 p_value = 0.394000
SUCCESS		x = -1 chi^2 =  7.307298 p_value = 0.198771
SUCCESS		x =  1 chi^2 = 11.417414 p_value = 0.043704
FAILURE		x =  2 chi^2 = 17.328891 p_value = 0.003916
SUCCESS		x =  3 chi^2 =  7.734267 p_value = 0.171502
SUCCESS		x =  4 chi^2 =  5.649762 p_value = 0.341803

	spritz

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 0225
		(b) Sequence Length (n)  = 10000000
		---------------------------------------------
		WARNING:  TEST NOT APPLICABLE.  THERE ARE AN
			  INSUFFICIENT NUMBER OF CYCLES.
		---------------------------------------------

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 0925
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  7.193770 p_value = 0.206624
SUCCESS		x = -3 chi^2 =  2.576036 p_value = 0.765003
SUCCESS		x = -2 chi^2 =  4.874728 p_value = 0.431359
SUCCESS		x = -1 chi^2 =  2.764324 p_value = 0.736264
SUCCESS		x =  1 chi^2 =  2.563243 p_value = 0.766942
SUCCESS		x =  2 chi^2 =  2.913887 p_value = 0.713260
SUCCESS		x =  3 chi^2 =  0.935402 p_value = 0.967606
SUCCESS		x =  4 chi^2 =  3.921890 p_value = 0.560716

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 0296
		(b) Sequence Length (n)  = 10000000
		---------------------------------------------
		WARNING:  TEST NOT APPLICABLE.  THERE ARE AN
			  INSUFFICIENT NUMBER OF CYCLES.
		---------------------------------------------

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 8144
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
FAILURE		x = -4 chi^2 = 20.269485 p_value = 0.001112
SUCCESS		x = -3 chi^2 = 11.022318 p_value = 0.050939
SUCCESS		x = -2 chi^2 = 11.124469 p_value = 0.048967
SUCCESS		x = -1 chi^2 = 13.257613 p_value = 0.021081
SUCCESS		x =  1 chi^2 =  3.940815 p_value = 0.557968
SUCCESS		x =  2 chi^2 =  8.499618 p_value = 0.130766
SUCCESS		x =  3 chi^2 = 10.543508 p_value = 0.061221
SUCCESS		x =  4 chi^2 =  2.507439 p_value = 0.775374

			  RANDOM EXCURSIONS TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 1080
		(b) Sequence Length (n)  = 10000000
		(c) Rejection Constraint = 500.000000
		-------------------------------------------
SUCCESS		x = -4 chi^2 =  4.319965 p_value = 0.504326
SUCCESS		x = -3 chi^2 =  2.132124 p_value = 0.830578
SUCCESS		x = -2 chi^2 =  2.033105 p_value = 0.844546
SUCCESS		x = -1 chi^2 =  3.101852 p_value = 0.684287
SUCCESS		x =  1 chi^2 =  4.827778 p_value = 0.437258
SUCCESS		x =  2 chi^2 =  6.535848 p_value = 0.257510
SUCCESS		x =  3 chi^2 =  1.865991 p_value = 0.867360
SUCCESS		x =  4 chi^2 =  5.645422 p_value = 0.342263


RandomExcursionsVariant

	dragon

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 788
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits =  819; p-value = 0.849786
SUCCESS		(x = -8) Total visits =  807; p-value = 0.901652
SUCCESS		(x = -7) Total visits =  836; p-value = 0.737365
SUCCESS		(x = -6) Total visits =  907; p-value = 0.366101
SUCCESS		(x = -5) Total visits =  919; p-value = 0.271355
SUCCESS		(x = -4) Total visits =  934; p-value = 0.164518
SUCCESS		(x = -3) Total visits =  941; p-value = 0.084786
SUCCESS		(x = -2) Total visits =  894; p-value = 0.123175
SUCCESS		(x = -1) Total visits =  821; p-value = 0.405828
SUCCESS		(x =  1) Total visits =  819; p-value = 0.434874
SUCCESS		(x =  2) Total visits =  922; p-value = 0.051320
FAILURE		(x =  3) Total visits = 1033; p-value = 0.005781
FAILURE		(x =  4) Total visits = 1110; p-value = 0.002172
FAILURE		(x =  5) Total visits = 1168; p-value = 0.001419
SUCCESS		(x =  6) Total visits = 1093; p-value = 0.020533
SUCCESS		(x =  7) Total visits =  939; p-value = 0.291453
SUCCESS		(x =  8) Total visits =  833; p-value = 0.769769
SUCCESS		(x =  9) Total visits =  728; p-value = 0.713945

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 3296
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits = 3136; p-value = 0.632682
SUCCESS		(x = -8) Total visits = 3123; p-value = 0.582207
SUCCESS		(x = -7) Total visits = 3047; p-value = 0.394998
SUCCESS		(x = -6) Total visits = 3098; p-value = 0.462161
SUCCESS		(x = -5) Total visits = 3257; p-value = 0.872790
SUCCESS		(x = -4) Total visits = 3342; p-value = 0.830437
SUCCESS		(x = -3) Total visits = 3316; p-value = 0.912280
SUCCESS		(x = -2) Total visits = 3332; p-value = 0.797954
SUCCESS		(x = -1) Total visits = 3367; p-value = 0.381857
SUCCESS		(x =  1) Total visits = 3370; p-value = 0.362069
SUCCESS		(x =  2) Total visits = 3468; p-value = 0.221295
SUCCESS		(x =  3) Total visits = 3429; p-value = 0.463812
SUCCESS		(x =  4) Total visits = 3400; p-value = 0.628283
SUCCESS		(x =  5) Total visits = 3437; p-value = 0.562670
SUCCESS		(x =  6) Total visits = 3505; p-value = 0.437665
SUCCESS		(x =  7) Total visits = 3591; p-value = 0.313587
SUCCESS		(x =  8) Total visits = 3679; p-value = 0.223227
SUCCESS		(x =  9) Total visits = 3659; p-value = 0.278205

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 2085
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits = 2382; p-value = 0.264642
SUCCESS		(x = -8) Total visits = 2440; p-value = 0.155773
SUCCESS		(x = -7) Total visits = 2541; p-value = 0.050171
SUCCESS		(x = -6) Total visits = 2483; p-value = 0.063125
SUCCESS		(x = -5) Total visits = 2375; p-value = 0.134405
SUCCESS		(x = -4) Total visits = 2342; p-value = 0.132521
SUCCESS		(x = -3) Total visits = 2260; p-value = 0.225531
SUCCESS		(x = -2) Total visits = 2242; p-value = 0.160411
SUCCESS		(x = -1) Total visits = 2190; p-value = 0.103949
SUCCESS		(x =  1) Total visits = 1991; p-value = 0.145487
SUCCESS		(x =  2) Total visits = 1925; p-value = 0.152570
SUCCESS		(x =  3) Total visits = 1850; p-value = 0.103636
SUCCESS		(x =  4) Total visits = 1762; p-value = 0.058686
SUCCESS		(x =  5) Total visits = 1768; p-value = 0.101771
SUCCESS		(x =  6) Total visits = 1768; p-value = 0.138843
SUCCESS		(x =  7) Total visits = 1681; p-value = 0.082711
SUCCESS		(x =  8) Total visits = 1583; p-value = 0.044729
SUCCESS		(x =  9) Total visits = 1559; p-value = 0.048203

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 2946
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits = 2554; p-value = 0.215495
SUCCESS		(x = -8) Total visits = 2516; p-value = 0.148062
SUCCESS		(x = -7) Total visits = 2537; p-value = 0.139457
SUCCESS		(x = -6) Total visits = 2566; p-value = 0.135531
SUCCESS		(x = -5) Total visits = 2563; p-value = 0.096271
SUCCESS		(x = -4) Total visits = 2580; p-value = 0.071515
SUCCESS		(x = -3) Total visits = 2650; p-value = 0.084609
SUCCESS		(x = -2) Total visits = 2731; p-value = 0.105849
SUCCESS		(x = -1) Total visits = 2866; p-value = 0.297311
SUCCESS		(x =  1) Total visits = 2845; p-value = 0.188241
SUCCESS		(x =  2) Total visits = 2708; p-value = 0.073433
SUCCESS		(x =  3) Total visits = 2693; p-value = 0.140475
SUCCESS		(x =  4) Total visits = 2820; p-value = 0.534977
SUCCESS		(x =  5) Total visits = 2903; p-value = 0.851872
SUCCESS		(x =  6) Total visits = 2886; p-value = 0.813681
SUCCESS		(x =  7) Total visits = 2952; p-value = 0.982704
SUCCESS		(x =  8) Total visits = 3055; p-value = 0.713881
SUCCESS		(x =  9) Total visits = 3207; p-value = 0.409554

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 3056
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits = 3107; p-value = 0.874286
SUCCESS		(x = -8) Total visits = 3021; p-value = 0.907975
SUCCESS		(x = -7) Total visits = 2974; p-value = 0.771124
SUCCESS		(x = -6) Total visits = 2980; p-value = 0.769441
SUCCESS		(x = -5) Total visits = 3035; p-value = 0.928655
SUCCESS		(x = -4) Total visits = 3086; p-value = 0.884681
SUCCESS		(x = -3) Total visits = 3163; p-value = 0.540486
SUCCESS		(x = -2) Total visits = 3073; p-value = 0.900093
SUCCESS		(x = -1) Total visits = 3012; p-value = 0.573565
SUCCESS		(x =  1) Total visits = 3016; p-value = 0.608900
SUCCESS		(x =  2) Total visits = 2946; p-value = 0.416594
SUCCESS		(x =  3) Total visits = 2884; p-value = 0.325164
SUCCESS		(x =  4) Total visits = 2826; p-value = 0.266158
SUCCESS		(x =  5) Total visits = 2843; p-value = 0.363789
SUCCESS		(x =  6) Total visits = 2914; p-value = 0.583935
SUCCESS		(x =  7) Total visits = 3086; p-value = 0.915242
SUCCESS		(x =  8) Total visits = 3230; p-value = 0.565520
SUCCESS		(x =  9) Total visits = 3214; p-value = 0.624018

	rabbit

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 1881
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits = 1707; p-value = 0.491426
SUCCESS		(x = -8) Total visits = 1684; p-value = 0.406935
SUCCESS		(x = -7) Total visits = 1623; p-value = 0.243354
SUCCESS		(x = -6) Total visits = 1603; p-value = 0.171753
SUCCESS		(x = -5) Total visits = 1631; p-value = 0.174256
SUCCESS		(x = -4) Total visits = 1710; p-value = 0.291997
SUCCESS		(x = -3) Total visits = 1801; p-value = 0.559688
SUCCESS		(x = -2) Total visits = 1823; p-value = 0.585096
SUCCESS		(x = -1) Total visits = 1861; p-value = 0.744366
SUCCESS		(x =  1) Total visits = 1829; p-value = 0.396549
SUCCESS		(x =  2) Total visits = 1743; p-value = 0.193944
SUCCESS		(x =  3) Total visits = 1605; p-value = 0.044178
SUCCESS		(x =  4) Total visits = 1576; p-value = 0.060177
SUCCESS		(x =  5) Total visits = 1548; p-value = 0.070338
SUCCESS		(x =  6) Total visits = 1473; p-value = 0.044894
SUCCESS		(x =  7) Total visits = 1450; p-value = 0.051304
SUCCESS		(x =  8) Total visits = 1429; p-value = 0.057072
SUCCESS		(x =  9) Total visits = 1388; p-value = 0.051241

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 1374
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits = 1787; p-value = 0.056029
SUCCESS		(x = -8) Total visits = 1742; p-value = 0.069899
SUCCESS		(x = -7) Total visits = 1604; p-value = 0.223650
SUCCESS		(x = -6) Total visits = 1517; p-value = 0.410797
SUCCESS		(x = -5) Total visits = 1499; p-value = 0.426706
SUCCESS		(x = -4) Total visits = 1442; p-value = 0.623930
SUCCESS		(x = -3) Total visits = 1466; p-value = 0.432533
SUCCESS		(x = -2) Total visits = 1496; p-value = 0.179057
SUCCESS		(x = -1) Total visits = 1419; p-value = 0.390656
SUCCESS		(x =  1) Total visits = 1382; p-value = 0.878706
SUCCESS		(x =  2) Total visits = 1358; p-value = 0.860122
SUCCESS		(x =  3) Total visits = 1300; p-value = 0.527842
SUCCESS		(x =  4) Total visits = 1271; p-value = 0.457698
SUCCESS		(x =  5) Total visits = 1288; p-value = 0.584481
SUCCESS		(x =  6) Total visits = 1348; p-value = 0.881124
SUCCESS		(x =  7) Total visits = 1392; p-value = 0.924129
SUCCESS		(x =  8) Total visits = 1402; p-value = 0.890309
SUCCESS		(x =  9) Total visits = 1385; p-value = 0.959411

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 170
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------

		WARNING:  TEST NOT APPLICABLE.  THERE ARE AN
			  INSUFFICIENT NUMBER OF CYCLES.
		---------------------------------------------

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 5115
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits = 5468; p-value = 0.397290
SUCCESS		(x = -8) Total visits = 5257; p-value = 0.716980
SUCCESS		(x = -7) Total visits = 5130; p-value = 0.967191
SUCCESS		(x = -6) Total visits = 5192; p-value = 0.818450
SUCCESS		(x = -5) Total visits = 5442; p-value = 0.281178
SUCCESS		(x = -4) Total visits = 5553; p-value = 0.101679
SUCCESS		(x = -3) Total visits = 5423; p-value = 0.173247
SUCCESS		(x = -2) Total visits = 5360; p-value = 0.161958
SUCCESS		(x = -1) Total visits = 5323; p-value = 0.039736
SUCCESS		(x =  1) Total visits = 4979; p-value = 0.178746
SUCCESS		(x =  2) Total visits = 4943; p-value = 0.326191
SUCCESS		(x =  3) Total visits = 4974; p-value = 0.532994
SUCCESS		(x =  4) Total visits = 5218; p-value = 0.700310
SUCCESS		(x =  5) Total visits = 5341; p-value = 0.456383
SUCCESS		(x =  6) Total visits = 5373; p-value = 0.441831
SUCCESS		(x =  7) Total visits = 5636; p-value = 0.153103
SUCCESS		(x =  8) Total visits = 5945; p-value = 0.034105
SUCCESS		(x =  9) Total visits = 5996; p-value = 0.034637

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 781
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits =  671; p-value = 0.499652
SUCCESS		(x = -8) Total visits =  674; p-value = 0.484531
SUCCESS		(x = -7) Total visits =  704; p-value = 0.588953
SUCCESS		(x = -6) Total visits =  723; p-value = 0.658144
SUCCESS		(x = -5) Total visits =  719; p-value = 0.601034
SUCCESS		(x = -4) Total visits =  768; p-value = 0.901059
SUCCESS		(x = -3) Total visits =  833; p-value = 0.556259
SUCCESS		(x = -2) Total visits =  836; p-value = 0.421712
SUCCESS		(x = -1) Total visits =  782; p-value = 0.979814
SUCCESS		(x =  1) Total visits =  768; p-value = 0.742209
SUCCESS		(x =  2) Total visits =  669; p-value = 0.101813
SUCCESS		(x =  3) Total visits =  640; p-value = 0.110603
SUCCESS		(x =  4) Total visits =  615; p-value = 0.112395
SUCCESS		(x =  5) Total visits =  617; p-value = 0.166606
SUCCESS		(x =  6) Total visits =  661; p-value = 0.359945
SUCCESS		(x =  7) Total visits =  646; p-value = 0.343448
SUCCESS		(x =  8) Total visits =  605; p-value = 0.250222
SUCCESS		(x =  9) Total visits =  585; p-value = 0.229056

	spritz

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 225
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------

		WARNING:  TEST NOT APPLICABLE.  THERE ARE AN
			  INSUFFICIENT NUMBER OF CYCLES.
		---------------------------------------------

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 925
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits =  842; p-value = 0.639768
SUCCESS		(x = -8) Total visits =  878; p-value = 0.777835
SUCCESS		(x = -7) Total visits =  904; p-value = 0.892285
SUCCESS		(x = -6) Total visits =  894; p-value = 0.827967
SUCCESS		(x = -5) Total visits =  907; p-value = 0.889057
SUCCESS		(x = -4) Total visits =  911; p-value = 0.902087
SUCCESS		(x = -3) Total visits =  895; p-value = 0.755097
SUCCESS		(x = -2) Total visits =  920; p-value = 0.946490
SUCCESS		(x = -1) Total visits =  908; p-value = 0.692664
SUCCESS		(x =  1) Total visits =  985; p-value = 0.163024
SUCCESS		(x =  2) Total visits =  987; p-value = 0.405277
SUCCESS		(x =  3) Total visits =  915; p-value = 0.917189
SUCCESS		(x =  4) Total visits =  889; p-value = 0.751737
SUCCESS		(x =  5) Total visits =  849; p-value = 0.555869
SUCCESS		(x =  6) Total visits =  848; p-value = 0.589356
SUCCESS		(x =  7) Total visits =  876; p-value = 0.752029
SUCCESS		(x =  8) Total visits =  864; p-value = 0.714228
SUCCESS		(x =  9) Total visits =  933; p-value = 0.964019

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 296
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------

		WARNING:  TEST NOT APPLICABLE.  THERE ARE AN
			  INSUFFICIENT NUMBER OF CYCLES.
		---------------------------------------------

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 8144
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits = 8801; p-value = 0.211829
SUCCESS		(x = -8) Total visits = 8652; p-value = 0.304071
SUCCESS		(x = -7) Total visits = 8554; p-value = 0.372929
SUCCESS		(x = -6) Total visits = 8666; p-value = 0.217494
SUCCESS		(x = -5) Total visits = 8910; p-value = 0.045429
SUCCESS		(x = -4) Total visits = 8943; p-value = 0.017968
SUCCESS		(x = -3) Total visits = 8878; p-value = 0.010110
FAILURE		(x = -2) Total visits = 8750; p-value = 0.006117
SUCCESS		(x = -1) Total visits = 8373; p-value = 0.072761
SUCCESS		(x =  1) Total visits = 8029; p-value = 0.367545
SUCCESS		(x =  2) Total visits = 7959; p-value = 0.402645
SUCCESS		(x =  3) Total visits = 7944; p-value = 0.483411
SUCCESS		(x =  4) Total visits = 7760; p-value = 0.255442
SUCCESS		(x =  5) Total visits = 7636; p-value = 0.184572
SUCCESS		(x =  6) Total visits = 7708; p-value = 0.302989
SUCCESS		(x =  7) Total visits = 7897; p-value = 0.591424
SUCCESS		(x =  8) Total visits = 7909; p-value = 0.634479
SUCCESS		(x =  9) Total visits = 7757; p-value = 0.462066

			RANDOM EXCURSIONS VARIANT TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) Number Of Cycles (J) = 1080
		(b) Sequence Length (n)  = 10000000
		--------------------------------------------
SUCCESS		(x = -9) Total visits = 1114; p-value = 0.859170
SUCCESS		(x = -8) Total visits = 1107; p-value = 0.880765
SUCCESS		(x = -7) Total visits = 1168; p-value = 0.599478
SUCCESS		(x = -6) Total visits = 1176; p-value = 0.533417
SUCCESS		(x = -5) Total visits = 1157; p-value = 0.580771
SUCCESS		(x = -4) Total visits = 1132; p-value = 0.672375
SUCCESS		(x = -3) Total visits = 1103; p-value = 0.824845
SUCCESS		(x = -2) Total visits = 1061; p-value = 0.813410
SUCCESS		(x = -1) Total visits = 1050; p-value = 0.518605
SUCCESS		(x =  1) Total visits = 1101; p-value = 0.651378
SUCCESS		(x =  2) Total visits = 1046; p-value = 0.672756
SUCCESS		(x =  3) Total visits =  996; p-value = 0.418923
SUCCESS		(x =  4) Total visits = 1026; p-value = 0.660549
SUCCESS		(x =  5) Total visits = 1063; p-value = 0.902957
SUCCESS		(x =  6) Total visits = 1073; p-value = 0.963779
SUCCESS		(x =  7) Total visits = 1093; p-value = 0.938163
SUCCESS		(x =  8) Total visits = 1169; p-value = 0.620992
SUCCESS		(x =  9) Total visits = 1160; p-value = 0.676325


Rank

	dragon

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2820
		(e)             F_31 = 5654
		(f)             F_30 = 1291
		(g) # of matrices    = 9765
		(h) Chi^2            = 0.183780
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.912205

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2908
		(e)             F_31 = 5604
		(f)             F_30 = 1253
		(g) # of matrices    = 9765
		(h) Chi^2            = 5.043631
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.080314

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2797
		(e)             F_31 = 5678
		(f)             F_30 = 1290
		(g) # of matrices    = 9765
		(h) Chi^2            = 0.614783
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.735363

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2819
		(e)             F_31 = 5613
		(f)             F_30 = 1333
		(g) # of matrices    = 9765
		(h) Chi^2            = 0.732739
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.693246

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2854
		(e)             F_31 = 5637
		(f)             F_30 = 1274
		(g) # of matrices    = 9765
		(h) Chi^2            = 1.145359
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.564012

	rabbit

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2843
		(e)             F_31 = 5601
		(f)             F_30 = 1321
		(g) # of matrices    = 9765
		(h) Chi^2            = 0.654782
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.720802

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2845
		(e)             F_31 = 5672
		(f)             F_30 = 1248
		(g) # of matrices    = 9765
		(h) Chi^2            = 2.888172
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.235962

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2834
		(e)             F_31 = 5574
		(f)             F_30 = 1357
		(g) # of matrices    = 9765
		(h) Chi^2            = 2.918293
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.232435

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2875
		(e)             F_31 = 5546
		(f)             F_30 = 1344
		(g) # of matrices    = 9765
		(h) Chi^2            = 3.808168
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.148959

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2765
		(e)             F_31 = 5698
		(f)             F_30 = 1302
		(g) # of matrices    = 9765
		(h) Chi^2            = 1.675788
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.432621

	spritz

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2888
		(e)             F_31 = 5560
		(f)             F_30 = 1317
		(g) # of matrices    = 9765
		(h) Chi^2            = 2.885806
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.236241

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2888
		(e)             F_31 = 5567
		(f)             F_30 = 1310
		(g) # of matrices    = 9765
		(h) Chi^2            = 2.604138
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.271969

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2794
		(e)             F_31 = 5662
		(f)             F_30 = 1309
		(g) # of matrices    = 9765
		(h) Chi^2            = 0.338127
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.844455

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2844
		(e)             F_31 = 5613
		(f)             F_30 = 1308
		(g) # of matrices    = 9765
		(h) Chi^2            = 0.340658
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.843387

				RANK TEST
		---------------------------------------------
		COMPUTATIONAL INFORMATION:
		---------------------------------------------
		(a) Probability P_32 = 0.288788
		(b)             P_31 = 0.577576
		(c)             P_30 = 0.133636
		(d) Frequency   F_32 = 2839
		(e)             F_31 = 5687
		(f)             F_30 = 1239
		(g) # of matrices    = 9765
		(h) Chi^2            = 3.852216
		(i) NOTE: 640 BITS WERE DISCARDED.
		---------------------------------------------
SUCCESS		p_value = 0.145714


Runs

	dragon

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.499962
		(b) V_n_obs (Total # of runs) = 4998251
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.782164
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.268663

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.499963
		(b) V_n_obs (Total # of runs) = 4998463
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.687355
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.331017

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.500292
		(b) V_n_obs (Total # of runs) = 5000447
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.200666
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.776575

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.499869
		(b) V_n_obs (Total # of runs) = 4998267
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.774868
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.273154

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.499685
		(b) V_n_obs (Total # of runs) = 4998251
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.781291
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.269198

	rabbit

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.500371
		(b) V_n_obs (Total # of runs) = 4999542
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.203591
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.773407

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.499967
		(b) V_n_obs (Total # of runs) = 5000442
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.197678
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.779816

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.500225
		(b) V_n_obs (Total # of runs) = 4998656
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.600604
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.395669

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.500114
		(b) V_n_obs (Total # of runs) = 5001920
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.858767
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.224565

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.500241
		(b) V_n_obs (Total # of runs) = 5000811
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.363210
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.607492

	spritz

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.500147
		(b) V_n_obs (Total # of runs) = 5001680
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.751512
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.287873

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.500211
		(b) V_n_obs (Total # of runs) = 4999543
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.203980
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.772986

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.499855
		(b) V_n_obs (Total # of runs) = 4999781
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.097751
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.890050

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.500042
		(b) V_n_obs (Total # of runs) = 5000851
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 0.380595
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.590410

				RUNS TEST
		------------------------------------------
		COMPUTATIONAL INFORMATION:
		------------------------------------------
		(a) Pi                        = 0.500009
		(b) V_n_obs (Total # of runs) = 5002989
		(c) V_n_obs - 2 n pi (1-pi)
		    -----------------------   = 1.336722
		      2 sqrt(2n) pi (1-pi)
		------------------------------------------
SUCCESS		p_value = 0.058703


Serial

	dragon

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65103.382118
		(d) Psi_m-1             = 32473.060147
		(e) Psi_m-2             = 16149.749760
		(f) Del_1               = 32630.321971
		(g) Del_2               = 16307.011584
		---------------------------------------------
SUCCESS		p_value1 = 0.704005
SUCCESS		p_value2 = 0.663593

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65230.390886
		(d) Psi_m-1             = 32491.030118
		(e) Psi_m-2             = 16122.585088
		(f) Del_1               = 32739.360768
		(g) Del_2               = 16370.915738
		---------------------------------------------
SUCCESS		p_value1 = 0.543518
SUCCESS		p_value2 = 0.527353

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65669.311693
		(d) Psi_m-1             = 32771.950182
		(e) Psi_m-2             = 16457.857434
		(f) Del_1               = 32897.361510
		(g) Del_2               = 16583.268762
		---------------------------------------------
SUCCESS		p_value1 = 0.305987
SUCCESS		p_value2 = 0.135652

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 66012.694118
		(d) Psi_m-1             = 32983.153050
		(e) Psi_m-2             = 16513.628570
		(f) Del_1               = 33029.541069
		(g) Del_2               = 16560.016589
		---------------------------------------------
SUCCESS		p_value1 = 0.153499
SUCCESS		p_value2 = 0.165380

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65973.582234
		(d) Psi_m-1             = 33084.982886
		(e) Psi_m-2             = 16546.104934
		(f) Del_1               = 32888.599347
		(g) Del_2               = 16349.721395
		---------------------------------------------
SUCCESS		p_value1 = 0.318065
SUCCESS		p_value2 = 0.573704

	rabbit

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65370.572390
		(d) Psi_m-1             = 32610.128691
		(e) Psi_m-2             = 16120.779571
		(f) Del_1               = 32760.443699
		(g) Del_2               = 16271.094579
		---------------------------------------------
SUCCESS		p_value1 = 0.510736
SUCCESS		p_value2 = 0.732856

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65439.778406
		(d) Psi_m-1             = 32810.400154
		(e) Psi_m-2             = 16372.860518
		(f) Del_1               = 32629.378253
		(g) Del_2               = 16191.838618
		---------------------------------------------
SUCCESS		p_value1 = 0.705281
SUCCESS		p_value2 = 0.855892

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65337.358746
		(d) Psi_m-1             = 32653.991936
		(e) Psi_m-2             = 16256.822477
		(f) Del_1               = 32683.366810
		(g) Del_2               = 16286.197350
		---------------------------------------------
SUCCESS		p_value1 = 0.628650
SUCCESS		p_value2 = 0.704602

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65756.395930
		(d) Psi_m-1             = 33069.241139
		(e) Psi_m-2             = 16786.215731
		(f) Del_1               = 32687.154790
		(g) Del_2               = 16404.129382
		---------------------------------------------
SUCCESS		p_value1 = 0.623033
SUCCESS		p_value2 = 0.454287

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 67137.121485
		(d) Psi_m-1             = 33835.363533
		(e) Psi_m-2             = 16982.119219
		(f) Del_1               = 33301.757952
		(g) Del_2               = 16448.513638
		---------------------------------------------
SUCCESS		p_value1 = 0.018929
SUCCESS		p_value2 = 0.359571

	spritz

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 64827.934310
		(d) Psi_m-1             = 32230.059213
		(e) Psi_m-2             = 16011.760435
		(f) Del_1               = 32597.875098
		(g) Del_2               = 16379.576320
		---------------------------------------------
SUCCESS		p_value1 = 0.746366
SUCCESS		p_value2 = 0.508280

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65459.452314
		(d) Psi_m-1             = 32700.797747
		(e) Psi_m-2             = 16206.369587
		(f) Del_1               = 32758.654566
		(g) Del_2               = 16264.226406
		---------------------------------------------
SUCCESS		p_value1 = 0.513523
SUCCESS		p_value2 = 0.745243

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65428.611072
		(d) Psi_m-1             = 32709.966234
		(e) Psi_m-2             = 16340.911718
		(f) Del_1               = 32718.644838
		(g) Del_2               = 16349.590323
		---------------------------------------------
SUCCESS		p_value1 = 0.575457
SUCCESS		p_value2 = 0.573989

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65118.652006
		(d) Psi_m-1             = 32507.820442
		(e) Psi_m-2             = 16148.373504
		(f) Del_1               = 32610.831565
		(g) Del_2               = 16251.384627
		---------------------------------------------
SUCCESS		p_value1 = 0.729836
SUCCESS		p_value2 = 0.767581

			       SERIAL TEST
		---------------------------------------------
		 COMPUTATIONAL INFORMATION:		  
		---------------------------------------------
		(a) Block length    (m) = 16
		(b) Sequence length (n) = 10000000
		(c) Psi_m               = 65503.125504
		(d) Psi_m-1             = 32578.186445
		(e) Psi_m-2             = 16254.217421
		(f) Del_1               = 32924.939059
		(g) Del_2               = 16600.970035
		---------------------------------------------
SUCCESS		p_value1 = 0.269386
SUCCESS		p_value2 = 0.115647


Universal

	dragon

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9043121.179704
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.176487
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.953363

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9041421.510759
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.174950
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.166531

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9043970.283349
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.177255
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.436083

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9044001.086769
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.177283
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.420845

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9042129.065872
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.175590
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.433522

	rabbit

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9042927.645208
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.176312
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.915819

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9043007.398906
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.176384
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.969654

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9043251.361560
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.176605
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.865856

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9044999.712069
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.178186
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.098505

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9043264.435073
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.176617
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.857140

	spritz

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9044409.742833
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.177652
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.249469

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9043450.474143
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.176785
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.735482

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9039941.124391
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.173612
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
FAILURE		p_value = 0.008307

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9040321.398342
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.173956
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.020519

		UNIVERSAL STATISTICAL TEST
		--------------------------------------------
		COMPUTATIONAL INFORMATION:
		--------------------------------------------
		(a) L         = 9
		(b) Q         = 5120
		(c) K         = 1105991
		(d) sum       = 9042749.699690
		(e) sigma     = 0.001066
		(f) variance  = 3.311000
		(g) exp_value = 8.176425
		(h) phi       = 8.176151
		(i) WARNING:  1 bits were discarded.
		-----------------------------------------
SUCCESS		p_value = 0.797440



------------------------------------------------------------------------------
RESULTS FOR THE UNIFORMITY OF P-VALUES AND THE PROPORTION OF PASSING SEQUENCES
------------------------------------------------------------------------------
   generator is </usr/zodrag>
------------------------------------------------------------------------------
 C1  C2  C3  C4  C5  C6  C7  C8  C9 C10  P-VALUE  PROPORTION  STATISTICAL TEST
------------------------------------------------------------------------------
  2   0   0   0   1   0   0   0   2   0     ----       5/5       Frequency
  1   0   1   0   0   1   0   2   0   0     ----       5/5       BlockFrequency
  2   0   1   0   0   0   1   0   0   1     ----       5/5       CumulativeSums
  1   1   0   0   1   1   0   0   1   0     ----       5/5       CumulativeSums
  0   0   3   1   0   0   0   1   0   0     ----       5/5       Runs
  0   2   2   0   0   1   0   0   0   0     ----       5/5       LongestRun
  1   0   0   0   0   1   1   1   0   1     ----       5/5       Rank
  1   0   0   0   1   0   1   0   1   1     ----       5/5       FFT
  0   1   0   0   1   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   1   1   1   0   1     ----       5/5       NonOverlappingTemplate
  0   2   2   0   1   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   3   1   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   2   0   0   1   0   0   2     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   1   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   1   1   0   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   0   0   0   3   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   1   0   0   2     ----       5/5       NonOverlappingTemplate
  1   1   1   1   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   2   0   0   1   0     ----       5/5       NonOverlappingTemplate
  2   1   0   1   0   0   0   0   1   0     ----       4/5       NonOverlappingTemplate
  0   1   0   2   1   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   1   2   0   1   0     ----       5/5       NonOverlappingTemplate
  0   3   0   0   1   0   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   1   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   0   1   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   1   1   1   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   1   1   2   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   1   2   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   2   0   1   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   0   1   0   1   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   2   1   1   0   1   0     ----       5/5       NonOverlappingTemplate
  1   1   1   1   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   2   0   1   1   0     ----       5/5       NonOverlappingTemplate
  2   0   0   1   1   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   3   1   0   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   0   2   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   1   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   2   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   1   0   2   1   1     ----       5/5       NonOverlappingTemplate
  0   0   1   1   1   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   1   0   0   0   2     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   2   0   0   2   1     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   0   1   1   1   1     ----       5/5       NonOverlappingTemplate
  2   1   0   0   0   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  1   2   1   1   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   0   0   0   2   1     ----       5/5       NonOverlappingTemplate
  1   0   0   1   1   1   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   2   1   0   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   1   1   0   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   0   2   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   1   0   1   1   0     ----       4/5       NonOverlappingTemplate
  0   0   3   0   1   0   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   1   0   0   2   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   1   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   2   0   0   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   2   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   1   2   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   1   1   0   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   2   0   1   1   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   1   1   0   1   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   1   0   0   1   2   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   2   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   1   2   0   0   2   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   2   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   1   0   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   2   0   2   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   3   0   0   1   0     ----       5/5       NonOverlappingTemplate
  2   1   0   0   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   1   0   0   0   2     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   2   0   0   2   0     ----       5/5       NonOverlappingTemplate
  0   2   0   1   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   2   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   2   0   0   1   0   2   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   1   1   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   0   0   0   0   3     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   1   1   0   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  1   0   0   1   1   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   2   0   1   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   1   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   0   1   0   2   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   1   1   1   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   2   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   2   0   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   2   2   1   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   2   1   0   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   0   2   0   1   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   2   0   2   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   0   1   0   0   3     ----       4/5       NonOverlappingTemplate
  0   0   1   1   2   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   2   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   2   0   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  1   0   2   0   1   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   3   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   0   1   0   2   1     ----       5/5       NonOverlappingTemplate
  2   0   0   1   1   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   0   1   1   0   0   0   2   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   1   0   1   2   0     ----       5/5       NonOverlappingTemplate
  1   0   0   2   0   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   0   2   0   1   0     ----       4/5       NonOverlappingTemplate
  0   0   1   0   0   2   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   1   1   1   0   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   1   1   0   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   0   1   0   0   2   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   2   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   1   0   0   1   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   0   1   2   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   1   0   0   0   2   1     ----       5/5       NonOverlappingTemplate
  0   0   2   1   0   0   0   0   0   2     ----       5/5       NonOverlappingTemplate
  0   0   2   0   0   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   1   2   0   0   2     ----       5/5       NonOverlappingTemplate
  1   0   1   1   1   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  1   0   2   1   1   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   1   1   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   0   1   2   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   1   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  1   1   0   1   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   2   1   0   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   1   1   0   1   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   1   0   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   1   1   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  0   2   1   1   0   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  2   1   0   0   0   0   0   2   0   0     ----       5/5       NonOverlappingTemplate
  1   0   2   0   0   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   3   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   2   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   2   1   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   1   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   1   0   2   0   1     ----       5/5       NonOverlappingTemplate
  0   0   1   2   0   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  2   1   0   1   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   2   1   0   0   0   0   2     ----       5/5       NonOverlappingTemplate
  1   0   0   1   0   0   0   0   0   3     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   2   0   1   0     ----       4/5       NonOverlappingTemplate
  1   0   1   0   1   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   2   0   2   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   2   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  1   0   1   0   1   0   0   0   0   2     ----       5/5       NonOverlappingTemplate
  1   1   0   0   2   0   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   0   2   0   1   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   2   1   0   1   0   0     ----       5/5       NonOverlappingTemplate
  2   0   0   0   1   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   1   0   1   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   0   0   1   2   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   1   0   1   3     ----       5/5       NonOverlappingTemplate
  0   0   0   1   2   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   0   1   0   1   1     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   1   0   1   1   0   0   0   2   0     ----       5/5       NonOverlappingTemplate
  0   0   0   2   0   1   0   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   2   1   0   0   2   0   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   1   0   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   2   0   1   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  2   0   1   0   0   0   1   0   0   1     ----       5/5       OverlappingTemplate
  0   1   0   0   3   0   0   0   0   1     ----       5/5       Universal
  0   0   1   0   1   1   1   1   0   0     ----       5/5       ApproximateEntropy
  0   1   1   0   0   1   0   0   1   1     ----       5/5       RandomExcursions
  0   0   1   2   0   0   0   0   1   1     ----       5/5       RandomExcursions
  0   1   1   1   0   0   2   0   0   0     ----       5/5       RandomExcursions
  1   1   0   2   0   0   1   0   0   0     ----       4/5       RandomExcursions
  0   1   0   1   1   0   1   0   1   0     ----       5/5       RandomExcursions
  0   1   1   0   0   0   0   2   1   0     ----       5/5       RandomExcursions
  1   0   1   0   0   0   0   1   2   0     ----       5/5       RandomExcursions
  1   2   1   0   1   0   0   0   0   0     ----       5/5       RandomExcursions
  0   0   2   0   0   0   1   0   2   0     ----       5/5       RandomExcursionsVariant
  0   2   0   0   0   1   0   0   0   2     ----       5/5       RandomExcursionsVariant
  1   1   0   1   0   0   0   2   0   0     ----       5/5       RandomExcursionsVariant
  1   1   0   1   1   0   0   1   0   0     ----       5/5       RandomExcursionsVariant
  1   1   1   0   0   0   0   0   1   1     ----       5/5       RandomExcursionsVariant
  1   2   0   0   0   0   0   0   2   0     ----       5/5       RandomExcursionsVariant
  2   0   1   0   0   1   0   0   0   1     ----       5/5       RandomExcursionsVariant
  0   3   0   0   0   0   0   1   0   1     ----       5/5       RandomExcursionsVariant
  0   1   1   1   1   1   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   2   0   1   1   0   1   0   0   0     ----       5/5       RandomExcursionsVariant
  2   1   1   0   1   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  1   2   0   1   1   0   0   0   0   0     ----       4/5       RandomExcursionsVariant
  2   0   1   0   0   1   1   0   0   0     ----       4/5       RandomExcursionsVariant
  1   1   0   1   0   1   0   0   1   0     ----       4/5       RandomExcursionsVariant
  1   1   0   0   1   1   0   0   1   0     ----       5/5       RandomExcursionsVariant
  1   0   1   1   0   0   0   0   0   2     ----       5/5       RandomExcursionsVariant
  1   0   1   0   0   1   0   2   0   0     ----       5/5       RandomExcursionsVariant
  1   0   1   0   1   0   1   1   0   0     ----       5/5       RandomExcursionsVariant
  0   1   0   2   0   1   0   1   0   0     ----       5/5       Serial
  0   2   0   0   0   2   1   0   0   0     ----       5/5       Serial
  1   1   0   1   0   1   1   0   0   0     ----       5/5       LinearComplexity


- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The minimum pass rate for each statistical test with the exception of the
random excursion (variant) test is approximately = 4 for a
sample size = 5 binary sequences.

The minimum pass rate for the random excursion (variant) test
is approximately = 4 for a sample size = 5 binary sequences.

For further guidelines construct a probability table using the MAPLE program
provided in the addendum section of the documentation.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
________________________________________________________________________________

		FILE = /usr/zodrag		ALPHA = 0.0100
________________________________________________________________________________

		BITSREAD = 10000000 0s = 5000375 1s = 4999625
		BITSREAD = 10000000 0s = 5000372 1s = 4999628
		BITSREAD = 10000000 0s = 4997082 1s = 5002918
		BITSREAD = 10000000 0s = 5001309 1s = 4998691
		BITSREAD = 10000000 0s = 5003148 1s = 4996852


------------------------------------------------------------------------------
RESULTS FOR THE UNIFORMITY OF P-VALUES AND THE PROPORTION OF PASSING SEQUENCES
------------------------------------------------------------------------------
   generator is </usr/zorabb>
------------------------------------------------------------------------------
 C1  C2  C3  C4  C5  C6  C7  C8  C9 C10  P-VALUE  PROPORTION  STATISTICAL TEST
------------------------------------------------------------------------------
  1   2   0   0   1   0   0   0   1   0     ----       5/5       Frequency
  1   1   0   1   0   0   0   0   2   0     ----       5/5       BlockFrequency
  1   2   0   0   0   0   0   1   1   0     ----       5/5       CumulativeSums
  1   0   2   0   0   0   1   0   0   1     ----       5/5       CumulativeSums
  0   0   1   1   0   0   1   2   0   0     ----       5/5       Runs
  0   0   0   0   3   0   2   0   0   0     ----       5/5       LongestRun
  0   1   2   0   1   0   0   1   0   0     ----       5/5       Rank
  0   0   1   0   0   1   0   1   2   0     ----       5/5       FFT
  0   1   0   1   0   0   3   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   0   1   2   1     ----       5/5       NonOverlappingTemplate
  2   0   1   1   1   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   2   1   0   2     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   0   1   0   2   1     ----       5/5       NonOverlappingTemplate
  1   1   0   0   1   0   0   2   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   1   0   0   0   3   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   0   0   1   1   2     ----       5/5       NonOverlappingTemplate
  0   2   0   1   1   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   2   0   0   0   2   1   0     ----       5/5       NonOverlappingTemplate
  1   1   1   0   2   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   2   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   1   1   1   0   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  2   0   0   1   0   1   1   0   0   0     ----       4/5       NonOverlappingTemplate
  0   1   0   2   0   0   0   2   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   3   0   1   0   0     ----       5/5       NonOverlappingTemplate
  1   2   0   0   0   0   0   0   2   0     ----       5/5       NonOverlappingTemplate
  1   1   0   2   0   1   0   0   0   0     ----       4/5       NonOverlappingTemplate
  1   1   0   0   0   1   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   0   0   0   1   0   2     ----       5/5       NonOverlappingTemplate
  1   1   1   1   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   1   1   0   1   0   0     ----       5/5       NonOverlappingTemplate
  1   1   1   0   0   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   2   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   1   0   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   2   0   1   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   1   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   3   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   1   1   0   0   2   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  2   0   1   0   1   0   0   0   0   1     ----       4/5       NonOverlappingTemplate
  0   0   0   0   1   0   1   1   0   2     ----       5/5       NonOverlappingTemplate
  1   2   0   0   0   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  2   0   1   1   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   1   0   2   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   1   1   0   1   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   2   0   0   0   1   0   1   1     ----       5/5       NonOverlappingTemplate
  0   0   2   0   1   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   2   0   2   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   2   0   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  1   1   2   1   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   2   0   0   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   1   0   1   0   0   1   0     ----       4/5       NonOverlappingTemplate
  1   1   0   1   0   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  2   0   0   0   0   1   0   0   0   2     ----       5/5       NonOverlappingTemplate
  0   1   1   1   0   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  1   2   0   0   0   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   2   1   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  1   1   1   1   0   0   0   0   1   0     ----       4/5       NonOverlappingTemplate
  0   0   1   1   0   1   0   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   1   0   1   2   0     ----       5/5       NonOverlappingTemplate
  0   1   0   1   0   1   0   0   1   1     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   0   1   2   0   1     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   0   1   0   2   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   0   2   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   1   2   2   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   1   1   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   0   1   1   1   1     ----       5/5       NonOverlappingTemplate
  0   2   0   2   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   2   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   2   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   1   1   0   0   2     ----       5/5       NonOverlappingTemplate
  0   0   0   0   2   0   0   2   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   2   0   2   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   2   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   1   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   2   1   1   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   0   1   0   2   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   1   2   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   2   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   1   3   1     ----       5/5       NonOverlappingTemplate
  0   0   1   1   0   0   0   1   0   2     ----       5/5       NonOverlappingTemplate
  0   1   1   1   1   0   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   2   0   0   1   0   0   1   1     ----       5/5       NonOverlappingTemplate
  0   1   0   1   0   0   3   0   0   0     ----       5/5       NonOverlappingTemplate
  2   0   1   0   0   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   1   2   1   0     ----       5/5       NonOverlappingTemplate
  1   0   2   0   0   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   2   1   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   1   1   3   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   1   2   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   2   1   1   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   2   0   0   0   2   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   0   2   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   0   0   1   3     ----       5/5       NonOverlappingTemplate
  0   0   1   0   2   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   2   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   2   1   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   0   0   2   1   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   1   0   1   1   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   2   1   0   1     ----       5/5       NonOverlappingTemplate
  1   0   1   0   2   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   4   0   0   1   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   2   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   1   2   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   1   2   0   2     ----       5/5       NonOverlappingTemplate
  0   0   0   1   1   0   1   0   2   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   0   3   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   2   0   0   0   2   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   2   1   1   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   1   0   1   0   0   0   2   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   1   0   0   1   1     ----       5/5       NonOverlappingTemplate
  2   1   0   0   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   2   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   1   1   1   0   0     ----       5/5       NonOverlappingTemplate
  3   0   2   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   0   0   1   1   0   1     ----       5/5       NonOverlappingTemplate
  0   2   2   0   0   0   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   2   0   0   0   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   2   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  2   0   0   0   1   1   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   0   3   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   0   1   0   2   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   2   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   1   2   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   3   1   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   0   1   2   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   1   0   1   0   2   0     ----       5/5       NonOverlappingTemplate
  0   2   1   0   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   2   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   1   1   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  1   2   0   0   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   1   1   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  2   0   0   1   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   2   2   1   0   0     ----       5/5       NonOverlappingTemplate
  2   0   0   0   0   1   0   1   1   0     ----       4/5       NonOverlappingTemplate
  0   0   1   0   1   2   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   0   0   1   2   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  0   3   2   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   3   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   1   0   0   2   1     ----       5/5       NonOverlappingTemplate
  0   0   1   2   0   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  1   0   0   1   1   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   2   0   1   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   1   0   2   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   4   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   2   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   1   0   0   2   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  1   0   2   0   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   0   1   0   2   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   0   1   1   0   2   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   2   0   0   1   0   0   1   1     ----       5/5       NonOverlappingTemplate
  1   1   0   1   0   0   1   0   1   0     ----       5/5       OverlappingTemplate
  1   0   0   0   0   0   0   0   2   2     ----       5/5       Universal
  1   0   1   0   1   0   0   0   1   1     ----       5/5       ApproximateEntropy
  0   0   0   0   0   1   1   0   1   1     ----       4/4       RandomExcursions
  0   0   1   0   0   0   1   1   1   0     ----       4/4       RandomExcursions
  0   1   0   1   0   0   0   1   1   0     ----       4/4       RandomExcursions
  0   2   1   0   0   0   0   1   0   0     ----       4/4       RandomExcursions
  2   0   0   0   1   0   0   0   1   0     ----       4/4       RandomExcursions
  1   0   0   1   0   0   1   0   0   1     ----       3/4       RandomExcursions
  0   1   0   0   1   0   0   1   1   0     ----       4/4       RandomExcursions
  1   1   0   1   0   0   0   0   1   0     ----       4/4       RandomExcursions
  1   0   0   1   2   0   0   0   0   0     ----       4/4       RandomExcursionsVariant
  1   0   0   0   2   0   0   1   0   0     ----       4/4       RandomExcursionsVariant
  0   0   2   0   0   1   0   0   0   1     ----       4/4       RandomExcursionsVariant
  0   1   0   0   1   0   1   0   1   0     ----       4/4       RandomExcursionsVariant
  0   1   1   0   1   0   1   0   0   0     ----       4/4       RandomExcursionsVariant
  0   1   1   0   0   0   1   0   0   1     ----       4/4       RandomExcursionsVariant
  0   1   0   0   1   2   0   0   0   0     ----       4/4       RandomExcursionsVariant
  0   2   0   0   1   1   0   0   0   0     ----       4/4       RandomExcursionsVariant
  1   0   0   1   0   0   0   1   0   1     ----       4/4       RandomExcursionsVariant
  0   1   0   1   0   0   0   1   1   0     ----       4/4       RandomExcursionsVariant
  0   2   0   1   0   0   0   0   1   0     ----       4/4       RandomExcursionsVariant
  1   1   0   0   0   2   0   0   0   0     ----       4/4       RandomExcursionsVariant
  1   1   0   0   1   0   0   1   0   0     ----       4/4       RandomExcursionsVariant
  1   1   0   0   1   1   0   0   0   0     ----       4/4       RandomExcursionsVariant
  1   0   0   1   1   0   0   0   1   0     ----       4/4       RandomExcursionsVariant
  1   1   0   1   0   0   0   0   0   1     ----       4/4       RandomExcursionsVariant
  2   0   1   0   0   0   0   0   1   0     ----       4/4       RandomExcursionsVariant
  2   0   1   0   0   0   0   0   0   1     ----       4/4       RandomExcursionsVariant
  1   0   0   0   0   1   2   1   0   0     ----       5/5       Serial
  0   0   0   1   1   0   0   2   1   0     ----       5/5       Serial
  1   1   0   0   0   0   0   1   0   2     ----       5/5       LinearComplexity


- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The minimum pass rate for each statistical test with the exception of the
random excursion (variant) test is approximately = 4 for a
sample size = 5 binary sequences.

The minimum pass rate for the random excursion (variant) test
is approximately = 3 for a sample size = 4 binary sequences.

For further guidelines construct a probability table using the MAPLE program
provided in the addendum section of the documentation.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
________________________________________________________________________________

		FILE = /usr/zorabb		ALPHA = 0.0100
________________________________________________________________________________

		BITSREAD = 10000000 0s = 4996287 1s = 5003713
		BITSREAD = 10000000 0s = 5000330 1s = 4999670
		BITSREAD = 10000000 0s = 4997753 1s = 5002247
		BITSREAD = 10000000 0s = 4998857 1s = 5001143
		BITSREAD = 10000000 0s = 4997590 1s = 5002410


------------------------------------------------------------------------------
RESULTS FOR THE UNIFORMITY OF P-VALUES AND THE PROPORTION OF PASSING SEQUENCES
------------------------------------------------------------------------------
   generator is </usr/zospritz>
------------------------------------------------------------------------------
 C1  C2  C3  C4  C5  C6  C7  C8  C9 C10  P-VALUE  PROPORTION  STATISTICAL TEST
------------------------------------------------------------------------------
  0   1   0   2   0   0   0   1   0   1     ----       5/5       Frequency
  0   1   1   1   0   0   0   0   1   1     ----       5/5       BlockFrequency
  1   0   0   1   1   0   1   0   0   1     ----       5/5       CumulativeSums
  0   0   1   0   1   0   1   1   1   0     ----       5/5       CumulativeSums
  1   0   1   0   0   1   0   1   1   0     ----       5/5       Runs
  2   0   0   0   0   0   1   1   0   1     ----       5/5       LongestRun
  0   1   2   0   0   0   0   0   2   0     ----       5/5       Rank
  0   1   0   0   2   0   0   1   1   0     ----       5/5       FFT
  0   1   1   1   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   1   0   0   2     ----       5/5       NonOverlappingTemplate
  0   0   0   2   1   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   3   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   2   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   1   2   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   2   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   1   0   0   2   1   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   1   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   0   0   2   1   1     ----       5/5       NonOverlappingTemplate
  1   1   1   0   0   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   2   0   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   1   1   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   1   0   1   2     ----       5/5       NonOverlappingTemplate
  0   0   0   1   1   1   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   2   1   0   0   0     ----       5/5       NonOverlappingTemplate
  2   2   0   0   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   1   2   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   0   0   0   2   1   0     ----       5/5       NonOverlappingTemplate
  2   0   0   0   1   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   3   1   0   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   2   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   1   0   0   2   1     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   0   0   1   2   1     ----       5/5       NonOverlappingTemplate
  1   0   1   1   1   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  2   0   0   0   0   0   1   0   2   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   2   0   0   2   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   0   0   2   0   2     ----       4/5       NonOverlappingTemplate
  0   1   2   1   0   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   0   0   0   2   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   2   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  2   1   0   0   0   1   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   1   0   2   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   2   0   0   2   0   1     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   1   1   1   1   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   1   2   0   0     ----       5/5       NonOverlappingTemplate
  1   2   0   0   0   2   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   0   3   0   1   0     ----       4/5       NonOverlappingTemplate
  1   0   2   1   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   1   0   1   0   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   0   0   1   1   2     ----       5/5       NonOverlappingTemplate
  0   0   2   1   0   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   1   2   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   1   1   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   2   0   0   1   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   2   0   0   0   1     ----       5/5       NonOverlappingTemplate
  2   0   1   0   0   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   1   0   1   2     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   1   2   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   2   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  3   0   0   0   0   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   2   0   0   2   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   2   0   2   0   0     ----       5/5       NonOverlappingTemplate
  0   1   1   0   1   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   2   1   0   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   1   0   0   1   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   2   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   2   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  2   1   0   0   0   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   1   0   1   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   2   0   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   0   0   1   2   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   1   0   1   1     ----       5/5       NonOverlappingTemplate
  1   1   1   1   0   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   2   0   0   0   0   2   1     ----       5/5       NonOverlappingTemplate
  0   1   1   1   0   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   3   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   1   0   0   0   0   2   1     ----       5/5       NonOverlappingTemplate
  0   1   0   1   1   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   1   2   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   0   1   2   1   0     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   0   1   0   0   2     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   0   2   1   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   1   2   0   1   0     ----       5/5       NonOverlappingTemplate
  0   1   1   1   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   0   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  2   0   1   1   0   0   0   0   1   0     ----       4/5       NonOverlappingTemplate
  2   2   0   0   0   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   1   0   0   0   1   2   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   0   0   1   2   1     ----       5/5       NonOverlappingTemplate
  0   1   1   0   1   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   1   0   2   0   0   0     ----       5/5       NonOverlappingTemplate
  2   0   1   0   1   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   1   2   0   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   0   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  2   0   0   1   0   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   3   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   2   1   1   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   1   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   2   0   0   2   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   2   0   0   0   0   2   1     ----       5/5       NonOverlappingTemplate
  1   1   3   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   1   1   0   0   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   0   1   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   2   0   0   0   1   0   1   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   3   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   0   2   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   1   0   2   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   2   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   1   1   2   0   0     ----       5/5       NonOverlappingTemplate
  0   0   2   0   0   0   0   0   1   2     ----       5/5       NonOverlappingTemplate
  0   1   0   0   1   2   1   0   0   0     ----       5/5       NonOverlappingTemplate
  0   2   2   0   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   2   2   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   2   0   1   0   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  2   1   1   0   0   1   0   0   0   0     ----       4/5       NonOverlappingTemplate
  0   1   1   1   1   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   1   1   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   1   0   0   2   1     ----       5/5       NonOverlappingTemplate
  1   0   0   1   0   0   2   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   2   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   1   0   1   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   2   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   2   0   0   1   2   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   1   1   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  0   1   1   1   0   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   0   2   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   2   1   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   1   1   0   1   0     ----       5/5       NonOverlappingTemplate
  2   0   0   1   1   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   2   1   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   2   0   1   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   2   1   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   3   0   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   2   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   2   0   0   0   0   0   2   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   2   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   0   1   0   3   0     ----       5/5       NonOverlappingTemplate
  0   1   0   3   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   2   1   0   2     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   1   1   1   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   2   0   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   0   1   1   1   1     ----       5/5       NonOverlappingTemplate
  0   0   1   1   0   1   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   2   0   0   1   2   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   1   1   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   2   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   1   1   0   0   2   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   3   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   1   0   0   0   2     ----       5/5       NonOverlappingTemplate
  1   0   2   0   0   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   1   1   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  2   0   2   0   0   0   0   0   0   1     ----       4/5       NonOverlappingTemplate
  0   2   0   0   0   1   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   1   2   1   0   1     ----       5/5       NonOverlappingTemplate
  1   1   1   0   0   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   1   0   2   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   1   2   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   2   0   2   0   0   1   0     ----       5/5       OverlappingTemplate
  2   0   1   0   0   0   0   2   0   0     ----       4/5       Universal
  0   1   0   0   0   2   1   0   0   1     ----       5/5       ApproximateEntropy
  1   0   1   0   0   1   0   0   0   0     ----       2/3       RandomExcursions
  1   0   0   0   0   0   0   1   1   0     ----       3/3       RandomExcursions
  1   0   0   0   1   0   0   0   1   0     ----       3/3       RandomExcursions
  1   0   0   0   0   0   1   1   0   0     ----       3/3       RandomExcursions
  0   0   0   0   1   1   0   1   0   0     ----       3/3       RandomExcursions
  0   1   1   0   0   0   0   1   0   0     ----       3/3       RandomExcursions
  1   0   0   0   0   0   0   0   1   1     ----       3/3       RandomExcursions
  0   0   0   1   0   1   0   1   0   0     ----       3/3       RandomExcursions
  0   0   1   0   0   0   1   0   1   0     ----       3/3       RandomExcursionsVariant
  0   0   0   1   0   0   0   1   1   0     ----       3/3       RandomExcursionsVariant
  0   0   0   1   0   1   0   0   1   0     ----       3/3       RandomExcursionsVariant
  0   0   1   0   0   1   0   0   1   0     ----       3/3       RandomExcursionsVariant
  1   0   0   0   0   1   0   0   1   0     ----       3/3       RandomExcursionsVariant
  1   0   0   0   0   0   1   0   0   1     ----       3/3       RandomExcursionsVariant
  1   0   0   0   0   0   0   1   1   0     ----       3/3       RandomExcursionsVariant
  1   0   0   0   0   0   0   0   1   1     ----       2/3       RandomExcursionsVariant
  1   0   0   0   0   1   1   0   0   0     ----       3/3       RandomExcursionsVariant
  0   1   0   1   0   0   1   0   0   0     ----       3/3       RandomExcursionsVariant
  0   0   0   0   2   0   1   0   0   0     ----       3/3       RandomExcursionsVariant
  0   0   0   0   2   0   0   0   0   1     ----       3/3       RandomExcursionsVariant
  0   0   1   0   0   0   1   1   0   0     ----       3/3       RandomExcursionsVariant
  0   1   0   0   0   1   0   0   0   1     ----       3/3       RandomExcursionsVariant
  0   0   0   1   0   1   0   0   0   1     ----       3/3       RandomExcursionsVariant
  0   0   0   0   0   1   0   1   0   1     ----       3/3       RandomExcursionsVariant
  0   0   0   0   0   0   2   1   0   0     ----       3/3       RandomExcursionsVariant
  0   0   0   0   1   0   1   0   0   1     ----       3/3       RandomExcursionsVariant
  0   0   1   0   0   2   0   2   0   0     ----       5/5       Serial
  0   1   0   0   0   2   0   2   0   0     ----       5/5       Serial
  0   1   0   1   0   0   0   0   1   2     ----       5/5       LinearComplexity


- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The minimum pass rate for each statistical test with the exception of the
random excursion (variant) test is approximately = 4 for a
sample size = 5 binary sequences.

The minimum pass rate for the random excursion (variant) test
is approximately = 2 for a sample size = 3 binary sequences.

For further guidelines construct a probability table using the MAPLE program
provided in the addendum section of the documentation.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
________________________________________________________________________________

		FILE = /usr/zospritz		ALPHA = 0.0100
________________________________________________________________________________

		BITSREAD = 10000000 0s = 4998530 1s = 5001470
		BITSREAD = 10000000 0s = 4997893 1s = 5002107
		BITSREAD = 10000000 0s = 5001453 1s = 4998547
		BITSREAD = 10000000 0s = 4999579 1s = 5000421
		BITSREAD = 10000000 0s = 4999914 1s = 5000086


------------------------------------------------------------------------------
RESULTS FOR THE UNIFORMITY OF P-VALUES AND THE PROPORTION OF PASSING SEQUENCES
------------------------------------------------------------------------------
   generator is </usr/zorand>
------------------------------------------------------------------------------
 C1  C2  C3  C4  C5  C6  C7  C8  C9 C10  P-VALUE  PROPORTION  STATISTICAL TEST
------------------------------------------------------------------------------
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Frequency
  0   5   0   0   0   0   0   0   0   0     ----       5/5       BlockFrequency
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  CumulativeSums
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  CumulativeSums
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Runs
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  LongestRun
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Rank
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  FFT
  0   0   0   5   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   5   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   5   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   5   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   5   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   5   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   5   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   5   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   5   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   5   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   5   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   5   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   5   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   5   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   5   0     ----       5/5       NonOverlappingTemplate
  0   0   0   5   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  0   5   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   5   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   5   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  OverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Universal
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  ApproximateEntropy
  0   0   0   0   5   0   0   0   0   0     ----       5/5       RandomExcursions
  0   0   0   5   0   0   0   0   0   0     ----       5/5       RandomExcursions
  0   0   5   0   0   0   0   0   0   0     ----       5/5       RandomExcursions
  0   0   0   0   0   5   0   0   0   0     ----       5/5       RandomExcursions
  0   0   0   0   0   0   5   0   0   0     ----       5/5       RandomExcursions
  0   5   0   0   0   0   0   0   0   0     ----       5/5       RandomExcursions
  0   0   0   0   0   0   0   5   0   0     ----       5/5       RandomExcursions
  0   0   0   0   0   0   0   0   5   0     ----       5/5       RandomExcursions
  0   0   5   0   0   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   0   5   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   0   0   0   5   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   5   0   0   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   5   0   0   0   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   5   0   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   0   5   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   0   5   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   0   5   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   5   0   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   5   0   0   0   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   5   0   0   0   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   5   0   0   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   5   0   0   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   5   0   0   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   0   0   5   0   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   0   0   0   5   0   0   0     ----       5/5       RandomExcursionsVariant
  0   0   0   0   0   0   0   5   0   0     ----       5/5       RandomExcursionsVariant
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Serial
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Serial
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  LinearComplexity


- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The minimum pass rate for each statistical test with the exception of the
random excursion (variant) test is approximately = 4 for a
sample size = 5 binary sequences.

The minimum pass rate for the random excursion (variant) test
is approximately = 4 for a sample size = 5 binary sequences.

For further guidelines construct a probability table using the MAPLE program
provided in the addendum section of the documentation.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
________________________________________________________________________________

		FILE = /usr/zorand		ALPHA = 0.0100
________________________________________________________________________________

		BITSREAD = 10000000 0s = 5005500 1s = 4994500
		BITSREAD = 10000000 0s = 5005500 1s = 4994500
		BITSREAD = 10000000 0s = 5005500 1s = 4994500
		BITSREAD = 10000000 0s = 5005500 1s = 4994500
		BITSREAD = 10000000 0s = 5005500 1s = 4994500


------------------------------------------------------------------------------
RESULTS FOR THE UNIFORMITY OF P-VALUES AND THE PROPORTION OF PASSING SEQUENCES
------------------------------------------------------------------------------
   generator is </usr/zorandom>
------------------------------------------------------------------------------
 C1  C2  C3  C4  C5  C6  C7  C8  C9 C10  P-VALUE  PROPORTION  STATISTICAL TEST
------------------------------------------------------------------------------
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Frequency
  0   0   0   0   0   0   0   0   0   5     ----       5/5       BlockFrequency
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  CumulativeSums
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  CumulativeSums
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Runs
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  LongestRun
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Rank
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  FFT
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   5   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   5   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   5   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   5   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   0   0   5   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   5   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   5   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   5   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   5   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   5   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   5   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   5   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   5   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   0   0   0   0   0   0   5     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   0   0   5   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  0   5   0   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   5   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  NonOverlappingTemplate
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  OverlappingTemplate
  0   0   5   0   0   0   0   0   0   0     ----       5/5       Universal
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  ApproximateEntropy
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursions
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursions
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursions
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursions
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursions
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursions
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursions
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursions
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  0   0   0   0   0   0   0   0   0   0     ----     ------     RandomExcursionsVariant
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Serial
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  Serial
  5   0   0   0   0   0   0   0   0   0     ----       0/5    *  LinearComplexity


- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The minimum pass rate for each statistical test with the exception of the
random excursion (variant) test is approximately = 4 for a
sample size = 5 binary sequences.

The minimum pass rate for the random excursion (variant) test is undefined.

For further guidelines construct a probability table using the MAPLE program
provided in the addendum section of the documentation.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
________________________________________________________________________________

		FILE = /usr/zorandom		ALPHA = 0.0100
________________________________________________________________________________

		BITSREAD = 10000000 0s = 5017875 1s = 4982125
		BITSREAD = 10000000 0s = 5017875 1s = 4982125
		BITSREAD = 10000000 0s = 5017875 1s = 4982125
		BITSREAD = 10000000 0s = 5017875 1s = 4982125
		BITSREAD = 10000000 0s = 5017875 1s = 4982125


------------------------------------------------------------------------------
RESULTS FOR THE UNIFORMITY OF P-VALUES AND THE PROPORTION OF PASSING SEQUENCES
------------------------------------------------------------------------------
   generator is </usr/z.a.xz>
------------------------------------------------------------------------------
 C1  C2  C3  C4  C5  C6  C7  C8  C9 C10  P-VALUE  PROPORTION  STATISTICAL TEST
------------------------------------------------------------------------------
  1   0   1   1   0   0   0   0   1   1     ----       5/5       Frequency
  0   0   1   1   1   0   1   1   0   0     ----       5/5       BlockFrequency
  1   1   0   1   0   0   0   2   0   0     ----       5/5       CumulativeSums
  1   0   0   0   2   0   0   0   1   1     ----       5/5       CumulativeSums
  0   1   1   1   1   0   0   0   0   1     ----       5/5       Runs
  0   0   0   1   1   0   1   0   0   2     ----       5/5       LongestRun
  1   0   0   2   0   1   0   0   1   0     ----       5/5       Rank
  0   0   1   0   3   0   1   0   0   0     ----       5/5       FFT
  1   3   0   0   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   1   1   0   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   1   0   1   0   0   1   0   0     ----       4/5       NonOverlappingTemplate
  1   2   0   1   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   1   1   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  2   1   1   0   0   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   0   0   2   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   1   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   0   1   1   0   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   1   2   0   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  2   0   0   0   1   0   2   0   0   0     ----       4/5       NonOverlappingTemplate
  0   1   1   0   0   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   0   1   0   1   2     ----       5/5       NonOverlappingTemplate
  1   2   1   0   0   0   0   0   0   1     ----       4/5       NonOverlappingTemplate
  0   0   0   0   1   1   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   2   2   0   0   0     ----       5/5       NonOverlappingTemplate
  2   1   0   0   0   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  1   1   0   0   1   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   1   0   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  2   0   0   0   0   1   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   2   1   1   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   2   0   0   0   2     ----       5/5       NonOverlappingTemplate
  2   0   0   0   0   1   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   1   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   1   2   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   2   0   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   1   2   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   1   1   0   1   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   0   2   1   1   1     ----       5/5       NonOverlappingTemplate
  0   2   0   0   0   0   1   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   1   1   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   0   0   2   2     ----       5/5       NonOverlappingTemplate
  1   0   3   0   0   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   2   1   0   0   0   0   0   2     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   2   0   1   0   0     ----       4/5       NonOverlappingTemplate
  2   0   1   1   0   0   0   0   1   0     ----       4/5       NonOverlappingTemplate
  0   0   1   0   1   1   1   0   0   1     ----       5/5       NonOverlappingTemplate
  2   1   1   1   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   2   0   0   2   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   1   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   0   4   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   0   0   2   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   1   0   0   0   3     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   1   0   0   3   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   1   0   2   0   0   0     ----       5/5       NonOverlappingTemplate
  0   3   0   0   0   1   0   1   0   0     ----       5/5       NonOverlappingTemplate
  2   1   0   0   1   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   2   0   1   2   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   2   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   1   0   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   1   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   0   4   0   0   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   2   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   2   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   1   0   1   1     ----       5/5       NonOverlappingTemplate
  1   1   0   0   2   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   2   0   0   0   1   2   0   0     ----       5/5       NonOverlappingTemplate
  0   4   1   0   0   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  0   2   0   2   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   1   0   0   3   0     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   1   1   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   1   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   2   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   1   1   0   2   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   0   0   1   1   2     ----       5/5       NonOverlappingTemplate
  0   1   1   0   0   2   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   2   0   2   0   0   0   0   0     ----       4/5       NonOverlappingTemplate
  1   1   1   0   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   2   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   1   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   3   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   0   0   1   0   1   1     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   1   0   1   1   1     ----       5/5       NonOverlappingTemplate
  1   3   0   0   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   1   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   3   0   0   0   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   2   0   1   0   1   1     ----       5/5       NonOverlappingTemplate
  1   0   1   1   0   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   1   0   2   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   0   2   1   0   1     ----       5/5       NonOverlappingTemplate
  0   2   1   0   0   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   2   1   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   2   0   0   1   0   1     ----       5/5       NonOverlappingTemplate
  2   0   1   0   0   1   0   1   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   1   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   2   1   1   1   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   0   1   0   2   0     ----       5/5       NonOverlappingTemplate
  0   2   1   0   0   0   0   2   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   2   0   0   2   0   0     ----       5/5       NonOverlappingTemplate
  1   2   0   0   1   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  2   0   2   0   1   0   0   0   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   1   0   1   0   1   0     ----       4/5       NonOverlappingTemplate
  0   1   0   3   0   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   3   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   0   1   2   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   1   0   1   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   1   1   0   1   1   0   0     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   1   1   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   1   0   1   2   1   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   0   0   0   2   0   1     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   1   0   2   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   1   0   0   0   2     ----       5/5       NonOverlappingTemplate
  0   0   1   2   0   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   1   0   1   0   0   0   2   0     ----       5/5       NonOverlappingTemplate
  1   0   0   2   0   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  1   0   0   0   0   0   1   1   2   0     ----       5/5       NonOverlappingTemplate
  1   2   0   1   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   0   1   0   0   2     ----       5/5       NonOverlappingTemplate
  1   1   0   1   0   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   1   1   1   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   1   1   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  1   1   0   1   0   0   1   0   1   0     ----       5/5       NonOverlappingTemplate
  1   1   1   1   0   0   0   1   0   0     ----       5/5       NonOverlappingTemplate
  1   1   0   0   1   0   0   0   1   1     ----       5/5       NonOverlappingTemplate
  1   0   0   2   0   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   2   1   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   2   0   0   2   1   0   0     ----       5/5       NonOverlappingTemplate
  2   0   0   0   0   1   0   1   0   1     ----       5/5       NonOverlappingTemplate
  0   1   1   1   0   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  0   1   0   0   1   1   0   1   0   1     ----       5/5       NonOverlappingTemplate
  1   0   0   0   1   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   0   1   0   1   0   0   1   1   1     ----       5/5       NonOverlappingTemplate
  2   0   1   0   0   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   1   1   0   1   1     ----       5/5       NonOverlappingTemplate
  1   0   0   2   0   0   0   1   1   0     ----       4/5       NonOverlappingTemplate
  0   0   1   0   0   0   1   1   2   0     ----       5/5       NonOverlappingTemplate
  2   0   0   0   1   0   2   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   1   0   1   0   1   0   0   1     ----       5/5       NonOverlappingTemplate
  1   1   0   0   1   0   0   0   0   2     ----       5/5       NonOverlappingTemplate
  0   1   1   1   0   1   1   0   0   0     ----       5/5       NonOverlappingTemplate
  1   0   0   2   0   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  1   0   1   0   1   0   0   0   0   2     ----       4/5       NonOverlappingTemplate
  0   0   0   0   0   2   2   1   0   0     ----       5/5       NonOverlappingTemplate
  1   1   2   0   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  1   2   1   0   0   0   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   0   1   0   3   0   1   0   0     ----       5/5       NonOverlappingTemplate
  0   1   0   0   0   1   1   0   2   0     ----       5/5       NonOverlappingTemplate
  0   0   2   2   0   0   0   0   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   1   1   1   0   1   0   1     ----       5/5       NonOverlappingTemplate
  0   0   1   1   0   1   0   0   0   2     ----       5/5       NonOverlappingTemplate
  1   0   0   2   0   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  0   0   0   2   1   1   0   0   0   1     ----       5/5       NonOverlappingTemplate
  0   0   1   2   0   0   0   1   1   0     ----       5/5       NonOverlappingTemplate
  1   1   1   0   0   0   0   0   0   2     ----       4/5       NonOverlappingTemplate
  0   1   0   0   0   0   2   0   2   0     ----       5/5       NonOverlappingTemplate
  0   0   1   0   0   1   0   1   1   1     ----       5/5       NonOverlappingTemplate
  0   0   0   0   0   1   1   1   1   1     ----       5/5       OverlappingTemplate
  1   1   0   0   1   2   0   0   0   0     ----       4/5       Universal
  2   1   0   0   1   0   0   0   0   1     ----       4/5       ApproximateEntropy
  0   1   0   0   1   0   0   0   0   0     ----       2/2       RandomExcursions
  0   1   1   0   0   0   0   0   0   0     ----       2/2       RandomExcursions
  0   1   1   0   0   0   0   0   0   0     ----       2/2       RandomExcursions
  0   2   0   0   0   0   0   0   0   0     ----       2/2       RandomExcursions
  1   0   0   1   0   0   0   0   0   0     ----       2/2       RandomExcursions
  0   0   0   0   1   0   0   0   0   1     ----       2/2       RandomExcursions
  1   0   0   1   0   0   0   0   0   0     ----       2/2       RandomExcursions
  0   0   0   0   0   2   0   0   0   0     ----       2/2       RandomExcursions
  0   1   0   0   0   1   0   0   0   0     ----       2/2       RandomExcursionsVariant
  0   0   1   1   0   0   0   0   0   0     ----       2/2       RandomExcursionsVariant
  0   1   1   0   0   0   0   0   0   0     ----       2/2       RandomExcursionsVariant
  0   2   0   0   0   0   0   0   0   0     ----       2/2       RandomExcursionsVariant
  0   1   1   0   0   0   0   0   0   0     ----       2/2       RandomExcursionsVariant
  1   0   0   0   0   1   0   0   0   0     ----       2/2       RandomExcursionsVariant
  1   0   0   0   1   0   0   0   0   0     ----       2/2       RandomExcursionsVariant
  1   1   0   0   0   0   0   0   0   0     ----       2/2       RandomExcursionsVariant
  1   0   1   0   0   0   0   0   0   0     ----       2/2       RandomExcursionsVariant
  0   0   0   0   0   1   0   0   0   1     ----       2/2       RandomExcursionsVariant
  1   0   0   0   1   0   0   0   0   0     ----       2/2       RandomExcursionsVariant
  1   0   0   0   0   0   0   1   0   0     ----       2/2       RandomExcursionsVariant
  0   1   0   0   0   0   0   0   0   1     ----       2/2       RandomExcursionsVariant
  0   1   0   0   0   0   0   0   0   1     ----       2/2       RandomExcursionsVariant
  1   0   0   0   0   0   0   0   1   0     ----       2/2       RandomExcursionsVariant
  1   0   0   0   0   0   0   0   1   0     ----       2/2       RandomExcursionsVariant
  0   0   1   0   0   0   0   1   0   0     ----       2/2       RandomExcursionsVariant
  0   0   1   0   0   0   0   1   0   0     ----       2/2       RandomExcursionsVariant
  0   1   1   0   1   1   1   0   0   0     ----       5/5       Serial
  0   0   1   0   1   1   1   0   0   1     ----       5/5       Serial
  0   2   0   1   0   0   1   1   0   0     ----       5/5       LinearComplexity


- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The minimum pass rate for each statistical test with the exception of the
random excursion (variant) test is approximately = 4 for a
sample size = 5 binary sequences.

The minimum pass rate for the random excursion (variant) test
is approximately = 1 for a sample size = 2 binary sequences.

For further guidelines construct a probability table using the MAPLE program
provided in the addendum section of the documentation.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
________________________________________________________________________________

		FILE = /usr/z.a.xz		ALPHA = 0.0100
________________________________________________________________________________

		BITSREAD = 500000 0s = 249976 1s = 250024
		BITSREAD = 500000 0s = 250070 1s = 249930
		BITSREAD = 500000 0s = 250408 1s = 249592
		BITSREAD = 500000 0s = 249099 1s = 250901
		BITSREAD = 500000 0s = 249665 1s = 250335

Textende


Copyright © Helmut Schellong, 2022 • Modifikationen im C-Code: Enrik Berkhan