Merge branch 'vendor/ACPICA-UNIX'
[dragonfly.git] / sys / net / i4b / driver / i4b_tel.c
1 /*
2  * Copyright (c) 1997, 2001 Hellmuth Michaelis. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  *---------------------------------------------------------------------------
26  *
27  *      i4b_tel.c - device driver for ISDN telephony
28  *      --------------------------------------------
29  *
30  * $FreeBSD: src/sys/i4b/driver/i4b_tel.c,v 1.10.2.4 2001/12/16 15:12:57 hm Exp $
31  * $DragonFly: src/sys/net/i4b/driver/i4b_tel.c,v 1.15 2006/12/22 23:44:55 swildner Exp $
32  *
33  *      last edit-date: [Sat Aug 11 18:07:05 2001]
34  *
35  *---------------------------------------------------------------------------*/
36
37 #include "use_i4btel.h"
38
39 #if NI4BTEL > 0
40
41 #undef I4BTELDEBUG
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45
46 #include <sys/poll.h>
47
48 #include <sys/conf.h>
49 #include <sys/uio.h>
50 #include <sys/kernel.h>
51 #include <sys/mbuf.h>
52 #include <sys/socket.h>
53 #include <net/if.h>
54 #include <sys/thread2.h>
55 #include <sys/tty.h>
56
57 #ifdef DEVFS
58 #include <sys/devfsext.h>
59 #endif
60
61 #include <net/i4b/include/machine/i4b_ioctl.h>
62 #include <net/i4b/include/machine/i4b_tel_ioctl.h>
63 #include <net/i4b/include/machine/i4b_debug.h>
64
65 #include "../include/i4b_global.h"
66 #include "../include/i4b_mbuf.h"
67 #include "../include/i4b_l3l4.h"
68 #include "../layer4/i4b_l4.h"
69
70 /* minor number: lower 6 bits = unit number */
71
72 #define UNITBITS        6
73 #define UNITMASK        0x3f
74 #define UNIT(n)         (minor(n) & UNITMASK)
75
76 /* minor number: upper 2 bits = function number */
77
78 #define FUNCMASK        0x03
79 #define FUNC(n)         (((minor(n)) >> UNITBITS) & FUNCMASK)
80
81 #define FUNCTEL         0       /* 0 = normal i4btel device     */
82 #define FUNCDIAL        1       /* 1 = i4bteld dialout device   */
83
84 #define NOFUNCS         2       /* number of device classes     */
85
86 typedef struct {
87
88         /* used only in func = FUNCTEL */
89
90         drvr_link_t             drvr_linktab;   /* driver linktab */
91         isdn_link_t             *isdn_linktab;  /* isdn linktab */
92         int                     audiofmt;       /* audio format conversion */
93         u_char                  *rcvttab;       /* conversion table on read */
94         u_char                  *wcvttab;       /* conversion table on write */
95         call_desc_t             *cdp;           /* call descriptor pointer */
96
97         /* used only in func = FUNCDIAL */
98
99         char                    result;         /* result code for dial dev */  
100
101         /* used in func = FUNCDIAL and func = FUNCTEL*/
102         
103         int                     devstate;       /* state of this unit   */
104 #define ST_IDLE         0x00            /* idle */
105 #define ST_CONNECTED    0x01            /* isdn connected state */
106 #define ST_ISOPEN       0x02            /* userland opened */
107 #define ST_RDWAITDATA   0x04            /* userland read waiting */
108 #define ST_WRWAITEMPTY  0x08            /* userland write waiting */
109 #define ST_TONE         0x10            /* tone generator */
110
111         struct selinfo          selp;           /* select / poll */
112
113         struct i4b_tel_tones    tones;
114         int                     toneidx;
115         int                     toneomega;
116         int                     tonefreq;
117
118 } tel_sc_t;
119
120 static tel_sc_t tel_sc[NI4BTEL][NOFUNCS];
121         
122 /* forward decl */
123
124 static void tel_rx_data_rdy(int unit);
125 static void tel_tx_queue_empty(int unit);
126 static void tel_init_linktab(int unit);
127 static void tel_connect(int unit, void *cdp);
128 static void tel_disconnect(int unit, void *cdp);
129 static void tel_tone(tel_sc_t *sc);
130
131 /* audio format conversion tables */
132 static unsigned char a2u_tab[];
133 static unsigned char u2a_tab[];
134 static unsigned char bitreverse[];
135 static u_char sinetab[];
136
137 #define PDEVSTATIC      static
138
139 PDEVSTATIC d_open_t     i4btelopen;
140 PDEVSTATIC d_close_t    i4btelclose;
141 PDEVSTATIC d_read_t     i4btelread;
142 PDEVSTATIC d_write_t    i4btelwrite;
143 PDEVSTATIC d_ioctl_t    i4btelioctl;
144
145 PDEVSTATIC d_poll_t i4btelpoll;
146 #define POLLFIELD i4btelpoll
147
148 #define CDEV_MAJOR 56
149
150 static struct dev_ops i4btel_ops = {
151         { "i4btel", CDEV_MAJOR, 0 },
152         .d_open =       i4btelopen,
153         .d_close =      i4btelclose,
154         .d_read =       i4btelread,
155         .d_write =      i4btelwrite,
156         .d_ioctl =      i4btelioctl,
157         .d_poll =       POLLFIELD,
158 };
159
160 PDEVSTATIC void i4btelinit(void *unused);
161 PDEVSTATIC void i4btelattach(void *);
162
163 PSEUDO_SET(i4btelattach, i4b_tel);
164
165 /*===========================================================================*
166  *                      DEVICE DRIVER ROUTINES
167  *===========================================================================*/
168
169 /*---------------------------------------------------------------------------*
170  *      interface attach routine
171  *---------------------------------------------------------------------------*/
172 PDEVSTATIC void
173 i4btelattach(void *dummy)
174 {
175         int i, j;
176
177         kprintf("i4btel: %d ISDN telephony interface device(s) attached\n", NI4BTEL);
178         
179         for(i=0; i < NI4BTEL; i++)
180         {
181                 for(j=0; j < NOFUNCS; j++)
182                 {
183                         tel_sc[i][j].devstate = ST_IDLE;
184                         tel_sc[i][j].audiofmt = CVT_NONE;
185                         tel_sc[i][j].rcvttab = 0;
186                         tel_sc[i][j].wcvttab = 0;
187                         tel_sc[i][j].result = 0;
188
189                         switch(j)
190                         {
191                                 case FUNCTEL:   /* normal i4btel device */
192                                         make_dev(&i4btel_ops, i,
193                                                 UID_ROOT, GID_WHEEL,
194                                                 0600, "i4btel%d", i);
195                                         break;
196                                 
197                                 case FUNCDIAL:  /* i4bteld dialout device */
198                                         make_dev(&i4btel_ops, i+(1<<UNITBITS),
199                                                 UID_ROOT, GID_WHEEL,
200                                                 0600, "i4bteld%d", i);
201                                         break;
202                         }
203                 }
204                 tel_init_linktab(i);            
205         }
206 }
207
208 /*---------------------------------------------------------------------------*
209  *      open tel device
210  *---------------------------------------------------------------------------*/
211 PDEVSTATIC int
212 i4btelopen(struct dev_open_args *ap)
213 {
214         cdev_t dev = ap->a_head.a_dev;
215         int unit = UNIT(dev);
216         int func = FUNC(dev);
217         
218         tel_sc_t *sc;
219         
220         if(unit >= NI4BTEL)
221                 return(ENXIO);
222
223         sc = &tel_sc[unit][func];               
224
225         if(sc->devstate & ST_ISOPEN)
226                 return(EBUSY);
227
228         sc->devstate |= ST_ISOPEN;              
229
230         if(func == FUNCDIAL)
231         {
232                 sc->result = 0;
233         }
234         
235         return(0);
236 }
237
238 /*---------------------------------------------------------------------------*
239  *      close tel device
240  *---------------------------------------------------------------------------*/
241 PDEVSTATIC int
242 i4btelclose(struct dev_close_args *ap)
243 {
244         cdev_t dev = ap->a_head.a_dev;
245         int unit = UNIT(dev);
246         int func = FUNC(dev);
247         tel_sc_t *sc;
248         int error = 0;
249         
250         if(unit > NI4BTEL)
251                 return(ENXIO);
252
253         sc = &tel_sc[unit][func];               
254
255         crit_enter();
256         sc->devstate &= ~ST_TONE;               
257
258         if((func == FUNCTEL) &&
259            (sc->isdn_linktab != NULL && sc->isdn_linktab->tx_queue != NULL))
260         {
261                 while(!(IF_QEMPTY(sc->isdn_linktab->tx_queue)))
262                 {
263                         sc->devstate |= ST_WRWAITEMPTY;
264         
265                         if((error = tsleep((caddr_t) &sc->isdn_linktab->tx_queue,
266                                         PCATCH, "wtcl", 0)) != 0)
267                         {
268                                 break;
269                         }
270                 }
271                 sc->devstate &= ~ST_WRWAITEMPTY;                
272         }
273
274         sc->devstate &= ~ST_ISOPEN;             
275         crit_exit();
276         wakeup((caddr_t) &sc->tones);
277
278         return(error);
279 }
280
281 /*---------------------------------------------------------------------------*
282  *      i4btelioctl - device driver ioctl routine
283  *---------------------------------------------------------------------------*/
284 PDEVSTATIC int
285 i4btelioctl(struct dev_ioctl_args *ap)
286 {
287         cdev_t dev = ap->a_head.a_dev;
288         int unit = UNIT(dev);
289         int func = FUNC(dev);
290         int error = 0;
291         struct mbuf *m;
292
293         tel_sc_t *sc = &tel_sc[unit][func];
294
295         if(func == FUNCTEL)
296         {
297                 switch(ap->a_cmd)
298                 {
299                         case I4B_TEL_GETAUDIOFMT:
300                                 *(int *)ap->a_data = sc->audiofmt;
301                                 break;
302                         
303                         case I4B_TEL_SETAUDIOFMT:
304                                 switch (*(int *)ap->a_data)
305                                 {
306                                         case CVT_NONE:
307                                                 sc->rcvttab = 0;
308                                                 sc->wcvttab = 0;
309                                                 break;
310                                         case CVT_ALAW2ULAW:
311                                                 /* ISDN: a-law */
312                                                 /* user: u-law */ 
313                                                 sc->rcvttab = a2u_tab;
314                                                 sc->wcvttab = u2a_tab;
315                                                 break;
316                                         case CVT_ULAW2ALAW:
317                                                 /* ISDN: u-law */
318                                                 /* user: a-law */ 
319                                                 sc->rcvttab = u2a_tab;
320                                                 sc->wcvttab = a2u_tab;
321                                                 break;
322                                         default:
323                                                 error = ENODEV;
324                                                 break;
325                                 }
326                                 if(error == 0)
327                                         sc->audiofmt = *(int *)ap->a_data;
328                                 break;
329         
330                         case I4B_TEL_EMPTYINPUTQUEUE:
331                                 crit_enter();
332                                 while((sc->devstate & ST_CONNECTED)     &&
333                                         (sc->devstate & ST_ISOPEN)      &&
334                                         !IF_QEMPTY(sc->isdn_linktab->rx_queue))
335                                 {
336                                         IF_DEQUEUE(sc->isdn_linktab->rx_queue, m);
337                                         if(m)
338                                                 i4b_Bfreembuf(m);
339                                 }
340                                 crit_exit();
341                                 break;
342
343                         case I4B_TEL_VR_REQ:
344                         {
345                                 msg_vr_req_t *mvr;
346
347                                 mvr = (msg_vr_req_t *)ap->a_data;
348
349                                 mvr->version = VERSION;
350                                 mvr->release = REL;
351                                 mvr->step = STEP;                       
352                                 break;
353                         }
354                         case I4B_TEL_TONES:
355                         {
356                                 struct i4b_tel_tones *tt;
357
358                                 tt = (struct i4b_tel_tones *)ap->a_data;
359                                 crit_enter();
360                                 while ((sc->devstate & ST_TONE) && 
361                                     sc->tones.duration[sc->toneidx] != 0) {
362                                         if((error = tsleep((caddr_t) &sc->tones,
363                                             PCATCH, "rtone", 0 )) != 0) {
364                                                 crit_exit();
365                                                 return(error);
366                                         }
367                                 } 
368                                 if(!(sc->devstate & ST_ISOPEN)) {
369                                         crit_exit();
370                                         return (EIO);
371                                 }
372                                 if(!(sc->devstate & ST_CONNECTED)) {
373                                         crit_exit();
374                                         return (EIO);
375                                 }
376
377                                 sc->tones = *tt;
378                                 sc->toneidx = 0;
379                                 sc->tonefreq = tt->frequency[0];
380                                 sc->devstate |= ST_TONE;
381                                 crit_exit();
382                                 tel_tone(sc);
383                                 break;
384                         }
385         
386                         default:
387                                 error = ENOTTY;
388                                 break;
389                 }
390         }
391         else if(func == FUNCDIAL)
392         {
393                 switch(ap->a_cmd)
394                 {
395                         default:
396                                 error = ENOTTY;
397                                 break;
398                 }
399         }               
400         return(error);
401 }
402
403 /*---------------------------------------------------------------------------*
404  *      read from tel device
405  *---------------------------------------------------------------------------*/
406 PDEVSTATIC int
407 i4btelread(struct dev_read_args *ap)
408 {
409         cdev_t dev = ap->a_head.a_dev;
410         struct uio *uio = ap->a_uio;
411         int unit = UNIT(dev);
412         int func = FUNC(dev);
413
414         struct mbuf *m;
415         int error = 0;
416
417         tel_sc_t *sc = &tel_sc[unit][func];
418         
419         if(!(sc->devstate & ST_ISOPEN))
420                 return(EIO);
421
422         if(func == FUNCTEL)
423         {
424                 crit_enter();
425
426                 while((sc->devstate & ST_ISOPEN)        &&
427                       (sc->devstate & ST_CONNECTED)     &&
428                       IF_QEMPTY(sc->isdn_linktab->rx_queue))            
429                 {
430                         sc->devstate |= ST_RDWAITDATA;
431
432                         NDBGL4(L4_TELDBG, "i4btel%d, queue empty!", unit);
433
434                         if((error = tsleep((caddr_t) &sc->isdn_linktab->rx_queue,
435                                                 PCATCH, "rtel", 0 )) != 0)
436                         {
437                                 sc->devstate &= ~ST_RDWAITDATA;
438                                 crit_exit();
439                                 return(error);
440                         }
441                 }
442         
443                 if(!(sc->devstate & ST_ISOPEN))
444                 {
445                         crit_exit();
446                         return(EIO);
447                 }
448         
449                 if(!(sc->devstate & ST_CONNECTED))
450                 {
451                         crit_exit();
452                         return(EIO);
453                 }
454                 
455         
456                 IF_DEQUEUE(sc->isdn_linktab->rx_queue, m);
457                 
458                 if(m && m->m_len > 0)
459                 {
460                         int i;
461
462                         for(i = 0; i < m->m_len; i++)
463                         {
464                                 /* always reverse bit order from line */
465                                 mtod(m,u_char *)[i] = bitreverse[mtod(m,u_char *)[i]];
466
467                                 /* convert if necessary */
468                                 if(sc->rcvttab)
469                                         mtod(m,u_char *)[i] = sc->rcvttab[mtod(m,u_char *)[i]];
470                         }
471                         error = uiomove(m->m_data, m->m_len, uio);
472
473                         NDBGL4(L4_TELDBG, "i4btel%d, mbuf (%d bytes), uiomove %d!", unit, m->m_len, error);
474                 }
475                 else
476                 {
477                         NDBGL4(L4_TELDBG, "i4btel%d, empty mbuf from queue!", unit);
478                         error = EIO;
479                 }
480                         
481                 if(m)
482                         i4b_Bfreembuf(m);
483         
484                 crit_exit();
485         }
486         else if(func == FUNCDIAL)
487         {
488                 crit_enter();
489                 while((sc->result == 0) && (sc->devstate & ST_ISOPEN))
490                 {
491                         sc->devstate |= ST_RDWAITDATA;
492         
493                         if((error = tsleep((caddr_t) &sc->result,
494                                                 PCATCH, "rtel1", 0 )) != 0)
495                         {
496                                 sc->devstate &= ~ST_RDWAITDATA;
497                                 crit_exit();
498                                 return(error);
499                         }
500                 }
501         
502                 if(!(sc->devstate & ST_ISOPEN))
503                 {
504                         crit_exit();
505                         return(EIO);
506                 }
507         
508                 if(sc->result != 0)
509                 {
510                         error = uiomove(&sc->result, 1, uio);
511                         sc->result = 0;
512                 }
513                 else
514                 {
515                         error = EIO;
516                 }
517
518                 crit_exit();
519         }
520         return(error);
521 }
522
523 /*---------------------------------------------------------------------------*
524  *      write to tel device
525  *---------------------------------------------------------------------------*/
526 PDEVSTATIC int
527 i4btelwrite(struct dev_write_args *ap)
528 {
529         cdev_t dev = ap->a_head.a_dev;
530         struct uio *uio = ap->a_uio;
531         int unit = UNIT(dev);
532         int func = FUNC(dev);
533         struct mbuf *m;
534         int error = 0;
535         tel_sc_t *sc = &tel_sc[unit][func];
536         
537         if(!(sc->devstate & ST_ISOPEN))
538         {
539                 return(EIO);
540         }
541
542         if(func == FUNCTEL)
543         {
544                 crit_enter();
545                 
546                 if(!(sc->devstate & ST_CONNECTED)) {
547                         crit_exit();
548                         return(EIO);
549                 }
550                         
551                 sc->devstate &= ~ST_TONE;               
552                 while((IF_QFULL(sc->isdn_linktab->tx_queue)) &&
553                       (sc->devstate & ST_ISOPEN))
554                 {
555                         sc->devstate |= ST_WRWAITEMPTY;
556
557                         if((error = tsleep((caddr_t) &sc->isdn_linktab->tx_queue,
558                                         PCATCH, "wtel", 0)) != 0)
559                         {
560                                 sc->devstate &= ~ST_WRWAITEMPTY;
561                                 crit_exit();
562                                 return(error);
563                         }
564                 }
565         
566                 if(!(sc->devstate & ST_ISOPEN))
567                 {
568                         crit_exit();
569                         return(EIO);
570                 }
571         
572                 if(!(sc->devstate & ST_CONNECTED))
573                 {
574                         crit_exit();
575                         return(EIO);
576                 }
577
578                 if((m = i4b_Bgetmbuf(BCH_MAX_DATALEN)) != NULL)
579                 {
580                         int i;
581                         
582                         m->m_len = min(BCH_MAX_DATALEN, uio->uio_resid);
583         
584                         error = uiomove(m->m_data, m->m_len, uio);
585         
586                         for(i = 0; i < m->m_len; i++)
587                         {
588                                 /* convert if necessary */
589                                 if(sc->wcvttab)
590                                         mtod(m,u_char *)[i] = sc->wcvttab[mtod(m,u_char *)[i]];
591
592                                 /* always reverse bitorder to line */
593                                 mtod(m,u_char *)[i] = bitreverse[mtod(m,u_char *)[i]];
594                         }
595
596                         if(IF_QFULL(sc->isdn_linktab->tx_queue))
597                                 m_freem(m);
598                         else
599                                 IF_ENQUEUE(sc->isdn_linktab->tx_queue, m);
600                         (*sc->isdn_linktab->bch_tx_start)(sc->isdn_linktab->unit, sc->isdn_linktab->channel);
601                 }
602         
603                 crit_exit();
604         }
605         else if(func == FUNCDIAL)
606         {
607 #define CMDBUFSIZ 80 
608                 char cmdbuf[CMDBUFSIZ];
609                 int len = min(CMDBUFSIZ-1, uio->uio_resid);
610         
611                 error = uiomove(cmdbuf, len, uio);
612
613                 if(cmdbuf[0] == CMD_DIAL)
614                 {
615                         i4b_l4_dialoutnumber(BDRV_TEL, unit, len-1, &cmdbuf[1]);
616                 }
617                 else if(cmdbuf[0] == CMD_HUP)
618                 {
619                         i4b_l4_drvrdisc(BDRV_TEL, unit);
620                 }
621                 else if(cmdbuf[0] == CMD_KEYP)
622                 {
623                         i4b_l4_keypad(BDRV_TEL, unit, len-1, &cmdbuf[1]);
624                 }
625         }
626         else
627         {
628                 error = EIO;
629         }               
630         
631         return(error);
632 }
633
634 /*---------------------------------------------------------------------------*
635  *      
636  *---------------------------------------------------------------------------*/
637 #define NTONESAMP 32
638 static void
639 tel_tone(tel_sc_t *sc)
640 {
641         struct mbuf *m;
642         u_char *p;
643         int i;
644
645         if((m = i4b_Bgetmbuf(NTONESAMP)) == NULL) {
646                 kprintf("no mbuf in tel_tone\n");
647                 return;
648         }
649         p = m->m_data;
650         m->m_len = 0;
651         for (i = 0; i < NTONESAMP && (sc->devstate & ST_TONE); i++) {
652
653                 if (sc->tones.duration[sc->toneidx] > 0) {
654                         if (--sc->tones.duration[sc->toneidx] == 0) {
655                                 sc->toneidx++;
656                                 if (sc->toneidx == I4B_TEL_MAXTONES) {
657                                         sc->devstate &= ~ST_TONE;
658                                         sc->toneomega = 0;
659                                         sc->tonefreq = 0;
660                                 } else if (sc->tones.frequency[sc->toneidx] == 0 &&
661                                            sc->tones.duration[sc->toneidx] == 0) {
662                                         sc->devstate &= ~ST_TONE;
663                                         sc->toneomega = 0;
664                                         sc->tonefreq = 0;
665                                 } else {
666                                         sc->tonefreq = sc->tones.frequency[sc->toneidx];
667                                 }
668                                 if (sc->tones.duration[sc->toneidx] == 0) {
669                                         wakeup((caddr_t) &sc->tones);
670                                 }
671                         }
672                 }
673
674                 sc->toneomega += sc->tonefreq;
675                 if (sc->toneomega >= 8000)
676                         sc->toneomega -= 8000;
677                 *p++ = bitreverse[sinetab[sc->toneomega]];
678                 m->m_len++;
679         }
680         IF_ENQUEUE(sc->isdn_linktab->tx_queue, m);
681         (*sc->isdn_linktab->bch_tx_start)(sc->isdn_linktab->unit, sc->isdn_linktab->channel);
682 }
683
684 /*---------------------------------------------------------------------------*
685  *      device driver poll
686  *---------------------------------------------------------------------------*/
687 PDEVSTATIC int
688 i4btelpoll(struct dev_poll_args *ap)
689 {
690         cdev_t dev = ap->a_head.a_dev;
691         int revents = 0;        /* Events we found */
692         int unit = UNIT(dev);
693         int func = FUNC(dev);   
694
695         tel_sc_t *sc = &tel_sc[unit][func];
696         
697         crit_enter();
698
699         if(!(sc->devstate & ST_ISOPEN))
700         {
701                 NDBGL4(L4_TELDBG, "i4btel%d, !ST_ISOPEN", unit);
702                 crit_exit();
703                 ap->a_events = 0;
704                 return(0);
705         }
706
707         if(func == FUNCTEL)
708         {
709                 /*
710                  * Writes are OK if we are connected and the
711                  * transmit queue can take them
712                  */
713                  
714                 if((ap->a_events & (POLLOUT|POLLWRNORM))        &&
715                         (sc->devstate & ST_CONNECTED)   &&
716                         (sc->isdn_linktab != NULL)      &&
717                         (!IF_QFULL(sc->isdn_linktab->tx_queue)))
718                 {
719                         NDBGL4(L4_TELDBG, "i4btel%d, POLLOUT", unit);
720                         revents |= (ap->a_events & (POLLOUT|POLLWRNORM));
721                 }
722                 
723                 /* ... while reads are OK if we have any data */
724         
725                 if((ap->a_events & (POLLIN|POLLRDNORM)) &&
726                         (sc->devstate & ST_CONNECTED)   &&
727                         (sc->isdn_linktab != NULL)      &&
728                         (!IF_QEMPTY(sc->isdn_linktab->rx_queue)))
729                 {
730                         NDBGL4(L4_TELDBG, "i4btel%d, POLLIN", unit);
731                         revents |= (ap->a_events & (POLLIN|POLLRDNORM));
732                 }
733                         
734                 if(revents == 0)
735                 {
736                         NDBGL4(L4_TELDBG, "i4btel%d, selrecord", unit);
737                         selrecord(curthread, &sc->selp);
738                 }
739         }
740         else if(func == FUNCDIAL)
741         {
742                 if(ap->a_events & (POLLOUT|POLLWRNORM))
743                 {
744                         NDBGL4(L4_TELDBG, "i4bteld%d,  POLLOUT", unit);
745                         revents |= (ap->a_events & (POLLOUT|POLLWRNORM));
746                 }
747
748                 if(ap->a_events & (POLLIN|POLLRDNORM))
749                 {
750                         NDBGL4(L4_TELDBG, "i4bteld%d,  POLLIN, result = %d", unit, sc->result);
751                         if(sc->result != 0)
752                                 revents |= (ap->a_events & (POLLIN|POLLRDNORM));
753                 }
754                         
755                 if(revents == 0)
756                 {
757                         NDBGL4(L4_TELDBG, "i4bteld%d,  selrecord", unit);
758                         selrecord(curthread, &sc->selp);
759                 }
760         }
761         crit_exit();
762         ap->a_events = revents;
763         return (0);
764 }
765
766 /*===========================================================================*
767  *                      ISDN INTERFACE ROUTINES
768  *===========================================================================*/
769
770 /*---------------------------------------------------------------------------*
771 *       this routine is called from L4 handler at connect time
772  *---------------------------------------------------------------------------*/
773 static void
774 tel_connect(int unit, void *cdp)
775 {
776         tel_sc_t *sc = &tel_sc[unit][FUNCTEL];
777
778         /* audio device */
779         
780         sc->cdp = (call_desc_t *)cdp;
781
782         sc->devstate |= ST_CONNECTED;
783
784         /* dialer device */
785         
786         sc = &tel_sc[unit][FUNCDIAL];
787
788         if(sc->devstate == ST_ISOPEN)
789         {
790                 sc->result = RSP_CONN;
791
792                 if(sc->devstate & ST_RDWAITDATA)
793                 {
794                         sc->devstate &= ~ST_RDWAITDATA;
795                         wakeup((caddr_t) &sc->result);
796                 }
797                 selwakeup(&sc->selp);
798         }
799 }
800
801 /*---------------------------------------------------------------------------*
802  *      this routine is called from L4 handler at disconnect time
803  *---------------------------------------------------------------------------*/
804 static void
805 tel_disconnect(int unit, void *cdp)
806 {
807 /*      call_desc_t *cd = (call_desc_t *)cdp; */
808
809         tel_sc_t *sc = &tel_sc[unit][FUNCTEL];
810         
811         /* audio device */
812         
813         sc->devstate &= ~ST_CONNECTED;
814
815         if(sc->devstate & ST_RDWAITDATA)
816         {
817                 sc->devstate &= ~ST_RDWAITDATA;
818                 wakeup((caddr_t) &sc->isdn_linktab->rx_queue);
819         }
820
821         if(sc->devstate & ST_WRWAITEMPTY)
822         {
823                 sc->devstate &= ~ST_WRWAITEMPTY;
824                 wakeup((caddr_t) &sc->isdn_linktab->tx_queue);
825         }
826
827         /* dialer device */
828         
829         sc = &tel_sc[unit][FUNCDIAL];
830
831         if(sc->devstate & ST_ISOPEN)
832         {
833                 sc->result = RSP_HUP;
834
835                 if(sc->devstate & ST_RDWAITDATA)
836                 {
837                         sc->devstate &= ~ST_RDWAITDATA;
838                         wakeup((caddr_t) &sc->result);
839                 }
840                 selwakeup(&sc->selp);
841
842                 if (sc->devstate & ST_TONE) {
843                         sc->devstate &= ~ST_TONE;
844                         wakeup((caddr_t) &sc->tones);
845                 }
846         }
847 }
848
849 /*---------------------------------------------------------------------------*
850  *      feedback from daemon in case of dial problems
851  *---------------------------------------------------------------------------*/
852 static void
853 tel_dialresponse(int unit, int status, cause_t cause)
854 {       
855         tel_sc_t *sc = &tel_sc[unit][FUNCDIAL];
856
857         NDBGL4(L4_TELDBG, "i4btel%d,  status=%d, cause=0x%4x", unit, status, cause);
858
859         if((sc->devstate == ST_ISOPEN) && status)
860         {       
861                 sc->result = RSP_NOA;
862
863                 if(sc->devstate & ST_RDWAITDATA)
864                 {
865                         sc->devstate &= ~ST_RDWAITDATA;
866                         wakeup((caddr_t) &sc->result);
867                 }
868                 selwakeup(&sc->selp);
869         }
870 }
871         
872 /*---------------------------------------------------------------------------*
873  *      interface up/down
874  *---------------------------------------------------------------------------*/
875 static void
876 tel_updown(int unit, int updown)
877 {
878 }
879         
880 /*---------------------------------------------------------------------------*
881  *      this routine is called from the HSCX interrupt handler
882  *      when a new frame (mbuf) has been received and was put on
883  *      the rx queue.
884  *---------------------------------------------------------------------------*/
885 static void
886 tel_rx_data_rdy(int unit)
887 {
888         tel_sc_t *sc = &tel_sc[unit][FUNCTEL];
889         
890         if(sc->devstate & ST_RDWAITDATA)
891         {
892                 sc->devstate &= ~ST_RDWAITDATA;
893                 wakeup((caddr_t) &sc->isdn_linktab->rx_queue);
894         }
895         selwakeup(&sc->selp);
896 }
897
898 /*---------------------------------------------------------------------------*
899  *      this routine is called from the HSCX interrupt handler
900  *      when the last frame has been sent out and there is no
901  *      further frame (mbuf) in the tx queue.
902  *---------------------------------------------------------------------------*/
903 static void
904 tel_tx_queue_empty(int unit)
905 {
906         tel_sc_t *sc = &tel_sc[unit][FUNCTEL];
907
908         if(sc->devstate & ST_WRWAITEMPTY)
909         {
910                 sc->devstate &= ~ST_WRWAITEMPTY;
911                 wakeup((caddr_t) &sc->isdn_linktab->tx_queue);
912         }
913         if(sc->devstate & ST_TONE) {
914                 tel_tone(sc);
915         } else {
916                 selwakeup(&sc->selp);
917         }
918 }
919
920 /*---------------------------------------------------------------------------*
921  *      this routine is called from the HSCX interrupt handler
922  *      each time a packet is received or transmitted.
923  *---------------------------------------------------------------------------*/
924 static void
925 tel_activity(int unit, int rxtx)
926 {
927         if(tel_sc[unit][FUNCTEL].cdp)
928                 tel_sc[unit][FUNCTEL].cdp->last_active_time = SECOND;
929 }
930
931 /*---------------------------------------------------------------------------*
932  *      return this drivers linktab address
933  *---------------------------------------------------------------------------*/
934 drvr_link_t *
935 tel_ret_linktab(int unit)
936 {
937         tel_sc_t *sc = &tel_sc[unit][FUNCTEL];
938         
939         tel_init_linktab(unit);
940         return(&sc->drvr_linktab);
941 }
942
943 /*---------------------------------------------------------------------------*
944  *      setup the isdn_linktab for this driver
945  *---------------------------------------------------------------------------*/
946 void
947 tel_set_linktab(int unit, isdn_link_t *ilt)
948 {
949         tel_sc_t *sc = &tel_sc[unit][FUNCTEL];
950         sc->isdn_linktab = ilt;
951 }
952
953 /*---------------------------------------------------------------------------*
954  *      initialize this drivers linktab
955  *---------------------------------------------------------------------------*/
956 static void
957 tel_init_linktab(int unit)
958 {
959         tel_sc_t *sc = &tel_sc[unit][FUNCTEL];
960         
961         sc->drvr_linktab.unit = unit;
962         sc->drvr_linktab.bch_rx_data_ready = tel_rx_data_rdy;
963         sc->drvr_linktab.bch_tx_queue_empty = tel_tx_queue_empty;
964         sc->drvr_linktab.bch_activity = tel_activity;   
965         sc->drvr_linktab.line_connected = tel_connect;
966         sc->drvr_linktab.line_disconnected = tel_disconnect;
967         sc->drvr_linktab.dial_response = tel_dialresponse;
968         sc->drvr_linktab.updown_ind = tel_updown;       
969 }
970
971 /*===========================================================================*
972  *      AUDIO FORMAT CONVERSION (produced by running g711conv)
973  *===========================================================================*/
974
975 /*---------------------------------------------------------------------------*
976  *      A-law to u-law conversion
977  *---------------------------------------------------------------------------*/
978 static unsigned char a2u_tab[256] = {
979 /* 00 */        0x2a, 0x2b, 0x28, 0x29, 0x2e, 0x2f, 0x2c, 0x2d, 
980 /* 08 */        0x22, 0x23, 0x20, 0x21, 0x26, 0x27, 0x24, 0x25, 
981 /* 10 */        0x39, 0x3a, 0x37, 0x38, 0x3d, 0x3e, 0x3b, 0x3c, 
982 /* 18 */        0x31, 0x32, 0x30, 0x30, 0x35, 0x36, 0x33, 0x34, 
983 /* 20 */        0x0a, 0x0b, 0x08, 0x09, 0x0e, 0x0f, 0x0c, 0x0d, 
984 /* 28 */        0x02, 0x03, 0x00, 0x01, 0x06, 0x07, 0x04, 0x05, 
985 /* 30 */        0x1a, 0x1b, 0x18, 0x19, 0x1e, 0x1f, 0x1c, 0x1d, 
986 /* 38 */        0x12, 0x13, 0x10, 0x11, 0x16, 0x17, 0x14, 0x15, 
987 /* 40 */        0x62, 0x63, 0x60, 0x61, 0x66, 0x67, 0x64, 0x65, 
988 /* 48 */        0x5d, 0x5d, 0x5c, 0x5c, 0x5f, 0x5f, 0x5e, 0x5e, 
989 /* 50 */        0x74, 0x76, 0x70, 0x72, 0x7c, 0x7e, 0x78, 0x7a, 
990 /* 58 */        0x6a, 0x6b, 0x68, 0x69, 0x6e, 0x6f, 0x6c, 0x6d, 
991 /* 60 */        0x48, 0x49, 0x46, 0x47, 0x4c, 0x4d, 0x4a, 0x4b, 
992 /* 68 */        0x40, 0x41, 0x3f, 0x3f, 0x44, 0x45, 0x42, 0x43, 
993 /* 70 */        0x56, 0x57, 0x54, 0x55, 0x5a, 0x5b, 0x58, 0x59, 
994 /* 78 */        0x4f, 0x4f, 0x4e, 0x4e, 0x52, 0x53, 0x50, 0x51, 
995 /* 80 */        0xaa, 0xab, 0xa8, 0xa9, 0xae, 0xaf, 0xac, 0xad, 
996 /* 88 */        0xa2, 0xa3, 0xa0, 0xa1, 0xa6, 0xa7, 0xa4, 0xa5, 
997 /* 90 */        0xb9, 0xba, 0xb7, 0xb8, 0xbd, 0xbe, 0xbb, 0xbc, 
998 /* 98 */        0xb1, 0xb2, 0xb0, 0xb0, 0xb5, 0xb6, 0xb3, 0xb4, 
999 /* a0 */        0x8a, 0x8b, 0x88, 0x89, 0x8e, 0x8f, 0x8c, 0x8d, 
1000 /* a8 */        0x82, 0x83, 0x80, 0x81, 0x86, 0x87, 0x84, 0x85, 
1001 /* b0 */        0x9a, 0x9b, 0x98, 0x99, 0x9e, 0x9f, 0x9c, 0x9d, 
1002 /* b8 */        0x92, 0x93, 0x90, 0x91, 0x96, 0x97, 0x94, 0x95, 
1003 /* c0 */        0xe2, 0xe3, 0xe0, 0xe1, 0xe6, 0xe7, 0xe4, 0xe5, 
1004 /* c8 */        0xdd, 0xdd, 0xdc, 0xdc, 0xdf, 0xdf, 0xde, 0xde, 
1005 /* d0 */        0xf4, 0xf6, 0xf0, 0xf2, 0xfc, 0xfe, 0xf8, 0xfa, 
1006 /* d8 */        0xea, 0xeb, 0xe8, 0xe9, 0xee, 0xef, 0xec, 0xed, 
1007 /* e0 */        0xc8, 0xc9, 0xc6, 0xc7, 0xcc, 0xcd, 0xca, 0xcb, 
1008 /* e8 */        0xc0, 0xc1, 0xbf, 0xbf, 0xc4, 0xc5, 0xc2, 0xc3, 
1009 /* f0 */        0xd6, 0xd7, 0xd4, 0xd5, 0xda, 0xdb, 0xd8, 0xd9, 
1010 /* f8 */        0xcf, 0xcf, 0xce, 0xce, 0xd2, 0xd3, 0xd0, 0xd1
1011 };
1012
1013 /*---------------------------------------------------------------------------*
1014  *      u-law to A-law conversion
1015  *---------------------------------------------------------------------------*/
1016 static unsigned char u2a_tab[256] = {
1017 /* 00 */        0x2a, 0x2b, 0x28, 0x29, 0x2e, 0x2f, 0x2c, 0x2d, 
1018 /* 08 */        0x22, 0x23, 0x20, 0x21, 0x26, 0x27, 0x24, 0x25, 
1019 /* 10 */        0x3a, 0x3b, 0x38, 0x39, 0x3e, 0x3f, 0x3c, 0x3d, 
1020 /* 18 */        0x32, 0x33, 0x30, 0x31, 0x36, 0x37, 0x34, 0x35, 
1021 /* 20 */        0x0a, 0x0b, 0x08, 0x09, 0x0e, 0x0f, 0x0c, 0x0d, 
1022 /* 28 */        0x02, 0x03, 0x00, 0x01, 0x06, 0x07, 0x04, 0x05, 
1023 /* 30 */        0x1b, 0x18, 0x19, 0x1e, 0x1f, 0x1c, 0x1d, 0x12, 
1024 /* 38 */        0x13, 0x10, 0x11, 0x16, 0x17, 0x14, 0x15, 0x6a, 
1025 /* 40 */        0x68, 0x69, 0x6e, 0x6f, 0x6c, 0x6d, 0x62, 0x63, 
1026 /* 48 */        0x60, 0x61, 0x66, 0x67, 0x64, 0x65, 0x7a, 0x78, 
1027 /* 50 */        0x7e, 0x7f, 0x7c, 0x7d, 0x72, 0x73, 0x70, 0x71, 
1028 /* 58 */        0x76, 0x77, 0x74, 0x75, 0x4b, 0x49, 0x4f, 0x4d, 
1029 /* 60 */        0x42, 0x43, 0x40, 0x41, 0x46, 0x47, 0x44, 0x45, 
1030 /* 68 */        0x5a, 0x5b, 0x58, 0x59, 0x5e, 0x5f, 0x5c, 0x5d, 
1031 /* 70 */        0x52, 0x52, 0x53, 0x53, 0x50, 0x50, 0x51, 0x51, 
1032 /* 78 */        0x56, 0x56, 0x57, 0x57, 0x54, 0x54, 0x55, 0x55, 
1033 /* 80 */        0xaa, 0xab, 0xa8, 0xa9, 0xae, 0xaf, 0xac, 0xad, 
1034 /* 88 */        0xa2, 0xa3, 0xa0, 0xa1, 0xa6, 0xa7, 0xa4, 0xa5, 
1035 /* 90 */        0xba, 0xbb, 0xb8, 0xb9, 0xbe, 0xbf, 0xbc, 0xbd, 
1036 /* 98 */        0xb2, 0xb3, 0xb0, 0xb1, 0xb6, 0xb7, 0xb4, 0xb5, 
1037 /* a0 */        0x8a, 0x8b, 0x88, 0x89, 0x8e, 0x8f, 0x8c, 0x8d, 
1038 /* a8 */        0x82, 0x83, 0x80, 0x81, 0x86, 0x87, 0x84, 0x85, 
1039 /* b0 */        0x9b, 0x98, 0x99, 0x9e, 0x9f, 0x9c, 0x9d, 0x92, 
1040 /* b8 */        0x93, 0x90, 0x91, 0x96, 0x97, 0x94, 0x95, 0xea, 
1041 /* c0 */        0xe8, 0xe9, 0xee, 0xef, 0xec, 0xed, 0xe2, 0xe3, 
1042 /* c8 */        0xe0, 0xe1, 0xe6, 0xe7, 0xe4, 0xe5, 0xfa, 0xf8, 
1043 /* d0 */        0xfe, 0xff, 0xfc, 0xfd, 0xf2, 0xf3, 0xf0, 0xf1, 
1044 /* d8 */        0xf6, 0xf7, 0xf4, 0xf5, 0xcb, 0xc9, 0xcf, 0xcd, 
1045 /* e0 */        0xc2, 0xc3, 0xc0, 0xc1, 0xc6, 0xc7, 0xc4, 0xc5, 
1046 /* e8 */        0xda, 0xdb, 0xd8, 0xd9, 0xde, 0xdf, 0xdc, 0xdd, 
1047 /* f0 */        0xd2, 0xd2, 0xd3, 0xd3, 0xd0, 0xd0, 0xd1, 0xd1, 
1048 /* f8 */        0xd6, 0xd6, 0xd7, 0xd7, 0xd4, 0xd4, 0xd5, 0xd5
1049 };
1050   
1051 /*---------------------------------------------------------------------------*
1052  *      reverse bits in a byte
1053  *---------------------------------------------------------------------------*/
1054 static unsigned char bitreverse[256] = {
1055 /* 00 */        0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0, 
1056 /* 08 */        0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0, 
1057 /* 10 */        0x08, 0x88, 0x48, 0xc8, 0x28, 0xa8, 0x68, 0xe8, 
1058 /* 18 */        0x18, 0x98, 0x58, 0xd8, 0x38, 0xb8, 0x78, 0xf8, 
1059 /* 20 */        0x04, 0x84, 0x44, 0xc4, 0x24, 0xa4, 0x64, 0xe4, 
1060 /* 28 */        0x14, 0x94, 0x54, 0xd4, 0x34, 0xb4, 0x74, 0xf4, 
1061 /* 30 */        0x0c, 0x8c, 0x4c, 0xcc, 0x2c, 0xac, 0x6c, 0xec, 
1062 /* 38 */        0x1c, 0x9c, 0x5c, 0xdc, 0x3c, 0xbc, 0x7c, 0xfc, 
1063 /* 40 */        0x02, 0x82, 0x42, 0xc2, 0x22, 0xa2, 0x62, 0xe2, 
1064 /* 48 */        0x12, 0x92, 0x52, 0xd2, 0x32, 0xb2, 0x72, 0xf2, 
1065 /* 50 */        0x0a, 0x8a, 0x4a, 0xca, 0x2a, 0xaa, 0x6a, 0xea, 
1066 /* 58 */        0x1a, 0x9a, 0x5a, 0xda, 0x3a, 0xba, 0x7a, 0xfa, 
1067 /* 60 */        0x06, 0x86, 0x46, 0xc6, 0x26, 0xa6, 0x66, 0xe6, 
1068 /* 68 */        0x16, 0x96, 0x56, 0xd6, 0x36, 0xb6, 0x76, 0xf6, 
1069 /* 70 */        0x0e, 0x8e, 0x4e, 0xce, 0x2e, 0xae, 0x6e, 0xee, 
1070 /* 78 */        0x1e, 0x9e, 0x5e, 0xde, 0x3e, 0xbe, 0x7e, 0xfe, 
1071 /* 80 */        0x01, 0x81, 0x41, 0xc1, 0x21, 0xa1, 0x61, 0xe1, 
1072 /* 88 */        0x11, 0x91, 0x51, 0xd1, 0x31, 0xb1, 0x71, 0xf1, 
1073 /* 90 */        0x09, 0x89, 0x49, 0xc9, 0x29, 0xa9, 0x69, 0xe9, 
1074 /* 98 */        0x19, 0x99, 0x59, 0xd9, 0x39, 0xb9, 0x79, 0xf9, 
1075 /* a0 */        0x05, 0x85, 0x45, 0xc5, 0x25, 0xa5, 0x65, 0xe5, 
1076 /* a8 */        0x15, 0x95, 0x55, 0xd5, 0x35, 0xb5, 0x75, 0xf5, 
1077 /* b0 */        0x0d, 0x8d, 0x4d, 0xcd, 0x2d, 0xad, 0x6d, 0xed, 
1078 /* b8 */        0x1d, 0x9d, 0x5d, 0xdd, 0x3d, 0xbd, 0x7d, 0xfd, 
1079 /* c0 */        0x03, 0x83, 0x43, 0xc3, 0x23, 0xa3, 0x63, 0xe3, 
1080 /* c8 */        0x13, 0x93, 0x53, 0xd3, 0x33, 0xb3, 0x73, 0xf3, 
1081 /* d0 */        0x0b, 0x8b, 0x4b, 0xcb, 0x2b, 0xab, 0x6b, 0xeb, 
1082 /* d8 */        0x1b, 0x9b, 0x5b, 0xdb, 0x3b, 0xbb, 0x7b, 0xfb, 
1083 /* e0 */        0x07, 0x87, 0x47, 0xc7, 0x27, 0xa7, 0x67, 0xe7, 
1084 /* e8 */        0x17, 0x97, 0x57, 0xd7, 0x37, 0xb7, 0x77, 0xf7, 
1085 /* f0 */        0x0f, 0x8f, 0x4f, 0xcf, 0x2f, 0xaf, 0x6f, 0xef, 
1086 /* f8 */        0x1f, 0x9f, 0x5f, 0xdf, 0x3f, 0xbf, 0x7f, 0xff
1087 };
1088
1089 static u_char sinetab[8000] = { 213, 213, 213, 213, 213, 213, 213, 212,
1090 212, 212, 212, 212, 212, 215, 215, 215, 215, 215, 215, 214, 214,
1091 214, 214, 214, 214, 209, 209, 209, 209, 209, 209, 209, 208, 208,
1092 208, 208, 208, 208, 211, 211, 211, 211, 211, 211, 210, 210, 210,
1093 210, 210, 210, 221, 221, 221, 221, 221, 221, 220, 220, 220, 220,
1094 220, 220, 220, 223, 223, 223, 223, 223, 223, 222, 222, 222, 222,
1095 222, 222, 217, 217, 217, 217, 217, 217, 216, 216, 216, 216, 216,
1096 216, 216, 219, 219, 219, 219, 219, 219, 218, 218, 218, 218, 218,
1097 218, 197, 197, 197, 197, 197, 197, 196, 196, 196, 196, 196, 196,
1098 196, 199, 199, 199, 199, 199, 199, 198, 198, 198, 198, 198, 198,
1099 193, 193, 193, 193, 193, 193, 192, 192, 192, 192, 192, 192, 192,
1100 195, 195, 195, 195, 195, 195, 194, 194, 194, 194, 194, 194, 205,
1101 205, 205, 205, 205, 205, 204, 204, 204, 204, 204, 204, 204, 207,
1102 207, 207, 207, 207, 207, 206, 206, 206, 206, 206, 206, 201, 201,
1103 201, 201, 201, 201, 200, 200, 200, 200, 200, 200, 200, 203, 203,
1104 203, 203, 203, 203, 202, 202, 202, 202, 202, 202, 245, 245, 245,
1105 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 244, 244, 244,
1106 244, 244, 244, 244, 244, 244, 244, 244, 244, 247, 247, 247, 247,
1107 247, 247, 247, 247, 247, 247, 247, 247, 247, 246, 246, 246, 246,
1108 246, 246, 246, 246, 246, 246, 246, 246, 246, 241, 241, 241, 241,
1109 241, 241, 241, 241, 241, 241, 241, 241, 240, 240, 240, 240, 240,
1110 240, 240, 240, 240, 240, 240, 240, 240, 243, 243, 243, 243, 243,
1111 243, 243, 243, 243, 243, 243, 243, 243, 242, 242, 242, 242, 242,
1112 242, 242, 242, 242, 242, 242, 242, 242, 253, 253, 253, 253, 253,
1113 253, 253, 253, 253, 253, 253, 253, 253, 252, 252, 252, 252, 252,
1114 252, 252, 252, 252, 252, 252, 252, 255, 255, 255, 255, 255, 255,
1115 255, 255, 255, 255, 255, 255, 255, 254, 254, 254, 254, 254, 254,
1116 254, 254, 254, 254, 254, 254, 254, 249, 249, 249, 249, 249, 249,
1117 249, 249, 249, 249, 249, 249, 249, 248, 248, 248, 248, 248, 248,
1118 248, 248, 248, 248, 248, 248, 248, 251, 251, 251, 251, 251, 251,
1119 251, 251, 251, 251, 251, 251, 251, 250, 250, 250, 250, 250, 250,
1120 250, 250, 250, 250, 250, 250, 250, 229, 229, 229, 229, 229, 229,
1121 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229,
1122 229, 229, 229, 229, 229, 229, 229, 228, 228, 228, 228, 228, 228,
1123 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, 228,
1124 228, 228, 228, 228, 228, 228, 228, 228, 231, 231, 231, 231, 231,
1125 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231,
1126 231, 231, 231, 231, 231, 231, 231, 231, 231, 230, 230, 230, 230,
1127 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
1128 230, 230, 230, 230, 230, 230, 230, 230, 230, 225, 225, 225, 225,
1129 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225,
1130 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 224, 224,
1131 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224,
1132 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 227,
1133 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
1134 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
1135 227, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226,
1136 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226,
1137 226, 226, 226, 237, 237, 237, 237, 237, 237, 237, 237, 237, 237,
1138 237, 237, 237, 237, 237, 237, 237, 237, 237, 237, 237, 237, 237,
1139 237, 237, 237, 237, 237, 236, 236, 236, 236, 236, 236, 236, 236,
1140 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236,
1141 236, 236, 236, 236, 236, 236, 236, 236, 239, 239, 239, 239, 239,
1142 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239,
1143 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 238, 238,
1144 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
1145 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
1146 238, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233,
1147 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233,
1148 233, 233, 233, 233, 233, 232, 232, 232, 232, 232, 232, 232, 232,
1149 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
1150 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 235, 235, 235,
1151 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
1152 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
1153 235, 235, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234,
1154 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234,
1155 234, 234, 234, 234, 234, 234, 234, 149, 149, 149, 149, 149, 149,
1156 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
1157 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
1158 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
1159 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
1160 149, 149, 149, 149, 149, 149, 149, 148, 148, 148, 148, 148, 148,
1161 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
1162 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
1163 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
1164 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
1165 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 151, 151, 151,
1166 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
1167 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
1168 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
1169 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
1170 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
1171 151, 151, 151, 151, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1172 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1173 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1174 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1175 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1176 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1177 150, 150, 150, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1178 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1179 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1180 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1181 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1182 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1183 145, 145, 145, 145, 145, 145, 145, 145, 144, 144, 144, 144, 144,
1184 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1185 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1186 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1187 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1188 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1189 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1190 144, 144, 144, 144, 144, 144, 144, 144, 144, 147, 147, 147, 147,
1191 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1192 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1193 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1194 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1195 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1196 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1197 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1198 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 146, 146, 146,
1199 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1200 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1201 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1202 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1203 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1204 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1205 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1206 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1207 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1208 146, 146, 146, 146, 146, 146, 157, 157, 157, 157, 157, 157, 157,
1209 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1210 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1211 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1212 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1213 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1214 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1215 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1216 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1217 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1218 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1219 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1220 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1221 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1222 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1223 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1224 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1225 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1226 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1227 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1228 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1229 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1230 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1231 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1232 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1233 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1234 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1235 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1236 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1237 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1238 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1239 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1240 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1241 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1242 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1243 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1244 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1245 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1246 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1247 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1248 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1249 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1250 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1251 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1252 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1253 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1254 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1255 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1256 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1257 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1258 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1259 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1260 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1261 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1262 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1263 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
1264 156, 156, 156, 156, 156, 156, 156, 157, 157, 157, 157, 157, 157,
1265 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1266 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1267 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1268 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1269 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1270 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1271 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1272 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1273 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1274 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1275 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1276 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1277 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
1278 157, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1279 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1280 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1281 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1282 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1283 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1284 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1285 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1286 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
1287 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 147, 147, 147,
1288 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1289 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1290 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1291 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1292 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1293 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1294 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
1295 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 144, 144,
1296 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1297 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1298 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1299 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1300 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1301 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
1302 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 145,
1303 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1304 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1305 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1306 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1307 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1308 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
1309 145, 145, 145, 145, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1310 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1311 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1312 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1313 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1314 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
1315 150, 150, 150, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
1316 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
1317 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
1318 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
1319 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
1320 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 148, 148, 148,
1321 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
1322 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
1323 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
1324 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
1325 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
1326 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
1327 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
1328 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
1329 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
1330 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
1331 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234,
1332 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234,
1333 234, 234, 234, 234, 234, 235, 235, 235, 235, 235, 235, 235, 235,
1334 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
1335 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 232, 232, 232,
1336 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
1337 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
1338 232, 232, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233,
1339 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233,
1340 233, 233, 233, 233, 233, 233, 238, 238, 238, 238, 238, 238, 238,
1341 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
1342 238, 238, 238, 238, 238, 238, 238, 238, 238, 239, 239, 239, 239,
1343 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239,
1344 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 236,
1345 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236,
1346 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236,
1347 236, 236, 237, 237, 237, 237, 237, 237, 237, 237, 237, 237, 237,
1348 237, 237, 237, 237, 237, 237, 237, 237, 237, 237, 237, 237, 237,
1349 237, 237, 237, 237, 226, 226, 226, 226, 226, 226, 226, 226, 226,
1350 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226,
1351 226, 226, 226, 226, 226, 226, 227, 227, 227, 227, 227, 227, 227,
1352 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
1353 227, 227, 227, 227, 227, 227, 227, 227, 224, 224, 224, 224, 224,
1354 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224,
1355 224, 224, 224, 224, 224, 224, 224, 224, 224, 225, 225, 225, 225,
1356 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225,
1357 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 230, 230,
1358 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
1359 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 231, 231,
1360 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231,
1361 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 228,
1362 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, 228,
1363 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, 228,
1364 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229,
1365 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229,
1366 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250,
1367 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251,
1368 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248,
1369 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249,
1370 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
1371 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
1372 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253,
1373 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 242,
1374 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 243,
1375 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 240,
1376 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 241,
1377 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 246, 246,
1378 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 247, 247,
1379 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 244, 244,
1380 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, 245, 245, 245,
1381 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 202, 202, 202,
1382 202, 202, 202, 203, 203, 203, 203, 203, 203, 200, 200, 200, 200,
1383 200, 200, 200, 201, 201, 201, 201, 201, 201, 206, 206, 206, 206,
1384 206, 206, 207, 207, 207, 207, 207, 207, 204, 204, 204, 204, 204,
1385 204, 204, 205, 205, 205, 205, 205, 205, 194, 194, 194, 194, 194,
1386 194, 195, 195, 195, 195, 195, 195, 192, 192, 192, 192, 192, 192,
1387 192, 193, 193, 193, 193, 193, 193, 198, 198, 198, 198, 198, 198,
1388 199, 199, 199, 199, 199, 199, 196, 196, 196, 196, 196, 196, 196,
1389 197, 197, 197, 197, 197, 197, 218, 218, 218, 218, 218, 218, 219,
1390 219, 219, 219, 219, 219, 216, 216, 216, 216, 216, 216, 216, 217,
1391 217, 217, 217, 217, 217, 222, 222, 222, 222, 222, 222, 223, 223,
1392 223, 223, 223, 223, 220, 220, 220, 220, 220, 220, 220, 221, 221,
1393 221, 221, 221, 221, 210, 210, 210, 210, 210, 210, 211, 211, 211,
1394 211, 211, 211, 208, 208, 208, 208, 208, 208, 209, 209, 209, 209,
1395 209, 209, 209, 214, 214, 214, 214, 214, 214, 215, 215, 215, 215,
1396 215, 215, 212, 212, 212, 212, 212, 212, 213, 213, 213, 213, 213,
1397 213, 213, 90, 90, 90, 85, 85, 85, 85, 85, 85, 84, 84, 84, 84, 84,
1398 84, 87, 87, 87, 87, 87, 87, 86, 86, 86, 86, 86, 86, 81, 81, 81,
1399 81, 81, 81, 81, 80, 80, 80, 80, 80, 80, 83, 83, 83, 83, 83, 83,
1400 82, 82, 82, 82, 82, 82, 93, 93, 93, 93, 93, 93, 93, 92, 92, 92,
1401 92, 92, 92, 95, 95, 95, 95, 95, 95, 94, 94, 94, 94, 94, 94, 89,
1402 89, 89, 89, 89, 89, 88, 88, 88, 88, 88, 88, 88, 91, 91, 91, 91,
1403 91, 91, 90, 90, 90, 90, 90, 90, 69, 69, 69, 69, 69, 69, 68, 68,
1404 68, 68, 68, 68, 68, 71, 71, 71, 71, 71, 71, 70, 70, 70, 70, 70,
1405 70, 65, 65, 65, 65, 65, 65, 64, 64, 64, 64, 64, 64, 64, 67, 67,
1406 67, 67, 67, 67, 66, 66, 66, 66, 66, 66, 77, 77, 77, 77, 77, 77,
1407 76, 76, 76, 76, 76, 76, 76, 79, 79, 79, 79, 79, 79, 78, 78, 78,
1408 78, 78, 78, 73, 73, 73, 73, 73, 73, 73, 72, 72, 72, 72, 72, 72,
1409 75, 75, 75, 75, 75, 75, 74, 74, 74, 74, 74, 74, 117, 117, 117, 117,
1410 117, 117, 117, 117, 117, 117, 117, 117, 117, 116, 116, 116, 116,
1411 116, 116, 116, 116, 116, 116, 116, 116, 116, 119, 119, 119, 119,
1412 119, 119, 119, 119, 119, 119, 119, 119, 118, 118, 118, 118, 118,
1413 118, 118, 118, 118, 118, 118, 118, 118, 113, 113, 113, 113, 113,
1414 113, 113, 113, 113, 113, 113, 113, 113, 112, 112, 112, 112, 112,
1415 112, 112, 112, 112, 112, 112, 112, 115, 115, 115, 115, 115, 115,
1416 115, 115, 115, 115, 115, 115, 115, 114, 114, 114, 114, 114, 114,
1417 114, 114, 114, 114, 114, 114, 114, 125, 125, 125, 125, 125, 125,
1418 125, 125, 125, 125, 125, 125, 125, 124, 124, 124, 124, 124, 124,
1419 124, 124, 124, 124, 124, 124, 124, 127, 127, 127, 127, 127, 127,
1420 127, 127, 127, 127, 127, 127, 126, 126, 126, 126, 126, 126, 126,
1421 126, 126, 126, 126, 126, 126, 121, 121, 121, 121, 121, 121, 121,
1422 121, 121, 121, 121, 121, 121, 120, 120, 120, 120, 120, 120, 120,
1423 120, 120, 120, 120, 120, 120, 123, 123, 123, 123, 123, 123, 123,
1424 123, 123, 123, 123, 123, 123, 122, 122, 122, 122, 122, 122, 122,
1425 122, 122, 122, 122, 122, 122, 101, 101, 101, 101, 101, 101, 101,
1426 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
1427 101, 101, 101, 101, 101, 101, 101, 100, 100, 100, 100, 100, 100,
1428 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100,
1429 100, 100, 100, 100, 100, 100, 100, 103, 103, 103, 103, 103, 103,
1430 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
1431 103, 103, 103, 103, 103, 103, 103, 103, 102, 102, 102, 102, 102,
1432 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102,
1433 102, 102, 102, 102, 102, 102, 102, 102, 102, 97, 97, 97, 97, 97,
1434 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97,
1435 97, 97, 97, 97, 97, 97, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96,
1436 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96,
1437 96, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99,
1438 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 98, 98, 98,
1439 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98,
1440 98, 98, 98, 98, 98, 98, 98, 98, 98, 109, 109, 109, 109, 109, 109,
1441 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
1442 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 108, 108, 108,
1443 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108,
1444 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 111,
1445 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111,
1446 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111,
1447 111, 111, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110,
1448 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110,
1449 110, 110, 110, 110, 110, 110, 105, 105, 105, 105, 105, 105, 105,
1450 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105,
1451 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 104, 104, 104,
1452 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
1453 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
1454 104, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107,
1455 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107,
1456 107, 107, 107, 107, 107, 107, 106, 106, 106, 106, 106, 106, 106,
1457 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106,
1458 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21,
1459 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
1460 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
1461 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
1462 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
1463 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
1464 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
1465 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
1466 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
1467 20, 20, 20, 20, 20, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1468 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1469 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1470 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1471 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 22, 22, 22,
1472 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
1473 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
1474 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
1475 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
1476 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 17, 17, 17, 17, 17, 17,
1477 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
1478 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
1479 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
1480 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
1481 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 16, 16,
1482 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1483 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1484 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1485 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1486 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1487 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 19, 19, 19, 19, 19, 19,
1488 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1489 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1490 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1491 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1492 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1493 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1494 19, 19, 19, 19, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1495 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1496 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1497 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1498 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1499 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1500 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1501 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1502 18, 18, 18, 18, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1503 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1504 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1505 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1506 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1507 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1508 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1509 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1510 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1511 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1512 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1513 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 28, 28, 28, 28, 28, 28,
1514 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1515 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1516 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1517 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1518 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1519 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1520 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1521 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1522 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1523 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1524 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1525 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1526 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1527 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1528 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1529 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1530 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1531 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1532 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1533 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1534 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1535 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1536 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1537 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1538 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1539 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1540 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1541 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1542 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1543 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1544 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1545 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
1546 28, 28, 28, 28, 28, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1547 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1548 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1549 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1550 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1551 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1552 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1553 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1554 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1555 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1556 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
1557 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 18, 18, 18, 18, 18,
1558 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1559 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1560 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1561 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1562 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1563 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1564 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
1565 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 19, 19, 19,
1566 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1567 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1568 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1569 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1570 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1571 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
1572 19, 19, 19, 19, 19, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1573 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1574 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1575 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1576 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1577 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
1578 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
1579 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
1580 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
1581 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
1582 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
1583 17, 17, 17, 17, 17, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
1584 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
1585 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
1586 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
1587 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
1588 22, 22, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1589 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1590 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1591 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1592 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 20, 20, 20, 20, 20, 20,
1593 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
1594 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
1595 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
1596 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 21,
1597 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
1598 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
1599 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
1600 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
1601 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106,
1602 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106,
1603 106, 106, 106, 106, 106, 106, 107, 107, 107, 107, 107, 107, 107,
1604 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107,
1605 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 104, 104,
1606 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
1607 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
1608 104, 104, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105,
1609 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105,
1610 105, 105, 105, 105, 105, 105, 110, 110, 110, 110, 110, 110, 110,
1611 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110,
1612 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 111, 111, 111,
1613 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111,
1614 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111,
1615 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108,
1616 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108,
1617 108, 108, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
1618 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
1619 109, 109, 109, 109, 109, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98,
1620 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98,
1621 98, 98, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99,
1622 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 96, 96,
1623 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96,
1624 96, 96, 96, 96, 96, 96, 96, 96, 96, 97, 97, 97, 97, 97, 97, 97,
1625 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97,
1626 97, 97, 97, 97, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102,
1627 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102,
1628 102, 102, 102, 102, 103, 103, 103, 103, 103, 103, 103, 103, 103,
1629 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
1630 103, 103, 103, 103, 103, 100, 100, 100, 100, 100, 100, 100, 100,
1631 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100,
1632 100, 100, 100, 100, 100, 101, 101, 101, 101, 101, 101, 101, 101,
1633 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
1634 101, 101, 101, 101, 101, 101, 122, 122, 122, 122, 122, 122, 122,
1635 122, 122, 122, 122, 122, 122, 123, 123, 123, 123, 123, 123, 123,
1636 123, 123, 123, 123, 123, 123, 120, 120, 120, 120, 120, 120, 120,
1637 120, 120, 120, 120, 120, 120, 121, 121, 121, 121, 121, 121, 121,
1638 121, 121, 121, 121, 121, 121, 126, 126, 126, 126, 126, 126, 126,
1639 126, 126, 126, 126, 126, 126, 127, 127, 127, 127, 127, 127, 127,
1640 127, 127, 127, 127, 127, 124, 124, 124, 124, 124, 124, 124, 124,
1641 124, 124, 124, 124, 124, 125, 125, 125, 125, 125, 125, 125, 125,
1642 125, 125, 125, 125, 125, 114, 114, 114, 114, 114, 114, 114, 114,
1643 114, 114, 114, 114, 114, 115, 115, 115, 115, 115, 115, 115, 115,
1644 115, 115, 115, 115, 115, 112, 112, 112, 112, 112, 112, 112, 112,
1645 112, 112, 112, 112, 113, 113, 113, 113, 113, 113, 113, 113, 113,
1646 113, 113, 113, 113, 118, 118, 118, 118, 118, 118, 118, 118, 118,
1647 118, 118, 118, 118, 119, 119, 119, 119, 119, 119, 119, 119, 119,
1648 119, 119, 119, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116,
1649 116, 116, 116, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117,
1650 117, 117, 117, 74, 74, 74, 74, 74, 74, 75, 75, 75, 75, 75, 75, 72,
1651 72, 72, 72, 72, 72, 73, 73, 73, 73, 73, 73, 73, 78, 78, 78, 78,
1652 78, 78, 79, 79, 79, 79, 79, 79, 76, 76, 76, 76, 76, 76, 76, 77,
1653 77, 77, 77, 77, 77, 66, 66, 66, 66, 66, 66, 67, 67, 67, 67, 67,
1654 67, 64, 64, 64, 64, 64, 64, 64, 65, 65, 65, 65, 65, 65, 70, 70,
1655 70, 70, 70, 70, 71, 71, 71, 71, 71, 71, 68, 68, 68, 68, 68, 68,
1656 68, 69, 69, 69, 69, 69, 69, 90, 90, 90, 90, 90, 90, 91, 91, 91,
1657 91, 91, 91, 88, 88, 88, 88, 88, 88, 88, 89, 89, 89, 89, 89, 89,
1658 94, 94, 94, 94, 94, 94, 95, 95, 95, 95, 95, 95, 92, 92, 92, 92,
1659 92, 92, 93, 93, 93, 93, 93, 93, 93, 82, 82, 82, 82, 82, 82, 83,
1660 83, 83, 83, 83, 83, 80, 80, 80, 80, 80, 80, 81, 81, 81, 81, 81,
1661 81, 81, 86, 86, 86, 86, 86, 86, 87, 87, 87, 87, 87, 87, 84, 84,
1662 84, 84, 84, 84, 85, 85, 85, 85, 85, 85, 90, 90, 90 };
1663
1664 /*===========================================================================*/
1665
1666 #endif /* NI4BTEL > 0 */