Attachment 'logfile.txt'

Download

   1 help
   2 HELP topics:
   3 
   4 matlab/general       -  General purpose commands.
   5 matlab/ops           -  Operators and special characters.
   6 matlab/lang          -  Programming language constructs.
   7 matlab/elmat         -  Elementary matrices and matrix manipulation.
   8 matlab/elfun         -  Elementary math functions.
   9 matlab/specfun       -  Specialized math functions.
  10 matlab/matfun        -  Matrix functions - numerical linear algebra.
  11 matlab/datafun       -  Data analysis and Fourier transforms.
  12 matlab/polyfun       -  Interpolation and polynomials.
  13 matlab/funfun        -  Function functions and ODE solvers.
  14 matlab/sparfun       -  Sparse matrices.
  15 matlab/scribe        -  Annotation and Plot Editing.
  16 matlab/graph2d       -  Two dimensional graphs.
  17 matlab/graph3d       -  Three dimensional graphs.
  18 matlab/specgraph     -  Specialized graphs.
  19 matlab/graphics      -  Handle Graphics.
  20 matlab/uitools       -  Graphical User Interface Tools.
  21 matlab/strfun        -  Character strings.
  22 matlab/imagesci      -  Image and scientific data input/output.
  23 matlab/iofun         -  File input and output.
  24 matlab/audiovideo    -  Audio and Video support.
  25 matlab/timefun       -  Time and dates.
  26 matlab/datatypes     -  Data types and structures.
  27 matlab/verctrl       -  Version control.
  28 matlab/codetools     -  Commands for creating and debugging code.
  29 matlab/helptools     -  Help commands.
  30 matlab/demos         -  Examples and demonstrations.
  31 matlab/timeseries    -  Time series data visualization and exploration.
  32 matlab/hds           -  (No table of contents file)
  33 matlab/guide         -  Graphical User Interface Tools.
  34 matlab/plottools     -  Graphical User Interface Tools.
  35 toolbox/local        -  General preferences and configuration information.
  36 shared/controllib    -  Control Library
  37 simulink/simulink    -  Simulink
  38 simulink/blocks      -  Simulink block library.
  39 simulink/components  -  Simulink components.
  40 simulink/fixedandfloat -  Simulink Fixed Point utilities.
  41 fixedandfloat/fxpdemos -  Simulink Fixed Point Demos
  42 fixedandfloat/obsolete -  (No table of contents file)
  43 simulink/simdemos    -  Simulink demonstrations and examples.
  44 simdemos/aerospace   -  Simulink: Aerospace model demonstrations and samples.
  45 simdemos/automotive  -  Simulink: Automotive model demonstrations and samples.
  46 simdemos/simfeatures -  Simulink: Feature demonstrations and samples.
  47 simdemos/simgeneral  -  Simulink: General model demonstrations and samples.
  48 simulink/dee         -  Differential Equation Editor
  49 shared/dastudio      -  (No table of contents file)
  50 shared/glue          -  (No table of contents file)
  51 stateflow/stateflow  -  Stateflow
  52 rtw/rtw              -  (No table of contents file)
  53 simulink/modeladvisor -  (No table of contents file)
  54 modeladvisor/fixpt   -  (No table of contents file)
  55 simulink/MPlayIO     -  (No table of contents file)
  56 simulink/dataobjectwizard -  (No table of contents file)
  57 shared/fixedpointlib -  (No table of contents file)
  58 simulink/dataimportexport -  (No table of contents file)
  59 shared/hdlshared     -  (No table of contents file)
  60 stateflow/sfdemos    -  Stateflow demonstrations and samples.
  61 stateflow/coder      -  (No table of contents file)
  62 eml/eml              -  (No table of contents file)
  63 emlcoder/emlcoder    -  Embedded MATLAB Coder.
  64 emlcoder/emlcodermex -  (No table of contents file)
  65 fixedpoint/fixedpoint -  (No table of contents file)
  66 fixedpoint/fidemos   -  (No table of contents file)
  67 images/images        -  Image Processing Toolbox
  68 images/imuitools     -  Image Processing Toolbox --- imuitools
  69 images/imdemos       -  Image Processing Toolbox --- demos and sample images
  70 images/iptutils      -  Image Processing Toolbox --- utilities
  71 shared/imageslib     -  Image Processing Toolbox Library
  72 images/medformats    -  Image Processing Toolbox --- Medical formats
  73 slvnv/simcoverage    -  (No table of contents file)
  74 optim/optim          -  Optimization Toolbox
  75 optim/optimdemos     - 
  76 shared/optimlib      -  Optimization Toolbox Library
  77 signal/signal        -  Signal Processing Toolbox 
  78 signal/sigtools      -  (No table of contents file)
  79 signal/sptoolgui     -  (No table of contents file)
  80 signal/sigdemos      -  (No table of contents file)
  81 shared/spcuilib      -  (No table of contents file)
  82 toolbox/stats        -  Statistics Toolbox
  83 vr/vr                -  (No table of contents file)
  84 vr/vrdemos           -  Virtual Reality Toolbox examples.
  85 matlab/work          -  (No table of contents file)
  86 
  87 help ops
  88   Operators and special characters.
  89  
  90   Arithmetic operators.
  91     plus       - Plus                               +    
  92     uplus      - Unary plus                         +    
  93     minus      - Minus                              -    
  94     uminus     - Unary minus                        -    
  95     mtimes     - Matrix multiply                    *    
  96     times      - Array multiply                    .*    
  97     mpower     - Matrix power                       ^    
  98     power      - Array power                       .^    
  99     mldivide   - Backslash or left matrix divide    \    
 100     mrdivide   - Slash or right matrix divide       /    
 101     ldivide    - Left array divide                 .\    
 102     rdivide    - Right array divide                ./    
 103     kron       - Kronecker tensor product         kron   
 104  
 105   Relational operators.
 106     eq         - Equal                             ==     
 107     ne         - Not equal                         ~=     
 108     lt         - Less than                          <      
 109     gt         - Greater than                       >      
 110     le         - Less than or equal                <=     
 111     ge         - Greater than or equal             >=     
 112  
 113   Logical operators.
 114     relop      - Short-circuit logical AND         &&     
 115     relop      - Short-circuit logical OR          ||     
 116     and        - Element-wise logical AND           &      
 117     or         - Element-wise logical OR            |      
 118     not        - Logical NOT                        ~      
 119     xor        - Logical EXCLUSIVE OR
 120     any        - True if any element of vector is nonzero
 121     all        - True if all elements of vector are nonzero
 122  
 123   Special characters. 
 124     colon      - Colon                              : 
 125     paren      - Parentheses and subscripting      ( )              
 126     paren      - Brackets                          [ ]     
 127     paren      - Braces and subscripting           { }          
 128     punct      - Function handle creation           @
 129     punct      - Decimal point                      .      
 130     punct      - Structure field access             .      
 131     punct      - Parent directory                   ..     
 132     punct      - Continuation                       ...    
 133     punct      - Separator                          ,      
 134     punct      - Semicolon                          ;      
 135     punct      - Comment                            %      
 136     punct      - Invoke operating system command    !            
 137     punct      - Assignment                         =
 138     punct      - Quote                              '      
 139     transpose  - Transpose                         .'
 140     ctranspose - Complex conjugate transpose        ' 
 141     horzcat    - Horizontal concatenation          [,]     
 142     vertcat    - Vertical concatenation            [;]     
 143     subsasgn   - Subscripted assignment          ( ),{ },.   
 144     subsref    - Subscripted reference           ( ),{ },.   
 145     subsindex  - Subscript index                               
 146  
 147   Bitwise operators.
 148     bitand     - Bit-wise AND.
 149     bitcmp     - Complement bits.
 150     bitor      - Bit-wise OR.
 151     bitmax     - Maximum floating point integer.
 152     bitxor     - Bit-wise XOR.
 153     bitset     - Set bit.
 154     bitget     - Get bit.
 155     bitshift   - Bit-wise shift.
 156  
 157   Set operators.
 158     union      - Set union.
 159     unique     - Set unique.
 160     intersect  - Set intersection.
 161     setdiff    - Set difference.
 162     setxor     - Set exclusive-or.
 163     ismember   - True for set member.
 164  
 165   See also ARITH, RELOP, SLASH, FUNCTION_HANDLE.
 166 
 167 help plus
 168  +   Plus.
 169     X + Y adds matrices X and Y.  X and Y must have the same
 170     dimensions unless one is a scalar (a 1-by-1 matrix).
 171     A scalar can be added to anything.  
 172  
 173     C = PLUS(A,B) is called for the syntax 'A + B' when A or B is an
 174     object.
 175 
 176     Overloaded functions or methods (ones with the same name in other directories)
 177        help timeseries/plus.m
 178        help cvdata/plus.m
 179 
 180     Reference page in Help browser
 181        doc plus
 182 
 183 lookfor eigenvalue
 184 ROSSER Classic symmetric eigenvalue test problem.
 185 WILKINSON Wilkinson's eigenvalue test matrix.
 186 BALANCE Diagonal scaling to improve eigenvalue accuracy.
 187 CONDEIG Condition number with respect to eigenvalues.
 188 EIG    Eigenvalues and eigenvectors.
 189 ORDEIG    Eigenvalues of quasitriangular matrices.
 190 ORDQZ  Reorder eigenvalues in QZ factorization.
 191 ORDSCHUR  Reorder eigenvalues in Schur factorization.
 192 POLYEIG Polynomial eigenvalue problem.
 193 QZ     QZ factorization for generalized eigenvalues.
 194 EIGS  Find a few eigenvalues and eigenvectors of a matrix using ARPACK
 195 EIGSHOW Graphical demonstration of eigenvalues and singular values.
 196 EXPMDEMO3  Matrix exponential via eigenvalues and eigenvectors.
 197 MAT4BVP  Find the fourth eigenvalue of the Mathieu's equation.
 198 ls
 199 BORUSSIA                     dilan_thesis.pdf
 200 Desktop                      dilan_thesis.ps
 201 ML_Praktikum_U01.ps          fig1.eps
 202 ML_Praktikum_U02.pdf         flatroll.mat
 203 Mail                         func1.m
 204 T1.txt                       func1.m~
 205 T1_Mitschnitt.txt            guide.pdf
 206 T1_Show.txt                  hallo.mat
 207 T2.txt                       learning_biased_sampling.ps
 208 T2_Mitschnitt.txt            lib
 209 T2_Test.ps                   logfile.txt
 210 T3                           myprod.m
 211 T3_Test.ps                   myprod.m~
 212 T3_Uebung.ps                 praktikum
 213 T3_Uebung2.ps                ss08
 214 Tag1_Mitschnitt.txt          swissroll.mat
 215 bin                          tunet
 216 core                         www
 217 covs_rep01.ps
 218 
 219 ls -l
 220 total 24584
 221 drwx--S---   9 buenau       1024 Apr  4 11:34 BORUSSIA
 222 drwx--S---   2 buenau        512 Oct 12  2007 Desktop
 223 -rw-------   1 buenau     139767 Apr 13  2007 ML_Praktikum_U01.ps
 224 -rw-------   1 buenau      91508 Apr 30  2007 ML_Praktikum_U02.pdf
 225 drwx------   2 buenau        512 Oct 31 14:32 Mail
 226 -rw-------   1 buenau      22850 Apr  7 10:00 T1.txt
 227 -rw-------   1 buenau      81909 Apr 16  2007 T1_Mitschnitt.txt
 228 -rw-------   1 buenau       2718 Apr 16  2007 T1_Show.txt
 229 -rw-------   1 buenau      13887 Apr  8 09:36 T2.txt
 230 -rw-------   1 buenau      29489 Oct  9  2007 T2_Mitschnitt.txt
 231 -rw-------   1 buenau     127071 Apr 11  2007 T2_Test.ps
 232 drwx--s--x   2 buenau        512 Apr  9 09:42 T3
 233 -rw-------   1 buenau     132750 Apr 12  2007 T3_Test.ps
 234 -rw-------   1 buenau     172098 Apr 12  2007 T3_Uebung.ps
 235 -rw-------   1 buenau      95918 Apr 12  2007 T3_Uebung2.ps
 236 -rw-------   1 buenau      29491 Oct  8  2007 Tag1_Mitschnitt.txt
 237 drwxr-sr-x   2 buenau        512 Sep 14  1994 bin
 238 drwx--S---   2 buenau        512 Aug  2  2001 core
 239 -rw-------   1 buenau     224372 Mar 27  2007 covs_rep01.ps
 240 -rw-------   1 buenau    4315864 Mar 16  2007 dilan_thesis.pdf
 241 -rw-------   1 buenau   19110414 Mar 21  2007 dilan_thesis.ps
 242 -rw-------   1 buenau      60698 Mar 27  2007 fig1.eps
 243 -rw-------   1 buenau      23273 Apr 30  2007 flatroll.mat
 244 -rw-------   1 buenau        118 Apr  7 09:53 func1.m
 245 -rw-------   1 buenau        109 Apr  7 09:53 func1.m~
 246 -rw-------   1 buenau     126237 Apr 30  2007 guide.pdf
 247 -rw-------   1 buenau        220 Apr  7 09:31 hallo.mat
 248 -rw-------   1 buenau     193286 Mar 27  2007 learning_biased_sampling.ps
 249 drwxr-sr-x   3 buenau        512 Sep  1  1994 lib
 250 -rw-------   1 buenau       8192 Apr 16 10:26 logfile.txt
 251 -rw-------   1 buenau        136 Apr  7 09:59 myprod.m
 252 -rw-------   1 buenau        138 Apr  7 09:58 myprod.m~
 253 drwx--s--x   3 buenau        512 May 14  2007 praktikum
 254 drwx--s--x   2 buenau        512 Apr  7 08:46 ss08
 255 -rw-------   1 buenau      27053 Apr 30  2007 swissroll.mat
 256 -rw-------   1 buenau        137 Mar 14  2007 tunet
 257 drwx--s--x   2 buenau        512 Mar 23  2007 www
 258 
 259 pwd
 260 
 261 ans =
 262 
 263 /home/ml/buenau
 264 
 265 !hostname
 266 pepino
 267 1+2
 268 
 269 ans =
 270 
 271      3
 272 
 273 3^3
 274 
 275 ans =
 276 
 277     27
 278 
 279 sin(pi)
 280 
 281 ans =
 282 
 283    1.2246e-16
 284 
 285 a = 2
 286 
 287 a =
 288 
 289      2
 290 
 291 a = 2;
 292 whos
 293   Name      Size            Bytes  Class     Attributes
 294 
 295   a         1x1                 8  double              
 296   ans       1x1                 8  double              
 297 
 298 b = 3*a;
 299 help ops
 300   Operators and special characters.
 301  
 302   Arithmetic operators.
 303     plus       - Plus                               +    
 304     uplus      - Unary plus                         +    
 305     minus      - Minus                              -    
 306     uminus     - Unary minus                        -    
 307     mtimes     - Matrix multiply                    *    
 308     times      - Array multiply                    .*    
 309     mpower     - Matrix power                       ^    
 310     power      - Array power                       .^    
 311     mldivide   - Backslash or left matrix divide    \    
 312     mrdivide   - Slash or right matrix divide       /    
 313     ldivide    - Left array divide                 .\    
 314     rdivide    - Right array divide                ./    
 315     kron       - Kronecker tensor product         kron   
 316  
 317   Relational operators.
 318     eq         - Equal                             ==     
 319     ne         - Not equal                         ~=     
 320     lt         - Less than                          <      
 321     gt         - Greater than                       >      
 322     le         - Less than or equal                <=     
 323     ge         - Greater than or equal             >=     
 324  
 325   Logical operators.
 326     relop      - Short-circuit logical AND         &&     
 327     relop      - Short-circuit logical OR          ||     
 328     and        - Element-wise logical AND           &      
 329     or         - Element-wise logical OR            |      
 330     not        - Logical NOT                        ~      
 331     xor        - Logical EXCLUSIVE OR
 332     any        - True if any element of vector is nonzero
 333     all        - True if all elements of vector are nonzero
 334  
 335   Special characters. 
 336     colon      - Colon                              : 
 337     paren      - Parentheses and subscripting      ( )              
 338     paren      - Brackets                          [ ]     
 339     paren      - Braces and subscripting           { }          
 340     punct      - Function handle creation           @
 341     punct      - Decimal point                      .      
 342     punct      - Structure field access             .      
 343     punct      - Parent directory                   ..     
 344     punct      - Continuation                       ...    
 345     punct      - Separator                          ,      
 346     punct      - Semicolon                          ;      
 347     punct      - Comment                            %      
 348     punct      - Invoke operating system command    !            
 349     punct      - Assignment                         =
 350     punct      - Quote                              '      
 351     transpose  - Transpose                         .'
 352     ctranspose - Complex conjugate transpose        ' 
 353     horzcat    - Horizontal concatenation          [,]     
 354     vertcat    - Vertical concatenation            [;]     
 355     subsasgn   - Subscripted assignment          ( ),{ },.   
 356     subsref    - Subscripted reference           ( ),{ },.   
 357     subsindex  - Subscript index                               
 358  
 359   Bitwise operators.
 360     bitand     - Bit-wise AND.
 361     bitcmp     - Complement bits.
 362     bitor      - Bit-wise OR.
 363     bitmax     - Maximum floating point integer.
 364     bitxor     - Bit-wise XOR.
 365     bitset     - Set bit.
 366     bitget     - Get bit.
 367     bitshift   - Bit-wise shift.
 368  
 369   Set operators.
 370     union      - Set union.
 371     unique     - Set unique.
 372     intersect  - Set intersection.
 373     setdiff    - Set difference.
 374     setxor     - Set exclusive-or.
 375     ismember   - True for set member.
 376  
 377   See also ARITH, RELOP, SLASH, FUNCTION_HANDLE.
 378 
 379 whos
 380   Name      Size            Bytes  Class     Attributes
 381 
 382   a         1x1                 8  double              
 383   ans       1x1                 8  double              
 384   b         1x1                 8  double              
 385 
 386 save hallo.mat
 387 whos
 388   Name      Size            Bytes  Class     Attributes
 389 
 390   a         1x1                 8  double              
 391   ans       1x1                 8  double              
 392   b         1x1                 8  double              
 393 
 394 clear;
 395 whos
 396 load hallo
 397 whos
 398   Name      Size            Bytes  Class     Attributes
 399 
 400   a         1x1                 8  double              
 401   ans       1x1                 8  double              
 402   b         1x1                 8  double              
 403 
 404 a = [ 1 2 3 ];
 405 a
 406 
 407 a =
 408 
 409      1     2     3
 410 
 411 whos
 412   Name      Size            Bytes  Class     Attributes
 413 
 414   a         1x3                24  double              
 415   ans       1x1                 8  double              
 416   b         1x1                 8  double              
 417 
 418 a = [ 1 2 3 ]'
 419 
 420 a =
 421 
 422      1
 423      2
 424      3
 425 
 426 whos
 427   Name      Size            Bytes  Class     Attributes
 428 
 429   a         3x1                24  double              
 430   ans       1x1                 8  double              
 431   b         1x1                 8  double              
 432 
 433 A = [ 1 4 5; 7 8 9 ];
 434 whos
 435   Name      Size            Bytes  Class     Attributes
 436 
 437   A         2x3                48  double              
 438   a         3x1                24  double              
 439   ans       1x1                 8  double              
 440   b         1x1                 8  double              
 441 
 442 a = [ 1; 2; 3 ];
 443 a
 444 
 445 a =
 446 
 447      1
 448      2
 449      3
 450 
 451 A
 452 
 453 A =
 454 
 455      1     4     5
 456      7     8     9
 457 
 458 A(1,1)
 459 
 460 ans =
 461 
 462      1
 463 
 464 A(3,1)
 465 ??? Index exceeds matrix dimensions.
 466 
 467 A
 468 
 469 A =
 470 
 471      1     4     5
 472      7     8     9
 473 
 474 a = 1:10;
 475 a
 476 
 477 a =
 478 
 479      1     2     3     4     5     6     7     8     9    10
 480 
 481 a = 1:2:10;
 482 a
 483 
 484 a =
 485 
 486      1     3     5     7     9
 487 
 488 a = 10:-3:1;
 489 a
 490 
 491 a =
 492 
 493     10     7     4     1
 494 
 495 A
 496 
 497 A =
 498 
 499      1     4     5
 500      7     8     9
 501 
 502 A = magic(8);
 503 A
 504 
 505 A =
 506 
 507     64     2     3    61    60     6     7    57
 508      9    55    54    12    13    51    50    16
 509     17    47    46    20    21    43    42    24
 510     40    26    27    37    36    30    31    33
 511     32    34    35    29    28    38    39    25
 512     41    23    22    44    45    19    18    48
 513     49    15    14    52    53    11    10    56
 514      8    58    59     5     4    62    63     1
 515 
 516 sum(A,1)
 517 
 518 ans =
 519 
 520    260   260   260   260   260   260   260   260
 521 
 522 A
 523 
 524 A =
 525 
 526     64     2     3    61    60     6     7    57
 527      9    55    54    12    13    51    50    16
 528     17    47    46    20    21    43    42    24
 529     40    26    27    37    36    30    31    33
 530     32    34    35    29    28    38    39    25
 531     41    23    22    44    45    19    18    48
 532     49    15    14    52    53    11    10    56
 533      8    58    59     5     4    62    63     1
 534 
 535 A(1:8,3)
 536 
 537 ans =
 538 
 539      3
 540     54
 541     46
 542     27
 543     35
 544     22
 545     14
 546     59
 547 
 548 A(1:end,3)
 549 
 550 ans =
 551 
 552      3
 553     54
 554     46
 555     27
 556     35
 557     22
 558     14
 559     59
 560 
 561 A(:,3)
 562 
 563 ans =
 564 
 565      3
 566     54
 567     46
 568     27
 569     35
 570     22
 571     14
 572     59
 573 
 574 A(3,:)
 575 
 576 ans =
 577 
 578     17    47    46    20    21    43    42    24
 579 
 580 A([1 6],:)
 581 
 582 ans =
 583 
 584     64     2     3    61    60     6     7    57
 585     41    23    22    44    45    19    18    48
 586 
 587 A
 588 
 589 A =
 590 
 591     64     2     3    61    60     6     7    57
 592      9    55    54    12    13    51    50    16
 593     17    47    46    20    21    43    42    24
 594     40    26    27    37    36    30    31    33
 595     32    34    35    29    28    38    39    25
 596     41    23    22    44    45    19    18    48
 597     49    15    14    52    53    11    10    56
 598      8    58    59     5     4    62    63     1
 599 
 600 A(3)
 601 
 602 ans =
 603 
 604     17
 605 
 606 A(62)
 607 
 608 ans =
 609 
 610     48
 611 
 612 A
 613 
 614 A =
 615 
 616     64     2     3    61    60     6     7    57
 617      9    55    54    12    13    51    50    16
 618     17    47    46    20    21    43    42    24
 619     40    26    27    37    36    30    31    33
 620     32    34    35    29    28    38    39    25
 621     41    23    22    44    45    19    18    48
 622     49    15    14    52    53    11    10    56
 623      8    58    59     5     4    62    63     1
 624 
 625 A(1,1) = 123;
 626 A
 627 
 628 A =
 629 
 630    123     2     3    61    60     6     7    57
 631      9    55    54    12    13    51    50    16
 632     17    47    46    20    21    43    42    24
 633     40    26    27    37    36    30    31    33
 634     32    34    35    29    28    38    39    25
 635     41    23    22    44    45    19    18    48
 636     49    15    14    52    53    11    10    56
 637      8    58    59     5     4    62    63     1
 638 
 639 A(:,3) = 123;
 640 A
 641 
 642 A =
 643 
 644    123     2   123    61    60     6     7    57
 645      9    55   123    12    13    51    50    16
 646     17    47   123    20    21    43    42    24
 647     40    26   123    37    36    30    31    33
 648     32    34   123    29    28    38    39    25
 649     41    23   123    44    45    19    18    48
 650     49    15   123    52    53    11    10    56
 651      8    58   123     5     4    62    63     1
 652 
 653 A(:,3) = 1:8;
 654 A
 655 
 656 A =
 657 
 658    123     2     1    61    60     6     7    57
 659      9    55     2    12    13    51    50    16
 660     17    47     3    20    21    43    42    24
 661     40    26     4    37    36    30    31    33
 662     32    34     5    29    28    38    39    25
 663     41    23     6    44    45    19    18    48
 664     49    15     7    52    53    11    10    56
 665      8    58     8     5     4    62    63     1
 666 
 667 B = [ A A A ];
 668 B
 669 
 670 B =
 671 
 672   Columns 1 through 13
 673 
 674    123     2     1    61    60     6     7    57   123     2     1    61    60
 675      9    55     2    12    13    51    50    16     9    55     2    12    13
 676     17    47     3    20    21    43    42    24    17    47     3    20    21
 677     40    26     4    37    36    30    31    33    40    26     4    37    36
 678     32    34     5    29    28    38    39    25    32    34     5    29    28
 679     41    23     6    44    45    19    18    48    41    23     6    44    45
 680     49    15     7    52    53    11    10    56    49    15     7    52    53
 681      8    58     8     5     4    62    63     1     8    58     8     5     4
 682 
 683   Columns 14 through 24
 684 
 685      6     7    57   123     2     1    61    60     6     7    57
 686     51    50    16     9    55     2    12    13    51    50    16
 687     43    42    24    17    47     3    20    21    43    42    24
 688     30    31    33    40    26     4    37    36    30    31    33
 689     38    39    25    32    34     5    29    28    38    39    25
 690     19    18    48    41    23     6    44    45    19    18    48
 691     11    10    56    49    15     7    52    53    11    10    56
 692     62    63     1     8    58     8     5     4    62    63     1
 693 
 694 B = [ A; A; A ];
 695 repmat(A, [3 1])
 696 
 697 ans =
 698 
 699    123     2     1    61    60     6     7    57
 700      9    55     2    12    13    51    50    16
 701     17    47     3    20    21    43    42    24
 702     40    26     4    37    36    30    31    33
 703     32    34     5    29    28    38    39    25
 704     41    23     6    44    45    19    18    48
 705     49    15     7    52    53    11    10    56
 706      8    58     8     5     4    62    63     1
 707    123     2     1    61    60     6     7    57
 708      9    55     2    12    13    51    50    16
 709     17    47     3    20    21    43    42    24
 710     40    26     4    37    36    30    31    33
 711     32    34     5    29    28    38    39    25
 712     41    23     6    44    45    19    18    48
 713     49    15     7    52    53    11    10    56
 714      8    58     8     5     4    62    63     1
 715    123     2     1    61    60     6     7    57
 716      9    55     2    12    13    51    50    16
 717     17    47     3    20    21    43    42    24
 718     40    26     4    37    36    30    31    33
 719     32    34     5    29    28    38    39    25
 720     41    23     6    44    45    19    18    48
 721     49    15     7    52    53    11    10    56
 722      8    58     8     5     4    62    63     1
 723 
 724 help repmat
 725  REPMAT Replicate and tile an array.
 726     B = repmat(A,M,N) creates a large matrix B consisting of an M-by-N
 727     tiling of copies of A. The size of B is [size(A,1)*M, size(A,2)*N].
 728     The statement repmat(A,N) creates an N-by-N tiling.
 729     
 730     B = REPMAT(A,[M N]) accomplishes the same result as repmat(A,M,N).
 731  
 732     B = REPMAT(A,[M N P ...]) tiles the array A to produce a 
 733     multidimensional array B composed of copies of A. The size of B is 
 734     [size(A,1)*M, size(A,2)*N, size(A,3)*P, ...].
 735  
 736     REPMAT(A,M,N) when A is a scalar is commonly used to produce an M-by-N
 737     matrix filled with A's value and having A's CLASS. For certain values,
 738     you may achieve the same results using other functions. Namely,
 739        REPMAT(NAN,M,N)           is the same as   NAN(M,N)
 740        REPMAT(SINGLE(INF),M,N)   is the same as   INF(M,N,'single')
 741        REPMAT(INT8(0),M,N)       is the same as   ZEROS(M,N,'int8')
 742        REPMAT(UINT32(1),M,N)     is the same as   ONES(M,N,'uint32')
 743        REPMAT(EPS,M,N)           is the same as   EPS(ONES(M,N))
 744  
 745     Example:
 746         repmat(magic(2), 2, 3)
 747         repmat(uint8(5), 2, 3)
 748  
 749     Class support for input A:
 750        float: double, single
 751  
 752     See also BSXFUN, MESHGRID, ONES, ZEROS, NAN, INF.
 753 
 754     Overloaded functions or methods (ones with the same name in other directories)
 755        help categorical/repmat.m
 756 
 757     Reference page in Help browser
 758        doc repmat
 759 
 760 A = magic(3);
 761 A
 762 
 763 A =
 764 
 765      8     1     6
 766      3     5     7
 767      4     9     2
 768 
 769 A*A
 770 
 771 ans =
 772 
 773     91    67    67
 774     67    91    67
 775     67    67    91
 776 
 777 A*A(:,1)
 778 
 779 ans =
 780 
 781     91
 782     67
 783     67
 784 
 785 A*A(1,:)
 786 ??? Error using ==> mtimes
 787 Inner matrix dimensions must agree.
 788 
 789 3*A
 790 
 791 ans =
 792 
 793     24     3    18
 794      9    15    21
 795     12    27     6
 796 
 797 A -A
 798 ??? Error: "A" was previously used as a variable,
 799  conflicting with its use here as the name of a function or command.
 800  See <a href="matlab: helpview([docroot '/techdoc/matlab_prog/matlab_prog.map'],'function_call_command_syntax')">MATLAB Programming, "Determining Which Function Is Called"</a> for details.
 801 
 802 A - A
 803 
 804 ans =
 805 
 806      0     0     0
 807      0     0     0
 808      0     0     0
 809 
 810 A .* A
 811 
 812 ans =
 813 
 814     64     1    36
 815      9    25    49
 816     16    81     4
 817 
 818 A .^ 0.5
 819 
 820 ans =
 821 
 822     2.8284    1.0000    2.4495
 823     1.7321    2.2361    2.6458
 824     2.0000    3.0000    1.4142
 825 
 826 A
 827 
 828 A =
 829 
 830      8     1     6
 831      3     5     7
 832      4     9     2
 833 
 834 A ~= 5
 835 
 836 ans =
 837 
 838      1     1     1
 839      1     0     1
 840      1     1     1
 841 
 842 find(A ~= 5)
 843 
 844 ans =
 845 
 846      1
 847      2
 848      3
 849      4
 850      6
 851      7
 852      8
 853      9
 854 
 855 A(find(A ~= 5)) = -1
 856 
 857 A =
 858 
 859     -1    -1    -1
 860     -1     5    -1
 861     -1    -1    -1
 862 
 863 eye(5)
 864 
 865 ans =
 866 
 867      1     0     0     0     0
 868      0     1     0     0     0
 869      0     0     1     0     0
 870      0     0     0     1     0
 871      0     0     0     0     1
 872 
 873 zeros(3,3)
 874 
 875 ans =
 876 
 877      0     0     0
 878      0     0     0
 879      0     0     0
 880 
 881 ones(3,3)
 882 
 883 ans =
 884 
 885      1     1     1
 886      1     1     1
 887      1     1     1
 888 
 889 rand(6,6)
 890 
 891 ans =
 892 
 893     0.8147    0.2785    0.9572    0.7922    0.6787    0.7060
 894     0.9058    0.5469    0.4854    0.9595    0.7577    0.0318
 895     0.1270    0.9575    0.8003    0.6557    0.7431    0.2769
 896     0.9134    0.9649    0.1419    0.0357    0.3922    0.0462
 897     0.6324    0.1576    0.4218    0.8491    0.6555    0.0971
 898     0.0975    0.9706    0.9157    0.9340    0.1712    0.8235
 899 
 900 randn(6,6)
 901 
 902 ans =
 903 
 904    -0.4326    1.1892   -0.5883   -0.0956   -0.6918   -0.3999
 905    -1.6656   -0.0376    2.1832   -0.8323    0.8580    0.6900
 906     0.1253    0.3273   -0.1364    0.2944    1.2540    0.8156
 907     0.2877    0.1746    0.1139   -1.3362   -1.5937    0.7119
 908    -1.1465   -0.1867    1.0668    0.7143   -1.4410    1.2902
 909     1.1909    0.7258    0.0593    1.6236    0.5711    0.6686
 910 
 911 diag([1 2 3])
 912 
 913 ans =
 914 
 915      1     0     0
 916      0     2     0
 917      0     0     3
 918 
 919 diag(A)
 920 
 921 ans =
 922 
 923     -1
 924      5
 925     -1
 926 
 927 A
 928 
 929 A =
 930 
 931     -1    -1    -1
 932     -1     5    -1
 933     -1    -1    -1
 934 
 935 help elmat
 936   Elementary matrices and matrix manipulation.
 937  
 938   Elementary matrices.
 939     zeros       - Zeros array.
 940     ones        - Ones array.
 941     eye         - Identity matrix.
 942     repmat      - Replicate and tile array.
 943     rand        - Uniformly distributed random numbers.
 944     randn       - Normally distributed random numbers.
 945     linspace    - Linearly spaced vector.
 946     logspace    - Logarithmically spaced vector.
 947     freqspace   - Frequency spacing for frequency response.
 948     meshgrid    - X and Y arrays for 3-D plots.
 949     accumarray  - Construct an array with accumulation.
 950     :           - Regularly spaced vector and index into matrix.
 951  
 952   Basic array information.
 953     size        - Size of array.
 954     length      - Length of vector.
 955     ndims       - Number of dimensions.
 956     numel       - Number of elements.
 957     disp        - Display matrix or text.
 958     isempty     - True for empty array.
 959     isequal     - True if arrays are numerically equal.
 960     isequalwithequalnans - True if arrays are numerically equal.
 961  
 962   Matrix manipulation.
 963     cat         - Concatenate arrays.
 964     reshape     - Change size.
 965     diag        - Diagonal matrices and diagonals of matrix.
 966     blkdiag     - Block diagonal concatenation.
 967     tril        - Extract lower triangular part.
 968     triu        - Extract upper triangular part.
 969     fliplr      - Flip matrix in left/right direction.
 970     flipud      - Flip matrix in up/down direction.
 971     flipdim     - Flip matrix along specified dimension.
 972     rot90       - Rotate matrix 90 degrees.
 973     :           - Regularly spaced vector and index into matrix.
 974     find        - Find indices of nonzero elements.
 975     end         - Last index.
 976     sub2ind     - Linear index from multiple subscripts.
 977     ind2sub     - Multiple subscripts from linear index.
 978     bsxfun      - Binary singleton expansion function.
 979  
 980   Multi-dimensional array functions.
 981     ndgrid      - Generate arrays for N-D functions and interpolation.
 982     permute     - Permute array dimensions.
 983     ipermute    - Inverse permute array dimensions.
 984     shiftdim    - Shift dimensions.
 985     circshift   - Shift array circularly.
 986     squeeze     - Remove singleton dimensions.
 987  
 988   Array utility functions.
 989     isscalar    - True for scalar.
 990     isvector    - True for vector.
 991  
 992   Special variables and constants.
 993     ans         - Most recent answer.
 994     eps         - Floating point relative accuracy.
 995     realmax     - Largest positive floating point number.
 996     realmin     - Smallest positive floating point number.
 997     pi          - 3.1415926535897....
 998     i           - Imaginary unit.
 999     inf         - Infinity.
1000     nan         - Not-a-Number.
1001     isnan       - True for Not-a-Number.
1002     isinf       - True for infinite elements.
1003     isfinite    - True for finite elements.
1004     j           - Imaginary unit.
1005     why         - Succinct answer.
1006  
1007   Specialized matrices.
1008     compan      - Companion matrix.
1009     gallery     - Higham test matrices.
1010     hadamard    - Hadamard matrix.
1011     hankel      - Hankel matrix.
1012     hilb        - Hilbert matrix.
1013     invhilb     - Inverse Hilbert matrix.
1014     magic       - Magic square.
1015     pascal      - Pascal matrix.
1016     rosser      - Classic symmetric eigenvalue test problem.
1017     toeplitz    - Toeplitz matrix.
1018     vander      - Vandermonde matrix.
1019     wilkinson   - Wilkinson's eigenvalue test matrix.
1020 
1021 edit 
1022 ls
1023 BORUSSIA                     dilan_thesis.pdf
1024 Desktop                      dilan_thesis.ps
1025 ML_Praktikum_U01.ps          fig1.eps
1026 ML_Praktikum_U02.pdf         flatroll.mat
1027 Mail                         func1.m
1028 T1.txt                       func1.m~
1029 T1_Mitschnitt.txt            guide.pdf
1030 T1_Show.txt                  hallo.mat
1031 T2.txt                       learning_biased_sampling.ps
1032 T2_Mitschnitt.txt            lib
1033 T2_Test.ps                   logfile.txt
1034 T3                           myprod.m
1035 T3_Test.ps                   myprod.m~
1036 T3_Uebung.ps                 praktikum
1037 T3_Uebung2.ps                ss08
1038 Tag1_Mitschnitt.txt          swissroll.mat
1039 bin                          tunet
1040 core                         www
1041 covs_rep01.ps
1042 
1043 func1(3,3)
1044 
1045 ans =
1046 
1047      6
1048 
1049 [x,y] = func1(3,3)
1050 
1051 x =
1052 
1053      6
1054 
1055 
1056 y =
1057 
1058      9
1059 
1060 which func1
1061 /home/ml/buenau/func1.m
1062 which repmat
1063 /home/ml/ml/matlab/toolbox/matlab/elmat/repmat.m
1064 type func1
1065 
1066 function [ a b ] = func1(c, d)
1067 
1068 a = c + d;
1069 b = c*d;
1070 
1071 type repmat
1072 
1073 function B = repmat(A,M,N)
1074 %REPMAT Replicate and tile an array.
1075 %   B = repmat(A,M,N) creates a large matrix B consisting of an M-by-N
1076 %   tiling of copies of A. The size of B is [size(A,1)*M, size(A,2)*N].
1077 %   The statement repmat(A,N) creates an N-by-N tiling.
1078 %   
1079 %   B = REPMAT(A,[M N]) accomplishes the same result as repmat(A,M,N).
1080 %
1081 %   B = REPMAT(A,[M N P ...]) tiles the array A to produce a 
1082 %   multidimensional array B composed of copies of A. The size of B is 
1083 %   [size(A,1)*M, size(A,2)*N, size(A,3)*P, ...].
1084 %
1085 %   REPMAT(A,M,N) when A is a scalar is commonly used to produce an M-by-N
1086 %   matrix filled with A's value and having A's CLASS. For certain values,
1087 %   you may achieve the same results using other functions. Namely,
1088 %      REPMAT(NAN,M,N)           is the same as   NAN(M,N)
1089 %      REPMAT(SINGLE(INF),M,N)   is the same as   INF(M,N,'single')
1090 %      REPMAT(INT8(0),M,N)       is the same as   ZEROS(M,N,'int8')
1091 %      REPMAT(UINT32(1),M,N)     is the same as   ONES(M,N,'uint32')
1092 %      REPMAT(EPS,M,N)           is the same as   EPS(ONES(M,N))
1093 %
1094 %   Example:
1095 %       repmat(magic(2), 2, 3)
1096 %       repmat(uint8(5), 2, 3)
1097 %
1098 %   Class support for input A:
1099 %      float: double, single
1100 %
1101 %   See also BSXFUN, MESHGRID, ONES, ZEROS, NAN, INF.
1102 
1103 %   Copyright 1984-2006 The MathWorks, Inc.
1104 %   $Revision: 1.17.4.10 $  $Date: 2006/12/15 19:27:37 $
1105 
1106 if nargin < 2
1107     error('MATLAB:repmat:NotEnoughInputs', 'Requires at least 2 inputs.')
1108 end
1109 
1110 if nargin == 2
1111     if isscalar(M)
1112         siz = [M M];
1113     else
1114         siz = M;
1115     end
1116 else
1117     siz = [M N];
1118 end
1119 
1120 if isscalar(A)
1121     nelems = prod(siz);
1122     if nelems>0
1123         % Since B doesn't exist, the first statement creates a B with
1124         % the right size and type.  Then use scalar expansion to
1125         % fill the array. Finally reshape to the specified size.
1126         B(nelems) = A;
1127         if ~isequal(B(1), B(nelems)) || ~(isnumeric(A) || islogical(A))
1128             % if B(1) is the same as B(nelems), then the default value filled in for
1129             % B(1:end-1) is already A, so we don't need to waste time redoing
1130             % this operation. (This optimizes the case that A is a scalar zero of
1131             % some class.)
1132             B(:) = A;
1133         end
1134         B = reshape(B,siz);
1135     else
1136         B = A(ones(siz));
1137     end
1138 elseif ndims(A) == 2 && numel(siz) == 2
1139     [m,n] = size(A);
1140     
1141     if (m == 1 && siz(2) == 1)
1142         B = A(ones(siz(1), 1), :);
1143     elseif (n == 1 && siz(1) == 1)
1144         B = A(:, ones(siz(2), 1));
1145     else
1146         mind = (1:m)';
1147         nind = (1:n)';
1148         mind = mind(:,ones(1,siz(1)));
1149         nind = nind(:,ones(1,siz(2)));
1150         B = A(mind,nind);
1151     end
1152 else
1153     Asiz = size(A);
1154     Asiz = [Asiz ones(1,length(siz)-length(Asiz))];
1155     siz = [siz ones(1,length(Asiz)-length(siz))];
1156     for i=length(Asiz):-1:1
1157         ind = (1:Asiz(i))';
1158         subs{i} = ind(:,ones(1,siz(i)));
1159     end
1160     B = A(subs{:});
1161 end
1162 
1163 help eig
1164  EIG    Eigenvalues and eigenvectors.
1165     E = EIG(X) is a vector containing the eigenvalues of a square 
1166     matrix X.
1167  
1168     [V,D] = EIG(X) produces a diagonal matrix D of eigenvalues and a
1169     full matrix V whose columns are the corresponding eigenvectors so
1170     that X*V = V*D.
1171  
1172     [V,D] = EIG(X,'nobalance') performs the computation with balancing
1173     disabled, which sometimes gives more accurate results for certain
1174     problems with unusual scaling. If X is symmetric, EIG(X,'nobalance')
1175     is ignored since X is already balanced.
1176  
1177     E = EIG(A,B) is a vector containing the generalized eigenvalues
1178     of square matrices A and B.
1179  
1180     [V,D] = EIG(A,B) produces a diagonal matrix D of generalized
1181     eigenvalues and a full matrix V whose columns are the
1182     corresponding eigenvectors so that A*V = B*V*D.
1183  
1184     EIG(A,B,'chol') is the same as EIG(A,B) for symmetric A and symmetric
1185     positive definite B.  It computes the generalized eigenvalues of A and B
1186     using the Cholesky factorization of B.
1187     EIG(A,B,'qz') ignores the symmetry of A and B and uses the QZ algorithm.
1188     In general, the two algorithms return the same result, however using the
1189     QZ algorithm may be more stable for certain problems.
1190     The flag is ignored when A and B are not symmetric.
1191  
1192     See also CONDEIG, EIGS, ORDEIG.
1193 
1194     Reference page in Help browser
1195        doc eig
1196 
1197 which eig
1198 built-in (/home/ml/ml/matlab/toolbox/matlab/matfun/@single/eig)  % single method
1199 type eig
1200 'eig' is a built-in function.
1201 path
1202 
1203 		MATLABPATH
1204 
1205 	/home/ml/ml/matlab/toolbox/matlab/general
1206 	/home/ml/ml/matlab/toolbox/matlab/ops
1207 	/home/ml/ml/matlab/toolbox/matlab/lang
1208 	/home/ml/ml/matlab/toolbox/matlab/elmat
1209 	/home/ml/ml/matlab/toolbox/matlab/elfun
1210 	/home/ml/ml/matlab/toolbox/matlab/specfun
1211 	/home/ml/ml/matlab/toolbox/matlab/matfun
1212 	/home/ml/ml/matlab/toolbox/matlab/datafun
1213 	/home/ml/ml/matlab/toolbox/matlab/polyfun
1214 	/home/ml/ml/matlab/toolbox/matlab/funfun
1215 	/home/ml/ml/matlab/toolbox/matlab/sparfun
1216 	/home/ml/ml/matlab/toolbox/matlab/scribe
1217 	/home/ml/ml/matlab/toolbox/matlab/graph2d
1218 	/home/ml/ml/matlab/toolbox/matlab/graph3d
1219 	/home/ml/ml/matlab/toolbox/matlab/specgraph
1220 	/home/ml/ml/matlab/toolbox/matlab/graphics
1221 	/home/ml/ml/matlab/toolbox/matlab/uitools
1222 	/home/ml/ml/matlab/toolbox/matlab/strfun
1223 	/home/ml/ml/matlab/toolbox/matlab/imagesci
1224 	/home/ml/ml/matlab/toolbox/matlab/iofun
1225 	/home/ml/ml/matlab/toolbox/matlab/audiovideo
1226 	/home/ml/ml/matlab/toolbox/matlab/timefun
1227 	/home/ml/ml/matlab/toolbox/matlab/datatypes
1228 	/home/ml/ml/matlab/toolbox/matlab/verctrl
1229 	/home/ml/ml/matlab/toolbox/matlab/codetools
1230 	/home/ml/ml/matlab/toolbox/matlab/helptools
1231 	/home/ml/ml/matlab/toolbox/matlab/demos
1232 	/home/ml/ml/matlab/toolbox/matlab/timeseries
1233 	/home/ml/ml/matlab/toolbox/matlab/hds
1234 	/home/ml/ml/matlab/toolbox/matlab/guide
1235 	/home/ml/ml/matlab/toolbox/matlab/plottools
1236 	/home/ml/ml/matlab/toolbox/local
1237 	/home/ml/ml/matlab/toolbox/shared/controllib
1238 	/home/ml/ml/matlab/toolbox/simulink/simulink
1239 	/home/ml/ml/matlab/toolbox/simulink/blocks
1240 	/home/ml/ml/matlab/toolbox/simulink/components
1241 	/home/ml/ml/matlab/toolbox/simulink/fixedandfloat
1242 	/home/ml/ml/matlab/toolbox/simulink/fixedandfloat/fxpdemos
1243 	/home/ml/ml/matlab/toolbox/simulink/fixedandfloat/obsolete
1244 	/home/ml/ml/matlab/toolbox/simulink/simdemos
1245 	/home/ml/ml/matlab/toolbox/simulink/simdemos/aerospace
1246 	/home/ml/ml/matlab/toolbox/simulink/simdemos/automotive
1247 	/home/ml/ml/matlab/toolbox/simulink/simdemos/simfeatures
1248 	/home/ml/ml/matlab/toolbox/simulink/simdemos/simgeneral
1249 	/home/ml/ml/matlab/toolbox/simulink/dee
1250 	/home/ml/ml/matlab/toolbox/shared/dastudio
1251 	/home/ml/ml/matlab/toolbox/shared/glue
1252 	/home/ml/ml/matlab/toolbox/stateflow/stateflow
1253 	/home/ml/ml/matlab/toolbox/rtw/rtw
1254 	/home/ml/ml/matlab/toolbox/simulink/simulink/modeladvisor
1255 	/home/ml/ml/matlab/toolbox/simulink/simulink/modeladvisor/fixpt
1256 	/home/ml/ml/matlab/toolbox/simulink/simulink/MPlayIO
1257 	/home/ml/ml/matlab/toolbox/simulink/simulink/dataobjectwizard
1258 	/home/ml/ml/matlab/toolbox/shared/fixedpointlib
1259 	/home/ml/ml/matlab/toolbox/simulink/dataimportexport
1260 	/home/ml/ml/matlab/toolbox/shared/hdlshared
1261 	/home/ml/ml/matlab/toolbox/stateflow/sfdemos
1262 	/home/ml/ml/matlab/toolbox/stateflow/coder
1263 	/home/ml/ml/matlab/toolbox/eml/eml
1264 	/home/ml/ml/matlab/toolbox/emlcoder/emlcoder
1265 	/home/ml/ml/matlab/toolbox/emlcoder/emlcodermex
1266 	/home/ml/ml/matlab/toolbox/fixedpoint/fixedpoint
1267 	/home/ml/ml/matlab/toolbox/fixedpoint/fidemos
1268 	/home/ml/ml/matlab/toolbox/images/images
1269 	/home/ml/ml/matlab/toolbox/images/imuitools
1270 	/home/ml/ml/matlab/toolbox/images/imdemos
1271 	/home/ml/ml/matlab/toolbox/images/iptutils
1272 	/home/ml/ml/matlab/toolbox/shared/imageslib
1273 	/home/ml/ml/matlab/toolbox/images/medformats
1274 	/home/ml/ml/matlab/toolbox/slvnv/simcoverage
1275 	/home/ml/ml/matlab/toolbox/optim/optim
1276 	/home/ml/ml/matlab/toolbox/optim/optimdemos
1277 	/home/ml/ml/matlab/toolbox/shared/optimlib
1278 	/home/ml/ml/matlab/toolbox/signal/signal
1279 	/home/ml/ml/matlab/toolbox/signal/sigtools
1280 	/home/ml/ml/matlab/toolbox/signal/sptoolgui
1281 	/home/ml/ml/matlab/toolbox/signal/sigdemos
1282 	/home/ml/ml/matlab/toolbox/shared/spcuilib
1283 	/home/ml/ml/matlab/toolbox/stats
1284 	/home/ml/ml/matlab/toolbox/vr/vr
1285 	/home/ml/ml/matlab/toolbox/vr/vrdemos
1286 	/home/ml/ml/matlab/work
1287 path
1288 
1289 		MATLABPATH
1290 
1291 	/home/ml/ml/matlab/toolbox/matlab/general
1292 	/home/ml/ml/matlab/toolbox/matlab/ops
1293 	/home/ml/ml/matlab/toolbox/matlab/lang
1294 	/home/ml/ml/matlab/toolbox/matlab/elmat
1295 	/home/ml/ml/matlab/toolbox/matlab/elfun
1296 	/home/ml/ml/matlab/toolbox/matlab/specfun
1297 	/home/ml/ml/matlab/toolbox/matlab/matfun
1298 	/home/ml/ml/matlab/toolbox/matlab/datafun
1299 	/home/ml/ml/matlab/toolbox/matlab/polyfun
1300 	/home/ml/ml/matlab/toolbox/matlab/funfun
1301 	/home/ml/ml/matlab/toolbox/matlab/sparfun
1302 	/home/ml/ml/matlab/toolbox/matlab/scribe
1303 	/home/ml/ml/matlab/toolbox/matlab/graph2d
1304 	/home/ml/ml/matlab/toolbox/matlab/graph3d
1305 	/home/ml/ml/matlab/toolbox/matlab/specgraph
1306 	/home/ml/ml/matlab/toolbox/matlab/graphics
1307 	/home/ml/ml/matlab/toolbox/matlab/uitools
1308 	/home/ml/ml/matlab/toolbox/matlab/strfun
1309 	/home/ml/ml/matlab/toolbox/matlab/imagesci
1310 	/home/ml/ml/matlab/toolbox/matlab/iofun
1311 	/home/ml/ml/matlab/toolbox/matlab/audiovideo
1312 	/home/ml/ml/matlab/toolbox/matlab/timefun
1313 	/home/ml/ml/matlab/toolbox/matlab/datatypes
1314 	/home/ml/ml/matlab/toolbox/matlab/verctrl
1315 	/home/ml/ml/matlab/toolbox/matlab/codetools
1316 	/home/ml/ml/matlab/toolbox/matlab/helptools
1317 	/home/ml/ml/matlab/toolbox/matlab/demos
1318 	/home/ml/ml/matlab/toolbox/matlab/timeseries
1319 	/home/ml/ml/matlab/toolbox/matlab/hds
1320 	/home/ml/ml/matlab/toolbox/matlab/guide
1321 	/home/ml/ml/matlab/toolbox/matlab/plottools
1322 	/home/ml/ml/matlab/toolbox/local
1323 	/home/ml/ml/matlab/toolbox/shared/controllib
1324 	/home/ml/ml/matlab/toolbox/simulink/simulink
1325 	/home/ml/ml/matlab/toolbox/simulink/blocks
1326 	/home/ml/ml/matlab/toolbox/simulink/components
1327 	/home/ml/ml/matlab/toolbox/simulink/fixedandfloat
1328 	/home/ml/ml/matlab/toolbox/simulink/fixedandfloat/fxpdemos
1329 	/home/ml/ml/matlab/toolbox/simulink/fixedandfloat/obsolete
1330 	/home/ml/ml/matlab/toolbox/simulink/simdemos
1331 	/home/ml/ml/matlab/toolbox/simulink/simdemos/aerospace
1332 	/home/ml/ml/matlab/toolbox/simulink/simdemos/automotive
1333 	/home/ml/ml/matlab/toolbox/simulink/simdemos/simfeatures
1334 	/home/ml/ml/matlab/toolbox/simulink/simdemos/simgeneral
1335 	/home/ml/ml/matlab/toolbox/simulink/dee
1336 	/home/ml/ml/matlab/toolbox/shared/dastudio
1337 	/home/ml/ml/matlab/toolbox/shared/glue
1338 	/home/ml/ml/matlab/toolbox/stateflow/stateflow
1339 	/home/ml/ml/matlab/toolbox/rtw/rtw
1340 	/home/ml/ml/matlab/toolbox/simulink/simulink/modeladvisor
1341 	/home/ml/ml/matlab/toolbox/simulink/simulink/modeladvisor/fixpt
1342 	/home/ml/ml/matlab/toolbox/simulink/simulink/MPlayIO
1343 	/home/ml/ml/matlab/toolbox/simulink/simulink/dataobjectwizard
1344 	/home/ml/ml/matlab/toolbox/shared/fixedpointlib
1345 	/home/ml/ml/matlab/toolbox/simulink/dataimportexport
1346 	/home/ml/ml/matlab/toolbox/shared/hdlshared
1347 	/home/ml/ml/matlab/toolbox/stateflow/sfdemos
1348 	/home/ml/ml/matlab/toolbox/stateflow/coder
1349 	/home/ml/ml/matlab/toolbox/eml/eml
1350 	/home/ml/ml/matlab/toolbox/emlcoder/emlcoder
1351 	/home/ml/ml/matlab/toolbox/emlcoder/emlcodermex
1352 	/home/ml/ml/matlab/toolbox/fixedpoint/fixedpoint
1353 	/home/ml/ml/matlab/toolbox/fixedpoint/fidemos
1354 	/home/ml/ml/matlab/toolbox/images/images
1355 	/home/ml/ml/matlab/toolbox/images/imuitools
1356 	/home/ml/ml/matlab/toolbox/images/imdemos
1357 	/home/ml/ml/matlab/toolbox/images/iptutils
1358 	/home/ml/ml/matlab/toolbox/shared/imageslib
1359 	/home/ml/ml/matlab/toolbox/images/medformats
1360 	/home/ml/ml/matlab/toolbox/slvnv/simcoverage
1361 	/home/ml/ml/matlab/toolbox/optim/optim
1362 	/home/ml/ml/matlab/toolbox/optim/optimdemos
1363 	/home/ml/ml/matlab/toolbox/shared/optimlib
1364 	/home/ml/ml/matlab/toolbox/signal/signal
1365 	/home/ml/ml/matlab/toolbox/signal/sigtools
1366 	/home/ml/ml/matlab/toolbox/signal/sptoolgui
1367 	/home/ml/ml/matlab/toolbox/signal/sigdemos
1368 	/home/ml/ml/matlab/toolbox/shared/spcuilib
1369 	/home/ml/ml/matlab/toolbox/stats
1370 	/home/ml/ml/matlab/toolbox/vr/vr
1371 	/home/ml/ml/matlab/toolbox/vr/vrdemos
1372 	/home/ml/ml/matlab/work
1373 addpath('bla');
1374 Warning: Name is nonexistent or not a directory: bla.
1375 > In path at 110
1376   In addpath at 89
1377 help func1
1378  FUNC1    Computes the sum and product of the arguments. 
1379 
1380 help func1
1381  FUNC1    Computes the sum and product of the arguments. 
1382  
1383  
1384  
1385  until here.S
1386 
1387 [x,y] = func1(3,3)
1388 whos
1389   Name      Size            Bytes  Class     Attributes
1390 
1391   a         1x1                 8  double              
1392   c         1x1                 8  double              
1393   d         1x1                 8  double              
1394 
1395 a
1396 
1397 a =
1398 
1399      6
1400 
1401 c
1402 
1403 c =
1404 
1405      3
1406 
1407 d
1408 
1409 d =
1410 
1411      3
1412 
1413 dbstep
1414 10  b = c*d;
1415 dbcont
1416 
1417 x =
1418 
1419      6
1420 
1421 
1422 y =
1423 
1424      9
1425 
1426 [x,y] = func1(3,3)
1427 ??? Error: File: /home/ml/buenau/func1.m Line: 8 Column: 11
1428 Unexpected MATLAB expression.
1429 
1430 dbstop if error
1431 [x,y] = func1(3,3)
1432 ??? Error: File: /home/ml/buenau/func1.m Line: 8 Column: 11
1433 Unexpected MATLAB expression.
1434 
1435 dbstop if error
1436 [x,y] = func1(3,3)
1437 ??? Error: File: /home/ml/buenau/func1.m Line: 8 Column: 11
1438 Unexpected MATLAB expression.
1439 
1440 [x,y] = func1(3,3)
1441 
1442 a =
1443 
1444   Columns 1 through 13
1445 
1446      6     0     0     0     0     0     0     0     0     0     0     0     0
1447 
1448   Columns 14 through 26
1449 
1450      0     0     0     0     0     0     0     0     0     0     0     0     0
1451 
1452   Columns 27 through 39
1453 
1454      0     0     0     0     0     0     0     0     0     0     0     0     0
1455 
1456   Columns 40 through 52
1457 
1458      0     0     0     0     0     0     0     0     0     0     0     0     0
1459 
1460   Columns 53 through 65
1461 
1462      0     0     0     0     0     0     0     0     0     0     0     0     0
1463 
1464   Columns 66 through 78
1465 
1466      0     0     0     0     0     0     0     0     0     0     0     0     0
1467 
1468   Columns 79 through 91
1469 
1470      0     0     0     0     0     0     0     0     0     0     0     0     0
1471 
1472   Columns 92 through 104
1473 
1474      0     0     0     0     0     0     0     0     0     0     0     0     0
1475 
1476   Columns 105 through 117
1477 
1478      0     0     0     0     0     0     0     0     0     0     0     0     0
1479 
1480   Columns 118 through 130
1481 
1482      0     0     0     0     0     0     0     0     0     0     0     0     0
1483 
1484   Columns 131 through 143
1485 
1486      0     0     0     0     0     0     0     0     0     0     0     0     0
1487 
1488   Columns 144 through 156
1489 
1490      0     0     0     0     0     0     0     0     0     0     0     0     0
1491 
1492   Columns 157 through 169
1493 
1494      0     0     0     0     0     0     0     0     0     0     0     0     0
1495 
1496   Columns 170 through 182
1497 
1498      0     0     0     0     0     0     0     0     0     0     0     0     0
1499 
1500   Columns 183 through 195
1501 
1502      0     0     0     0     0     0     0     0     0     0     0     0     0
1503 
1504   Columns 196 through 208
1505 
1506      0     0     0     0     0     0     0     0     0     0     0     0     0
1507 
1508   Columns 209 through 221
1509 
1510      0     0     0     0     0     0     0     0     0     0     0     0     0
1511 
1512   Columns 222 through 234
1513 
1514      0     0     0     0     0     0     0     0     0     0     0     0     0
1515 
1516   Columns 235 through 247
1517 
1518      0     0     0     0     0     0     0     0     0     0     0     0     0
1519 
1520   Columns 248 through 260
1521 
1522      0     0     0     0     0     0     0     0     0     0     0     0     0
1523 
1524   Columns 261 through 273
1525 
1526      0     0     0     0     0     0     0     0     0     0     0     0     0
1527 
1528   Columns 274 through 286
1529 
1530      0     0     0     0     0     0     0     0     0     0     0     0     0
1531 
1532   Columns 287 through 299
1533 
1534      0     0     0     0     0     0     0     0     0     0     0     0     0
1535 
1536   Columns 300 through 312
1537 
1538      0     0     0     0     0     0     0     0     0     0     0     0     0
1539 
1540   Columns 313 through 325
1541 
1542      0     0     0     0     0     0     0     0     0     0     0     0     0
1543 
1544   Columns 326 through 338
1545 
1546      0     0     0     0     0     0     0     0     0     0     0     0     0
1547 
1548   Columns 339 through 351
1549 
1550      0     0     0     0     0     0     0     0     0     0     0     0     0
1551 
1552   Columns 352 through 364
1553 
1554      0     0     0     0     0     0     0     0     0     0     0     0     0
1555 
1556   Columns 365 through 377
1557 
1558      0     0     0     0     0     0     0     0     0     0     0     0     0
1559 
1560   Columns 378 through 390
1561 
1562      0     0     0     0     0     0     0     0     0     0     0     0     0
1563 
1564   Columns 391 through 403
1565 
1566      0     0     0     0     0     0     0     0     0     0     0     0     0
1567 
1568   Columns 404 through 416
1569 
1570      0     0     0     0     0     0     0     0     0     0     0     0     0
1571 
1572   Columns 417 through 429
1573 
1574      0     0     0     0     0     0     0     0     0     0     0     0     0
1575 
1576   Columns 430 through 442
1577 
1578      0     0     0     0     0     0     0     0     0     0     0     0     0
1579 
1580   Columns 443 through 455
1581 
1582      0     0     0     0     0     0     0     0     0     0     0     0     0
1583 
1584   Columns 456 through 468
1585 
1586      0     0     0     0     0     0     0     0     0     0     0     0     0
1587 
1588   Columns 469 through 481
1589 
1590      0     0     0     0     0     0     0     0     0     0     0     0     0
1591 
1592   Columns 482 through 494
1593 
1594      0     0     0     0     0     0     0     0     0     0     0     0     0
1595 
1596   Columns 495 through 507
1597 
1598      0     0     0     0     0     0     0     0     0     0     0     0     0
1599 
1600   Columns 508 through 520
1601 
1602      0     0     0     0     0     0     0     0     0     0     0     0     0
1603 
1604   Columns 521 through 533
1605 
1606      0     0     0     0     0     0     0     0     0     0     0     0     0
1607 
1608   Columns 534 through 546
1609 
1610      0     0     0     0     0     0     0     0     0     0     0     0     0
1611 
1612   Columns 547 through 559
1613 
1614      0     0     0     0     0     0     0     0     0     0     0     0     0
1615 
1616   Columns 560 through 572
1617 
1618      0     0     0     0     0     0     0     0     0     0     0     0     0
1619 
1620   Columns 573 through 585
1621 
1622      0     0     0     0     0     0     0     0     0     0     0     0     0
1623 
1624   Columns 586 through 598
1625 
1626      0     0     0     0     0     0     0     0     0     0     0     0     0
1627 
1628   Columns 599 through 611
1629 
1630      0     0     0     0     0     0     0     0     0     0     0     0     0
1631 
1632   Columns 612 through 624
1633 
1634      0     0     0     0     0     0     0     0     0     0     0     0     0
1635 
1636   Columns 625 through 637
1637 
1638      0     0     0     0     0     0     0     0     0     0     0     0     0
1639 
1640   Columns 638 through 650
1641 
1642      0     0     0     0     0     0     0     0     0     0     0     0     0
1643 
1644   Columns 651 through 663
1645 
1646      0     0     0     0     0     0     0     0     0     0     0     0     0
1647 
1648   Columns 664 through 676
1649 
1650      0     0     0     0     0     0     0     0     0     0     0     0     0
1651 
1652   Columns 677 through 689
1653 
1654      0     0     0     0     0     0     0     0     0     0     0     0     0
1655 
1656   Columns 690 through 702
1657 
1658      0     0     0     0     0     0     0     0     0     0     0     0     0
1659 
1660   Columns 703 through 715
1661 
1662      0     0     0     0     0     0     0     0     0     0     0     0     0
1663 
1664   Columns 716 through 728
1665 
1666      0     0     0     0     0     0     0     0     0     0     0     0     0
1667 
1668   Columns 729 through 741
1669 
1670      0     0     0     0     0     0     0     0     0     0     0     0     0
1671 
1672   Columns 742 through 754
1673 
1674      0     0     0     0     0     0     0     0     0     0     0     0     0
1675 
1676   Columns 755 through 767
1677 
1678      0     0     0     0     0     0     0     0     0     0     0     0     0
1679 
1680   Columns 768 through 780
1681 
1682      0     0     0     0     0     0     0     0     0     0     0     0     0
1683 
1684   Columns 781 through 793
1685 
1686      0     0     0     0     0     0     0     0     0     0     0     0     0
1687 
1688   Columns 794 through 806
1689 
1690      0     0     0     0     0     0     0     0     0     0     0     0     0
1691 
1692   Columns 807 through 819
1693 
1694      0     0     0     0     0     0     0     0     0     0     0     0     0
1695 
1696   Columns 820 through 832
1697 
1698      0     0     0     0     0     0     0     0     0     0     0     0     0
1699 
1700   Columns 833 through 845
1701 
1702      0     0     0     0     0     0     0     0     0     0     0     0     0
1703 
1704   Columns 846 through 858
1705 
1706      0     0     0     0     0     0     0     0     0     0     0     0     0
1707 
1708   Columns 859 through 871
1709 
1710      0     0     0     0     0     0     0     0     0     0     0     0     0
1711 
1712   Columns 872 through 884
1713 
1714      0     0     0     0     0     0     0     0     0     0     0     0     0
1715 
1716   Columns 885 through 897
1717 
1718      0     0     0     0     0     0     0     0     0     0     0     0     0
1719 
1720   Columns 898 through 910
1721 
1722      0     0     0     0     0     0     0     0     0     0     0     0     0
1723 
1724   Columns 911 through 923
1725 
1726      0     0     0     0     0     0     0     0     0     0     0     0     0
1727 
1728   Columns 924 through 936
1729 
1730      0     0     0     0     0     0     0     0     0     0     0     0     0
1731 
1732   Columns 937 through 949
1733 
1734      0     0     0     0     0     0     0     0     0     0     0     0     0
1735 
1736   Columns 950 through 962
1737 
1738      0     0     0     0     0     0     0     0     0     0     0     0     0
1739 
1740   Columns 963 through 975
1741 
1742      0     0     0     0     0     0     0     0     0     0     0     0     0
1743 
1744   Columns 976 through 988
1745 
1746      0     0     0     0     0     0     0     0     0     0     0     0     0
1747 
1748   Columns 989 through 1001
1749 
1750      0     0     0     0     0     0     0     0     0     0     0     0     0
1751 
1752   Columns 1002 through 1014
1753 
1754      0     0     0     0     0     0     0     0     0     0     0     0     0
1755 
1756   Columns 1015 through 1027
1757 
1758      0     0     0     0     0     0     0     0     0     0     0     0     0
1759 
1760   Columns 1028 through 1040
1761 
1762      0     0     0     0     0     0     0     0     0     0     0     0     0
1763 
1764   Columns 1041 through 1053
1765 
1766      0     0     0     0     0     0     0     0     0     0     0     0     0
1767 
1768   Columns 1054 through 1066
1769 
1770      0     0     0     0     0     0     0     0     0     0     0     0     0
1771 
1772   Columns 1067 through 1079
1773 
1774      0     0     0     0     0     0     0     0     0     0     0     0     0
1775 
1776   Columns 1080 through 1092
1777 
1778      0     0     0     0     0     0     0     0     0     0     0     0     0
1779 
1780   Columns 1093 through 1105
1781 
1782      0     0     0     0     0     0     0     0     0     0     0     0     0
1783 
1784   Columns 1106 through 1118
1785 
1786      0     0     0     0     0     0     0     0     0     0     0     0     0
1787 
1788   Columns 1119 through 1131
1789 
1790      0     0     0     0     0     0     0     0     0     0     0     0     0
1791 
1792   Columns 1132 through 1144
1793 
1794      0     0     0     0     0     0     0     0     0     0     0     0     0
1795 
1796   Columns 1145 through 1157
1797 
1798      0     0     0     0     0     0     0     0     0     0     0     0     0
1799 
1800   Columns 1158 through 1170
1801 
1802      0     0     0     0     0     0     0     0     0     0     0     0     0
1803 
1804   Columns 1171 through 1183
1805 
1806      0     0     0     0     0     0     0     0     0     0     0     0     0
1807 
1808   Columns 1184 through 1196
1809 
1810      0     0     0     0     0     0     0     0     0     0     0     0     0
1811 
1812   Columns 1197 through 1209
1813 
1814      0     0     0     0     0     0     0     0     0     0     0     0     0
1815 
1816   Columns 1210 through 1222
1817 
1818      0     0     0     0     0     0     0     0     0     0     0     0     0
1819 
1820   Columns 1223 through 1235
1821 
1822      0     0     0     0     0     0     0     0     0     0     0     0     0
1823 
1824   Columns 1236 through 1248
1825 
1826      0     0     0     0     0     0     0     0     0     0     0     0     0
1827 
1828   Columns 1249 through 1261
1829 
1830      0     0     0     0     0     0     0     0     0     0     0     0     0
1831 
1832   Columns 1262 through 1274
1833 
1834      0     0     0     0     0     0     0     0     0     0     0     0     0
1835 
1836   Columns 1275 through 1287
1837 
1838      0     0     0     0     0     0     0     0     0     0     0     0     0
1839 
1840   Columns 1288 through 1300
1841 
1842      0     0     0     0     0     0     0     0     0     0     0     0     0
1843 
1844   Columns 1301 through 1313
1845 
1846      0     0     0     0     0     0     0     0     0     0     0     0     0
1847 
1848   Columns 1314 through 1326
1849 
1850      0     0     0     0     0     0     0     0     0     0     0     0     0
1851 
1852   Columns 1327 through 1339
1853 
1854      0     0     0     0     0     0     0     0     0     0     0     0     0
1855 
1856   Columns 1340 through 1352
1857 
1858      0     0     0     0     0     0     0     0     0     0     0     0     0
1859 
1860   Columns 1353 through 1365
1861 
1862      0     0     0     0     0     0     0     0     0     0     0     0     0
1863 
1864   Columns 1366 through 1378
1865 
1866      0     0     0     0     0     0     0     0     0     0     0     0     0
1867 
1868   Columns 1379 through 1391
1869 
1870      0     0     0     0     0     0     0     0     0     0     0     0     0
1871 
1872   Columns 1392 through 1404
1873 
1874      0     0     0     0     0     0     0     0     0     0     0     0     0
1875 
1876   Columns 1405 through 1417
1877 
1878      0     0     0     0     0     0     0     0     0     0     0     0     0
1879 
1880   Columns 1418 through 1430
1881 
1882      0     0     0     0     0     0     0     0     0     0     0     0     0
1883 
1884   Columns 1431 through 1443
1885 
1886      0     0     0     0     0     0     0     0     0     0     0     0     0
1887 
1888   Columns 1444 through 1456
1889 
1890      0     0     0     0     0     0     0     0     0     0     0     0     0
1891 
1892   Columns 1457 through 1469
1893 
1894      0     0     0     0     0     0     0     0     0     0     0     0     0
1895 
1896   Columns 1470 through 1482
1897 
1898      0     0     0     0     0     0     0     0     0     0     0     0     0
1899 
1900   Columns 1483 through 1495
1901 
1902      0     0     0     0     0     0     0     0     0     0     0     0     0
1903 
1904   Columns 1496 through 1508
1905 
1906      0     0     0     0     0     0     0     0     0     0     0     0     0
1907 
1908   Columns 1509 through 1521
1909 
1910      0     0     0     0     0     0     0     0     0     0     0     0     0
1911 
1912   Columns 1522 through 1534
1913 
1914      0     0     0     0     0     0     0     0     0     0     0     0     0
1915 
1916   Columns 1535 through 1547
1917 
1918      0     0     0     0     0     0     0     0     0     0     0     0     0
1919 
1920   Columns 1548 through 1560
1921 
1922      0     0     0     0     0     0     0     0     0     0     0     0     0
1923 
1924   Columns 1561 through 1573
1925 
1926      0     0     0     0     0     0     0     0     0     0     0     0     0
1927 
1928   Columns 1574 through 1586
1929 
1930      0     0     0     0     0     0     0     0     0     0     0     0     0
1931 
1932   Columns 1587 through 1599
1933 
1934      0     0     0     0     0     0     0     0     0     0     0     0     0
1935 
1936   Columns 1600 through 1612
1937 
1938      0     0     0     0     0     0     0     0     0     0     0     0     0
1939 
1940   Columns 1613 through 1625
1941 
1942      0     0     0     0     0     0     0     0     0     0     0     0     0
1943 
1944   Columns 1626 through 1638
1945 
1946      0     0     0     0     0     0     0     0     0     0     0     0     0
1947 
1948   Columns 1639 through 1651
1949 
1950      0     0     0     0     0     0     0     0     0     0     0     0     0
1951 
1952   Columns 1652 through 1664
1953 
1954      0     0     0     0     0     0     0     0     0     0     0     0     0
1955 
1956   Columns 1665 through 1677
1957 
1958      0     0     0     0     0     0     0     0     0     0     0     0     0
1959 
1960   Columns 1678 through 1690
1961 
1962      0     0     0     0     0     0     0     0     0     0     0     0     0
1963 
1964   Columns 1691 through 1703
1965 
1966      0     0     0     0     0     0     0     0     0     0     0     0     0
1967 
1968   Columns 1704 through 1716
1969 
1970      0     0     0     0     0     0     0     0     0     0     0     0     0
1971 
1972   Columns 1717 through 1729
1973 
1974      0     0     0     0     0     0     0     0     0     0     0     0     0
1975 
1976   Columns 1730 through 1742
1977 
1978      0     0     0     0     0     0     0     0     0     0     0     0     0
1979 
1980   Columns 1743 through 1755
1981 
1982      0     0     0     0     0     0     0     0     0     0     0     0     0
1983 
1984   Columns 1756 through 1768
1985 
1986      0     0     0     0     0     0     0     0     0     0     0     0     0
1987 
1988   Columns 1769 through 1781
1989 
1990      0     0     0     0     0     0     0     0     0     0     0     0     0
1991 
1992   Columns 1782 through 1794
1993 
1994      0     0     0     0     0     0     0     0     0     0     0     0     0
1995 
1996   Columns 1795 through 1807
1997 
1998      0     0     0     0     0     0     0     0     0     0     0     0     0
1999 
2000   Columns 1808 through 1820
2001 
2002      0     0     0     0     0     0     0     0     0     0     0     0     0
2003 
2004   Columns 1821 through 1833
2005 
2006      0     0     0     0     0     0     0     0     0     0     0     0     0
2007 
2008   Columns 1834 through 1846
2009 
2010      0     0     0     0     0     0     0     0     0     0     0     0     0
2011 
2012   Columns 1847 through 1859
2013 
2014      0     0     0     0     0     0     0     0     0     0     0     0     0
2015 
2016   Columns 1860 through 1872
2017 
2018      0     0     0     0     0     0     0     0     0     0     0     0     0
2019 
2020   Columns 1873 through 1885
2021 
2022      0     0     0     0     0     0     0     0     0     0     0     0     0
2023 
2024   Columns 1886 through 1898
2025 
2026      0     0     0     0     0     0     0     0     0     0     0     0     0
2027 
2028   Columns 1899 through 1911
2029 
2030      0     0     0     0     0     0     0     0     0     0     0     0     0
2031 
2032   Columns 1912 through 1924
2033 
2034      0     0     0     0     0     0     0     0     0     0     0     0     0
2035 
2036   Columns 1925 through 1937
2037 
2038      0     0     0     0     0     0     0     0     0     0     0     0     0
2039 
2040   Columns 1938 through 1950
2041 
2042      0     0     0     0     0     0     0     0     0     0     0     0     0
2043 
2044   Columns 1951 through 1963
2045 
2046      0     0     0     0     0     0     0     0     0     0     0     0     0
2047 
2048   Columns 1964 through 1976
2049 
2050      0     0     0     0     0     0     0     0     0     0     0     0     0
2051 
2052   Columns 1977 through 1989
2053 
2054      0     0     0     0     0     0     0     0     0     0     0     0     0
2055 
2056   Columns 1990 through 2002
2057 
2058      0     0     0     0     0     0     0     0     0     0     0     0     0
2059 
2060   Columns 2003 through 2015
2061 
2062      0     0     0     0     0     0     0     0     0     0     0     0     0
2063 
2064   Columns 2016 through 2028
2065 
2066      0     0     0     0     0     0     0     0     0     0     0     0     0
2067 
2068   Columns 2029 through 2041
2069 
2070      0     0     0     0     0     0     0     0     0     0     0     0     0
2071 
2072   Columns 2042 through 2054
2073 
2074      0     0     0     0     0     0     0     0     0     0     0     0     0
2075 
2076   Columns 2055 through 2067
2077 
2078      0     0     0     0     0     0     0     0     0     0     0     0     0
2079 
2080   Columns 2068 through 2080
2081 
2082      0     0     0     0     0     0     0     0     0     0     0     0     0
2083 
2084   Columns 2081 through 2093
2085 
2086      0     0     0     0     0     0     0     0     0     0     0     0     0
2087 
2088   Columns 2094 through 2106
2089 
2090      0     0     0     0     0     0     0     0     0     0     0     0     0
2091 
2092   Columns 2107 through 2119
2093 
2094      0     0     0     0     0     0     0     0     0     0     0     0     0
2095 
2096   Columns 2120 through 2132
2097 
2098      0     0     0     0     0     0     0     0     0     0     0     0     0
2099 
2100   Columns 2133 through 2145
2101 
2102      0     0     0     0     0     0     0     0     0     0     0     0     0
2103 
2104   Columns 2146 through 2158
2105 
2106      0     0     0     0     0     0     0     0     0     0     0     0     0
2107 
2108   Columns 2159 through 2171
2109 
2110      0     0     0     0     0     0     0     0     0     0     0     0     0
2111 
2112   Columns 2172 through 2184
2113 
2114      0     0     0     0     0     0     0     0     0     0     0     0     0
2115 
2116   Columns 2185 through 2197
2117 
2118      0     0     0     0     0     0     0     0     0     0     0     0     0
2119 
2120   Columns 2198 through 2210
2121 
2122      0     0     0     0     0     0     0     0     0     0     0     0     0
2123 
2124   Columns 2211 through 2223
2125 
2126      0     0     0     0     0     0     0     0     0     0     0     0     0
2127 
2128   Columns 2224 through 2236
2129 
2130      0     0     0     0     0     0     0     0     0     0     0     0     0
2131 
2132   Columns 2237 through 2249
2133 
2134      0     0     0     0     0     0     0     0     0     0     0     0     0
2135 
2136   Columns 2250 through 2262
2137 
2138      0     0     0     0     0     0     0     0     0     0     0     0     0
2139 
2140   Columns 2263 through 2275
2141 
2142      0     0     0     0     0     0     0     0     0     0     0     0     0
2143 
2144   Columns 2276 through 2288
2145 
2146      0     0     0     0     0     0     0     0     0     0     0     0     0
2147 
2148   Columns 2289 through 2301
2149 
2150      0     0     0     0     0     0     0     0     0     0     0     0     0
2151 
2152   Columns 2302 through 2314
2153 
2154      0     0     0     0     0     0     0     0     0     0     0     0     0
2155 
2156   Columns 2315 through 2327
2157 
2158      0     0     0     0     0     0     0     0     0     0     0     0     0
2159 
2160   Columns 2328 through 2340
2161 
2162      0     0     0     0     0     0     0     0     0     0     0     0     0
2163 
2164   Columns 2341 through 2353
2165 
2166      0     0     0     0     0     0     0     0     0     0     0     0     0
2167 
2168   Columns 2354 through 2366
2169 
2170      0     0     0     0     0     0     0     0     0     0     0     0     0
2171 
2172   Columns 2367 through 2379
2173 
2174      0     0     0     0     0     0     0     0     0     0     0     0     0
2175 
2176   Columns 2380 through 2392
2177 
2178      0     0     0     0     0     0     0     0     0     0     0     0     0
2179 
2180   Columns 2393 through 2405
2181 
2182      0     0     0     0     0     0     0     0     0     0     0     0     0
2183 
2184   Columns 2406 through 2418
2185 
2186      0     0     0     0     0     0     0     0     0     0     0     0     0
2187 
2188   Columns 2419 through 2431
2189 
2190      0     0     0     0     0     0     0     0     0     0     0     0     0
2191 
2192   Columns 2432 through 2444
2193 
2194      0     0     0     0     0     0     0     0     0     0     0     0     0
2195 
2196   Columns 2445 through 2457
2197 
2198      0     0     0     0     0     0     0     0     0     0     0     0     0
2199 
2200   Columns 2458 through 2470
2201 
2202      0     0     0     0     0     0     0     0     0     0     0     0     0
2203 
2204   Columns 2471 through 2483
2205 
2206      0     0     0     0     0     0     0     0     0     0     0     0     0
2207 
2208   Columns 2484 through 2496
2209 
2210      0     0     0     0     0     0     0     0     0     0     0     0     0
2211 
2212   Columns 2497 through 2509
2213 
2214      0     0     0     0     0     0     0     0     0     0     0     0     0
2215 
2216   Columns 2510 through 2522
2217 
2218      0     0     0     0     0     0     0     0     0     0     0     0     0
2219 
2220   Columns 2523 through 2535
2221 
2222      0     0     0     0     0     0     0     0     0     0     0     0     0
2223 
2224   Columns 2536 through 2548
2225 
2226      0     0     0     0     0     0     0     0     0     0     0     0     0
2227 
2228   Columns 2549 through 2561
2229 
2230      0     0     0     0     0     0     0     0     0     0     0     0     0
2231 
2232   Columns 2562 through 2574
2233 
2234      0     0     0     0     0     0     0     0     0     0     0     0     0
2235 
2236   Columns 2575 through 2587
2237 
2238      0     0     0     0     0     0     0     0     0     0     0     0     0
2239 
2240   Columns 2588 through 2600
2241 
2242      0     0     0     0     0     0     0     0     0     0     0     0     0
2243 
2244   Columns 2601 through 2613
2245 
2246      0     0     0     0     0     0     0     0     0     0     0     0     0
2247 
2248   Columns 2614 through 2626
2249 
2250      0     0     0     0     0     0     0     0     0     0     0     0     0
2251 
2252   Columns 2627 through 2639
2253 
2254      0     0     0     0     0     0     0     0     0     0     0     0     0
2255 
2256   Columns 2640 through 2652
2257 
2258      0     0     0     0     0     0     0     0     0     0     0     0     0
2259 
2260   Columns 2653 through 2665
2261 
2262      0     0     0     0     0     0     0     0     0     0     0     0     0
2263 
2264   Columns 2666 through 2678
2265 
2266      0     0     0     0     0     0     0     0     0     0     0     0     0
2267 
2268   Columns 2679 through 2691
2269 
2270      0     0     0     0     0     0     0     0     0     0     0     0     0
2271 
2272   Columns 2692 through 2704
2273 
2274      0     0     0     0     0     0     0     0     0     0     0     0     0
2275 
2276   Columns 2705 through 2717
2277 
2278      0     0     0     0     0     0     0     0     0     0     0     0     0
2279 
2280   Columns 2718 through 2730
2281 
2282      0     0     0     0     0     0     0     0     0     0     0     0     0
2283 
2284   Columns 2731 through 2743
2285 
2286      0     0     0     0     0     0     0     0     0     0     0     0     0
2287 
2288   Columns 2744 through 2756
2289 
2290      0     0     0     0     0     0     0     0     0     0     0     0     0
2291 
2292   Columns 2757 through 2769
2293 
2294      0     0     0     0     0     0     0     0     0     0     0     0     0
2295 
2296   Columns 2770 through 2782
2297 
2298      0     0     0     0     0     0     0     0     0     0     0     0     0
2299 
2300   Columns 2783 through 2795
2301 
2302      0     0     0     0     0     0     0     0     0     0     0     0     0
2303 
2304   Columns 2796 through 2808
2305 
2306      0     0     0     0     0     0     0     0     0     0     0     0     0
2307 
2308   Columns 2809 through 2821
2309 
2310      0     0     0     0     0     0     0     0     0     0     0     0     0
2311 
2312   Columns 2822 through 2834
2313 
2314      0     0     0     0     0     0     0     0     0     0     0     0     0
2315 
2316   Columns 2835 through 2847
2317 
2318      0     0     0     0     0     0     0     0     0     0     0     0     0
2319 
2320   Columns 2848 through 2860
2321 
2322      0     0     0     0     0     0     0     0     0     0     0     0     0
2323 
2324   Columns 2861 through 2873
2325 
2326      0     0     0     0     0     0     0     0     0     0     0     0     0
2327 
2328   Columns 2874 through 2886
2329 
2330      0     0     0     0     0     0     0     0     0     0     0     0     0
2331 
2332   Columns 2887 through 2899
2333 
2334      0     0     0     0     0     0     0     0     0     0     0     0     0
2335 
2336   Columns 2900 through 2912
2337 
2338      0     0     0     0     0     0     0     0     0     0     0     0     0
2339 
2340   Columns 2913 through 2925
2341 
2342      0     0     0     0     0     0     0     0     0     0     0     0     0
2343 
2344   Columns 2926 through 2938
2345 
2346      0     0     0     0     0     0     0     0     0     0     0     0     0
2347 
2348   Columns 2939 through 2951
2349 
2350      0     0     0     0     0     0     0     0     0     0     0     0     0
2351 
2352   Columns 2952 through 2964
2353 
2354      0     0     0     0     0     0     0     0     0     0     0     0     0
2355 
2356   Columns 2965 through 2977
2357 
2358      0     0     0     0     0     0     0     0     0     0     0     0     0
2359 
2360   Columns 2978 through 2990
2361 
2362      0     0     0     0     0     0     0     0     0     0     0     0     0
2363 
2364   Columns 2991 through 3003
2365 
2366      0     0     0     0     0     0     0     0     0     0     0     0     0
2367 
2368   Columns 3004 through 3016
2369 
2370      0     0     0     0     0     0     0     0     0     0     0     0     0
2371 
2372   Columns 3017 through 3029
2373 
2374      0     0     0     0     0     0     0     0     0     0     0     0     0
2375 
2376   Columns 3030 through 3042
2377 
2378      0     0     0     0     0     0     0     0     0     0     0     0     0
2379 
2380   Columns 3043 through 3055
2381 
2382      0     0     0     0     0     0     0     0     0     0     0     0     0
2383 
2384   Columns 3056 through 3068
2385 
2386      0     0     0     0     0     0     0     0     0     0     0     0     0
2387 
2388   Columns 3069 through 3081
2389 
2390      0     0     0     0     0     0     0     0     0     0     0     0     0
2391 
2392   Columns 3082 through 3094
2393 
2394      0     0     0     0     0     0     0     0     0     0     0     0     0
2395 
2396   Columns 3095 through 3107
2397 
2398      0     0     0     0     0     0     0     0     0     0     0     0     0
2399 
2400   Columns 3108 through 3120
2401 
2402      0     0     0     0     0     0     0     0     0     0     0     0     0
2403 
2404   Columns 3121 through 3133
2405 
2406      0     0     0     0     0     0     0     0     0     0     0     0     0
2407 
2408   Columns 3134 through 3146
2409 
2410      0     0     0     0     0     0     0     0     0     0     0     0     0
2411 
2412   Columns 3147 through 3159
2413 
2414      0     0     0     0     0     0     0     0     0     0     0     0     0
2415 
2416   Columns 3160 through 3172
2417 
2418      0     0     0     0     0     0     0     0     0     0     0     0     0
2419 
2420   Columns 3173 through 3185
2421 
2422      0     0     0     0     0     0     0     0     0     0     0     0     0
2423 
2424   Columns 3186 through 3198
2425 
2426      0     0     0     0     0     0     0     0     0     0     0     0     0
2427 
2428   Columns 3199 through 3211
2429 
2430      0     0     0     0     0     0     0     0     0     0     0     0     0
2431 
2432   Columns 3212 through 3224
2433 
2434      0     0     0     0     0     0     0     0     0     0     0     0     0
2435 
2436   Columns 3225 through 3237
2437 
2438      0     0     0     0     0     0     0     0     0     0     0     0     0
2439 
2440   Columns 3238 through 3250
2441 
2442      0     0     0     0     0     0     0     0     0     0     0     0     0
2443 
2444   Columns 3251 through 3263
2445 
2446      0     0     0     0     0     0     0     0     0     0     0     0     0
2447 
2448   Columns 3264 through 3276
2449 
2450      0     0     0     0     0     0     0     0     0     0     0     0     0
2451 
2452   Columns 3277 through 3289
2453 
2454      0     0     0     0     0     0     0     0     0     0     0     0     0
2455 
2456   Columns 3290 through 3302
2457 
2458      0     0     0     0     0     0     0     0     0     0     0     0     0
2459 
2460   Columns 3303 through 3315
2461 
2462      0     0     0     0     0     0     0     0     0     0     0     0     0
2463 
2464   Columns 3316 through 3328
2465 
2466      0     0     0     0     0     0     0     0     0     0     0     0     0
2467 
2468   Columns 3329 through 3341
2469 
2470      0     0     0     0     0     0     0     0     0     0     0     0     0
2471 
2472   Columns 3342 through 3354
2473 
2474      0     0     0     0     0     0     0     0     0     0     0     0     0
2475 
2476   Columns 3355 through 3367
2477 
2478      0     0     0     0     0     0     0     0     0     0     0     0     0
2479 
2480   Columns 3368 through 3380
2481 
2482      0     0     0     0     0     0     0     0     0     0     0     0     0
2483 
2484   Columns 3381 through 3393
2485 
2486      0     0     0     0     0     0     0     0     0     0     0     0     0
2487 
2488   Columns 3394 through 3406
2489 
2490      0     0     0     0     0     0     0     0     0     0     0     0     0
2491 
2492   Columns 3407 through 3419
2493 
2494      0     0     0     0     0     0     0     0     0     0     0     0     0
2495 
2496   Columns 3420 through 3432
2497 
2498      0     0     0     0     0     0     0     0     0     0     0     0     0
2499 
2500   Columns 3433 through 3445
2501 
2502      0     0     0     0     0     0     0     0     0     0     0     0     0
2503 
2504   Columns 3446 through 3458
2505 
2506      0     0     0     0     0     0     0     0     0     0     0     0     0
2507 
2508   Columns 3459 through 3471
2509 
2510      0     0     0     0     0     0     0     0     0     0     0     0     0
2511 
2512   Columns 3472 through 3484
2513 
2514      0     0     0     0     0     0     0     0     0     0     0     0     0
2515 
2516   Columns 3485 through 3497
2517 
2518      0     0     0     0     0     0     0     0     0     0     0     0     0
2519 
2520   Columns 3498 through 3510
2521 
2522      0     0     0     0     0     0     0     0     0     0     0     0     0
2523 
2524   Columns 3511 through 3523
2525 
2526      0     0     0     0     0     0     0     0     0     0     0     0     0
2527 
2528   Columns 3524 through 3536
2529 
2530      0     0     0     0     0     0     0     0     0     0     0     0     0
2531 
2532   Columns 3537 through 3549
2533 
2534      0     0     0     0     0     0     0     0     0     0     0     0     0
2535 
2536   Columns 3550 through 3562
2537 
2538      0     0     0     0     0     0     0     0     0     0     0     0     0
2539 
2540   Columns 3563 through 3575
2541 
2542      0     0     0     0     0     0     0     0     0     0     0     0     0
2543 
2544   Columns 3576 through 3588
2545 
2546      0     0     0     0     0     0     0     0     0     0     0     0     0
2547 
2548   Columns 3589 through 3601
2549 
2550      0     0     0     0     0     0     0     0     0     0     0     0     0
2551 
2552   Columns 3602 through 3614
2553 
2554      0     0     0     0     0     0     0     0     0     0     0     0     0
2555 
2556   Columns 3615 through 3627
2557 
2558      0     0     0     0     0     0     0     0     0     0     0     0     0
2559 
2560   Columns 3628 through 3640
2561 
2562      0     0     0     0     0     0     0     0     0     0     0     0     0
2563 
2564   Columns 3641 through 3653
2565 
2566      0     0     0     0     0     0     0     0     0     0     0     0     0
2567 
2568   Columns 3654 through 3666
2569 
2570      0     0     0     0     0     0     0     0     0     0     0     0     0
2571 
2572   Columns 3667 through 3679
2573 
2574      0     0     0     0     0     0     0     0     0     0     0     0     0
2575 
2576   Columns 3680 through 3692
2577 
2578      0     0     0     0     0     0     0     0     0     0     0     0     0
2579 
2580   Columns 3693 through 3705
2581 
2582      0     0     0     0     0     0     0     0     0     0     0     0     0
2583 
2584   Columns 3706 through 3718
2585 
2586      0     0     0     0     0     0     0     0     0     0     0     0     0
2587 
2588   Columns 3719 through 3731
2589 
2590      0     0     0     0     0     0     0     0     0     0     0     0     0
2591 
2592   Columns 3732 through 3744
2593 
2594      0     0     0     0     0     0     0     0     0     0     0     0     0
2595 
2596   Columns 3745 through 3757
2597 
2598      0     0     0     0     0     0     0     0     0     0     0     0     0
2599 
2600   Columns 3758 through 3770
2601 
2602      0     0     0     0     0     0     0     0     0     0     0     0     0
2603 
2604   Columns 3771 through 3783
2605 
2606      0     0     0     0     0     0     0     0     0     0     0     0     0
2607 
2608   Columns 3784 through 3796
2609 
2610      0     0     0     0     0     0     0     0     0     0     0     0     0
2611 
2612   Columns 3797 through 3809
2613 
2614      0     0     0     0     0     0     0     0     0     0     0     0     0
2615 
2616   Columns 3810 through 3822
2617 
2618      0     0     0     0     0     0     0     0     0     0     0     0     0
2619 
2620   Columns 3823 through 3835
2621 
2622      0     0     0     0     0     0     0     0     0     0     0     0     0
2623 
2624   Columns 3836 through 3848
2625 
2626      0     0     0     0     0     0     0     0     0     0     0     0     0
2627 
2628   Columns 3849 through 3861
2629 
2630      0     0     0     0     0     0     0     0     0     0     0     0     0
2631 
2632   Columns 3862 through 3874
2633 
2634      0     0     0     0     0     0     0     0     0     0     0     0     0
2635 
2636   Columns 3875 through 3887
2637 
2638      0     0     0     0     0     0     0     0     0     0     0     0     0
2639 
2640   Columns 3888 through 3900
2641 
2642      0     0     0     0     0     0     0     0     0     0     0     0     0
2643 
2644   Columns 3901 through 3913
2645 
2646      0     0     0     0     0     0     0     0     0     0     0     0     0
2647 
2648   Columns 3914 through 3926
2649 
2650      0     0     0     0     0     0     0     0     0     0     0     0     0
2651 
2652   Columns 3927 through 3939
2653 
2654      0     0     0     0     0     0     0     0     0     0     0     0     0
2655 
2656   Columns 3940 through 3952
2657 
2658      0     0     0     0     0     0     0     0     0     0     0     0     0
2659 
2660   Columns 3953 through 3965
2661 
2662      0     0     0     0     0     0     0     0     0     0     0     0     0
2663 
2664   Columns 3966 through 3978
2665 
2666      0     0     0     0     0     0     0     0     0     0     0     0     0
2667 
2668   Columns 3979 through 3991
2669 
2670      0     0     0     0     0     0     0     0     0     0     0     0     0
2671 
2672   Columns 3992 through 4004
2673 
2674      0     0     0     0     0     0     0     0     0     0     0     0     0
2675 
2676   Columns 4005 through 4017
2677 
2678      0     0     0     0     0     0     0     0     0     0     0     0     0
2679 
2680   Columns 4018 through 4030
2681 
2682      0     0     0     0     0     0     0     0     0     0     0     0     0
2683 
2684   Columns 4031 through 4043
2685 
2686      0     0     0     0     0     0     0     0     0     0     0     0     0
2687 
2688   Columns 4044 through 4056
2689 
2690      0     0     0     0     0     0     0     0     0     0     0     0     0
2691 
2692   Columns 4057 through 4069
2693 
2694      0     0     0     0     0     0     0     0     0     0     0     0     0
2695 
2696   Columns 4070 through 4082
2697 
2698      0     0     0     0     0     0     0     0     0     0     0     0     0
2699 
2700   Columns 4083 through 4095
2701 
2702      0     0     0     0     0     0     0     0     0     0     0     0     0
2703 
2704   Columns 4096 through 4108
2705 
2706      0     0     0     0     0     0     0     0     0     0     0     0     0
2707 
2708   Columns 4109 through 4121
2709 
2710      0     0     0     0     0     0     0     0     0     0     0     0     0
2711 
2712   Columns 4122 through 4134
2713 
2714      0     0     0     0     0     0     0     0     0     0     0     0     0
2715 
2716   Columns 4135 through 4147
2717 
2718      0     0     0     0     0     0     0     0     0     0     0     0     0
2719 
2720   Columns 4148 through 4160
2721 
2722      0     0     0     0     0     0     0     0     0     0     0     0     0
2723 
2724   Columns 4161 through 4173
2725 
2726      0     0     0     0     0     0     0     0     0     0     0     0     0
2727 
2728   Columns 4174 through 4186
2729 
2730      0     0     0     0     0     0     0     0     0     0     0     0     0
2731 
2732   Columns 4187 through 4199
2733 
2734      0     0     0     0     0     0     0     0     0     0     0     0     0
2735 
2736   Columns 4200 through 4212
2737 
2738      0     0     0     0     0     0     0     0     0     0     0     0     0
2739 
2740   Columns 4213 through 4225
2741 
2742      0     0     0     0     0     0     0     0     0     0     0     0     0
2743 
2744   Columns 4226 through 4238
2745 
2746      0     0     0     0     0     0     0     0     0     0     0     0     0
2747 
2748   Columns 4239 through 4251
2749 
2750      0     0     0     0     0     0     0     0     0     0     0     0     0
2751 
2752   Columns 4252 through 4264
2753 
2754      0     0     0     0     0     0     0     0     0     0     0     0     0
2755 
2756   Columns 4265 through 4277
2757 
2758      0     0     0     0     0     0     0     0     0     0     0     0     0
2759 
2760   Columns 4278 through 4290
2761 
2762      0     0     0     0     0     0     0     0     0     0     0     0     0
2763 
2764   Columns 4291 through 4303
2765 
2766      0     0     0     0     0     0     0     0     0     0     0     0     0
2767 
2768   Columns 4304 through 4316
2769 
2770      0     0     0     0     0     0     0     0     0     0     0     0     0
2771 
2772   Columns 4317 through 4329
2773 
2774      0     0     0     0     0     0     0     0     0     0     0     0     0
2775 
2776   Columns 4330 through 4342
2777 
2778      0     0     0     0     0     0     0     0     0     0     0     0     0
2779 
2780   Columns 4343 through 4355
2781 
2782      0     0     0     0     0     0     0     0     0     0     0     0     0
2783 
2784   Columns 4356 through 4368
2785 
2786      0     0     0     0     0     0     0     0     0     0     0     0     0
2787 
2788   Columns 4369 through 4381
2789 
2790      0     0     0     0     0     0     0     0     0     0     0     0     0
2791 
2792   Columns 4382 through 4394
2793 
2794      0     0     0     0     0     0     0     0     0     0     0     0     0
2795 
2796   Columns 4395 through 4407
2797 
2798      0     0     0     0     0     0     0     0     0     0     0     0     0
2799 
2800   Columns 4408 through 4420
2801 
2802      0     0     0     0     0     0     0     0     0     0     0     0     0
2803 
2804   Columns 4421 through 4433
2805 
2806      0     0     0     0     0     0     0     0     0     0     0     0     0
2807 
2808   Columns 4434 through 4446
2809 
2810      0     0     0     0     0     0     0     0     0     0     0     0     0
2811 
2812   Columns 4447 through 4459
2813 
2814      0     0     0     0     0     0     0     0     0     0     0     0     0
2815 
2816   Columns 4460 through 4472
2817 
2818      0     0     0     0     0     0     0     0     0     0     0     0     0
2819 
2820   Columns 4473 through 4485
2821 
2822      0     0     0     0     0     0     0     0     0     0     0     0     0
2823 
2824   Columns 4486 through 4498
2825 
2826      0     0     0     0     0     0     0     0     0     0     0     0     0
2827 
2828   Columns 4499 through 4511
2829 
2830      0     0     0     0     0     0     0     0     0     0     0     0     0
2831 
2832   Columns 4512 through 4524
2833 
2834      0     0     0     0     0     0     0     0     0     0     0     0     0
2835 
2836   Columns 4525 through 4537
2837 
2838      0     0     0     0     0     0     0     0     0     0     0     0     0
2839 
2840   Columns 4538 through 4550
2841 
2842      0     0     0     0     0     0     0     0     0     0     0     0     0
2843 
2844   Columns 4551 through 4563
2845 
2846      0     0     0     0     0     0     0     0     0     0     0     0     0
2847 
2848   Columns 4564 through 4576
2849 
2850      0     0     0     0     0     0     0     0     0     0     0     0     0
2851 
2852   Columns 4577 through 4589
2853 
2854      0     0     0     0     0     0     0     0     0     0     0     0     0
2855 
2856   Columns 4590 through 4602
2857 
2858      0     0     0     0     0     0     0     0     0     0     0     0     0
2859 
2860   Columns 4603 through 4615
2861 
2862      0     0     0     0     0     0     0     0     0     0     0     0     0
2863 
2864   Columns 4616 through 4628
2865 
2866      0     0     0     0     0     0     0     0     0     0     0     0     0
2867 
2868   Columns 4629 through 4641
2869 
2870      0     0     0     0     0     0     0     0     0     0     0     0     0
2871 
2872   Columns 4642 through 4654
2873 
2874      0     0     0     0     0     0     0     0     0     0     0     0     0
2875 
2876   Columns 4655 through 4667
2877 
2878      0     0     0     0     0     0     0     0     0     0     0     0     0
2879 
2880   Columns 4668 through 4680
2881 
2882      0     0     0     0     0     0     0     0     0     0     0     0     0
2883 
2884   Columns 4681 through 4693
2885 
2886      0     0     0     0     0     0     0     0     0     0     0     0     0
2887 
2888   Columns 4694 through 4706
2889 
2890      0     0     0     0     0     0     0     0     0     0     0     0     0
2891 
2892   Columns 4707 through 4719
2893 
2894      0     0     0     0     0     0     0     0     0     0     0     0     0
2895 
2896   Columns 4720 through 4732
2897 
2898      0     0     0     0     0     0     0     0     0     0     0     0     0
2899 
2900   Columns 4733 through 4745
2901 
2902      0     0     0     0     0     0     0     0     0     0     0     0     0
2903 
2904   Columns 4746 through 4758
2905 
2906      0     0     0     0     0     0     0     0     0     0     0     0     0
2907 
2908   Columns 4759 through 4771
2909 
2910      0     0     0     0     0     0     0     0     0     0     0     0     0
2911 
2912   Columns 4772 through 4784
2913 
2914      0     0     0     0     0     0     0     0     0     0     0     0     0
2915 
2916   Columns 4785 through 4797
2917 
2918      0     0     0     0     0     0     0     0     0     0     0     0     0
2919 
2920   Columns 4798 through 4810
2921 
2922      0     0     0     0     0     0     0     0     0     0     0     0     0
2923 
2924   Columns 4811 through 4823
2925 
2926      0     0     0     0     0     0     0     0     0     0     0     0     0
2927 
2928   Columns 4824 through 4836
2929 
2930      0     0     0     0     0     0     0     0     0     0     0     0     0
2931 
2932   Columns 4837 through 4849
2933 
2934      0     0     0     0     0     0     0     0     0     0     0     0     0
2935 
2936   Columns 4850 through 4862
2937 
2938      0     0     0     0     0     0     0     0     0     0     0     0     0
2939 
2940   Columns 4863 through 4875
2941 
2942      0     0     0     0     0     0     0     0     0     0     0     0     0
2943 
2944   Columns 4876 through 4888
2945 
2946      0     0     0     0     0     0     0     0     0     0     0     0     0
2947 
2948   Columns 4889 through 4901
2949 
2950      0     0     0     0     0     0     0     0     0     0     0     0     0
2951 
2952   Columns 4902 through 4914
2953 
2954      0     0     0     0     0     0     0     0     0     0     0     0     0
2955 
2956   Columns 4915 through 4927
2957 
2958      0     0     0     0     0     0     0     0     0     0     0     0     0
2959 
2960   Columns 4928 through 4940
2961 
2962      0     0     0     0     0     0     0     0     0     0     0     0     0
2963 
2964   Columns 4941 through 4953
2965 
2966      0     0     0     0     0     0     0     0     0     0     0     0     0
2967 
2968   Columns 4954 through 4966
2969 
2970      0     0     0     0     0     0     0     0     0     0     0     0     0
2971 
2972   Columns 4967 through 4979
2973 
2974      0     0     0     0     0     0     0     0     0     0     0     0     0
2975 
2976   Columns 4980 through 4992
2977 
2978      0     0     0     0     0     0     0     0     0     0     0     0     0
2979 
2980   Columns 4993 through 5005
2981 
2982      0     0     0     0     0     0     0     0     0     0     0     0     0
2983 
2984   Columns 5006 through 5018
2985 
2986      0     0     0     0     0     0     0     0     0     0     0     0     0
2987 
2988   Columns 5019 through 5031
2989 
2990      0     0     0     0     0     0     0     0     0     0     0     0     0
2991 
2992   Columns 5032 through 5044
2993 
2994      0     0     0     0     0     0     0     0     0     0     0     0     0
2995 
2996   Columns 5045 through 5057
2997 
2998      0     0     0     0     0     0     0     0     0     0     0     0     0
2999 
3000   Columns 5058 through 5070
3001 
3002      0     0     0     0     0     0     0     0     0     0     0     0     0
3003 
3004   Columns 5071 through 5083
3005 
3006      0     0     0     0     0     0     0     0     0     0     0     0     0
3007 
3008   Columns 5084 through 5096
3009 
3010      0     0     0     0     0     0     0     0     0     0     0     0     0
3011 
3012   Columns 5097 through 5109
3013 
3014      0     0     0     0     0     0     0     0     0     0     0     0     0
3015 
3016   Columns 5110 through 5122
3017 
3018      0     0     0     0     0     0     0     0     0     0     0     0     0
3019 
3020   Columns 5123 through 5135
3021 
3022      0     0     0     0     0     0     0     0     0     0     0     0     0
3023 
3024   Columns 5136 through 5148
3025 
3026      0     0     0     0     0     0     0     0     0     0     0     0     0
3027 
3028   Columns 5149 through 5161
3029 
3030      0     0     0     0     0     0     0     0     0     0     0     0     0
3031 
3032   Columns 5162 through 5174
3033 
3034      0     0     0     0     0     0     0     0     0     0     0     0     0
3035 
3036   Columns 5175 through 5187
3037 
3038      0     0     0     0     0     0     0     0     0     0     0     0     0
3039 
3040   Columns 5188 through 5200
3041 
3042      0     0     0     0     0     0     0     0     0     0     0     0     0
3043 
3044   Columns 5201 through 5213
3045 
3046      0     0     0     0     0     0     0     0     0     0     0     0     0
3047 
3048   Columns 5214 through 5226
3049 
3050      0     0     0     0     0     0     0     0     0     0     0     0     0
3051 
3052   Columns 5227 through 5239
3053 
3054      0     0     0     0     0     0     0     0     0     0     0     0     0
3055 
3056   Columns 5240 through 5252
3057 
3058      0     0     0     0     0     0     0     0     0     0     0     0     0
3059 
3060   Columns 5253 through 5265
3061 
3062      0     0     0     0     0     0     0     0     0     0     0     0     0
3063 
3064   Columns 5266 through 5278
3065 
3066      0     0     0     0     0     0     0     0     0     0     0     0     0
3067 
3068   Columns 5279 through 5291
3069 
3070      0     0     0     0     0     0     0     0     0     0     0     0     0
3071 
3072   Columns 5292 through 5304
3073 
3074      0     0     0     0     0     0     0     0     0     0     0     0     0
3075 
3076   Columns 5305 through 5317
3077 
3078      0     0     0     0     0     0     0     0     0     0     0     0     0
3079 
3080   Columns 5318 through 5330
3081 
3082      0     0     0     0     0     0     0     0     0     0     0     0     0
3083 
3084   Columns 5331 through 5343
3085 
3086      0     0     0     0     0     0     0     0     0     0     0     0     0
3087 
3088   Columns 5344 through 5356
3089 
3090      0     0     0     0     0     0     0     0     0     0     0     0     0
3091 
3092   Columns 5357 through 5369
3093 
3094      0     0     0     0     0     0     0     0     0     0     0     0     0
3095 
3096   Columns 5370 through 5382
3097 
3098      0     0     0     0     0     0     0     0     0     0     0     0     0
3099 
3100   Columns 5383 through 5395
3101 
3102      0     0     0     0     0     0     0     0     0     0     0     0     0
3103 
3104   Columns 5396 through 5408
3105 
3106      0     0     0     0     0     0     0     0     0     0     0     0     0
3107 
3108   Columns 5409 through 5421
3109 
3110      0     0     0     0     0     0     0     0     0     0     0     0     0
3111 
3112   Columns 5422 through 5434
3113 
3114      0     0     0     0     0     0     0     0     0     0     0     0     0
3115 
3116   Columns 5435 through 5447
3117 
3118      0     0     0     0     0     0     0     0     0     0     0     0     0
3119 
3120   Columns 5448 through 5460
3121 
3122      0     0     0     0     0     0     0     0     0     0     0     0     0
3123 
3124   Columns 5461 through 5473
3125 
3126      0     0     0     0     0     0     0     0     0     0     0     0     0
3127 
3128   Columns 5474 through 5486
3129 
3130      0     0     0     0     0     0     0     0     0     0     0     0     0
3131 
3132   Columns 5487 through 5499
3133 
3134      0     0     0     0     0     0     0     0     0     0     0     0     0
3135 
3136   Columns 5500 through 5512
3137 
3138      0     0     0     0     0     0     0     0     0     0     0     0     0
3139 
3140   Columns 5513 through 5525
3141 
3142      0     0     0     0     0     0     0     0     0     0     0     0     0
3143 
3144   Columns 5526 through 5538
3145 
3146      0     0     0     0     0     0     0     0     0     0     0     0     0
3147 
3148   Columns 5539 through 5551
3149 
3150      0     0     0     0     0     0     0     0     0     0     0     0     0
3151 
3152   Columns 5552 through 5564
3153 
3154      0     0     0     0     0     0     0     0     0     0     0     0     0
3155 
3156   Columns 5565 through 5577
3157 
3158      0     0     0     0     0     0     0     0     0     0     0     0     0
3159 
3160   Columns 5578 through 5590
3161 
3162      0     0     0     0     0     0     0     0     0     0     0     0     0
3163 
3164   Columns 5591 through 5603
3165 
3166      0     0     0     0     0     0     0     0     0     0     0     0     0
3167 
3168   Columns 5604 through 5616
3169 
3170      0     0     0     0     0     0     0     0     0     0     0     0     0
3171 
3172   Columns 5617 through 5629
3173 
3174      0     0     0     0     0     0     0     0     0     0     0     0     0
3175 
3176   Columns 5630 through 5642
3177 
3178      0     0     0     0     0     0     0     0     0     0     0     0     0
3179 
3180   Columns 5643 through 5655
3181 
3182      0     0     0     0     0     0     0     0     0     0     0     0     0
3183 
3184   Columns 5656 through 5668
3185 
3186      0     0     0     0     0     0     0     0     0     0     0     0     0
3187 
3188   Columns 5669 through 5681
3189 
3190      0     0     0     0     0     0     0     0     0     0     0     0     0
3191 
3192   Columns 5682 through 5694
3193 
3194      0     0     0     0     0     0     0     0     0     0     0     0     0
3195 
3196   Columns 5695 through 5707
3197 
3198      0     0     0     0     0     0     0     0     0     0     0     0     0
3199 
3200   Columns 5708 through 5720
3201 
3202      0     0     0     0     0     0     0     0     0     0     0     0     0
3203 
3204   Columns 5721 through 5733
3205 
3206      0     0     0     0     0     0     0     0     0     0     0     0     0
3207 
3208   Columns 5734 through 5746
3209 
3210      0     0     0     0     0     0     0     0     0     0     0     0     0
3211 
3212   Columns 5747 through 5759
3213 
3214      0     0     0     0     0     0     0     0     0     0     0     0     0
3215 
3216   Columns 5760 through 5772
3217 
3218      0     0     0     0     0     0     0     0     0     0     0     0     0
3219 
3220   Columns 5773 through 5785
3221 
3222      0     0     0     0     0     0     0     0     0     0     0     0     0
3223 
3224   Columns 5786 through 5798
3225 
3226      0     0     0     0     0     0     0     0     0     0     0     0     0
3227 
3228   Columns 5799 through 5811
3229 
3230      0     0     0     0     0     0     0     0     0     0     0     0     0
3231 
3232   Columns 5812 through 5824
3233 
3234      0     0     0     0     0     0     0     0     0     0     0     0     0
3235 
3236   Columns 5825 through 5837
3237 
3238      0     0     0     0     0     0     0     0     0     0     0     0     0
3239 
3240   Columns 5838 through 5850
3241 
3242      0     0     0     0     0     0     0     0     0     0     0     0     0
3243 
3244   Columns 5851 through 5863
3245 
3246      0     0     0     0     0     0     0     0     0     0     0     0     0
3247 
3248   Columns 5864 through 5876
3249 
3250      0     0     0     0     0     0     0     0     0     0     0     0     0
3251 
3252   Columns 5877 through 5889
3253 
3254      0     0     0     0     0     0     0     0     0     0     0     0     0
3255 
3256   Columns 5890 through 5902
3257 
3258      0     0     0     0     0     0     0     0     0     0     0     0     0
3259 
3260   Columns 5903 through 5915
3261 
3262      0     0     0     0     0     0     0     0     0     0     0     0     0
3263 
3264   Columns 5916 through 5928
3265 
3266      0     0     0     0     0     0     0     0     0     0     0     0     0
3267 
3268   Columns 5929 through 5941
3269 
3270      0     0     0     0     0     0     0     0     0     0     0     0     0
3271 
3272   Columns 5942 through 5954
3273 
3274      0     0     0     0     0     0     0     0     0     0     0     0     0
3275 
3276   Columns 5955 through 5967
3277 
3278      0     0     0     0     0     0     0     0     0     0     0     0     0
3279 
3280   Columns 5968 through 5980
3281 
3282      0     0     0     0     0     0     0     0     0     0     0     0     0
3283 
3284   Columns 5981 through 5993
3285 
3286      0     0     0     0     0     0     0     0     0     0     0     0     0
3287 
3288   Columns 5994 through 6006
3289 
3290      0     0     0     0     0     0     0     0     0     0     0     0     0
3291 
3292   Columns 6007 through 6019
3293 
3294      0     0     0     0     0     0     0     0     0     0     0     0     0
3295 
3296   Columns 6020 through 6032
3297 
3298      0     0     0     0     0     0     0     0     0     0     0     0     0
3299 
3300   Columns 6033 through 6045
3301 
3302      0     0     0     0     0     0     0     0     0     0     0     0     0
3303 
3304   Columns 6046 through 6058
3305 
3306      0     0     0     0     0     0     0     0     0     0     0     0     0
3307 
3308   Columns 6059 through 6071
3309 
3310      0     0     0     0     0     0     0     0     0     0     0     0     0
3311 
3312   Columns 6072 through 6084
3313 
3314      0     0     0     0     0     0     0     0     0     0     0     0     0
3315 
3316   Columns 6085 through 6097
3317 
3318      0     0     0     0     0     0     0     0     0     0     0     0     0
3319 
3320   Columns 6098 through 6110
3321 
3322      0     0     0     0     0     0     0     0     0     0     0     0     0
3323 
3324   Columns 6111 through 6123
3325 
3326      0     0     0     0     0     0     0     0     0     0     0     0     0
3327 
3328   Columns 6124 through 6136
3329 
3330      0     0     0     0     0     0     0     0     0     0     0     0     0
3331 
3332   Columns 6137 through 6149
3333 
3334      0     0     0     0     0     0     0     0     0     0     0     0     0
3335 
3336   Columns 6150 through 6162
3337 
3338      0     0     0     0     0     0     0     0     0     0     0     0     0
3339 
3340   Columns 6163 through 6175
3341 
3342      0     0     0     0     0     0     0     0     0     0     0     0     0
3343 
3344   Columns 6176 through 6188
3345 
3346      0     0     0     0     0     0     0     0     0     0     0     0     0
3347 
3348   Columns 6189 through 6201
3349 
3350      0     0     0     0     0     0     0     0     0     0     0     0     0
3351 
3352   Columns 6202 through 6214
3353 
3354      0     0     0     0     0     0     0     0     0     0     0     0     0
3355 
3356   Columns 6215 through 6227
3357 
3358      0     0     0     0     0     0     0     0     0     0     0     0     0
3359 
3360   Columns 6228 through 6240
3361 
3362      0     0     0     0     0     0     0     0     0     0     0     0     0
3363 
3364   Columns 6241 through 6253
3365 
3366      0     0     0     0     0     0     0     0     0     0     0     0     0
3367 
3368   Columns 6254 through 6266
3369 
3370      0     0     0     0     0     0     0     0     0     0     0     0     0
3371 
3372   Columns 6267 through 6279
3373 
3374      0     0     0     0     0     0     0     0     0     0     0     0     0
3375 
3376   Columns 6280 through 6292
3377 
3378      0     0     0     0     0     0     0     0     0     0     0     0     0
3379 
3380   Columns 6293 through 6305
3381 
3382      0     0     0     0     0     0     0     0     0     0     0     0     0
3383 
3384   Columns 6306 through 6318
3385 
3386      0     0     0     0     0     0     0     0     0     0     0     0     0
3387 
3388   Columns 6319 through 6331
3389 
3390      0     0     0     0     0     0     0     0     0     0     0     0     0
3391 
3392   Columns 6332 through 6344
3393 
3394      0     0     0     0     0     0     0     0     0     0     0     0     0
3395 
3396   Columns 6345 through 6357
3397 
3398      0     0     0     0     0     0     0     0     0     0     0     0     0
3399 
3400   Columns 6358 through 6370
3401 
3402      0     0     0     0     0     0     0     0     0     0     0     0     0
3403 
3404   Columns 6371 through 6383
3405 
3406      0     0     0     0     0     0     0     0     0     0     0     0     0
3407 
3408   Columns 6384 through 6396
3409 
3410      0     0     0     0     0     0     0     0     0     0     0     0     0
3411 
3412   Columns 6397 through 6409
3413 
3414      0     0     0     0     0     0     0     0     0     0     0     0     0
3415 
3416   Columns 6410 through 6422
3417 
3418      0     0     0     0     0     0     0     0     0     0     0     0     0
3419 
3420   Columns 6423 through 6435
3421 
3422      0     0     0     0     0     0     0     0     0     0     0     0     0
3423 
3424   Columns 6436 through 6448
3425 
3426      0     0     0     0     0     0     0     0     0     0     0     0     0
3427 
3428   Columns 6449 through 6461
3429 
3430      0     0     0     0     0     0     0     0     0     0     0     0     0
3431 
3432   Columns 6462 through 6474
3433 
3434      0     0     0     0     0     0     0     0     0     0     0     0     0
3435 
3436   Columns 6475 through 6487
3437 
3438      0     0     0     0     0     0     0     0     0     0     0     0     0
3439 
3440   Columns 6488 through 6500
3441 
3442      0     0     0     0     0     0     0     0     0     0     0     0     0
3443 
3444   Columns 6501 through 6513
3445 
3446      0     0     0     0     0     0     0     0     0     0     0     0     0
3447 
3448   Columns 6514 through 6526
3449 
3450      0     0     0     0     0     0     0     0     0     0     0     0     0
3451 
3452   Columns 6527 through 6539
3453 
3454      0     0     0     0     0     0     0     0     0     0     0     0     0
3455 
3456   Columns 6540 through 6552
3457 
3458      0     0     0     0     0     0     0     0     0     0     0     0     0
3459 
3460   Columns 6553 through 6565
3461 
3462      0     0     0     0     0     0     0     0     0     0     0     0     0
3463 
3464   Columns 6566 through 6578
3465 
3466      0     0     0     0     0     0     0     0     0     0     0     0     0
3467 
3468   Columns 6579 through 6591
3469 
3470      0     0     0     0     0     0     0     0     0     0     0     0     0
3471 
3472   Columns 6592 through 6604
3473 
3474      0     0     0     0     0     0     0     0     0     0     0     0     0
3475 
3476   Columns 6605 through 6617
3477 
3478      0     0     0     0     0     0     0     0     0     0     0     0     0
3479 
3480   Columns 6618 through 6630
3481 
3482      0     0     0     0     0     0     0     0     0     0     0     0     0
3483 
3484   Columns 6631 through 6643
3485 
3486      0     0     0     0     0     0     0     0     0     0     0     0     0
3487 
3488   Columns 6644 through 6656
3489 
3490      0     0     0     0     0     0     0     0     0     0     0     0     0
3491 
3492   Columns 6657 through 6669
3493 
3494      0     0     0     0     0     0     0     0     0     0     0     0     0
3495 
3496   Columns 6670 through 6682
3497 
3498      0     0     0     0     0     0     0     0     0     0     0     0     0
3499 
3500   Columns 6683 through 6695
3501 
3502      0     0     0     0     0     0     0     0     0     0     0     0     0
3503 
3504   Columns 6696 through 6708
3505 
3506      0     0     0     0     0     0     0     0     0     0     0     0     0
3507 
3508   Columns 6709 through 6721
3509 
3510      0     0     0     0     0     0     0     0     0     0     0     0     0
3511 
3512   Columns 6722 through 6734
3513 
3514      0     0     0     0     0     0     0     0     0     0     0     0     0
3515 
3516   Columns 6735 through 6747
3517 
3518      0     0     0     0     0     0     0     0     0     0     0     0     0
3519 
3520   Columns 6748 through 6760
3521 
3522      0     0     0     0     0     0     0     0     0     0     0     0     0
3523 
3524   Columns 6761 through 6773
3525 
3526      0     0     0     0     0     0     0     0     0     0     0     0     0
3527 
3528   Columns 6774 through 6786
3529 
3530      0     0     0     0     0     0     0     0     0     0     0     0     0
3531 
3532   Columns 6787 through 6799
3533 
3534      0     0     0     0     0     0     0     0     0     0     0     0     0
3535 
3536   Columns 6800 through 6812
3537 
3538      0     0     0     0     0     0     0     0     0     0     0     0     0
3539 
3540   Columns 6813 through 6825
3541 
3542      0     0     0     0     0     0     0     0     0     0     0     0     0
3543 
3544   Columns 6826 through 6838
3545 
3546      0     0     0     0     0     0     0     0     0     0     0     0     0
3547 
3548   Columns 6839 through 6851
3549 
3550      0     0     0     0     0     0     0     0     0     0     0     0     0
3551 
3552   Columns 6852 through 6864
3553 
3554      0     0     0     0     0     0     0     0     0     0     0     0     0
3555 
3556   Columns 6865 through 6877
3557 
3558      0     0     0     0     0     0     0     0     0     0     0     0     0
3559 
3560   Columns 6878 through 6890
3561 
3562      0     0     0     0     0     0     0     0     0     0     0     0     0
3563 
3564   Columns 6891 through 6903
3565 
3566      0     0     0     0     0     0     0     0     0     0     0     0     0
3567 
3568   Columns 6904 through 6916
3569 
3570      0     0     0     0     0     0     0     0     0     0     0     0     0
3571 
3572   Columns 6917 through 6929
3573 
3574      0     0     0     0     0     0     0     0     0     0     0     0     0
3575 
3576   Columns 6930 through 6942
3577 
3578      0     0     0     0     0     0     0     0     0     0     0     0     0
3579 
3580   Columns 6943 through 6955
3581 
3582      0     0     0     0     0     0     0     0     0     0     0     0     0
3583 
3584   Columns 6956 through 6968
3585 
3586      0     0     0     0     0     0     0     0     0     0     0     0     0
3587 
3588   Columns 6969 through 6981
3589 
3590      0     0     0     0     0     0     0     0     0     0     0     0     0
3591 
3592   Columns 6982 through 6994
3593 
3594      0     0     0     0     0     0     0     0     0     0     0     0     0
3595 
3596   Columns 6995 through 7007
3597 
3598      0     0     0     0     0     0     0     0     0     0     0     0     0
3599 
3600   Columns 7008 through 7020
3601 
3602      0     0     0     0     0     0     0     0     0     0     0     0     0
3603 
3604   Columns 7021 through 7033
3605 
3606      0     0     0     0     0     0     0     0     0     0     0     0     0
3607 
3608   Columns 7034 through 7046
3609 
3610      0     0     0     0     0     0     0     0     0     0     0     0     0
3611 
3612   Columns 7047 through 7059
3613 
3614      0     0     0     0     0     0     0     0     0     0     0     0     0
3615 
3616   Columns 7060 through 7072
3617 
3618      0     0     0     0     0     0     0     0     0     0     0     0     0
3619 
3620   Columns 7073 through 7085
3621 
3622      0     0     0     0     0     0     0     0     0     0     0     0     0
3623 
3624   Columns 7086 through 7098
3625 
3626      0     0     0     0     0     0     0     0     0     0     0     0     0
3627 
3628   Columns 7099 through 7111
3629 
3630      0     0     0     0     0     0     0     0     0     0     0     0     0
3631 
3632   Columns 7112 through 7124
3633 
3634      0     0     0     0     0     0     0     0     0     0     0     0     0
3635 
3636   Columns 7125 through 7137
3637 
3638      0     0     0     0     0     0     0     0     0     0     0     0     0
3639 
3640   Columns 7138 through 7150
3641 
3642      0     0     0     0     0     0     0     0     0     0     0     0     0
3643 
3644   Columns 7151 through 7163
3645 
3646      0     0     0     0     0     0     0     0     0     0     0     0     0
3647 
3648   Columns 7164 through 7176
3649 
3650      0     0     0     0     0     0     0     0     0     0     0     0     0
3651 
3652   Columns 7177 through 7189
3653 
3654      0     0     0     0     0     0     0     0     0     0     0     0     0
3655 
3656   Columns 7190 through 7202
3657 
3658      0     0     0     0     0     0     0     0     0     0     0     0     0
3659 
3660   Columns 7203 through 7215
3661 
3662      0     0     0     0     0     0     0     0     0     0     0     0     0
3663 
3664   Columns 7216 through 7228
3665 
3666      0     0     0     0     0     0     0     0     0     0     0     0     0
3667 
3668   Columns 7229 through 7241
3669 
3670      0     0     0     0     0     0     0     0     0     0     0     0     0
3671 
3672   Columns 7242 through 7254
3673 
3674      0     0     0     0     0     0     0     0     0     0     0     0     0
3675 
3676   Columns 7255 through 7267
3677 
3678      0     0     0     0     0     0     0     0     0     0     0     0     0
3679 
3680   Columns 7268 through 7280
3681 
3682      0     0     0     0     0     0     0     0     0     0     0     0     0
3683 
3684   Columns 7281 through 7293
3685 
3686      0     0     0     0     0     0     0     0     0     0     0     0     0
3687 
3688   Columns 7294 through 7306
3689 
3690      0     0     0     0     0     0     0     0     0     0     0     0     0
3691 
3692   Columns 7307 through 7319
3693 
3694      0     0     0     0     0     0     0     0     0     0     0     0     0
3695 
3696   Columns 7320 through 7332
3697 
3698      0     0     0     0     0     0     0     0     0     0     0     0     0
3699 
3700   Columns 7333 through 7345
3701 
3702      0     0     0     0     0     0     0     0     0     0     0     0     0
3703 
3704   Columns 7346 through 7358
3705 
3706      0     0     0     0     0     0     0     0     0     0     0     0     0
3707 
3708   Columns 7359 through 7371
3709 
3710      0     0     0     0     0     0     0     0     0     0     0     0     0
3711 
3712   Columns 7372 through 7384
3713 
3714      0     0     0     0     0     0     0     0     0     0     0     0     0
3715 
3716   Columns 7385 through 7397
3717 
3718      0     0     0     0     0     0     0     0     0     0     0     0     0
3719 
3720   Columns 7398 through 7410
3721 
3722      0     0     0     0     0     0     0     0     0     0     0     0     0
3723 
3724   Columns 7411 through 7423
3725 
3726      0     0     0     0     0     0     0     0     0     0     0     0     0
3727 
3728   Columns 7424 through 7436
3729 
3730      0     0     0     0     0     0     0     0     0     0     0     0     0
3731 
3732   Columns 7437 through 7449
3733 
3734      0     0     0     0     0     0     0     0     0     0     0     0     0
3735 
3736   Columns 7450 through 7462
3737 
3738      0     0     0     0     0     0     0     0     0     0     0     0     0
3739 
3740   Columns 7463 through 7475
3741 
3742      0     0     0     0     0     0     0     0     0     0     0     0     0
3743 
3744   Columns 7476 through 7488
3745 
3746      0     0     0     0     0     0     0     0     0     0     0     0     0
3747 
3748   Columns 7489 through 7501
3749 
3750      0     0     0     0     0     0     0     0     0     0     0     0     0
3751 
3752   Columns 7502 through 7514
3753 
3754      0     0     0     0     0     0     0     0     0     0     0     0     0
3755 
3756   Columns 7515 through 7527
3757 
3758      0     0     0     0     0     0     0     0     0     0     0     0     0
3759 
3760   Columns 7528 through 7540
3761 
3762      0     0     0     0     0     0     0     0     0     0     0     0     0
3763 
3764   Columns 7541 through 7553
3765 
3766      0     0     0     0     0     0     0     0     0     0     0     0     0
3767 
3768   Columns 7554 through 7566
3769 
3770      0     0     0     0     0     0     0     0     0     0     0     0     0
3771 
3772   Columns 7567 through 7579
3773 
3774      0     0     0     0     0     0     0     0     0     0     0     0     0
3775 
3776   Columns 7580 through 7592
3777 
3778      0     0     0     0     0     0     0     0     0     0     0     0     0
3779 
3780   Columns 7593 through 7605
3781 
3782      0     0     0     0     0     0     0     0     0     0     0     0     0
3783 
3784   Columns 7606 through 7618
3785 
3786      0     0     0     0     0     0     0     0     0     0     0     0     0
3787 
3788   Columns 7619 through 7631
3789 
3790      0     0     0     0     0     0     0     0     0     0     0     0     0
3791 
3792   Columns 7632 through 7644
3793 
3794      0     0     0     0     0     0     0     0     0     0     0     0     0
3795 
3796   Columns 7645 through 7657
3797 
3798      0     0     0     0     0     0     0     0     0     0     0     0     0
3799 
3800   Columns 7658 through 7670
3801 
3802      0     0     0     0     0     0     0     0     0     0     0     0     0
3803 
3804   Columns 7671 through 7683
3805 
3806      0     0     0     0     0     0     0     0     0     0     0     0     0
3807 
3808   Columns 7684 through 7696
3809 
3810      0     0     0     0     0     0     0     0     0     0     0     0     0
3811 
3812   Columns 7697 through 7709
3813 
3814      0     0     0     0     0     0     0     0     0     0     0     0     0
3815 
3816   Columns 7710 through 7722
3817 
3818      0     0     0     0     0     0     0     0     0     0     0     0     0
3819 
3820   Columns 7723 through 7735
3821 
3822      0     0     0     0     0     0     0     0     0     0     0     0     0
3823 
3824   Columns 7736 through 7748
3825 
3826      0     0     0     0     0     0     0     0     0     0     0     0     0
3827 
3828   Columns 7749 through 7761
3829 
3830      0     0     0     0     0     0     0     0     0     0     0     0     0
3831 
3832   Columns 7762 through 7774
3833 
3834      0     0     0     0     0     0     0     0     0     0     0     0     0
3835 
3836   Columns 7775 through 7787
3837 
3838      0     0     0     0     0     0     0     0     0     0     0     0     0
3839 
3840   Columns 7788 through 7800
3841 
3842      0     0     0     0     0     0     0     0     0     0     0     0     0
3843 
3844   Columns 7801 through 7813
3845 
3846      0     0     0     0     0     0     0     0     0     0     0     0     0
3847 
3848   Columns 7814 through 7826
3849 
3850      0     0     0     0     0     0     0     0     0     0     0     0     0
3851 
3852   Columns 7827 through 7839
3853 
3854      0     0     0     0     0     0     0     0     0     0     0     0     0
3855 
3856   Columns 7840 through 7852
3857 
3858      0     0     0     0     0     0     0     0     0     0     0     0     0
3859 
3860   Columns 7853 through 7865
3861 
3862      0     0     0     0     0     0     0     0     0     0     0     0     0
3863 
3864   Columns 7866 through 7878
3865 
3866      0     0     0     0     0     0     0     0     0     0     0     0     0
3867 
3868   Columns 7879 through 7891
3869 
3870      0     0     0     0     0     0     0     0     0     0     0     0     0
3871 
3872   Columns 7892 through 7904
3873 
3874      0     0     0     0     0     0     0     0     0     0     0     0     0
3875 
3876   Columns 7905 through 7917
3877 
3878      0     0     0     0     0     0     0     0     0     0     0     0     0
3879 
3880   Columns 7918 through 7930
3881 
3882      0     0     0     0     0     0     0     0     0     0     0     0     0
3883 
3884   Columns 7931 through 7943
3885 
3886      0     0     0     0     0     0     0     0     0     0     0     0     0
3887 
3888   Columns 7944 through 7956
3889 
3890      0     0     0     0     0     0     0     0     0     0     0     0     0
3891 
3892   Columns 7957 through 7969
3893 
3894      0     0     0     0     0     0     0     0     0     0     0     0     0
3895 
3896   Columns 7970 through 7982
3897 
3898      0     0     0     0     0     0     0     0     0     0     0     0     0
3899 
3900   Columns 7983 through 7995
3901 
3902      0     0     0     0     0     0     0     0     0     0     0     0     0
3903 
3904   Columns 7996 through 8008
3905 
3906      0     0     0     0     0     0     0     0     0     0     0     0     0
3907 
3908   Columns 8009 through 8021
3909 
3910      0     0     0     0     0     0     0     0     0     0     0     0     0
3911 
3912   Columns 8022 through 8034
3913 
3914      0     0     0     0     0     0     0     0     0     0     0     0     0
3915 
3916   Columns 8035 through 8047
3917 
3918      0     0     0     0     0     0     0     0     0     0     0     0     0
3919 
3920   Columns 8048 through 8060
3921 
3922      0     0     0     0     0     0     0     0     0     0     0     0     0
3923 
3924   Columns 8061 through 8073
3925 
3926      0     0     0     0     0     0     0     0     0     0     0     0     0
3927 
3928   Columns 8074 through 8086
3929 
3930      0     0     0     0     0     0     0     0     0     0     0     0     0
3931 
3932   Columns 8087 through 8099
3933 
3934      0     0     0     0     0     0     0     0     0     0     0     0     0
3935 
3936   Columns 8100 through 8112
3937 
3938      0     0     0     0     0     0     0     0     0     0     0     0     0
3939 
3940   Columns 8113 through 8125
3941 
3942      0     0     0     0     0     0     0     0     0     0     0     0     0
3943 
3944   Columns 8126 through 8138
3945 
3946      0     0     0     0     0     0     0     0     0     0     0     0     0
3947 
3948   Columns 8139 through 8151
3949 
3950      0     0     0     0     0     0     0     0     0     0     0     0     0
3951 
3952   Columns 8152 through 8164
3953 
3954      0     0     0     0     0     0     0     0     0     0     0     0     0
3955 
3956   Columns 8165 through 8177
3957 
3958      0     0     0     0     0     0     0     0     0     0     0     0     0
3959 
3960   Columns 8178 through 8190
3961 
3962      0     0     0     0     0     0     0     0     0     0     0     0     0
3963 
3964   Columns 8191 through 8203
3965 
3966      0     0     0     0     0     0     0     0     0     0     0     0     0
3967 
3968   Columns 8204 through 8216
3969 
3970      0     0     0     0     0     0     0     0     0     0     0     0     0
3971 
3972   Columns 8217 through 8229
3973 
3974      0     0     0     0     0     0     0     0     0     0     0     0     0
3975 
3976   Columns 8230 through 8242
3977 
3978      0     0     0     0     0     0     0     0     0     0     0     0     0
3979 
3980   Columns 8243 through 8255
3981 
3982      0     0     0     0     0     0     0     0     0     0     0     0     0
3983 
3984   Columns 8256 through 8268
3985 
3986      0     0     0     0     0     0     0     0     0     0     0     0     0
3987 
3988   Columns 8269 through 8281
3989 
3990      0     0     0     0     0     0     0     0     0     0     0     0     0
3991 
3992   Columns 8282 through 8294
3993 
3994      0     0     0     0     0     0     0     0     0     0     0     0     0
3995 
3996   Columns 8295 through 8307
3997 
3998      0     0     0     0     0     0     0     0     0     0     0     0     0
3999 
4000   Columns 8308 through 8320
4001 
4002      0     0     0     0     0     0     0     0     0     0     0     0     0
4003 
4004   Columns 8321 through 8333
4005 
4006      0     0     0     0     0     0     0     0     0     0     0     0     0
4007 
4008   Columns 8334 through 8346
4009 
4010      0     0     0     0     0     0     0     0     0     0     0     0     0
4011 
4012   Columns 8347 through 8359
4013 
4014      0     0     0     0     0     0     0     0     0     0     0     0     0
4015 
4016   Columns 8360 through 8372
4017 
4018      0     0     0     0     0     0     0     0     0     0     0     0     0
4019 
4020   Columns 8373 through 8385
4021 
4022      0     0     0     0     0     0     0     0     0     0     0     0     0
4023 
4024   Columns 8386 through 8398
4025 
4026      0     0     0     0     0     0     0     0     0     0     0     0     0
4027 
4028   Columns 8399 through 8411
4029 
4030      0     0     0     0     0     0     0     0     0     0     0     0     0
4031 
4032   Columns 8412 through 8424
4033 
4034      0     0     0     0     0     0     0     0     0     0     0     0     0
4035 
4036   Columns 8425 through 8437
4037 
4038      0     0     0     0     0     0     0     0     0     0     0     0     0
4039 
4040   Columns 8438 through 8450
4041 
4042      0     0     0     0     0     0     0     0     0     0     0     0     0
4043 
4044   Columns 8451 through 8463
4045 
4046      0     0     0     0     0     0     0     0     0     0     0     0     0
4047 
4048   Columns 8464 through 8476
4049 
4050      0     0     0     0     0     0     0     0     0     0     0     0     0
4051 
4052   Columns 8477 through 8489
4053 
4054      0     0     0     0     0     0     0     0     0     0     0     0     0
4055 
4056   Columns 8490 through 8502
4057 
4058      0     0     0     0     0     0     0     0     0     0     0     0     0
4059 
4060   Columns 8503 through 8515
4061 
4062      0     0     0     0     0     0     0     0     0     0     0     0     0
4063 
4064   Columns 8516 through 8528
4065 
4066      0     0     0     0     0     0     0     0     0     0     0     0     0
4067 
4068   Columns 8529 through 8541
4069 
4070      0     0     0     0     0     0     0     0     0     0     0     0     0
4071 
4072   Columns 8542 through 8554
4073 
4074      0     0     0     0     0     0     0     0     0     0     0     0     0
4075 
4076   Columns 8555 through 8567
4077 
4078      0     0     0     0     0     0     0     0     0     0     0     0     0
4079 
4080   Columns 8568 through 8580
4081 
4082      0     0     0     0     0     0     0     0     0     0     0     0     0
4083 
4084   Columns 8581 through 8593
4085 
4086      0     0     0     0     0     0     0     0     0     0     0     0     0
4087 
4088   Columns 8594 through 8606
4089 
4090      0     0     0     0     0     0     0     0     0     0     0     0     0
4091 
4092   Columns 8607 through 8619
4093 
4094      0     0     0     0     0     0     0     0     0     0     0     0     0
4095 
4096   Columns 8620 through 8632
4097 
4098      0     0     0     0     0     0     0     0     0     0     0     0     0
4099 
4100   Columns 8633 through 8645
4101 
4102      0     0     0     0     0     0     0     0     0     0     0     0     0
4103 
4104   Columns 8646 through 8658
4105 
4106      0     0     0     0     0     0     0     0     0     0     0     0     0
4107 
4108   Columns 8659 through 8671
4109 
4110      0     0     0     0     0     0     0     0     0     0     0     0     0
4111 
4112   Columns 8672 through 8684
4113 
4114      0     0     0     0     0     0     0     0     0     0     0     0     0
4115 
4116   Columns 8685 through 8697
4117 
4118      0     0     0     0     0     0     0     0     0     0     0     0     0
4119 
4120   Columns 8698 through 8710
4121 
4122      0     0     0     0     0     0     0     0     0     0     0     0     0
4123 
4124   Columns 8711 through 8723
4125 
4126      0     0     0     0     0     0     0     0     0     0     0     0     0
4127 
4128   Columns 8724 through 8736
4129 
4130      0     0     0     0     0     0     0     0     0     0     0     0     0
4131 
4132   Columns 8737 through 8749
4133 
4134      0     0     0     0     0     0     0     0     0     0     0     0     0
4135 
4136   Columns 8750 through 8762
4137 
4138      0     0     0     0     0     0     0     0     0     0     0     0     0
4139 
4140   Columns 8763 through 8775
4141 
4142      0     0     0     0     0     0     0     0     0     0     0     0     0
4143 
4144   Columns 8776 through 8788
4145 
4146      0     0     0     0     0     0     0     0     0     0     0     0     0
4147 
4148   Columns 8789 through 8801
4149 
4150      0     0     0     0     0     0     0     0     0     0     0     0     0
4151 
4152   Columns 8802 through 8814
4153 
4154      0     0     0     0     0     0     0     0     0     0     0     0     0
4155 
4156   Columns 8815 through 8827
4157 
4158      0     0     0     0     0     0     0     0     0     0     0     0     0
4159 
4160   Columns 8828 through 8840
4161 
4162      0     0     0     0     0     0     0     0     0     0     0     0     0
4163 
4164   Columns 8841 through 8853
4165 
4166      0     0     0     0     0     0     0     0     0     0     0     0     0
4167 
4168   Columns 8854 through 8866
4169 
4170      0     0     0     0     0     0     0     0     0     0     0     0     0
4171 
4172   Columns 8867 through 8879
4173 
4174      0     0     0     0     0     0     0     0     0     0     0     0     0
4175 
4176   Columns 8880 through 8892
4177 
4178      0     0     0     0     0     0     0     0     0     0     0     0     0
4179 
4180   Columns 8893 through 8905
4181 
4182      0     0     0     0     0     0     0     0     0     0     0     0     0
4183 
4184   Columns 8906 through 8918
4185 
4186      0     0     0     0     0     0     0     0     0     0     0     0     0
4187 
4188   Columns 8919 through 8931
4189 
4190      0     0     0     0     0     0     0     0     0     0     0     0     0
4191 
4192   Columns 8932 through 8944
4193 
4194      0     0     0     0     0     0     0     0     0     0     0     0     0
4195 
4196   Columns 8945 through 8957
4197 
4198      0     0     0     0     0     0     0     0     0     0     0     0     0
4199 
4200   Columns 8958 through 8970
4201 
4202      0     0     0     0     0     0     0     0     0     0     0     0     0
4203 
4204   Columns 8971 through 8983
4205 
4206      0     0     0     0     0     0     0     0     0     0     0     0     0
4207 
4208   Columns 8984 through 8996
4209 
4210      0     0     0     0     0     0     0     0     0     0     0     0     0
4211 
4212   Columns 8997 through 9009
4213 
4214      0     0     0     0     0     0     0     0     0     0     0     0     0
4215 
4216   Columns 9010 through 9022
4217 
4218      0     0     0     0     0     0     0     0     0     0     0     0     0
4219 
4220   Columns 9023 through 9035
4221 
4222      0     0     0     0     0     0     0     0     0     0     0     0     0
4223 
4224   Columns 9036 through 9048
4225 
4226      0     0     0     0     0     0     0     0     0     0     0     0     0
4227 
4228   Columns 9049 through 9061
4229 
4230      0     0     0     0     0     0     0     0     0     0     0     0     0
4231 
4232   Columns 9062 through 9074
4233 
4234      0     0     0     0     0     0     0     0     0     0     0     0     0
4235 
4236   Columns 9075 through 9087
4237 
4238      0     0     0     0     0     0     0     0     0     0     0     0     0
4239 
4240   Columns 9088 through 9100
4241 
4242      0     0     0     0     0     0     0     0     0     0     0     0     0
4243 
4244   Columns 9101 through 9113
4245 
4246      0     0     0     0     0     0     0     0     0     0     0     0     0
4247 
4248   Columns 9114 through 9126
4249 
4250      0     0     0     0     0     0     0     0     0     0     0     0     0
4251 
4252   Columns 9127 through 9139
4253 
4254      0     0     0     0     0     0     0     0     0     0     0     0     0
4255 
4256   Columns 9140 through 9152
4257 
4258      0     0     0     0     0     0     0     0     0     0     0     0     0
4259 
4260   Columns 9153 through 9165
4261 
4262      0     0     0     0     0     0     0     0     0     0     0     0     0
4263 
4264   Columns 9166 through 9178
4265 
4266      0     0     0     0     0     0     0     0     0     0     0     0     0
4267 
4268   Columns 9179 through 9191
4269 
4270      0     0     0     0     0     0     0     0     0     0     0     0     0
4271 
4272   Columns 9192 through 9204
4273 
4274      0     0     0     0     0     0     0     0     0     0     0     0     0
4275 
4276   Columns 9205 through 9217
4277 
4278      0     0     0     0     0     0     0     0     0     0     0     0     0
4279 
4280   Columns 9218 through 9230
4281 
4282      0     0     0     0     0     0     0     0     0     0     0     0     0
4283 
4284   Columns 9231 through 9243
4285 
4286      0     0     0     0     0     0     0     0     0     0     0     0     0
4287 
4288   Columns 9244 through 9256
4289 
4290      0     0     0     0     0     0     0     0     0     0     0     0     0
4291 
4292   Columns 9257 through 9269
4293 
4294      0     0     0     0     0     0     0     0     0     0     0     0     0
4295 
4296   Columns 9270 through 9282
4297 
4298      0     0     0     0     0     0     0     0     0     0     0     0     0
4299 
4300   Columns 9283 through 9295
4301 
4302      0     0     0     0     0     0     0     0     0     0     0     0     0
4303 
4304   Columns 9296 through 9308
4305 
4306      0     0     0     0     0     0     0     0     0     0     0     0     0
4307 
4308   Columns 9309 through 9321
4309 
4310      0     0     0     0     0     0     0     0     0     0     0     0     0
4311 
4312   Columns 9322 through 9334
4313 
4314      0     0     0     0     0     0     0     0     0     0     0     0     0
4315 
4316   Columns 9335 through 9347
4317 
4318      0     0     0     0     0     0     0     0     0     0     0     0     0
4319 
4320   Columns 9348 through 9360
4321 
4322      0     0     0     0     0     0     0     0     0     0     0     0     0
4323 
4324   Columns 9361 through 9373
4325 
4326      0     0     0     0     0     0     0     0     0     0     0     0     0
4327 
4328   Columns 9374 through 9386
4329 
4330      0     0     0     0     0     0     0     0     0     0     0     0     0
4331 
4332   Columns 9387 through 9399
4333 
4334      0     0     0     0     0     0     0     0     0     0     0     0     0
4335 
4336   Columns 9400 through 9412
4337 
4338      0     0     0     0     0     0     0     0     0     0     0     0     0
4339 
4340   Columns 9413 through 9425
4341 
4342      0     0     0     0     0     0     0     0     0     0     0     0     0
4343 
4344   Columns 9426 through 9438
4345 
4346      0     0     0     0     0     0     0     0     0     0     0     0     0
4347 
4348   Columns 9439 through 9451
4349 
4350      0     0     0     0     0     0     0     0     0     0     0     0     0
4351 
4352   Columns 9452 through 9464
4353 
4354      0     0     0     0     0     0     0     0     0     0     0     0     0
4355 
4356   Columns 9465 through 9477
4357 
4358      0     0     0     0     0     0     0     0     0     0     0     0     0
4359 
4360   Columns 9478 through 9490
4361 
4362      0     0     0     0     0     0     0     0     0     0     0     0     0
4363 
4364   Columns 9491 through 9503
4365 
4366      0     0     0     0     0     0     0     0     0     0     0     0     0
4367 
4368   Columns 9504 through 9516
4369 
4370      0     0     0     0     0     0     0     0     0     0     0     0     0
4371 
4372   Columns 9517 through 9529
4373 
4374      0     0     0     0     0     0     0     0     0     0     0     0     0
4375 
4376   Columns 9530 through 9542
4377 
4378      0     0     0     0     0     0     0     0     0     0     0     0     0
4379 
4380   Columns 9543 through 9555
4381 
4382      0     0     0     0     0     0     0     0     0     0     0     0     0
4383 
4384   Columns 9556 through 9568
4385 
4386      0     0     0     0     0     0     0     0     0     0     0     0     0
4387 
4388   Columns 9569 through 9581
4389 
4390      0     0     0     0     0     0     0     0     0     0     0     0     0
4391 
4392   Columns 9582 through 9594
4393 
4394      0     0     0     0     0     0     0     0     0     0     0     0     0
4395 
4396   Columns 9595 through 9607
4397 
4398      0     0     0     0     0     0     0     0     0     0     0     0     0
4399 
4400   Columns 9608 through 9620
4401 
4402      0     0     0     0     0     0     0     0     0     0     0     0     0
4403 
4404   Columns 9621 through 9633
4405 
4406      0     0     0     0     0     0     0     0     0     0     0     0     0
4407 
4408   Columns 9634 through 9646
4409 
4410      0     0     0     0     0     0     0     0     0     0     0     0     0
4411 
4412   Columns 9647 through 9659
4413 
4414      0     0     0     0     0     0     0     0     0     0     0     0     0
4415 
4416   Columns 9660 through 9672
4417 
4418      0     0     0     0     0     0     0     0     0     0     0     0     0
4419 
4420   Columns 9673 through 9685
4421 
4422      0     0     0     0     0     0     0     0     0     0     0     0     0
4423 
4424   Columns 9686 through 9698
4425 
4426      0     0     0     0     0     0     0     0     0     0     0     0     0
4427 
4428   Columns 9699 through 9711
4429 
4430      0     0     0     0     0     0     0     0     0     0     0     0     0
4431 
4432   Columns 9712 through 9724
4433 
4434      0     0     0     0     0     0     0     0     0     0     0     0     0
4435 
4436   Columns 9725 through 9737
4437 
4438      0     0     0     0     0     0     0     0     0     0     0     0     0
4439 
4440   Columns 9738 through 9750
4441 
4442      0     0     0     0     0     0     0     0     0     0     0     0     0
4443 
4444   Columns 9751 through 9763
4445 
4446      0     0     0     0     0     0     0     0     0     0     0     0     0
4447 
4448   Columns 9764 through 9776
4449 
4450      0     0     0     0     0     0     0     0     0     0     0     0     0
4451 
4452   Columns 9777 through 9789
4453 
4454      0     0     0     0     0     0     0     0     0     0     0     0     0
4455 
4456   Columns 9790 through 9802
4457 
4458      0     0     0     0     0     0     0     0     0     0     0     0     0
4459 
4460   Columns 9803 through 9815
4461 
4462      0     0     0     0     0     0     0     0     0     0     0     0     0
4463 
4464   Columns 9816 through 9828
4465 
4466      0     0     0     0     0     0     0     0     0     0     0     0     0
4467 
4468   Columns 9829 through 9841
4469 
4470      0     0     0     0     0     0     0     0     0     0     0     0     0
4471 
4472   Columns 9842 through 9854
4473 
4474      0     0     0     0     0     0     0     0     0     0     0     0     0
4475 
4476   Columns 9855 through 9867
4477 
4478      0     0     0     0     0     0     0     0     0     0     0     0     0
4479 
4480   Columns 9868 through 9880
4481 
4482      0     0     0     0     0     0     0     0     0     0     0     0     0
4483 
4484   Columns 9881 through 9893
4485 
4486      0     0     0     0     0     0     0     0     0     0     0     0     0
4487 
4488   Columns 9894 through 9906
4489 
4490      0     0     0     0     0     0     0     0     0     0     0     0     0
4491 
4492   Columns 9907 through 9919
4493 
4494      0     0     0     0     0     0     0     0     0     0     0     0     0
4495 
4496   Columns 9920 through 9932
4497 
4498      0     0     0     0     0     0     0     0     0     0     0     0     0
4499 
4500   Columns 9933 through 9945
4501 
4502      0     0     0     0     0     0     0     0     0     0     0     0     0
4503 
4504   Columns 9946 through 9958
4505 
4506      0     0     0     0     0     0     0     0     0     0     0     0     0
4507 
4508   Columns 9959 through 9971
4509 
4510      0     0     0     0     0     0     0     0     0     0     0     0     0
4511 
4512   Columns 9972 through 9984
4513 
4514      0     0     0     0     0     0     0     0     0     0     0     0     0
4515 
4516   Columns 9985 through 9997
4517 
4518      0     0     0     0     0     0     0     0     0     0     0     0     0
4519 
4520   Columns 9998 through 10010
4521 
4522      0     0     0     0     0     0     0     0     0     0     0     0     0
4523 
4524   Columns 10011 through 10023
4525 
4526      0     0     0     0     0     0     0     0     0     0     0     0     0
4527 
4528   Columns 10024 through 10036
4529 
4530      0     0     0     0     0     0     0     0     0     0     0     0     0
4531 
4532   Columns 10037 through 10049
4533 
4534      0     0     0     0     0     0     0     0     0     0     0     0     0
4535 
4536   Columns 10050 through 10062
4537 
4538      0     0     0     0     0     0     0     0     0     0     0     0     0
4539 
4540   Columns 10063 through 10075
4541 
4542      0     0     0     0     0     0     0     0     0     0     0     0     0
4543 
4544   Columns 10076 through 10088
4545 
4546      0     0     0     0     0     0     0     0     0     0     0     0     0
4547 
4548   Columns 10089 through 10101
4549 
4550      0     0     0     0     0     0     0     0     0     0     0     0     0
4551 
4552   Columns 10102 through 10114
4553 
4554      0     0     0     0     0     0     0     0     0     0     0     0     0
4555 
4556   Columns 10115 through 10127
4557 
4558      0     0     0     0     0     0     0     0     0     0     0     0     0
4559 
4560   Columns 10128 through 10140
4561 
4562      0     0     0     0     0     0     0     0     0     0     0     0     0
4563 
4564   Columns 10141 through 10153
4565 
4566      0     0     0     0     0     0     0     0     0     0     0     0     0
4567 
4568   Columns 10154 through 10166
4569 
4570      0     0     0     0     0     0     0     0     0     0     0     0     0
4571 
4572   Columns 10167 through 10179
4573 
4574      0     0     0     0     0     0     0     0     0     0     0     0     0
4575 
4576   Columns 10180 through 10192
4577 
4578      0     0     0     0     0     0     0     0     0     0     0     0     0
4579 
4580   Columns 10193 through 10205
4581 
4582      0     0     0     0     0     0     0     0     0     0     0     0     0
4583 
4584   Columns 10206 through 10218
4585 
4586      0     0     0     0     0     0     0     0     0     0     0     0     0
4587 
4588   Columns 10219 through 10231
4589 
4590      0     0     0     0     0     0     0     0     0     0     0     0     0
4591 
4592   Columns 10232 through 10244
4593 
4594      0     0     0     0     0     0     0     0     0     0     0     0     0
4595 
4596   Columns 10245 through 10257
4597 
4598      0     0     0     0     0     0     0     0     0     0     0     0     0
4599 
4600   Columns 10258 through 10270
4601 
4602      0     0     0     0     0     0     0     0     0     0     0     0     0
4603 
4604   Columns 10271 through 10283
4605 
4606      0     0     0     0     0     0     0     0     0     0     0     0     0
4607 
4608   Columns 10284 through 10296
4609 
4610      0     0     0     0     0     0     0     0     0     0     0     0     0
4611 
4612   Columns 10297 through 10309
4613 
4614      0     0     0     0     0     0     0     0     0     0     0     0     0
4615 
4616   Columns 10310 through 10322
4617 
4618      0     0     0     0     0     0     0     0     0     0     0     0     0
4619 
4620   Columns 10323 through 10335
4621 
4622      0     0     0     0     0     0     0     0     0     0     0     0     0
4623 
4624   Columns 10336 through 10348
4625 
4626      0     0     0     0     0     0     0     0     0     0     0     0     0
4627 
4628   Columns 10349 through 10361
4629 
4630      0     0     0     0     0     0     0     0     0     0     0     0     0
4631 
4632   Columns 10362 through 10374
4633 
4634      0     0     0     0     0     0     0     0     0     0     0     0     0
4635 
4636   Columns 10375 through 10387
4637 
4638      0     0     0     0     0     0     0     0     0     0     0     0     0
4639 
4640   Columns 10388 through 10400
4641 
4642      0     0     0     0     0     0     0     0     0     0     0     0     0
4643 
4644   Columns 10401 through 10413
4645 
4646      0     0     0     0     0     0     0     0     0     0     0     0     0
4647 
4648   Columns 10414 through 10426
4649 
4650      0     0     0     0     0     0     0     0     0     0     0     0     0
4651 
4652   Columns 10427 through 10439
4653 
4654      0     0     0     0     0     0     0     0     0     0     0     0     0
4655 
4656   Columns 10440 through 10452
4657 
4658      0     0     0     0     0     0     0     0     0     0     0     0     0
4659 
4660   Columns 10453 through 10465
4661 
4662      0     0     0     0     0     0     0     0     0     0     0     0     0
4663 
4664   Columns 10466 through 10478
4665 
4666      0     0     0     0     0     0     0     0     0     0     0     0     0
4667 
4668   Columns 10479 through 10491
4669 
4670      0     0     0     0     0     0     0     0     0     0     0     0     0
4671 
4672   Columns 10492 through 10504
4673 
4674      0     0     0     0     0     0     0     0     0     0     0     0     0
4675 
4676   Columns 10505 through 10517
4677 
4678      0     0     0     0     0     0     0     0     0     0     0     0     0
4679 
4680   Columns 10518 through 10530
4681 
4682      0     0     0     0     0     0     0     0     0     0     0     0     0
4683 
4684   Columns 10531 through 10543
4685 
4686      0     0     0     0     0     0     0     0     0     0     0     0     0
4687 
4688   Columns 10544 through 10556
4689 
4690      0     0     0     0     0     0     0     0     0     0     0     0     0
4691 
4692   Columns 10557 through 10569
4693 
4694      0     0     0     0     0     0     0     0     0     0     0     0     0
4695 
4696   Columns 10570 through 10582
4697 
4698      0     0     0     0     0     0     0     0     0     0     0     0     0
4699 
4700   Columns 10583 through 10595
4701 
4702      0     0     0     0     0     0     0     0     0     0     0     0     0
4703 
4704   Columns 10596 through 10608
4705 
4706      0     0     0     0     0     0     0     0     0     0     0     0     0
4707 
4708   Columns 10609 through 10621
4709 
4710      0     0     0     0     0     0     0     0     0     0     0     0     0
4711 
4712   Columns 10622 through 10634
4713 
4714      0     0     0     0     0     0     0     0     0     0     0     0     0
4715 
4716   Columns 10635 through 10647
4717 
4718      0     0     0     0     0     0     0     0     0     0     0     0     0
4719 
4720   Columns 10648 through 10660
4721 
4722      0     0     0     0     0     0     0     0     0     0     0     0     0
4723 
4724   Columns 10661 through 10673
4725 
4726      0     0     0     0     0     0     0     0     0     0     0     0     0
4727 
4728   Columns 10674 through 10686
4729 
4730      0     0     0     0     0     0     0     0     0     0     0     0     0
4731 
4732   Columns 10687 through 10699
4733 
4734      0     0     0     0     0     0     0     0     0     0     0     0     0
4735 
4736   Columns 10700 through 10712
4737 
4738      0     0     0     0     0     0     0     0     0     0     0     0     0
4739 
4740   Columns 10713 through 10725
4741 
4742      0     0     0     0     0     0     0     0     0     0     0     0     0
4743 
4744   Columns 10726 through 10738
4745 
4746      0     0     0     0     0     0     0     0     0     0     0     0     0
4747 
4748   Columns 10739 through 10751
4749 
4750      0     0     0     0     0     0     0     0     0     0     0     0     0
4751 
4752   Columns 10752 through 10764
4753 
4754      0     0     0     0     0     0     0     0     0     0     0     0     0
4755 
4756   Columns 10765 through 10777
4757 
4758      0     0     0     0     0     0     0     0     0     0     0     0     0
4759 
4760   Columns 10778 through 10790
4761 
4762      0     0     0     0     0     0     0     0     0     0     0     0     0
4763 
4764   Columns 10791 through 10803
4765 
4766      0     0     0     0     0     0     0     0     0     0     0     0     0
4767 
4768   Columns 10804 through 10816
4769 
4770      0     0     0     0     0     0     0     0     0     0     0     0     0
4771 
4772   Columns 10817 through 10829
4773 
4774      0     0     0     0     0     0     0     0     0     0     0     0     0
4775 
4776   Columns 10830 through 10842
4777 
4778      0     0     0     0     0     0     0     0     0     0     0     0     0
4779 
4780   Columns 10843 through 10855
4781 
4782      0     0     0     0     0     0     0     0     0     0     0     0     0
4783 
4784   Columns 10856 through 10868
4785 
4786      0     0     0     0     0     0     0     0     0     0     0     0     0
4787 
4788   Columns 10869 through 10881
4789 
4790      0     0     0     0     0     0     0     0     0     0     0     0     0
4791 
4792   Columns 10882 through 10894
4793 
4794      0     0     0     0     0     0     0     0     0     0     0     0     0
4795 
4796   Columns 10895 through 10907
4797 
4798      0     0     0     0     0     0     0     0     0     0     0     0     0
4799 
4800   Columns 10908 through 10920
4801 
4802      0     0     0     0     0     0     0     0     0     0     0     0     0
4803 
4804   Columns 10921 through 10933
4805 
4806      0     0     0     0     0     0     0     0     0     0     0     0     0
4807 
4808   Columns 10934 through 10946
4809 
4810      0     0     0     0     0     0     0     0     0     0     0     0     0
4811 
4812   Columns 10947 through 10959
4813 
4814      0     0     0     0     0     0     0     0     0     0     0     0     0
4815 
4816   Columns 10960 through 10972
4817 
4818      0     0     0     0     0     0     0     0     0     0     0     0     0
4819 
4820   Columns 10973 through 10985
4821 
4822      0     0     0     0     0     0     0     0     0     0     0     0     0
4823 
4824   Columns 10986 through 10998
4825 
4826      0     0     0     0     0     0     0     0     0     0     0     0     0
4827 
4828   Columns 10999 through 11011
4829 
4830      0     0     0     0     0     0     0     0     0     0     0     0     0
4831 
4832   Columns 11012 through 11024
4833 
4834      0     0     0     0     0     0     0     0     0     0     0     0     0
4835 
4836   Columns 11025 through 11037
4837 
4838      0     0     0     0     0     0     0     0     0     0     0     0     0
4839 
4840   Columns 11038 through 11050
4841 
4842      0     0     0     0     0     0     0     0     0     0     0     0     0
4843 
4844   Columns 11051 through 11063
4845 
4846      0     0     0     0     0     0     0     0     0     0     0     0     0
4847 
4848   Columns 11064 through 11076
4849 
4850      0     0     0     0     0     0     0     0     0     0     0     0     0
4851 
4852   Columns 11077 through 11089
4853 
4854      0     0     0     0     0     0     0     0     0     0     0     0     0
4855 
4856   Columns 11090 through 11102
4857 
4858      0     0     0     0     0     0     0     0     0     0     0     0     0
4859 
4860   Columns 11103 through 11115
4861 
4862      0     0     0     0     0     0     0     0     0     0     0     0     0
4863 
4864   Columns 11116 through 11128
4865 
4866      0     0     0     0     0     0     0     0     0     0     0     0     0
4867 
4868   Columns 11129 through 11141
4869 
4870      0     0     0     0     0     0     0     0     0     0     0     0     0
4871 
4872   Columns 11142 through 11154
4873 
4874      0     0     0     0     0     0     0     0     0     0     0     0     0
4875 
4876   Columns 11155 through 11167
4877 
4878      0     0     0     0     0     0     0     0     0     0     0     0     0
4879 
4880   Columns 11168 through 11180
4881 
4882      0     0     0     0     0     0     0     0     0     0     0     0     0
4883 
4884   Columns 11181 through 11193
4885 
4886      0     0     0     0     0     0     0     0     0     0     0     0     0
4887 
4888   Columns 11194 through 11206
4889 
4890      0     0     0     0     0     0     0     0     0     0     0     0     0
4891 
4892   Columns 11207 through 11219
4893 
4894      0     0     0     0     0     0     0     0     0     0     0     0     0
4895 
4896   Columns 11220 through 11232
4897 
4898      0     0     0     0     0     0     0     0     0     0     0     0     0
4899 
4900   Columns 11233 through 11245
4901 
4902      0     0     0     0     0     0     0     0     0     0     0     0     0
4903 
4904   Columns 11246 through 11258
4905 
4906      0     0     0     0     0     0     0     0     0     0     0     0     0
4907 
4908   Columns 11259 through 11271
4909 
4910      0     0     0     0     0     0     0     0     0     0     0     0     0
4911 
4912   Columns 11272 through 11284
4913 
4914      0     0     0     0     0     0     0     0     0     0     0     0     0
4915 
4916   Columns 11285 through 11297
4917 
4918      0     0     0     0     0     0     0     0     0     0     0     0     0
4919 
4920   Columns 11298 through 11310
4921 
4922      0     0     0     0     0     0     0     0     0     0     0     0     0
4923 
4924   Columns 11311 through 11323
4925 
4926      0     0     0     0     0     0     0     0     0     0     0     0     0
4927 
4928   Columns 11324 through 11336
4929 
4930      0     0     0     0     0     0     0     0     0     0     0     0     0
4931 
4932   Columns 11337 through 11349
4933 
4934      0     0     0     0     0     0     0     0     0     0     0     0     0
4935 
4936   Columns 11350 through 11362
4937 
4938      0     0     0     0     0     0     0     0     0     0     0     0     0
4939 
4940   Columns 11363 through 11375
4941 
4942      0     0     0     0     0     0     0     0     0     0     0     0     0
4943 
4944   Columns 11376 through 11388
4945 
4946      0     0     0     0     0     0     0     0     0     0     0     0     0
4947 
4948   Columns 11389 through 11401
4949 
4950      0     0     0     0     0     0     0     0     0     0     0     0     0
4951 
4952   Columns 11402 through 11414
4953 
4954      0     0     0     0     0     0     0     0     0     0     0     0     0
4955 
4956   Columns 11415 through 11427
4957 
4958      0     0     0     0     0     0     0     0     0     0     0     0     0
4959 
4960   Columns 11428 through 11440
4961 
4962      0     0     0     0     0     0     0     0     0     0     0     0     0
4963 
4964   Columns 11441 through 11453
4965 
4966      0     0     0     0     0     0     0     0     0     0     0     0     0
4967 
4968   Columns 11454 through 11466
4969 
4970      0     0     0     0     0     0     0     0     0     0     0     0     0
4971 
4972   Columns 11467 through 11479
4973 
4974      0     0     0     0     0     0     0     0     0     0     0     0     0
4975 
4976   Columns 11480 through 11492
4977 
4978      0     0     0     0     0     0     0     0     0     0     0     0     0
4979 
4980   Columns 11493 through 11505
4981 
4982      0     0     0     0     0     0     0     0     0     0     0     0     0
4983 
4984   Columns 11506 through 11518
4985 
4986      0     0     0     0     0     0     0     0     0     0     0     0     0
4987 
4988   Columns 11519 through 11531
4989 
4990      0     0     0     0     0     0     0     0     0     0     0     0     0
4991 
4992   Columns 11532 through 11544
4993 
4994      0     0     0     0     0     0     0     0     0     0     0     0     0
4995 
4996   Columns 11545 through 11557
4997 
4998      0     0     0     0     0     0     0     0     0     0     0     0     0
4999 
5000   Columns 11558 through 11570
5001 
5002      0     0     0     0     0     0     0     0     0     0     0     0     0
5003 
5004   Columns 11571 through 11583
5005 
5006      0     0     0     0     0     0     0     0     0     0     0     0     0
5007 
5008   Columns 11584 through 11596
5009 
5010      0     0     0     0     0     0     0     0     0     0     0     0     0
5011 
5012   Columns 11597 through 11609
5013 
5014      0     0     0     0     0     0     0     0     0     0     0     0     0
5015 
5016   Columns 11610 through 11622
5017 
5018      0     0     0     0     0     0     0     0     0     0     0     0     0
5019 
5020   Columns 11623 through 11635
5021 
5022      0     0     0     0     0     0     0     0     0     0     0     0     0
5023 
5024   Columns 11636 through 11648
5025 
5026      0     0     0     0     0     0     0     0     0     0     0     0     0
5027 
5028   Columns 11649 through 11661
5029 
5030      0     0     0     0     0     0     0     0     0     0     0     0     0
5031 
5032   Columns 11662 through 11674
5033 
5034      0     0     0     0     0     0     0     0     0     0     0     0     0
5035 
5036   Columns 11675 through 11687
5037 
5038      0     0     0     0     0     0     0     0     0     0     0     0     0
5039 
5040   Columns 11688 through 11700
5041 
5042      0     0     0     0     0     0     0     0     0     0     0     0     0
5043 
5044   Columns 11701 through 11713
5045 
5046      0     0     0     0     0     0     0     0     0     0     0     0     0
5047 
5048   Columns 11714 through 11726
5049 
5050      0     0     0     0     0     0     0     0     0     0     0     0     0
5051 
5052   Columns 11727 through 11739
5053 
5054      0     0     0     0     0     0     0     0     0     0     0     0     0
5055 
5056   Columns 11740 through 11752
5057 
5058      0     0     0     0     0     0     0     0     0     0     0     0     0
5059 
5060   Columns 11753 through 11765
5061 
5062      0     0     0     0     0     0     0     0     0     0     0     0     0
5063 
5064   Columns 11766 through 11778
5065 
5066      0     0     0     0     0     0     0     0     0     0     0     0     0
5067 
5068   Columns 11779 through 11791
5069 
5070      0     0     0     0     0     0     0     0     0     0     0     0     0
5071 
5072   Columns 11792 through 11804
5073 
5074      0     0     0     0     0     0     0     0     0     0     0     0     0
5075 
5076   Columns 11805 through 11817
5077 
5078      0     0     0     0     0     0     0     0     0     0     0     0     0
5079 
5080   Columns 11818 through 11830
5081 
5082      0     0     0     0     0     0     0     0     0     0     0     0     0
5083 
5084   Columns 11831 through 11843
5085 
5086      0     0     0     0     0     0     0     0     0     0     0     0     0
5087 
5088   Columns 11844 through 11856
5089 
5090      0     0     0     0     0     0     0     0     0     0     0     0     0
5091 
5092   Columns 11857 through 11869
5093 
5094      0     0     0     0     0     0     0     0     0     0     0     0     0
5095 
5096   Columns 11870 through 11882
5097 
5098      0     0     0     0     0     0     0     0     0     0     0     0     0
5099 
5100   Columns 11883 through 11895
5101 
5102      0     0     0     0     0     0     0     0     0     0     0     0     0
5103 
5104   Columns 11896 through 11908
5105 
5106      0     0     0     0     0     0     0     0     0     0     0     0     0
5107 
5108   Columns 11909 through 11921
5109 
5110      0     0     0     0     0     0     0     0     0     0     0     0     0
5111 
5112   Columns 11922 through 11934
5113 
5114      0     0     0     0     0     0     0     0     0     0     0     0     0
5115 
5116   Columns 11935 through 11947
5117 
5118      0     0     0     0     0     0     0     0     0     0     0     0     0
5119 
5120   Columns 11948 through 11960
5121 
5122      0     0     0     0     0     0     0     0     0     0     0     0     0
5123 
5124   Columns 11961 through 11973
5125 
5126      0     0     0     0     0     0     0     0     0     0     0     0     0
5127 
5128   Columns 11974 through 11986
5129 
5130      0     0     0     0     0     0     0     0     0     0     0     0     0
5131 
5132   Columns 11987 through 11999
5133 
5134      0     0     0     0     0     0     0     0     0     0     0     0     0
5135 
5136   Columns 12000 through 12012
5137 
5138      0     0     0     0     0     0     0     0     0     0     0     0     0
5139 
5140   Columns 12013 through 12025
5141 
5142      0     0     0     0     0     0     0     0     0     0     0     0     0
5143 
5144   Columns 12026 through 12038
5145 
5146      0     0     0     0     0     0     0     0     0     0     0     0     0
5147 
5148   Columns 12039 through 12051
5149 
5150      0     0     0     0     0     0     0     0     0     0     0     0     0
5151 
5152   Columns 12052 through 12064
5153 
5154      0     0     0     0     0     0     0     0     0     0     0     0     0
5155 
5156   Columns 12065 through 12077
5157 
5158      0     0     0     0     0     0     0     0     0     0     0     0     0
5159 
5160   Columns 12078 through 12090
5161 
5162      0     0     0     0     0     0     0     0     0     0     0     0     0
5163 
5164   Columns 12091 through 12103
5165 
5166      0     0     0     0     0     0     0     0     0     0     0     0     0
5167 
5168   Columns 12104 through 12116
5169 
5170      0     0     0     0     0     0     0     0     0     0     0     0     0
5171 
5172   Columns 12117 through 12129
5173 
5174      0     0     0     0     0     0     0     0     0     0     0     0     0
5175 
5176   Columns 12130 through 12142
5177 
5178      0     0     0     0     0     0     0     0     0     0     0     0     0
5179 
5180   Columns 12143 through 12155
5181 
5182      0     0     0     0     0     0     0     0     0     0     0     0     0
5183 
5184   Columns 12156 through 12168
5185 
5186      0     0     0     0     0     0     0     0     0     0     0     0     0
5187 
5188   Columns 12169 through 12181
5189 
5190      0     0     0     0     0     0     0     0     0     0     0     0     0
5191 
5192   Columns 12182 through 12194
5193 
5194      0     0     0     0     0     0     0     0     0     0     0     0     0
5195 
5196   Columns 12195 through 12207
5197 
5198      0     0     0     0     0     0     0     0     0     0     0     0     0
5199 
5200   Columns 12208 through 12220
5201 
5202      0     0     0     0     0     0     0     0     0     0     0     0     0
5203 
5204   Columns 12221 through 12233
5205 
5206      0     0     0     0     0     0     0     0     0     0     0     0     0
5207 
5208   Columns 12234 through 12246
5209 
5210      0     0     0     0     0     0     0     0     0     0     0     0     0
5211 
5212   Columns 12247 through 12259
5213 
5214      0     0     0     0     0     0     0     0     0     0     0     0     0
5215 
5216   Columns 12260 through 12272
5217 
5218      0     0     0     0     0     0     0     0     0     0     0     0     0
5219 
5220   Columns 12273 through 12285
5221 
5222      0     0     0     0     0     0     0     0     0     0     0     0     0
5223 
5224   Columns 12286 through 12298
5225 
5226      0     0     0     0     0     0     0     0     0     0     0     0     0
5227 
5228   Columns 12299 through 12311
5229 
5230      0     0     0     0     0     0     0     0     0     0     0     0     0
5231 
5232   Column 12312
5233 
5234      1
5235 
5236 
5237 x =
5238 
5239   Columns 1 through 13
5240 
5241      6     0     0     0     0     0     0     0     0     0     0     0     0
5242 
5243   Columns 14 through 26
5244 
5245      0     0     0     0     0     0     0     0     0     0     0     0     0
5246 
5247   Columns 27 through 39
5248 
5249      0     0     0     0     0     0     0     0     0     0     0     0     0
5250 
5251   Columns 40 through 52
5252 
5253      0     0     0     0     0     0     0     0     0     0     0     0     0
5254 
5255   Columns 53 through 65
5256 
5257      0     0     0     0     0     0     0     0     0     0     0     0     0
5258 
5259   Columns 66 through 78
5260 
5261      0     0     0     0     0     0     0     0     0     0     0     0     0
5262 
5263   Columns 79 through 91
5264 
5265      0     0     0     0     0     0     0     0     0     0     0     0     0
5266 
5267   Columns 92 through 104
5268 
5269      0     0     0     0     0     0     0     0     0     0     0     0     0
5270 
5271   Columns 105 through 117
5272 
5273      0     0     0     0     0     0     0     0     0     0     0     0     0
5274 
5275   Columns 118 through 130
5276 
5277      0     0     0     0     0     0     0     0     0     0     0     0     0
5278 
5279   Columns 131 through 143
5280 
5281      0     0     0     0     0     0     0     0     0     0     0     0     0
5282 
5283   Columns 144 through 156
5284 
5285      0     0     0     0     0     0     0     0     0     0     0     0     0
5286 
5287   Columns 157 through 169
5288 
5289      0     0     0     0     0     0     0     0     0     0     0     0     0
5290 
5291   Columns 170 through 182
5292 
5293      0     0     0     0     0     0     0     0     0     0     0     0     0
5294 
5295   Columns 183 through 195
5296 
5297      0     0     0     0     0     0     0     0     0     0     0     0     0
5298 
5299   Columns 196 through 208
5300 
5301      0     0     0     0     0     0     0     0     0     0     0     0     0
5302 
5303   Columns 209 through 221
5304 
5305      0     0     0     0     0     0     0     0     0     0     0     0     0
5306 
5307   Columns 222 through 234
5308 
5309      0     0     0     0     0     0     0     0     0     0     0     0     0
5310 
5311   Columns 235 through 247
5312 
5313      0     0     0     0     0     0     0     0     0     0     0     0     0
5314 
5315   Columns 248 through 260
5316 
5317      0     0     0     0     0     0     0     0     0     0     0     0     0
5318 
5319   Columns 261 through 273
5320 
5321      0     0     0     0     0     0     0     0     0     0     0     0     0
5322 
5323   Columns 274 through 286
5324 
5325      0     0     0     0     0     0     0     0     0     0     0     0     0
5326 
5327   Columns 287 through 299
5328 
5329      0     0     0     0     0     0     0     0     0     0     0     0     0
5330 
5331   Columns 300 through 312
5332 
5333      0     0     0     0     0     0     0     0     0     0     0     0     0
5334 
5335   Columns 313 through 325
5336 
5337      0     0     0     0     0     0     0     0     0     0     0     0     0
5338 
5339   Columns 326 through 338
5340 
5341      0     0     0     0     0     0     0     0     0     0     0     0     0
5342 
5343   Columns 339 through 351
5344 
5345      0     0     0     0     0     0     0     0     0     0     0     0     0
5346 
5347   Columns 352 through 364
5348 
5349      0     0     0     0     0     0     0     0     0     0     0     0     0
5350 
5351   Columns 365 through 377
5352 
5353      0     0     0     0     0     0     0     0     0     0     0     0     0
5354 
5355   Columns 378 through 390
5356 
5357      0     0     0     0     0     0     0     0     0     0     0     0     0
5358 
5359   Columns 391 through 403
5360 
5361      0     0     0     0     0     0     0     0     0     0     0     0     0
5362 
5363   Columns 404 through 416
5364 
5365      0     0     0     0     0     0     0     0     0     0     0     0     0
5366 
5367   Columns 417 through 429
5368 
5369      0     0     0     0     0     0     0     0     0     0     0     0     0
5370 
5371   Columns 430 through 442
5372 
5373      0     0     0     0     0     0     0     0     0     0     0     0     0
5374 
5375   Columns 443 through 455
5376 
5377      0     0     0     0     0     0     0     0     0     0     0     0     0
5378 
5379   Columns 456 through 468
5380 
5381      0     0     0     0     0     0     0     0     0     0     0     0     0
5382 
5383   Columns 469 through 481
5384 
5385      0     0     0     0     0     0     0     0     0     0     0     0     0
5386 
5387   Columns 482 through 494
5388 
5389      0     0     0     0     0     0     0     0     0     0     0     0     0
5390 
5391   Columns 495 through 507
5392 
5393      0     0     0     0     0     0     0     0     0     0     0     0     0
5394 
5395   Columns 508 through 520
5396 
5397      0     0     0     0     0     0     0     0     0     0     0     0     0
5398 
5399   Columns 521 through 533
5400 
5401      0     0     0     0     0     0     0     0     0     0     0     0     0
5402 
5403   Columns 534 through 546
5404 
5405      0     0     0     0     0     0     0     0     0     0     0     0     0
5406 
5407   Columns 547 through 559
5408 
5409      0     0     0     0     0     0     0     0     0     0     0     0     0
5410 
5411   Columns 560 through 572
5412 
5413      0     0     0     0     0     0     0     0     0     0     0     0     0
5414 
5415   Columns 573 through 585
5416 
5417      0     0     0     0     0     0     0     0     0     0     0     0     0
5418 
5419   Columns 586 through 598
5420 
5421      0     0     0     0     0     0     0     0     0     0     0     0     0
5422 
5423   Columns 599 through 611
5424 
5425      0     0     0     0     0     0     0     0     0     0     0     0     0
5426 
5427   Columns 612 through 624
5428 
5429      0     0     0     0     0     0     0     0     0     0     0     0     0
5430 
5431   Columns 625 through 637
5432 
5433      0     0     0     0     0     0     0     0     0     0     0     0     0
5434 
5435   Columns 638 through 650
5436 
5437      0     0     0     0     0     0     0     0     0     0     0     0     0
5438 
5439   Columns 651 through 663
5440 
5441      0     0     0     0     0     0     0     0     0     0     0     0     0
5442 
5443   Columns 664 through 676
5444 
5445      0     0     0     0     0     0     0     0     0     0     0     0     0
5446 
5447   Columns 677 through 689
5448 
5449      0     0     0     0     0     0     0     0     0     0     0     0     0
5450 
5451   Columns 690 through 702
5452 
5453      0     0     0     0     0     0     0     0     0     0     0     0     0
5454 
5455   Columns 703 through 715
5456 
5457      0     0     0     0     0     0     0     0     0     0     0     0     0
5458 
5459   Columns 716 through 728
5460 
5461      0     0     0     0     0     0     0     0     0     0     0     0     0
5462 
5463   Columns 729 through 741
5464 
5465      0     0     0     0     0     0     0     0     0     0     0     0     0
5466 
5467   Columns 742 through 754
5468 
5469      0     0     0     0     0     0     0     0     0     0     0     0     0
5470 
5471   Columns 755 through 767
5472 
5473      0     0     0     0     0     0     0     0     0     0     0     0     0
5474 
5475   Columns 768 through 780
5476 
5477      0     0     0     0     0     0     0     0     0     0     0     0     0
5478 
5479   Columns 781 through 793
5480 
5481      0     0     0     0     0     0     0     0     0     0     0     0     0
5482 
5483   Columns 794 through 806
5484 
5485      0     0     0     0     0     0     0     0     0     0     0     0     0
5486 
5487   Columns 807 through 819
5488 
5489      0     0     0     0     0     0     0     0     0     0     0     0     0
5490 
5491   Columns 820 through 832
5492 
5493      0     0     0     0     0     0     0     0     0     0     0     0     0
5494 
5495   Columns 833 through 845
5496 
5497      0     0     0     0     0     0     0     0     0     0     0     0     0
5498 
5499   Columns 846 through 858
5500 
5501      0     0     0     0     0     0     0     0     0     0     0     0     0
5502 
5503   Columns 859 through 871
5504 
5505      0     0     0     0     0     0     0     0     0     0     0     0     0
5506 
5507   Columns 872 through 884
5508 
5509      0     0     0     0     0     0     0     0     0     0     0     0     0
5510 
5511   Columns 885 through 897
5512 
5513      0     0     0     0     0     0     0     0     0     0     0     0     0
5514 
5515   Columns 898 through 910
5516 
5517      0     0     0     0     0     0     0     0     0     0     0     0     0
5518 
5519   Columns 911 through 923
5520 
5521      0     0     0     0     0     0     0     0     0     0     0     0     0
5522 
5523   Columns 924 through 936
5524 
5525      0     0     0     0     0     0     0     0     0     0     0     0     0
5526 
5527   Columns 937 through 949
5528 
5529      0     0     0     0     0     0     0     0     0     0     0     0     0
5530 
5531   Columns 950 through 962
5532 
5533      0     0     0     0     0     0     0     0     0     0     0     0     0
5534 
5535   Columns 963 through 975
5536 
5537      0     0     0     0     0     0     0     0     0     0     0     0     0
5538 
5539   Columns 976 through 988
5540 
5541      0     0     0     0     0     0     0     0     0     0     0     0     0
5542 
5543   Columns 989 through 1001
5544 
5545      0     0     0     0     0     0     0     0     0     0     0     0     0
5546 
5547   Columns 1002 through 1014
5548 
5549      0     0     0     0     0     0     0     0     0     0     0     0     0
5550 
5551   Columns 1015 through 1027
5552 
5553      0     0     0     0     0     0     0     0     0     0     0     0     0
5554 
5555   Columns 1028 through 1040
5556 
5557      0     0     0     0     0     0     0     0     0     0     0     0     0
5558 
5559   Columns 1041 through 1053
5560 
5561      0     0     0     0     0     0     0     0     0     0     0     0     0
5562 
5563   Columns 1054 through 1066
5564 
5565      0     0     0     0     0     0     0     0     0     0     0     0     0
5566 
5567   Columns 1067 through 1079
5568 
5569      0     0     0     0     0     0     0     0     0     0     0     0     0
5570 
5571   Columns 1080 through 1092
5572 
5573      0     0     0     0     0     0     0     0     0     0     0     0     0
5574 
5575   Columns 1093 through 1105
5576 
5577      0     0     0     0     0     0     0     0     0     0     0     0     0
5578 
5579   Columns 1106 through 1118
5580 
5581      0     0     0     0     0     0     0     0     0     0     0     0     0
5582 
5583   Columns 1119 through 1131
5584 
5585      0     0     0     0     0     0     0     0     0     0     0     0     0
5586 
5587   Columns 1132 through 1144
5588 
5589      0     0     0     0     0     0     0     0     0     0     0     0     0
5590 
5591   Columns 1145 through 1157
5592 
5593      0     0     0     0     0     0     0     0     0     0     0     0     0
5594 
5595   Columns 1158 through 1170
5596 
5597      0     0     0     0     0     0     0     0     0     0     0     0     0
5598 
5599   Columns 1171 through 1183
5600 
5601      0     0     0     0     0     0     0     0     0     0     0     0     0
5602 
5603   Columns 1184 through 1196
5604 
5605      0     0     0     0     0     0     0     0     0     0     0     0     0
5606 
5607   Columns 1197 through 1209
5608 
5609      0     0     0     0     0     0     0     0     0     0     0     0     0
5610 
5611   Columns 1210 through 1222
5612 
5613      0     0     0     0     0     0     0     0     0     0     0     0     0
5614 
5615   Columns 1223 through 1235
5616 
5617      0     0     0     0     0     0     0     0     0     0     0     0     0
5618 
5619   Columns 1236 through 1248
5620 
5621      0     0     0     0     0     0     0     0     0     0     0     0     0
5622 
5623   Columns 1249 through 1261
5624 
5625      0     0     0     0     0     0     0     0     0     0     0     0     0
5626 
5627   Columns 1262 through 1274
5628 
5629      0     0     0     0     0     0     0     0     0     0     0     0     0
5630 
5631   Columns 1275 through 1287
5632 
5633      0     0     0     0     0     0     0     0     0     0     0     0     0
5634 
5635   Columns 1288 through 1300
5636 
5637      0     0     0     0     0     0     0     0     0     0     0     0     0
5638 
5639   Columns 1301 through 1313
5640 
5641      0     0     0     0     0     0     0     0     0     0     0     0     0
5642 
5643   Columns 1314 through 1326
5644 
5645      0     0     0     0     0     0     0     0     0     0     0     0     0
5646 
5647   Columns 1327 through 1339
5648 
5649      0     0     0     0     0     0     0     0     0     0     0     0     0
5650 
5651   Columns 1340 through 1352
5652 
5653      0     0     0     0     0     0     0     0     0     0     0     0     0
5654 
5655   Columns 1353 through 1365
5656 
5657      0     0     0     0     0     0     0     0     0     0     0     0     0
5658 
5659   Columns 1366 through 1378
5660 
5661      0     0     0     0     0     0     0     0     0     0     0     0     0
5662 
5663   Columns 1379 through 1391
5664 
5665      0     0     0     0     0     0     0     0     0     0     0     0     0
5666 
5667   Columns 1392 through 1404
5668 
5669      0     0     0     0     0     0     0     0     0     0     0     0     0
5670 
5671   Columns 1405 through 1417
5672 
5673      0     0     0     0     0     0     0     0     0     0     0     0     0
5674 
5675   Columns 1418 through 1430
5676 
5677      0     0     0     0     0     0     0     0     0     0     0     0     0
5678 
5679   Columns 1431 through 1443
5680 
5681      0     0     0     0     0     0     0     0     0     0     0     0     0
5682 
5683   Columns 1444 through 1456
5684 
5685      0     0     0     0     0     0     0     0     0     0     0     0     0
5686 
5687   Columns 1457 through 1469
5688 
5689      0     0     0     0     0     0     0     0     0     0     0     0     0
5690 
5691   Columns 1470 through 1482
5692 
5693      0     0     0     0     0     0     0     0     0     0     0     0     0
5694 
5695   Columns 1483 through 1495
5696 
5697      0     0     0     0     0     0     0     0     0     0     0     0     0
5698 
5699   Columns 1496 through 1508
5700 
5701      0     0     0     0     0     0     0     0     0     0     0     0     0
5702 
5703   Columns 1509 through 1521
5704 
5705      0     0     0     0     0     0     0     0     0     0     0     0     0
5706 
5707   Columns 1522 through 1534
5708 
5709      0     0     0     0     0     0     0     0     0     0     0     0     0
5710 
5711   Columns 1535 through 1547
5712 
5713      0     0     0     0     0     0     0     0     0     0     0     0     0
5714 
5715   Columns 1548 through 1560
5716 
5717      0     0     0     0     0     0     0     0     0     0     0     0     0
5718 
5719   Columns 1561 through 1573
5720 
5721      0     0     0     0     0     0     0     0     0     0     0     0     0
5722 
5723   Columns 1574 through 1586
5724 
5725      0     0     0     0     0     0     0     0     0     0     0     0     0
5726 
5727   Columns 1587 through 1599
5728 
5729      0     0     0     0     0     0     0     0     0     0     0     0     0
5730 
5731   Columns 1600 through 1612
5732 
5733      0     0     0     0     0     0     0     0     0     0     0     0     0
5734 
5735   Columns 1613 through 1625
5736 
5737      0     0     0     0     0     0     0     0     0     0     0     0     0
5738 
5739   Columns 1626 through 1638
5740 
5741      0     0     0     0     0     0     0     0     0     0     0     0     0
5742 
5743   Columns 1639 through 1651
5744 
5745      0     0     0     0     0     0     0     0     0     0     0     0     0
5746 
5747   Columns 1652 through 1664
5748 
5749      0     0     0     0     0     0     0     0     0     0     0     0     0
5750 
5751   Columns 1665 through 1677
5752 
5753      0     0     0     0     0     0     0     0     0     0     0     0     0
5754 
5755   Columns 1678 through 1690
5756 
5757      0     0     0     0     0     0     0     0     0     0     0     0     0
5758 
5759   Columns 1691 through 1703
5760 
5761      0     0     0     0     0     0     0     0     0     0     0     0     0
5762 
5763   Columns 1704 through 1716
5764 
5765      0     0     0     0     0     0     0     0     0     0     0     0     0
5766 
5767   Columns 1717 through 1729
5768 
5769      0     0     0     0     0     0     0     0     0     0     0     0     0
5770 
5771   Columns 1730 through 1742
5772 
5773      0     0     0     0     0     0     0     0     0     0     0     0     0
5774 
5775   Columns 1743 through 1755
5776 
5777      0     0     0     0     0     0     0     0     0     0     0     0     0
5778 
5779   Columns 1756 through 1768
5780 
5781      0     0     0     0     0     0     0     0     0     0     0     0     0
5782 
5783   Columns 1769 through 1781
5784 
5785      0     0     0     0     0     0     0     0     0     0     0     0     0
5786 
5787   Columns 1782 through 1794
5788 
5789      0     0     0     0     0     0     0     0     0     0     0     0     0
5790 
5791   Columns 1795 through 1807
5792 
5793      0     0     0     0     0     0     0     0     0     0     0     0     0
5794 
5795   Columns 1808 through 1820
5796 
5797      0     0     0     0     0     0     0     0     0     0     0     0     0
5798 
5799   Columns 1821 through 1833
5800 
5801      0     0     0     0     0     0     0     0     0     0     0     0     0
5802 
5803   Columns 1834 through 1846
5804 
5805      0     0     0     0     0     0     0     0     0     0     0     0     0
5806 
5807   Columns 1847 through 1859
5808 
5809      0     0     0     0     0     0     0     0     0     0     0     0     0
5810 
5811   Columns 1860 through 1872
5812 
5813      0     0     0     0     0     0     0     0     0     0     0     0     0
5814 
5815   Columns 1873 through 1885
5816 
5817      0     0     0     0     0     0     0     0     0     0     0     0     0
5818 
5819   Columns 1886 through 1898
5820 
5821      0     0     0     0     0     0     0     0     0     0     0     0     0
5822 
5823   Columns 1899 through 1911
5824 
5825      0     0     0     0     0     0     0     0     0     0     0     0     0
5826 
5827   Columns 1912 through 1924
5828 
5829      0     0     0     0     0     0     0     0     0     0     0     0     0
5830 
5831   Columns 1925 through 1937
5832 
5833      0     0     0     0     0     0     0     0     0     0     0     0     0
5834 
5835   Columns 1938 through 1950
5836 
5837      0     0     0     0     0     0     0     0     0     0     0     0     0
5838 
5839   Columns 1951 through 1963
5840 
5841      0     0     0     0     0     0     0     0     0     0     0     0     0
5842 
5843   Columns 1964 through 1976
5844 
5845      0     0     0     0     0     0     0     0     0     0     0     0     0
5846 
5847   Columns 1977 through 1989
5848 
5849      0     0     0     0     0     0     0     0     0     0     0     0     0
5850 
5851   Columns 1990 through 2002
5852 
5853      0     0     0     0     0     0     0     0     0     0     0     0     0
5854 
5855   Columns 2003 through 2015
5856 
5857      0     0     0     0     0     0     0     0     0     0     0     0     0
5858 
5859   Columns 2016 through 2028
5860 
5861      0     0     0     0     0     0     0     0     0     0     0     0     0
5862 
5863   Columns 2029 through 2041
5864 
5865      0     0     0     0     0     0     0     0     0     0     0     0     0
5866 
5867   Columns 2042 through 2054
5868 
5869      0     0     0     0     0     0     0     0     0     0     0     0     0
5870 
5871   Columns 2055 through 2067
5872 
5873      0     0     0     0     0     0     0     0     0     0     0     0     0
5874 
5875   Columns 2068 through 2080
5876 
5877      0     0     0     0     0     0     0     0     0     0     0     0     0
5878 
5879   Columns 2081 through 2093
5880 
5881      0     0     0     0     0     0     0     0     0     0     0     0     0
5882 
5883   Columns 2094 through 2106
5884 
5885      0     0     0     0     0     0     0     0     0     0     0     0     0
5886 
5887   Columns 2107 through 2119
5888 
5889      0     0     0     0     0     0     0     0     0     0     0     0     0
5890 
5891   Columns 2120 through 2132
5892 
5893      0     0     0     0     0     0     0     0     0     0     0     0     0
5894 
5895   Columns 2133 through 2145
5896 
5897      0     0     0     0     0     0     0     0     0     0     0     0     0
5898 
5899   Columns 2146 through 2158
5900 
5901      0     0     0     0     0     0     0     0     0     0     0     0     0
5902 
5903   Columns 2159 through 2171
5904 
5905      0     0     0     0     0     0     0     0     0     0     0     0     0
5906 
5907   Columns 2172 through 2184
5908 
5909      0     0     0     0     0     0     0     0     0     0     0     0     0
5910 
5911   Columns 2185 through 2197
5912 
5913      0     0     0     0     0     0     0     0     0     0     0     0     0
5914 
5915   Columns 2198 through 2210
5916 
5917      0     0     0     0     0     0     0     0     0     0     0     0     0
5918 
5919   Columns 2211 through 2223
5920 
5921      0     0     0     0     0     0     0     0     0     0     0     0     0
5922 
5923   Columns 2224 through 2236
5924 
5925      0     0     0     0     0     0     0     0     0     0     0     0     0
5926 
5927   Columns 2237 through 2249
5928 
5929      0     0     0     0     0     0     0     0     0     0     0     0     0
5930 
5931   Columns 2250 through 2262
5932 
5933      0     0     0     0     0     0     0     0     0     0     0     0     0
5934 
5935   Columns 2263 through 2275
5936 
5937      0     0     0     0     0     0     0     0     0     0     0     0     0
5938 
5939   Columns 2276 through 2288
5940 
5941      0     0     0     0     0     0     0     0     0     0     0     0     0
5942 
5943   Columns 2289 through 2301
5944 
5945      0     0     0     0     0     0     0     0     0     0     0     0     0
5946 
5947   Columns 2302 through 2314
5948 
5949      0     0     0     0     0     0     0     0     0     0     0     0     0
5950 
5951   Columns 2315 through 2327
5952 
5953      0     0     0     0     0     0     0     0     0     0     0     0     0
5954 
5955   Columns 2328 through 2340
5956 
5957      0     0     0     0     0     0     0     0     0     0     0     0     0
5958 
5959   Columns 2341 through 2353
5960 
5961      0     0     0     0     0     0     0     0     0     0     0     0     0
5962 
5963   Columns 2354 through 2366
5964 
5965      0     0     0     0     0     0     0     0     0     0     0     0     0
5966 
5967   Columns 2367 through 2379
5968 
5969      0     0     0     0     0     0     0     0     0     0     0     0     0
5970 
5971   Columns 2380 through 2392
5972 
5973      0     0     0     0     0     0     0     0     0     0     0     0     0
5974 
5975   Columns 2393 through 2405
5976 
5977      0     0     0     0     0     0     0     0     0     0     0     0     0
5978 
5979   Columns 2406 through 2418
5980 
5981      0     0     0     0     0     0     0     0     0     0     0     0     0
5982 
5983   Columns 2419 through 2431
5984 
5985      0     0     0     0     0     0     0     0     0     0     0     0     0
5986 
5987   Columns 2432 through 2444
5988 
5989      0     0     0     0     0     0     0     0     0     0     0     0     0
5990 
5991   Columns 2445 through 2457
5992 
5993      0     0     0     0     0     0     0     0     0     0     0     0     0
5994 
5995   Columns 2458 through 2470
5996 
5997      0     0     0     0     0     0     0     0     0     0     0     0     0
5998 
5999   Columns 2471 through 2483
6000 
6001      0     0     0     0     0     0     0     0     0     0     0     0     0
6002 
6003   Columns 2484 through 2496
6004 
6005      0     0     0     0     0     0     0     0     0     0     0     0     0
6006 
6007   Columns 2497 through 2509
6008 
6009      0     0     0     0     0     0     0     0     0     0     0     0     0
6010 
6011   Columns 2510 through 2522
6012 
6013      0     0     0     0     0     0     0     0     0     0     0     0     0
6014 
6015   Columns 2523 through 2535
6016 
6017      0     0     0     0     0     0     0     0     0     0     0     0     0
6018 
6019   Columns 2536 through 2548
6020 
6021      0     0     0     0     0     0     0     0     0     0     0     0     0
6022 
6023   Columns 2549 through 2561
6024 
6025      0     0     0     0     0     0     0     0     0     0     0     0     0
6026 
6027   Columns 2562 through 2574
6028 
6029      0     0     0     0     0     0     0     0     0     0     0     0     0
6030 
6031   Columns 2575 through 2587
6032 
6033      0     0     0     0     0     0     0     0     0     0     0     0     0
6034 
6035   Columns 2588 through 2600
6036 
6037      0     0     0     0     0     0     0     0     0     0     0     0     0
6038 
6039   Columns 2601 through 2613
6040 
6041      0     0     0     0     0     0     0     0     0     0     0     0     0
6042 
6043   Columns 2614 through 2626
6044 
6045      0     0     0     0     0     0     0     0     0     0     0     0     0
6046 
6047   Columns 2627 through 2639
6048 
6049      0     0     0     0     0     0     0     0     0     0     0     0     0
6050 
6051   Columns 2640 through 2652
6052 
6053      0     0     0     0     0     0     0     0     0     0     0     0     0
6054 
6055   Columns 2653 through 2665
6056 
6057      0     0     0     0     0     0     0     0     0     0     0     0     0
6058 
6059   Columns 2666 through 2678
6060 
6061      0     0     0     0     0     0     0     0     0     0     0     0     0
6062 
6063   Columns 2679 through 2691
6064 
6065      0     0     0     0     0     0     0     0     0     0     0     0     0
6066 
6067   Columns 2692 through 2704
6068 
6069      0     0     0     0     0     0     0     0     0     0     0     0     0
6070 
6071   Columns 2705 through 2717
6072 
6073      0     0     0     0     0     0     0     0     0     0     0     0     0
6074 
6075   Columns 2718 through 2730
6076 
6077      0     0     0     0     0     0     0     0     0     0     0     0     0
6078 
6079   Columns 2731 through 2743
6080 
6081      0     0     0     0     0     0     0     0     0     0     0     0     0
6082 
6083   Columns 2744 through 2756
6084 
6085      0     0     0     0     0     0     0     0     0     0     0     0     0
6086 
6087   Columns 2757 through 2769
6088 
6089      0     0     0     0     0     0     0     0     0     0     0     0     0
6090 
6091   Columns 2770 through 2782
6092 
6093      0     0     0     0     0     0     0     0     0     0     0     0     0
6094 
6095   Columns 2783 through 2795
6096 
6097      0     0     0     0     0     0     0     0     0     0     0     0     0
6098 
6099   Columns 2796 through 2808
6100 
6101      0     0     0     0     0     0     0     0     0     0     0     0     0
6102 
6103   Columns 2809 through 2821
6104 
6105      0     0     0     0     0     0     0     0     0     0     0     0     0
6106 
6107   Columns 2822 through 2834
6108 
6109      0     0     0     0     0     0     0     0     0     0     0     0     0
6110 
6111   Columns 2835 through 2847
6112 
6113      0     0     0     0     0     0     0     0     0     0     0     0     0
6114 
6115   Columns 2848 through 2860
6116 
6117      0     0     0     0     0     0     0     0     0     0     0     0     0
6118 
6119   Columns 2861 through 2873
6120 
6121      0     0     0     0     0     0     0     0     0     0     0     0     0
6122 
6123   Columns 2874 through 2886
6124 
6125      0     0     0     0     0     0     0     0     0     0     0     0     0
6126 
6127   Columns 2887 through 2899
6128 
6129      0     0     0     0     0     0     0     0     0     0     0     0     0
6130 
6131   Columns 2900 through 2912
6132 
6133      0     0     0     0     0     0     0     0     0     0     0     0     0
6134 
6135   Columns 2913 through 2925
6136 
6137      0     0     0     0     0     0     0     0     0     0     0     0     0
6138 
6139   Columns 2926 through 2938
6140 
6141      0     0     0     0     0     0     0     0     0     0     0     0     0
6142 
6143   Columns 2939 through 2951
6144 
6145      0     0     0     0     0     0     0     0     0     0     0     0     0
6146 
6147   Columns 2952 through 2964
6148 
6149      0     0     0     0     0     0     0     0     0     0     0     0     0
6150 
6151   Columns 2965 through 2977
6152 
6153      0     0     0     0     0     0     0     0     0     0     0     0     0
6154 
6155   Columns 2978 through 2990
6156 
6157      0     0     0     0     0     0     0     0     0     0     0     0     0
6158 
6159   Columns 2991 through 3003
6160 
6161      0     0     0     0     0     0     0     0     0     0     0     0     0
6162 
6163   Columns 3004 through 3016
6164 
6165      0     0     0     0     0     0     0     0     0     0     0     0     0
6166 
6167   Columns 3017 through 3029
6168 
6169      0     0     0     0     0     0     0     0     0     0     0     0     0
6170 
6171   Columns 3030 through 3042
6172 
6173      0     0     0     0     0     0     0     0     0     0     0     0     0
6174 
6175   Columns 3043 through 3055
6176 
6177      0     0     0     0     0     0     0     0     0     0     0     0     0
6178 
6179   Columns 3056 through 3068
6180 
6181      0     0     0     0     0     0     0     0     0     0     0     0     0
6182 
6183   Columns 3069 through 3081
6184 
6185      0     0     0     0     0     0     0     0     0     0     0     0     0
6186 
6187   Columns 3082 through 3094
6188 
6189      0     0     0     0     0     0     0     0     0     0     0     0     0
6190 
6191   Columns 3095 through 3107
6192 
6193      0     0     0     0     0     0     0     0     0     0     0     0     0
6194 
6195   Columns 3108 through 3120
6196 
6197      0     0     0     0     0     0     0     0     0     0     0     0     0
6198 
6199   Columns 3121 through 3133
6200 
6201      0     0     0     0     0     0     0     0     0     0     0     0     0
6202 
6203   Columns 3134 through 3146
6204 
6205      0     0     0     0     0     0     0     0     0     0     0     0     0
6206 
6207   Columns 3147 through 3159
6208 
6209      0     0     0     0     0     0     0     0     0     0     0     0     0
6210 
6211   Columns 3160 through 3172
6212 
6213      0     0     0     0     0     0     0     0     0     0     0     0     0
6214 
6215   Columns 3173 through 3185
6216 
6217      0     0     0     0     0     0     0     0     0     0     0     0     0
6218 
6219   Columns 3186 through 3198
6220 
6221      0     0     0     0     0     0     0     0     0     0     0     0     0
6222 
6223   Columns 3199 through 3211
6224 
6225      0     0     0     0     0     0     0     0     0     0     0     0     0
6226 
6227   Columns 3212 through 3224
6228 
6229      0     0     0     0     0     0     0     0     0     0     0     0     0
6230 
6231   Columns 3225 through 3237
6232 
6233      0     0     0     0     0     0     0     0     0     0     0     0     0
6234 
6235   Columns 3238 through 3250
6236 
6237      0     0     0     0     0     0     0     0     0     0     0     0     0
6238 
6239   Columns 3251 through 3263
6240 
6241      0     0     0     0     0     0     0     0     0     0     0     0     0
6242 
6243   Columns 3264 through 3276
6244 
6245      0     0     0     0     0     0     0     0     0     0     0     0     0
6246 
6247   Columns 3277 through 3289
6248 
6249      0     0     0     0     0     0     0     0     0     0     0     0     0
6250 
6251   Columns 3290 through 3302
6252 
6253      0     0     0     0     0     0     0     0     0     0     0     0     0
6254 
6255   Columns 3303 through 3315
6256 
6257      0     0     0     0     0     0     0     0     0     0     0     0     0
6258 
6259   Columns 3316 through 3328
6260 
6261      0     0     0     0     0     0     0     0     0     0     0     0     0
6262 
6263   Columns 3329 through 3341
6264 
6265      0     0     0     0     0     0     0     0     0     0     0     0     0
6266 
6267   Columns 3342 through 3354
6268 
6269      0     0     0     0     0     0     0     0     0     0     0     0     0
6270 
6271   Columns 3355 through 3367
6272 
6273      0     0     0     0     0     0     0     0     0     0     0     0     0
6274 
6275   Columns 3368 through 3380
6276 
6277      0     0     0     0     0     0     0     0     0     0     0     0     0
6278 
6279   Columns 3381 through 3393
6280 
6281      0     0     0     0     0     0     0     0     0     0     0     0     0
6282 
6283   Columns 3394 through 3406
6284 
6285      0     0     0     0     0     0     0     0     0     0     0     0     0
6286 
6287   Columns 3407 through 3419
6288 
6289      0     0     0     0     0     0     0     0     0     0     0     0     0
6290 
6291   Columns 3420 through 3432
6292 
6293      0     0     0     0     0     0     0     0     0     0     0     0     0
6294 
6295   Columns 3433 through 3445
6296 
6297      0     0     0     0     0     0     0     0     0     0     0     0     0
6298 
6299   Columns 3446 through 3458
6300 
6301      0     0     0     0     0     0     0     0     0     0     0     0     0
6302 
6303   Columns 3459 through 3471
6304 
6305      0     0     0     0     0     0     0     0     0     0     0     0     0
6306 
6307   Columns 3472 through 3484
6308 
6309      0     0     0     0     0     0     0     0     0     0     0     0     0
6310 
6311   Columns 3485 through 3497
6312 
6313      0     0     0     0     0     0     0     0     0     0     0     0     0
6314 
6315   Columns 3498 through 3510
6316 
6317      0     0     0     0     0     0     0     0     0     0     0     0     0
6318 
6319   Columns 3511 through 3523
6320 
6321      0     0     0     0     0     0     0     0     0     0     0     0     0
6322 
6323   Columns 3524 through 3536
6324 
6325      0     0     0     0     0     0     0     0     0     0     0     0     0
6326 
6327   Columns 3537 through 3549
6328 
6329      0     0     0     0     0     0     0     0     0     0     0     0     0
6330 
6331   Columns 3550 through 3562
6332 
6333      0     0     0     0     0     0     0     0     0     0     0     0     0
6334 
6335   Columns 3563 through 3575
6336 
6337      0     0     0     0     0     0     0     0     0     0     0     0     0
6338 
6339   Columns 3576 through 3588
6340 
6341      0     0     0     0     0     0     0     0     0     0     0     0     0
6342 
6343   Columns 3589 through 3601
6344 
6345      0     0     0     0     0     0     0     0     0     0     0     0     0
6346 
6347   Columns 3602 through 3614
6348 
6349      0     0     0     0     0     0     0     0     0     0     0     0     0
6350 
6351   Columns 3615 through 3627
6352 
6353      0     0     0     0     0     0     0     0     0     0     0     0     0
6354 
6355   Columns 3628 through 3640
6356 
6357      0     0     0     0     0     0     0     0     0     0     0     0     0
6358 
6359   Columns 3641 through 3653
6360 
6361      0     0     0     0     0     0     0     0     0     0     0     0     0
6362 
6363   Columns 3654 through 3666
6364 
6365      0     0     0     0     0     0     0     0     0     0     0     0     0
6366 
6367   Columns 3667 through 3679
6368 
6369      0     0     0     0     0     0     0     0     0     0     0     0     0
6370 
6371   Columns 3680 through 3692
6372 
6373      0     0     0     0     0     0     0     0     0     0     0     0     0
6374 
6375   Columns 3693 through 3705
6376 
6377      0     0     0     0     0     0     0     0     0     0     0     0     0
6378 
6379   Columns 3706 through 3718
6380 
6381      0     0     0     0     0     0     0     0     0     0     0     0     0
6382 
6383   Columns 3719 through 3731
6384 
6385      0     0     0     0     0     0     0     0     0     0     0     0     0
6386 
6387   Columns 3732 through 3744
6388 
6389      0     0     0     0     0     0     0     0     0     0     0     0     0
6390 
6391   Columns 3745 through 3757
6392 
6393      0     0     0     0     0     0     0     0     0     0     0     0     0
6394 
6395   Columns 3758 through 3770
6396 
6397      0     0     0     0     0     0     0     0     0     0     0     0     0
6398 
6399   Columns 3771 through 3783
6400 
6401      0     0     0     0     0     0     0     0     0     0     0     0     0
6402 
6403   Columns 3784 through 3796
6404 
6405      0     0     0     0     0     0     0     0     0     0     0     0     0
6406 
6407   Columns 3797 through 3809
6408 
6409      0     0     0     0     0     0     0     0     0     0     0     0     0
6410 
6411   Columns 3810 through 3822
6412 
6413      0     0     0     0     0     0     0     0     0     0     0     0     0
6414 
6415   Columns 3823 through 3835
6416 
6417      0     0     0     0     0     0     0     0     0     0     0     0     0
6418 
6419   Columns 3836 through 3848
6420 
6421      0     0     0     0     0     0     0     0     0     0     0     0     0
6422 
6423   Columns 3849 through 3861
6424 
6425      0     0     0     0     0     0     0     0     0     0     0     0     0
6426 
6427   Columns 3862 through 3874
6428 
6429      0     0     0     0     0     0     0     0     0     0     0     0     0
6430 
6431   Columns 3875 through 3887
6432 
6433      0     0     0     0     0     0     0     0     0     0     0     0     0
6434 
6435   Columns 3888 through 3900
6436 
6437      0     0     0     0     0     0     0     0     0     0     0     0     0
6438 
6439   Columns 3901 through 3913
6440 
6441      0     0     0     0     0     0     0     0     0     0     0     0     0
6442 
6443   Columns 3914 through 3926
6444 
6445      0     0     0     0     0     0     0     0     0     0     0     0     0
6446 
6447   Columns 3927 through 3939
6448 
6449      0     0     0     0     0     0     0     0     0     0     0     0     0
6450 
6451   Columns 3940 through 3952
6452 
6453      0     0     0     0     0     0     0     0     0     0     0     0     0
6454 
6455   Columns 3953 through 3965
6456 
6457      0     0     0     0     0     0     0     0     0     0     0     0     0
6458 
6459   Columns 3966 through 3978
6460 
6461      0     0     0     0     0     0     0     0     0     0     0     0     0
6462 
6463   Columns 3979 through 3991
6464 
6465      0     0     0     0     0     0     0     0     0     0     0     0     0
6466 
6467   Columns 3992 through 4004
6468 
6469      0     0     0     0     0     0     0     0     0     0     0     0     0
6470 
6471   Columns 4005 through 4017
6472 
6473      0     0     0     0     0     0     0     0     0     0     0     0     0
6474 
6475   Columns 4018 through 4030
6476 
6477      0     0     0     0     0     0     0     0     0     0     0     0     0
6478 
6479   Columns 4031 through 4043
6480 
6481      0     0     0     0     0     0     0     0     0     0     0     0     0
6482 
6483   Columns 4044 through 4056
6484 
6485      0     0     0     0     0     0     0     0     0     0     0     0     0
6486 
6487   Columns 4057 through 4069
6488 
6489      0     0     0     0     0     0     0     0     0     0     0     0     0
6490 
6491   Columns 4070 through 4082
6492 
6493      0     0     0     0     0     0     0     0     0     0     0     0     0
6494 
6495   Columns 4083 through 4095
6496 
6497      0     0     0     0     0     0     0     0     0     0     0     0     0
6498 
6499   Columns 4096 through 4108
6500 
6501      0     0     0     0     0     0     0     0     0     0     0     0     0
6502 
6503   Columns 4109 through 4121
6504 
6505      0     0     0     0     0     0     0     0     0     0     0     0     0
6506 
6507   Columns 4122 through 4134
6508 
6509      0     0     0     0     0     0     0     0     0     0     0     0     0
6510 
6511   Columns 4135 through 4147
6512 
6513      0     0     0     0     0     0     0     0     0     0     0     0     0
6514 
6515   Columns 4148 through 4160
6516 
6517      0     0     0     0     0     0     0     0     0     0     0     0     0
6518 
6519   Columns 4161 through 4173
6520 
6521      0     0     0     0     0     0     0     0     0     0     0     0     0
6522 
6523   Columns 4174 through 4186
6524 
6525      0     0     0     0     0     0     0     0     0     0     0     0     0
6526 
6527   Columns 4187 through 4199
6528 
6529      0     0     0     0     0     0     0     0     0     0     0     0     0
6530 
6531   Columns 4200 through 4212
6532 
6533      0     0     0     0     0     0     0     0     0     0     0     0     0
6534 
6535   Columns 4213 through 4225
6536 
6537      0     0     0     0     0     0     0     0     0     0     0     0     0
6538 
6539   Columns 4226 through 4238
6540 
6541      0     0     0     0     0     0     0     0     0     0     0     0     0
6542 
6543   Columns 4239 through 4251
6544 
6545      0     0     0     0     0     0     0     0     0     0     0     0     0
6546 
6547   Columns 4252 through 4264
6548 
6549      0     0     0     0     0     0     0     0     0     0     0     0     0
6550 
6551   Columns 4265 through 4277
6552 
6553      0     0     0     0     0     0     0     0     0     0     0     0     0
6554 
6555   Columns 4278 through 4290
6556 
6557      0     0     0     0     0     0     0     0     0     0     0     0     0
6558 
6559   Columns 4291 through 4303
6560 
6561      0     0     0     0     0     0     0     0     0     0     0     0     0
6562 
6563   Columns 4304 through 4316
6564 
6565      0     0     0     0     0     0     0     0     0     0     0     0     0
6566 
6567   Columns 4317 through 4329
6568 
6569      0     0     0     0     0     0     0     0     0     0     0     0     0
6570 
6571   Columns 4330 through 4342
6572 
6573      0     0     0     0     0     0     0     0     0     0     0     0     0
6574 
6575   Columns 4343 through 4355
6576 
6577      0     0     0     0     0     0     0     0     0     0     0     0     0
6578 
6579   Columns 4356 through 4368
6580 
6581      0     0     0     0     0     0     0     0     0     0     0     0     0
6582 
6583   Columns 4369 through 4381
6584 
6585      0     0     0     0     0     0     0     0     0     0     0     0     0
6586 
6587   Columns 4382 through 4394
6588 
6589      0     0     0     0     0     0     0     0     0     0     0     0     0
6590 
6591   Columns 4395 through 4407
6592 
6593      0     0     0     0     0     0     0     0     0     0     0     0     0
6594 
6595   Columns 4408 through 4420
6596 
6597      0     0     0     0     0     0     0     0     0     0     0     0     0
6598 
6599   Columns 4421 through 4433
6600 
6601      0     0     0     0     0     0     0     0     0     0     0     0     0
6602 
6603   Columns 4434 through 4446
6604 
6605      0     0     0     0     0     0     0     0     0     0     0     0     0
6606 
6607   Columns 4447 through 4459
6608 
6609      0     0     0     0     0     0     0     0     0     0     0     0     0
6610 
6611   Columns 4460 through 4472
6612 
6613      0     0     0     0     0     0     0     0     0     0     0     0     0
6614 
6615   Columns 4473 through 4485
6616 
6617      0     0     0     0     0     0     0     0     0     0     0     0     0
6618 
6619   Columns 4486 through 4498
6620 
6621      0     0     0     0     0     0     0     0     0     0     0     0     0
6622 
6623   Columns 4499 through 4511
6624 
6625      0     0     0     0     0     0     0     0     0     0     0     0     0
6626 
6627   Columns 4512 through 4524
6628 
6629      0     0     0     0     0     0     0     0     0     0     0     0     0
6630 
6631   Columns 4525 through 4537
6632 
6633      0     0     0     0     0     0     0     0     0     0     0     0     0
6634 
6635   Columns 4538 through 4550
6636 
6637      0     0     0     0     0     0     0     0     0     0     0     0     0
6638 
6639   Columns 4551 through 4563
6640 
6641      0     0     0     0     0     0     0     0     0     0     0     0     0
6642 
6643   Columns 4564 through 4576
6644 
6645      0     0     0     0     0     0     0     0     0     0     0     0     0
6646 
6647   Columns 4577 through 4589
6648 
6649      0     0     0     0     0     0     0     0     0     0     0     0     0
6650 
6651   Columns 4590 through 4602
6652 
6653      0     0     0     0     0     0     0     0     0     0     0     0     0
6654 
6655   Columns 4603 through 4615
6656 
6657      0     0     0     0     0     0     0     0     0     0     0     0     0
6658 
6659   Columns 4616 through 4628
6660 
6661      0     0     0     0     0     0     0     0     0     0     0     0     0
6662 
6663   Columns 4629 through 4641
6664 
6665      0     0     0     0     0     0     0     0     0     0     0     0     0
6666 
6667   Columns 4642 through 4654
6668 
6669      0     0     0     0     0     0     0     0     0     0     0     0     0
6670 
6671   Columns 4655 through 4667
6672 
6673      0     0     0     0     0     0     0     0     0     0     0     0     0
6674 
6675   Columns 4668 through 4680
6676 
6677      0     0     0     0     0     0     0     0     0     0     0     0     0
6678 
6679   Columns 4681 through 4693
6680 
6681      0     0     0     0     0     0     0     0     0     0     0     0     0
6682 
6683   Columns 4694 through 4706
6684 
6685      0     0     0     0     0     0     0     0     0     0     0     0     0
6686 
6687   Columns 4707 through 4719
6688 
6689      0     0     0     0     0     0     0     0     0     0     0     0     0
6690 
6691   Columns 4720 through 4732
6692 
6693      0     0     0     0     0     0     0     0     0     0     0     0     0
6694 
6695   Columns 4733 through 4745
6696 
6697      0     0     0     0     0     0     0     0     0     0     0     0     0
6698 
6699   Columns 4746 through 4758
6700 
6701      0     0     0     0     0     0     0     0     0     0     0     0     0
6702 
6703   Columns 4759 through 4771
6704 
6705      0     0     0     0     0     0     0     0     0     0     0     0     0
6706 
6707   Columns 4772 through 4784
6708 
6709      0     0     0     0     0     0     0     0     0     0     0     0     0
6710 
6711   Columns 4785 through 4797
6712 
6713      0     0     0     0     0     0     0     0     0     0     0     0     0
6714 
6715   Columns 4798 through 4810
6716 
6717      0     0     0     0     0     0     0     0     0     0     0     0     0
6718 
6719   Columns 4811 through 4823
6720 
6721      0     0     0     0     0     0     0     0     0     0     0     0     0
6722 
6723   Columns 4824 through 4836
6724 
6725      0     0     0     0     0     0     0     0     0     0     0     0     0
6726 
6727   Columns 4837 through 4849
6728 
6729      0     0     0     0     0     0     0     0     0     0     0     0     0
6730 
6731   Columns 4850 through 4862
6732 
6733      0     0     0     0     0     0     0     0     0     0     0     0     0
6734 
6735   Columns 4863 through 4875
6736 
6737      0     0     0     0     0     0     0     0     0     0     0     0     0
6738 
6739   Columns 4876 through 4888
6740 
6741      0     0     0     0     0     0     0     0     0     0     0     0     0
6742 
6743   Columns 4889 through 4901
6744 
6745      0     0     0     0     0     0     0     0     0     0     0     0     0
6746 
6747   Columns 4902 through 4914
6748 
6749      0     0     0     0     0     0     0     0     0     0     0     0     0
6750 
6751   Columns 4915 through 4927
6752 
6753      0     0     0     0     0     0     0     0     0     0     0     0     0
6754 
6755   Columns 4928 through 4940
6756 
6757      0     0     0     0     0     0     0     0     0     0     0     0     0
6758 
6759   Columns 4941 through 4953
6760 
6761      0     0     0     0     0     0     0     0     0     0     0     0     0
6762 
6763   Columns 4954 through 4966
6764 
6765      0     0     0     0     0     0     0     0     0     0     0     0     0
6766 
6767   Columns 4967 through 4979
6768 
6769      0     0     0     0     0     0     0     0     0     0     0     0     0
6770 
6771   Columns 4980 through 4992
6772 
6773      0     0     0     0     0     0     0     0     0     0     0     0     0
6774 
6775   Columns 4993 through 5005
6776 
6777      0     0     0     0     0     0     0     0     0     0     0     0     0
6778 
6779   Columns 5006 through 5018
6780 
6781      0     0     0     0     0     0     0     0     0     0     0     0     0
6782 
6783   Columns 5019 through 5031
6784 
6785      0     0     0     0     0     0     0     0     0     0     0     0     0
6786 
6787   Columns 5032 through 5044
6788 
6789      0     0     0     0     0     0     0     0     0     0     0     0     0
6790 
6791   Columns 5045 through 5057
6792 
6793      0     0     0     0     0     0     0     0     0     0     0     0     0
6794 
6795   Columns 5058 through 5070
6796 
6797      0     0     0     0     0     0     0     0     0     0     0     0     0
6798 
6799   Columns 5071 through 5083
6800 
6801      0     0     0     0     0     0     0     0     0     0     0     0     0
6802 
6803   Columns 5084 through 5096
6804 
6805      0     0     0     0     0     0     0     0     0     0     0     0     0
6806 
6807   Columns 5097 through 5109
6808 
6809      0     0     0     0     0     0     0     0     0     0     0     0     0
6810 
6811   Columns 5110 through 5122
6812 
6813      0     0     0     0     0     0     0     0     0     0     0     0     0
6814 
6815   Columns 5123 through 5135
6816 
6817      0     0     0     0     0     0     0     0     0     0     0     0     0
6818 
6819   Columns 5136 through 5148
6820 
6821      0     0     0     0     0     0     0     0     0     0     0     0     0
6822 
6823   Columns 5149 through 5161
6824 
6825      0     0     0     0     0     0     0     0     0     0     0     0     0
6826 
6827   Columns 5162 through 5174
6828 
6829      0     0     0     0     0     0     0     0     0     0     0     0     0
6830 
6831   Columns 5175 through 5187
6832 
6833      0     0     0     0     0     0     0     0     0     0     0     0     0
6834 
6835   Columns 5188 through 5200
6836 
6837      0     0     0     0     0     0     0     0     0     0     0     0     0
6838 
6839   Columns 5201 through 5213
6840 
6841      0     0     0     0     0     0     0     0     0     0     0     0     0
6842 
6843   Columns 5214 through 5226
6844 
6845      0     0     0     0     0     0     0     0     0     0     0     0     0
6846 
6847   Columns 5227 through 5239
6848 
6849      0     0     0     0     0     0     0     0     0     0     0     0     0
6850 
6851   Columns 5240 through 5252
6852 
6853      0     0     0     0     0     0     0     0     0     0     0     0     0
6854 
6855   Columns 5253 through 5265
6856 
6857      0     0     0     0     0     0     0     0     0     0     0     0     0
6858 
6859   Columns 5266 through 5278
6860 
6861      0     0     0     0     0     0     0     0     0     0     0     0     0
6862 
6863   Columns 5279 through 5291
6864 
6865      0     0     0     0     0     0     0     0     0     0     0     0     0
6866 
6867   Columns 5292 through 5304
6868 
6869      0     0     0     0     0     0     0     0     0     0     0     0     0
6870 
6871   Columns 5305 through 5317
6872 
6873      0     0     0     0     0     0     0     0     0     0     0     0     0
6874 
6875   Columns 5318 through 5330
6876 
6877      0     0     0     0     0     0     0     0     0     0     0     0     0
6878 
6879   Columns 5331 through 5343
6880 
6881      0     0     0     0     0     0     0     0     0     0     0     0     0
6882 
6883   Columns 5344 through 5356
6884 
6885      0     0     0     0     0     0     0     0     0     0     0     0     0
6886 
6887   Columns 5357 through 5369
6888 
6889      0     0     0     0     0     0     0     0     0     0     0     0     0
6890 
6891   Columns 5370 through 5382
6892 
6893      0     0     0     0     0     0     0     0     0     0     0     0     0
6894 
6895   Columns 5383 through 5395
6896 
6897      0     0     0     0     0     0     0     0     0     0     0     0     0
6898 
6899   Columns 5396 through 5408
6900 
6901      0     0     0     0     0     0     0     0     0     0     0     0     0
6902 
6903   Columns 5409 through 5421
6904 
6905      0     0     0     0     0     0     0     0     0     0     0     0     0
6906 
6907   Columns 5422 through 5434
6908 
6909      0     0     0     0     0     0     0     0     0     0     0     0     0
6910 
6911   Columns 5435 through 5447
6912 
6913      0     0     0     0     0     0     0     0     0     0     0     0     0
6914 
6915   Columns 5448 through 5460
6916 
6917      0     0     0     0     0     0     0     0     0     0     0     0     0
6918 
6919   Columns 5461 through 5473
6920 
6921      0     0     0     0     0     0     0     0     0     0     0     0     0
6922 
6923   Columns 5474 through 5486
6924 
6925      0     0     0     0     0     0     0     0     0     0     0     0     0
6926 
6927   Columns 5487 through 5499
6928 
6929      0     0     0     0     0     0     0     0     0     0     0     0     0
6930 
6931   Columns 5500 through 5512
6932 
6933      0     0     0     0     0     0     0     0     0     0     0     0     0
6934 
6935   Columns 5513 through 5525
6936 
6937      0     0     0     0     0     0     0     0     0     0     0     0     0
6938 
6939   Columns 5526 through 5538
6940 
6941      0     0     0     0     0     0     0     0     0     0     0     0     0
6942 
6943   Columns 5539 through 5551
6944 
6945      0     0     0     0     0     0     0     0     0     0     0     0     0
6946 
6947   Columns 5552 through 5564
6948 
6949      0     0     0     0     0     0     0     0     0     0     0     0     0
6950 
6951   Columns 5565 through 5577
6952 
6953      0     0     0     0     0     0     0     0     0     0     0     0     0
6954 
6955   Columns 5578 through 5590
6956 
6957      0     0     0     0     0     0     0     0     0     0     0     0     0
6958 
6959   Columns 5591 through 5603
6960 
6961      0     0     0     0     0     0     0     0     0     0     0     0     0
6962 
6963   Columns 5604 through 5616
6964 
6965      0     0     0     0     0     0     0     0     0     0     0     0     0
6966 
6967   Columns 5617 through 5629
6968 
6969      0     0     0     0     0     0     0     0     0     0     0     0     0
6970 
6971   Columns 5630 through 5642
6972 
6973      0     0     0     0     0     0     0     0     0     0     0     0     0
6974 
6975   Columns 5643 through 5655
6976 
6977      0     0     0     0     0     0     0     0     0     0     0     0     0
6978 
6979   Columns 5656 through 5668
6980 
6981      0     0     0     0     0     0     0     0     0     0     0     0     0
6982 
6983   Columns 5669 through 5681
6984 
6985      0     0     0     0     0     0     0     0     0     0     0     0     0
6986 
6987   Columns 5682 through 5694
6988 
6989      0     0     0     0     0     0     0     0     0     0     0     0     0
6990 
6991   Columns 5695 through 5707
6992 
6993      0     0     0     0     0     0     0     0     0     0     0     0     0
6994 
6995   Columns 5708 through 5720
6996 
6997      0     0     0     0     0     0     0     0     0     0     0     0     0
6998 
6999   Columns 5721 through 5733
7000 
7001      0     0     0     0     0     0     0     0     0     0     0     0     0
7002 
7003   Columns 5734 through 5746
7004 
7005      0     0     0     0     0     0     0     0     0     0     0     0     0
7006 
7007   Columns 5747 through 5759
7008 
7009      0     0     0     0     0     0     0     0     0     0     0     0     0
7010 
7011   Columns 5760 through 5772
7012 
7013      0     0     0     0     0     0     0     0     0     0     0     0     0
7014 
7015   Columns 5773 through 5785
7016 
7017      0     0     0     0     0     0     0     0     0     0     0     0     0
7018 
7019   Columns 5786 through 5798
7020 
7021      0     0     0     0     0     0     0     0     0     0     0     0     0
7022 
7023   Columns 5799 through 5811
7024 
7025      0     0     0     0     0     0     0     0     0     0     0     0     0
7026 
7027   Columns 5812 through 5824
7028 
7029      0     0     0     0     0     0     0     0     0     0     0     0     0
7030 
7031   Columns 5825 through 5837
7032 
7033      0     0     0     0     0     0     0     0     0     0     0     0     0
7034 
7035   Columns 5838 through 5850
7036 
7037      0     0     0     0     0     0     0     0     0     0     0     0     0
7038 
7039   Columns 5851 through 5863
7040 
7041      0     0     0     0     0     0     0     0     0     0     0     0     0
7042 
7043   Columns 5864 through 5876
7044 
7045      0     0     0     0     0     0     0     0     0     0     0     0     0
7046 
7047   Columns 5877 through 5889
7048 
7049      0     0     0     0     0     0     0     0     0     0     0     0     0
7050 
7051   Columns 5890 through 5902
7052 
7053      0     0     0     0     0     0     0     0     0     0     0     0     0
7054 
7055   Columns 5903 through 5915
7056 
7057      0     0     0     0     0     0     0     0     0     0     0     0     0
7058 
7059   Columns 5916 through 5928
7060 
7061      0     0     0     0     0     0     0     0     0     0     0     0     0
7062 
7063   Columns 5929 through 5941
7064 
7065      0     0     0     0     0     0     0     0     0     0     0     0     0
7066 
7067   Columns 5942 through 5954
7068 
7069      0     0     0     0     0     0     0     0     0     0     0     0     0
7070 
7071   Columns 5955 through 5967
7072 
7073      0     0     0     0     0     0     0     0     0     0     0     0     0
7074 
7075   Columns 5968 through 5980
7076 
7077      0     0     0     0     0     0     0     0     0     0     0     0     0
7078 
7079   Columns 5981 through 5993
7080 
7081      0     0     0     0     0     0     0     0     0     0     0     0     0
7082 
7083   Columns 5994 through 6006
7084 
7085      0     0     0     0     0     0     0     0     0     0     0     0     0
7086 
7087   Columns 6007 through 6019
7088 
7089      0     0     0     0     0     0     0     0     0     0     0     0     0
7090 
7091   Columns 6020 through 6032
7092 
7093      0     0     0     0     0     0     0     0     0     0     0     0     0
7094 
7095   Columns 6033 through 6045
7096 
7097      0     0     0     0     0     0     0     0     0     0     0     0     0
7098 
7099   Columns 6046 through 6058
7100 
7101      0     0     0     0     0     0     0     0     0     0     0     0     0
7102 
7103   Columns 6059 through 6071
7104 
7105      0     0     0     0     0     0     0     0     0     0     0     0     0
7106 
7107   Columns 6072 through 6084
7108 
7109      0     0     0     0     0     0     0     0     0     0     0     0     0
7110 
7111   Columns 6085 through 6097
7112 
7113      0     0     0     0     0     0     0     0     0     0     0     0     0
7114 
7115   Columns 6098 through 6110
7116 
7117      0     0     0     0     0     0     0     0     0     0     0     0     0
7118 
7119   Columns 6111 through 6123
7120 
7121      0     0     0     0     0     0     0     0     0     0     0     0     0
7122 
7123   Columns 6124 through 6136
7124 
7125      0     0     0     0     0     0     0     0     0     0     0     0     0
7126 
7127   Columns 6137 through 6149
7128 
7129      0     0     0     0     0     0     0     0     0     0     0     0     0
7130 
7131   Columns 6150 through 6162
7132 
7133      0     0     0     0     0     0     0     0     0     0     0     0     0
7134 
7135   Columns 6163 through 6175
7136 
7137      0     0     0     0     0     0     0     0     0     0     0     0     0
7138 
7139   Columns 6176 through 6188
7140 
7141      0     0     0     0     0     0     0     0     0     0     0     0     0
7142 
7143   Columns 6189 through 6201
7144 
7145      0     0     0     0     0     0     0     0     0     0     0     0     0
7146 
7147   Columns 6202 through 6214
7148 
7149      0     0     0     0     0     0     0     0     0     0     0     0     0
7150 
7151   Columns 6215 through 6227
7152 
7153      0     0     0     0     0     0     0     0     0     0     0     0     0
7154 
7155   Columns 6228 through 6240
7156 
7157      0     0     0     0     0     0     0     0     0     0     0     0     0
7158 
7159   Columns 6241 through 6253
7160 
7161      0     0     0     0     0     0     0     0     0     0     0     0     0
7162 
7163   Columns 6254 through 6266
7164 
7165      0     0     0     0     0     0     0     0     0     0     0     0     0
7166 
7167   Columns 6267 through 6279
7168 
7169      0     0     0     0     0     0     0     0     0     0     0     0     0
7170 
7171   Columns 6280 through 6292
7172 
7173      0     0     0     0     0     0     0     0     0     0     0     0     0
7174 
7175   Columns 6293 through 6305
7176 
7177      0     0     0     0     0     0     0     0     0     0     0     0     0
7178 
7179   Columns 6306 through 6318
7180 
7181      0     0     0     0     0     0     0     0     0     0     0     0     0
7182 
7183   Columns 6319 through 6331
7184 
7185      0     0     0     0     0     0     0     0     0     0     0     0     0
7186 
7187   Columns 6332 through 6344
7188 
7189      0     0     0     0     0     0     0     0     0     0     0     0     0
7190 
7191   Columns 6345 through 6357
7192 
7193      0     0     0     0     0     0     0     0     0     0     0     0     0
7194 
7195   Columns 6358 through 6370
7196 
7197      0     0     0     0     0     0     0     0     0     0     0     0     0
7198 
7199   Columns 6371 through 6383
7200 
7201      0     0     0     0     0     0     0     0     0     0     0     0     0
7202 
7203   Columns 6384 through 6396
7204 
7205      0     0     0     0     0     0     0     0     0     0     0     0     0
7206 
7207   Columns 6397 through 6409
7208 
7209      0     0     0     0     0     0     0     0     0     0     0     0     0
7210 
7211   Columns 6410 through 6422
7212 
7213      0     0     0     0     0     0     0     0     0     0     0     0     0
7214 
7215   Columns 6423 through 6435
7216 
7217      0     0     0     0     0     0     0     0     0     0     0     0     0
7218 
7219   Columns 6436 through 6448
7220 
7221      0     0     0     0     0     0     0     0     0     0     0     0     0
7222 
7223   Columns 6449 through 6461
7224 
7225      0     0     0     0     0     0     0     0     0     0     0     0     0
7226 
7227   Columns 6462 through 6474
7228 
7229      0     0     0     0     0     0     0     0     0     0     0     0     0
7230 
7231   Columns 6475 through 6487
7232 
7233      0     0     0     0     0     0     0     0     0     0     0     0     0
7234 
7235   Columns 6488 through 6500
7236 
7237      0     0     0     0     0     0     0     0     0     0     0     0     0
7238 
7239   Columns 6501 through 6513
7240 
7241      0     0     0     0     0     0     0     0     0     0     0     0     0
7242 
7243   Columns 6514 through 6526
7244 
7245      0     0     0     0     0     0     0     0     0     0     0     0     0
7246 
7247   Columns 6527 through 6539
7248 
7249      0     0     0     0     0     0     0     0     0     0     0     0     0
7250 
7251   Columns 6540 through 6552
7252 
7253      0     0     0     0     0     0     0     0     0     0     0     0     0
7254 
7255   Columns 6553 through 6565
7256 
7257      0     0     0     0     0     0     0     0     0     0     0     0     0
7258 
7259   Columns 6566 through 6578
7260 
7261      0     0     0     0     0     0     0     0     0     0     0     0     0
7262 
7263   Columns 6579 through 6591
7264 
7265      0     0     0     0     0     0     0     0     0     0     0     0     0
7266 
7267   Columns 6592 through 6604
7268 
7269      0     0     0     0     0     0     0     0     0     0     0     0     0
7270 
7271   Columns 6605 through 6617
7272 
7273      0     0     0     0     0     0     0     0     0     0     0     0     0
7274 
7275   Columns 6618 through 6630
7276 
7277      0     0     0     0     0     0     0     0     0     0     0     0     0
7278 
7279   Columns 6631 through 6643
7280 
7281      0     0     0     0     0     0     0     0     0     0     0     0     0
7282 
7283   Columns 6644 through 6656
7284 
7285      0     0     0     0     0     0     0     0     0     0     0     0     0
7286 
7287   Columns 6657 through 6669
7288 
7289      0     0     0     0     0     0     0     0     0     0     0     0     0
7290 
7291   Columns 6670 through 6682
7292 
7293      0     0     0     0     0     0     0     0     0     0     0     0     0
7294 
7295   Columns 6683 through 6695
7296 
7297      0     0     0     0     0     0     0     0     0     0     0     0     0
7298 
7299   Columns 6696 through 6708
7300 
7301      0     0     0     0     0     0     0     0     0     0     0     0     0
7302 
7303   Columns 6709 through 6721
7304 
7305      0     0     0     0     0     0     0     0     0     0     0     0     0
7306 
7307   Columns 6722 through 6734
7308 
7309      0     0     0     0     0     0     0     0     0     0     0     0     0
7310 
7311   Columns 6735 through 6747
7312 
7313      0     0     0     0     0     0     0     0     0     0     0     0     0
7314 
7315   Columns 6748 through 6760
7316 
7317      0     0     0     0     0     0     0     0     0     0     0     0     0
7318 
7319   Columns 6761 through 6773
7320 
7321      0     0     0     0     0     0     0     0     0     0     0     0     0
7322 
7323   Columns 6774 through 6786
7324 
7325      0     0     0     0     0     0     0     0     0     0     0     0     0
7326 
7327   Columns 6787 through 6799
7328 
7329      0     0     0     0     0     0     0     0     0     0     0     0     0
7330 
7331   Columns 6800 through 6812
7332 
7333      0     0     0     0     0     0     0     0     0     0     0     0     0
7334 
7335   Columns 6813 through 6825
7336 
7337      0     0     0     0     0     0     0     0     0     0     0     0     0
7338 
7339   Columns 6826 through 6838
7340 
7341      0     0     0     0     0     0     0     0     0     0     0     0     0
7342 
7343   Columns 6839 through 6851
7344 
7345      0     0     0     0     0     0     0     0     0     0     0     0     0
7346 
7347   Columns 6852 through 6864
7348 
7349      0     0     0     0     0     0     0     0     0     0     0     0     0
7350 
7351   Columns 6865 through 6877
7352 
7353      0     0     0     0     0     0     0     0     0     0     0     0     0
7354 
7355   Columns 6878 through 6890
7356 
7357      0     0     0     0     0     0     0     0     0     0     0     0     0
7358 
7359   Columns 6891 through 6903
7360 
7361      0     0     0     0     0     0     0     0     0     0     0     0     0
7362 
7363   Columns 6904 through 6916
7364 
7365      0     0     0     0     0     0     0     0     0     0     0     0     0
7366 
7367   Columns 6917 through 6929
7368 
7369      0     0     0     0     0     0     0     0     0     0     0     0     0
7370 
7371   Columns 6930 through 6942
7372 
7373      0     0     0     0     0     0     0     0     0     0     0     0     0
7374 
7375   Columns 6943 through 6955
7376 
7377      0     0     0     0     0     0     0     0     0     0     0     0     0
7378 
7379   Columns 6956 through 6968
7380 
7381      0     0     0     0     0     0     0     0     0     0     0     0     0
7382 
7383   Columns 6969 through 6981
7384 
7385      0     0     0     0     0     0     0     0     0     0     0     0     0
7386 
7387   Columns 6982 through 6994
7388 
7389      0     0     0     0     0     0     0     0     0     0     0     0     0
7390 
7391   Columns 6995 through 7007
7392 
7393      0     0     0     0     0     0     0     0     0     0     0     0     0
7394 
7395   Columns 7008 through 7020
7396 
7397      0     0     0     0     0     0     0     0     0     0     0     0     0
7398 
7399   Columns 7021 through 7033
7400 
7401      0     0     0     0     0     0     0     0     0     0     0     0     0
7402 
7403   Columns 7034 through 7046
7404 
7405      0     0     0     0     0     0     0     0     0     0     0     0     0
7406 
7407   Columns 7047 through 7059
7408 
7409      0     0     0     0     0     0     0     0     0     0     0     0     0
7410 
7411   Columns 7060 through 7072
7412 
7413      0     0     0     0     0     0     0     0     0     0     0     0     0
7414 
7415   Columns 7073 through 7085
7416 
7417      0     0     0     0     0     0     0     0     0     0     0     0     0
7418 
7419   Columns 7086 through 7098
7420 
7421      0     0     0     0     0     0     0     0     0     0     0     0     0
7422 
7423   Columns 7099 through 7111
7424 
7425      0     0     0     0     0     0     0     0     0     0     0     0     0
7426 
7427   Columns 7112 through 7124
7428 
7429      0     0     0     0     0     0     0     0     0     0     0     0     0
7430 
7431   Columns 7125 through 7137
7432 
7433      0     0     0     0     0     0     0     0     0     0     0     0     0
7434 
7435   Columns 7138 through 7150
7436 
7437      0     0     0     0     0     0     0     0     0     0     0     0     0
7438 
7439   Columns 7151 through 7163
7440 
7441      0     0     0     0     0     0     0     0     0     0     0     0     0
7442 
7443   Columns 7164 through 7176
7444 
7445      0     0     0     0     0     0     0     0     0     0     0     0     0
7446 
7447   Columns 7177 through 7189
7448 
7449      0     0     0     0     0     0     0     0     0     0     0     0     0
7450 
7451   Columns 7190 through 7202
7452 
7453      0     0     0     0     0     0     0     0     0     0     0     0     0
7454 
7455   Columns 7203 through 7215
7456 
7457      0     0     0     0     0     0     0     0     0     0     0     0     0
7458 
7459   Columns 7216 through 7228
7460 
7461      0     0     0     0     0     0     0     0     0     0     0     0     0
7462 
7463   Columns 7229 through 7241
7464 
7465      0     0     0     0     0     0     0     0     0     0     0     0     0
7466 
7467   Columns 7242 through 7254
7468 
7469      0     0     0     0     0     0     0     0     0     0     0     0     0
7470 
7471   Columns 7255 through 7267
7472 
7473      0     0     0     0     0     0     0     0     0     0     0     0     0
7474 
7475   Columns 7268 through 7280
7476 
7477      0     0     0     0     0     0     0     0     0     0     0     0     0
7478 
7479   Columns 7281 through 7293
7480 
7481      0     0     0     0     0     0     0     0     0     0     0     0     0
7482 
7483   Columns 7294 through 7306
7484 
7485      0     0     0     0     0     0     0     0     0     0     0     0     0
7486 
7487   Columns 7307 through 7319
7488 
7489      0     0     0     0     0     0     0     0     0     0     0     0     0
7490 
7491   Columns 7320 through 7332
7492 
7493      0     0     0     0     0     0     0     0     0     0     0     0     0
7494 
7495   Columns 7333 through 7345
7496 
7497      0     0     0     0     0     0     0     0     0     0     0     0     0
7498 
7499   Columns 7346 through 7358
7500 
7501      0     0     0     0     0     0     0     0     0     0     0     0     0
7502 
7503   Columns 7359 through 7371
7504 
7505      0     0     0     0     0     0     0     0     0     0     0     0     0
7506 
7507   Columns 7372 through 7384
7508 
7509      0     0     0     0     0     0     0     0     0     0     0     0     0
7510 
7511   Columns 7385 through 7397
7512 
7513      0     0     0     0     0     0     0     0     0     0     0     0     0
7514 
7515   Columns 7398 through 7410
7516 
7517      0     0     0     0     0     0     0     0     0     0     0     0     0
7518 
7519   Columns 7411 through 7423
7520 
7521      0     0     0     0     0     0     0     0     0     0     0     0     0
7522 
7523   Columns 7424 through 7436
7524 
7525      0     0     0     0     0     0     0     0     0     0     0     0     0
7526 
7527   Columns 7437 through 7449
7528 
7529      0     0     0     0     0     0     0     0     0     0     0     0     0
7530 
7531   Columns 7450 through 7462
7532 
7533      0     0     0     0     0     0     0     0     0     0     0     0     0
7534 
7535   Columns 7463 through 7475
7536 
7537      0     0     0     0     0     0     0     0     0     0     0     0     0
7538 
7539   Columns 7476 through 7488
7540 
7541      0     0     0     0     0     0     0     0     0     0     0     0     0
7542 
7543   Columns 7489 through 7501
7544 
7545      0     0     0     0     0     0     0     0     0     0     0     0     0
7546 
7547   Columns 7502 through 7514
7548 
7549      0     0     0     0     0     0     0     0     0     0     0     0     0
7550 
7551   Columns 7515 through 7527
7552 
7553      0     0     0     0     0     0     0     0     0     0     0     0     0
7554 
7555   Columns 7528 through 7540
7556 
7557      0     0     0     0     0     0     0     0     0     0     0     0     0
7558 
7559   Columns 7541 through 7553
7560 
7561      0     0     0     0     0     0     0     0     0     0     0     0     0
7562 
7563   Columns 7554 through 7566
7564 
7565      0     0     0     0     0     0     0     0     0     0     0     0     0
7566 
7567   Columns 7567 through 7579
7568 
7569      0     0     0     0     0     0     0     0     0     0     0     0     0
7570 
7571   Columns 7580 through 7592
7572 
7573      0     0     0     0     0     0     0     0     0     0     0     0     0
7574 
7575   Columns 7593 through 7605
7576 
7577      0     0     0     0     0     0     0     0     0     0     0     0     0
7578 
7579   Columns 7606 through 7618
7580 
7581      0     0     0     0     0     0     0     0     0     0     0     0     0
7582 
7583   Columns 7619 through 7631
7584 
7585      0     0     0     0     0     0     0     0     0     0     0     0     0
7586 
7587   Columns 7632 through 7644
7588 
7589      0     0     0     0     0     0     0     0     0     0     0     0     0
7590 
7591   Columns 7645 through 7657
7592 
7593      0     0     0     0     0     0     0     0     0     0     0     0     0
7594 
7595   Columns 7658 through 7670
7596 
7597      0     0     0     0     0     0     0     0     0     0     0     0     0
7598 
7599   Columns 7671 through 7683
7600 
7601      0     0     0     0     0     0     0     0     0     0     0     0     0
7602 
7603   Columns 7684 through 7696
7604 
7605      0     0     0     0     0     0     0     0     0     0     0     0     0
7606 
7607   Columns 7697 through 7709
7608 
7609      0     0     0     0     0     0     0     0     0     0     0     0     0
7610 
7611   Columns 7710 through 7722
7612 
7613      0     0     0     0     0     0     0     0     0     0     0     0     0
7614 
7615   Columns 7723 through 7735
7616 
7617      0     0     0     0     0     0     0     0     0     0     0     0     0
7618 
7619   Columns 7736 through 7748
7620 
7621      0     0     0     0     0     0     0     0     0     0     0     0     0
7622 
7623   Columns 7749 through 7761
7624 
7625      0     0     0     0     0     0     0     0     0     0     0     0     0
7626 
7627   Columns 7762 through 7774
7628 
7629      0     0     0     0     0     0     0     0     0     0     0     0     0
7630 
7631   Columns 7775 through 7787
7632 
7633      0     0     0     0     0     0     0     0     0     0     0     0     0
7634 
7635   Columns 7788 through 7800
7636 
7637      0     0     0     0     0     0     0     0     0     0     0     0     0
7638 
7639   Columns 7801 through 7813
7640 
7641      0     0     0     0     0     0     0     0     0     0     0     0     0
7642 
7643   Columns 7814 through 7826
7644 
7645      0     0     0     0     0     0     0     0     0     0     0     0     0
7646 
7647   Columns 7827 through 7839
7648 
7649      0     0     0     0     0     0     0     0     0     0     0     0     0
7650 
7651   Columns 7840 through 7852
7652 
7653      0     0     0     0     0     0     0     0     0     0     0     0     0
7654 
7655   Columns 7853 through 7865
7656 
7657      0     0     0     0     0     0     0     0     0     0     0     0     0
7658 
7659   Columns 7866 through 7878
7660 
7661      0     0     0     0     0     0     0     0     0     0     0     0     0
7662 
7663   Columns 7879 through 7891
7664 
7665      0     0     0     0     0     0     0     0     0     0     0     0     0
7666 
7667   Columns 7892 through 7904
7668 
7669      0     0     0     0     0     0     0     0     0     0     0     0     0
7670 
7671   Columns 7905 through 7917
7672 
7673      0     0     0     0     0     0     0     0     0     0     0     0     0
7674 
7675   Columns 7918 through 7930
7676 
7677      0     0     0     0     0     0     0     0     0     0     0     0     0
7678 
7679   Columns 7931 through 7943
7680 
7681      0     0     0     0     0     0     0     0     0     0     0     0     0
7682 
7683   Columns 7944 through 7956
7684 
7685      0     0     0     0     0     0     0     0     0     0     0     0     0
7686 
7687   Columns 7957 through 7969
7688 
7689      0     0     0     0     0     0     0     0     0     0     0     0     0
7690 
7691   Columns 7970 through 7982
7692 
7693      0     0     0     0     0     0     0     0     0     0     0     0     0
7694 
7695   Columns 7983 through 7995
7696 
7697      0     0     0     0     0     0     0     0     0     0     0     0     0
7698 
7699   Columns 7996 through 8008
7700 
7701      0     0     0     0     0     0     0     0     0     0     0     0     0
7702 
7703   Columns 8009 through 8021
7704 
7705      0     0     0     0     0     0     0     0     0     0     0     0     0
7706 
7707   Columns 8022 through 8034
7708 
7709      0     0     0     0     0     0     0     0     0     0     0     0     0
7710 
7711   Columns 8035 through 8047
7712 
7713      0     0     0     0     0     0     0     0     0     0     0     0     0
7714 
7715   Columns 8048 through 8060
7716 
7717      0     0     0     0     0     0     0     0     0     0     0     0     0
7718 
7719   Columns 8061 through 8073
7720 
7721      0     0     0     0     0     0     0     0     0     0     0     0     0
7722 
7723   Columns 8074 through 8086
7724 
7725      0     0     0     0     0     0     0     0     0     0     0     0     0
7726 
7727   Columns 8087 through 8099
7728 
7729      0     0     0     0     0     0     0     0     0     0     0     0     0
7730 
7731   Columns 8100 through 8112
7732 
7733      0     0     0     0     0     0     0     0     0     0     0     0     0
7734 
7735   Columns 8113 through 8125
7736 
7737      0     0     0     0     0     0     0     0     0     0     0     0     0
7738 
7739   Columns 8126 through 8138
7740 
7741      0     0     0     0     0     0     0     0     0     0     0     0     0
7742 
7743   Columns 8139 through 8151
7744 
7745      0     0     0     0     0     0     0     0     0     0     0     0     0
7746 
7747   Columns 8152 through 8164
7748 
7749      0     0     0     0     0     0     0     0     0     0     0     0     0
7750 
7751   Columns 8165 through 8177
7752 
7753      0     0     0     0     0     0     0     0     0     0     0     0     0
7754 
7755   Columns 8178 through 8190
7756 
7757      0     0     0     0     0     0     0     0     0     0     0     0     0
7758 
7759   Columns 8191 through 8203
7760 
7761      0     0     0     0     0     0     0     0     0     0     0     0     0
7762 
7763   Columns 8204 through 8216
7764 
7765      0     0     0     0     0     0     0     0     0     0     0     0     0
7766 
7767   Columns 8217 through 8229
7768 
7769      0     0     0     0     0     0     0     0     0     0     0     0     0
7770 
7771   Columns 8230 through 8242
7772 
7773      0     0     0     0     0     0     0     0     0     0     0     0     0
7774 
7775   Columns 8243 through 8255
7776 
7777      0     0     0     0     0     0     0     0     0     0     0     0     0
7778 
7779   Columns 8256 through 8268
7780 
7781      0     0     0     0     0     0     0     0     0     0     0     0     0
7782 
7783   Columns 8269 through 8281
7784 
7785      0     0     0     0     0     0     0     0     0     0     0     0     0
7786 
7787   Columns 8282 through 8294
7788 
7789      0     0     0     0     0     0     0     0     0     0     0     0     0
7790 
7791   Columns 8295 through 8307
7792 
7793      0     0     0     0     0     0     0     0     0     0     0     0     0
7794 
7795   Columns 8308 through 8320
7796 
7797      0     0     0     0     0     0     0     0     0     0     0     0     0
7798 
7799   Columns 8321 through 8333
7800 
7801      0     0     0     0     0     0     0     0     0     0     0     0     0
7802 
7803   Columns 8334 through 8346
7804 
7805      0     0     0     0     0     0     0     0     0     0     0     0     0
7806 
7807   Columns 8347 through 8359
7808 
7809      0     0     0     0     0     0     0     0     0     0     0     0     0
7810 
7811   Columns 8360 through 8372
7812 
7813      0     0     0     0     0     0     0     0     0     0     0     0     0
7814 
7815   Columns 8373 through 8385
7816 
7817      0     0     0     0     0     0     0     0     0     0     0     0     0
7818 
7819   Columns 8386 through 8398
7820 
7821      0     0     0     0     0     0     0     0     0     0     0     0     0
7822 
7823   Columns 8399 through 8411
7824 
7825      0     0     0     0     0     0     0     0     0     0     0     0     0
7826 
7827   Columns 8412 through 8424
7828 
7829      0     0     0     0     0     0     0     0     0     0     0     0     0
7830 
7831   Columns 8425 through 8437
7832 
7833      0     0     0     0     0     0     0     0     0     0     0     0     0
7834 
7835   Columns 8438 through 8450
7836 
7837      0     0     0     0     0     0     0     0     0     0     0     0     0
7838 
7839   Columns 8451 through 8463
7840 
7841      0     0     0     0     0     0     0     0     0     0     0     0     0
7842 
7843   Columns 8464 through 8476
7844 
7845      0     0     0     0     0     0     0     0     0     0     0     0     0
7846 
7847   Columns 8477 through 8489
7848 
7849      0     0     0     0     0     0     0     0     0     0     0     0     0
7850 
7851   Columns 8490 through 8502
7852 
7853      0     0     0     0     0     0     0     0     0     0     0     0     0
7854 
7855   Columns 8503 through 8515
7856 
7857      0     0     0     0     0     0     0     0     0     0     0     0     0
7858 
7859   Columns 8516 through 8528
7860 
7861      0     0     0     0     0     0     0     0     0     0     0     0     0
7862 
7863   Columns 8529 through 8541
7864 
7865      0     0     0     0     0     0     0     0     0     0     0     0     0
7866 
7867   Columns 8542 through 8554
7868 
7869      0     0     0     0     0     0     0     0     0     0     0     0     0
7870 
7871   Columns 8555 through 8567
7872 
7873      0     0     0     0     0     0     0     0     0     0     0     0     0
7874 
7875   Columns 8568 through 8580
7876 
7877      0     0     0     0     0     0     0     0     0     0     0     0     0
7878 
7879   Columns 8581 through 8593
7880 
7881      0     0     0     0     0     0     0     0     0     0     0     0     0
7882 
7883   Columns 8594 through 8606
7884 
7885      0     0     0     0     0     0     0     0     0     0     0     0     0
7886 
7887   Columns 8607 through 8619
7888 
7889      0     0     0     0     0     0     0     0     0     0     0     0     0
7890 
7891   Columns 8620 through 8632
7892 
7893      0     0     0     0     0     0     0     0     0     0     0     0     0
7894 
7895   Columns 8633 through 8645
7896 
7897      0     0     0     0     0     0     0     0     0     0     0     0     0
7898 
7899   Columns 8646 through 8658
7900 
7901      0     0     0     0     0     0     0     0     0     0     0     0     0
7902 
7903   Columns 8659 through 8671
7904 
7905      0     0     0     0     0     0     0     0     0     0     0     0     0
7906 
7907   Columns 8672 through 8684
7908 
7909      0     0     0     0     0     0     0     0     0     0     0     0     0
7910 
7911   Columns 8685 through 8697
7912 
7913      0     0     0     0     0     0     0     0     0     0     0     0     0
7914 
7915   Columns 8698 through 8710
7916 
7917      0     0     0     0     0     0     0     0     0     0     0     0     0
7918 
7919   Columns 8711 through 8723
7920 
7921      0     0     0     0     0     0     0     0     0     0     0     0     0
7922 
7923   Columns 8724 through 8736
7924 
7925      0     0     0     0     0     0     0     0     0     0     0     0     0
7926 
7927   Columns 8737 through 8749
7928 
7929      0     0     0     0     0     0     0     0     0     0     0     0     0
7930 
7931   Columns 8750 through 8762
7932 
7933      0     0     0     0     0     0     0     0     0     0     0     0     0
7934 
7935   Columns 8763 through 8775
7936 
7937      0     0     0     0     0     0     0     0     0     0     0     0     0
7938 
7939   Columns 8776 through 8788
7940 
7941      0     0     0     0     0     0     0     0     0     0     0     0     0
7942 
7943   Columns 8789 through 8801
7944 
7945      0     0     0     0     0     0     0     0     0     0     0     0     0
7946 
7947   Columns 8802 through 8814
7948 
7949      0     0     0     0     0     0     0     0     0     0     0     0     0
7950 
7951   Columns 8815 through 8827
7952 
7953      0     0     0     0     0     0     0     0     0     0     0     0     0
7954 
7955   Columns 8828 through 8840
7956 
7957      0     0     0     0     0     0     0     0     0     0     0     0     0
7958 
7959   Columns 8841 through 8853
7960 
7961      0     0     0     0     0     0     0     0     0     0     0     0     0
7962 
7963   Columns 8854 through 8866
7964 
7965      0     0     0     0     0     0     0     0     0     0     0     0     0
7966 
7967   Columns 8867 through 8879
7968 
7969      0     0     0     0     0     0     0     0     0     0     0     0     0
7970 
7971   Columns 8880 through 8892
7972 
7973      0     0     0     0     0     0     0     0     0     0     0     0     0
7974 
7975   Columns 8893 through 8905
7976 
7977      0     0     0     0     0     0     0     0     0     0     0     0     0
7978 
7979   Columns 8906 through 8918
7980 
7981      0     0     0     0     0     0     0     0     0     0     0     0     0
7982 
7983   Columns 8919 through 8931
7984 
7985      0     0     0     0     0     0     0     0     0     0     0     0     0
7986 
7987   Columns 8932 through 8944
7988 
7989      0     0     0     0     0     0     0     0     0     0     0     0     0
7990 
7991   Columns 8945 through 8957
7992 
7993      0     0     0     0     0     0     0     0     0     0     0     0     0
7994 
7995   Columns 8958 through 8970
7996 
7997      0     0     0     0     0     0     0     0     0     0     0     0     0
7998 
7999   Columns 8971 through 8983
8000 
8001      0     0     0     0     0     0     0     0     0     0     0     0     0
8002 
8003   Columns 8984 through 8996
8004 
8005      0     0     0     0     0     0     0     0     0     0     0     0     0
8006 
8007   Columns 8997 through 9009
8008 
8009      0     0     0     0     0     0     0     0     0     0     0     0     0
8010 
8011   Columns 9010 through 9022
8012 
8013      0     0     0     0     0     0     0     0     0     0     0     0     0
8014 
8015   Columns 9023 through 9035
8016 
8017      0     0     0     0     0     0     0     0     0     0     0     0     0
8018 
8019   Columns 9036 through 9048
8020 
8021      0     0     0     0     0     0     0     0     0     0     0     0     0
8022 
8023   Columns 9049 through 9061
8024 
8025      0     0     0     0     0     0     0     0     0     0     0     0     0
8026 
8027   Columns 9062 through 9074
8028 
8029      0     0     0     0     0     0     0     0     0     0     0     0     0
8030 
8031   Columns 9075 through 9087
8032 
8033      0     0     0     0     0     0     0     0     0     0     0     0     0
8034 
8035   Columns 9088 through 9100
8036 
8037      0     0     0     0     0     0     0     0     0     0     0     0     0
8038 
8039   Columns 9101 through 9113
8040 
8041      0     0     0     0     0     0     0     0     0     0     0     0     0
8042 
8043   Columns 9114 through 9126
8044 
8045      0     0     0     0     0     0     0     0     0     0     0     0     0
8046 
8047   Columns 9127 through 9139
8048 
8049      0     0     0     0     0     0     0     0     0     0     0     0     0
8050 
8051   Columns 9140 through 9152
8052 
8053      0     0     0     0     0     0     0     0     0     0     0     0     0
8054 
8055   Columns 9153 through 9165
8056 
8057      0     0     0     0     0     0     0     0     0     0     0     0     0
8058 
8059   Columns 9166 through 9178
8060 
8061      0     0     0     0     0     0     0     0     0     0     0     0     0
8062 
8063   Columns 9179 through 9191
8064 
8065      0     0     0     0     0     0     0     0     0     0     0     0     0
8066 
8067   Columns 9192 through 9204
8068 
8069      0     0     0     0     0     0     0     0     0     0     0     0     0
8070 
8071   Columns 9205 through 9217
8072 
8073      0     0     0     0     0     0     0     0     0     0     0     0     0
8074 
8075   Columns 9218 through 9230
8076 
8077      0     0     0     0     0     0     0     0     0     0     0     0     0
8078 
8079   Columns 9231 through 9243
8080 
8081      0     0     0     0     0     0     0     0     0     0     0     0     0
8082 
8083   Columns 9244 through 9256
8084 
8085      0     0     0     0     0     0     0     0     0     0     0     0     0
8086 
8087   Columns 9257 through 9269
8088 
8089      0     0     0     0     0     0     0     0     0     0     0     0     0
8090 
8091   Columns 9270 through 9282
8092 
8093      0     0     0     0     0     0     0     0     0     0     0     0     0
8094 
8095   Columns 9283 through 9295
8096 
8097      0     0     0     0     0     0     0     0     0     0     0     0     0
8098 
8099   Columns 9296 through 9308
8100 
8101      0     0     0     0     0     0     0     0     0     0     0     0     0
8102 
8103   Columns 9309 through 9321
8104 
8105      0     0     0     0     0     0     0     0     0     0     0     0     0
8106 
8107   Columns 9322 through 9334
8108 
8109      0     0     0     0     0     0     0     0     0     0     0     0     0
8110 
8111   Columns 9335 through 9347
8112 
8113      0     0     0     0     0     0     0     0     0     0     0     0     0
8114 
8115   Columns 9348 through 9360
8116 
8117      0     0     0     0     0     0     0     0     0     0     0     0     0
8118 
8119   Columns 9361 through 9373
8120 
8121      0     0     0     0     0     0     0     0     0     0     0     0     0
8122 
8123   Columns 9374 through 9386
8124 
8125      0     0     0     0     0     0     0     0     0     0     0     0     0
8126 
8127   Columns 9387 through 9399
8128 
8129      0     0     0     0     0     0     0     0     0     0     0     0     0
8130 
8131   Columns 9400 through 9412
8132 
8133      0     0     0     0     0     0     0     0     0     0     0     0     0
8134 
8135   Columns 9413 through 9425
8136 
8137      0     0     0     0     0     0     0     0     0     0     0     0     0
8138 
8139   Columns 9426 through 9438
8140 
8141      0     0     0     0     0     0     0     0     0     0     0     0     0
8142 
8143   Columns 9439 through 9451
8144 
8145      0     0     0     0     0     0     0     0     0     0     0     0     0
8146 
8147   Columns 9452 through 9464
8148 
8149      0     0     0     0     0     0     0     0     0     0     0     0     0
8150 
8151   Columns 9465 through 9477
8152 
8153      0     0     0     0     0     0     0     0     0     0     0     0     0
8154 
8155   Columns 9478 through 9490
8156 
8157      0     0     0     0     0     0     0     0     0     0     0     0     0
8158 
8159   Columns 9491 through 9503
8160 
8161      0     0     0     0     0     0     0     0     0     0     0     0     0
8162 
8163   Columns 9504 through 9516
8164 
8165      0     0     0     0     0     0     0     0     0     0     0     0     0
8166 
8167   Columns 9517 through 9529
8168 
8169      0     0     0     0     0     0     0     0     0     0     0     0     0
8170 
8171   Columns 9530 through 9542
8172 
8173      0     0     0     0     0     0     0     0     0     0     0     0     0
8174 
8175   Columns 9543 through 9555
8176 
8177      0     0     0     0     0     0     0     0     0     0     0     0     0
8178 
8179   Columns 9556 through 9568
8180 
8181      0     0     0     0     0     0     0     0     0     0     0     0     0
8182 
8183   Columns 9569 through 9581
8184 
8185      0     0     0     0     0     0     0     0     0     0     0     0     0
8186 
8187   Columns 9582 through 9594
8188 
8189      0     0     0     0     0     0     0     0     0     0     0     0     0
8190 
8191   Columns 9595 through 9607
8192 
8193      0     0     0     0     0     0     0     0     0     0     0     0     0
8194 
8195   Columns 9608 through 9620
8196 
8197      0     0     0     0     0     0     0     0     0     0     0     0     0
8198 
8199   Columns 9621 through 9633
8200 
8201      0     0     0     0     0     0     0     0     0     0     0     0     0
8202 
8203   Columns 9634 through 9646
8204 
8205      0     0     0     0     0     0     0     0     0     0     0     0     0
8206 
8207   Columns 9647 through 9659
8208 
8209      0     0     0     0     0     0     0     0     0     0     0     0     0
8210 
8211   Columns 9660 through 9672
8212 
8213      0     0     0     0     0     0     0     0     0     0     0     0     0
8214 
8215   Columns 9673 through 9685
8216 
8217      0     0     0     0     0     0     0     0     0     0     0     0     0
8218 
8219   Columns 9686 through 9698
8220 
8221      0     0     0     0     0     0     0     0     0     0     0     0     0
8222 
8223   Columns 9699 through 9711
8224 
8225      0     0     0     0     0     0     0     0     0     0     0     0     0
8226 
8227   Columns 9712 through 9724
8228 
8229      0     0     0     0     0     0     0     0     0     0     0     0     0
8230 
8231   Columns 9725 through 9737
8232 
8233      0     0     0     0     0     0     0     0     0     0     0     0     0
8234 
8235   Columns 9738 through 9750
8236 
8237      0     0     0     0     0     0     0     0     0     0     0     0     0
8238 
8239   Columns 9751 through 9763
8240 
8241      0     0     0     0     0     0     0     0     0     0     0     0     0
8242 
8243   Columns 9764 through 9776
8244 
8245      0     0     0     0     0     0     0     0     0     0     0     0     0
8246 
8247   Columns 9777 through 9789
8248 
8249      0     0     0     0     0     0     0     0     0     0     0     0     0
8250 
8251   Columns 9790 through 9802
8252 
8253      0     0     0     0     0     0     0     0     0     0     0     0     0
8254 
8255   Columns 9803 through 9815
8256 
8257      0     0     0     0     0     0     0     0     0     0     0     0     0
8258 
8259   Columns 9816 through 9828
8260 
8261      0     0     0     0     0     0     0     0     0     0     0     0     0
8262 
8263   Columns 9829 through 9841
8264 
8265      0     0     0     0     0     0     0     0     0     0     0     0     0
8266 
8267   Columns 9842 through 9854
8268 
8269      0     0     0     0     0     0     0     0     0     0     0     0     0
8270 
8271   Columns 9855 through 9867
8272 
8273      0     0     0     0     0     0     0     0     0     0     0     0     0
8274 
8275   Columns 9868 through 9880
8276 
8277      0     0     0     0     0     0     0     0     0     0     0     0     0
8278 
8279   Columns 9881 through 9893
8280 
8281      0     0     0     0     0     0     0     0     0     0     0     0     0
8282 
8283   Columns 9894 through 9906
8284 
8285      0     0     0     0     0     0     0     0     0     0     0     0     0
8286 
8287   Columns 9907 through 9919
8288 
8289      0     0     0     0     0     0     0     0     0     0     0     0     0
8290 
8291   Columns 9920 through 9932
8292 
8293      0     0     0     0     0     0     0     0     0     0     0     0     0
8294 
8295   Columns 9933 through 9945
8296 
8297      0     0     0     0     0     0     0     0     0     0     0     0     0
8298 
8299   Columns 9946 through 9958
8300 
8301      0     0     0     0     0     0     0     0     0     0     0     0     0
8302 
8303   Columns 9959 through 9971
8304 
8305      0     0     0     0     0     0     0     0     0     0     0     0     0
8306 
8307   Columns 9972 through 9984
8308 
8309      0     0     0     0     0     0     0     0     0     0     0     0     0
8310 
8311   Columns 9985 through 9997
8312 
8313      0     0     0     0     0     0     0     0     0     0     0     0     0
8314 
8315   Columns 9998 through 10010
8316 
8317      0     0     0     0     0     0     0     0     0     0     0     0     0
8318 
8319   Columns 10011 through 10023
8320 
8321      0     0     0     0     0     0     0     0     0     0     0     0     0
8322 
8323   Columns 10024 through 10036
8324 
8325      0     0     0     0     0     0     0     0     0     0     0     0     0
8326 
8327   Columns 10037 through 10049
8328 
8329      0     0     0     0     0     0     0     0     0     0     0     0     0
8330 
8331   Columns 10050 through 10062
8332 
8333      0     0     0     0     0     0     0     0     0     0     0     0     0
8334 
8335   Columns 10063 through 10075
8336 
8337      0     0     0     0     0     0     0     0     0     0     0     0     0
8338 
8339   Columns 10076 through 10088
8340 
8341      0     0     0     0     0     0     0     0     0     0     0     0     0
8342 
8343   Columns 10089 through 10101
8344 
8345      0     0     0     0     0     0     0     0     0     0     0     0     0
8346 
8347   Columns 10102 through 10114
8348 
8349      0     0     0     0     0     0     0     0     0     0     0     0     0
8350 
8351   Columns 10115 through 10127
8352 
8353      0     0     0     0     0     0     0     0     0     0     0     0     0
8354 
8355   Columns 10128 through 10140
8356 
8357      0     0     0     0     0     0     0     0     0     0     0     0     0
8358 
8359   Columns 10141 through 10153
8360 
8361      0     0     0     0     0     0     0     0     0     0     0     0     0
8362 
8363   Columns 10154 through 10166
8364 
8365      0     0     0     0     0     0     0     0     0     0     0     0     0
8366 
8367   Columns 10167 through 10179
8368 
8369      0     0     0     0     0     0     0     0     0     0     0     0     0
8370 
8371   Columns 10180 through 10192
8372 
8373      0     0     0     0     0     0     0     0     0     0     0     0     0
8374 
8375   Columns 10193 through 10205
8376 
8377      0     0     0     0     0     0     0     0     0     0     0     0     0
8378 
8379   Columns 10206 through 10218
8380 
8381      0     0     0     0     0     0     0     0     0     0     0     0     0
8382 
8383   Columns 10219 through 10231
8384 
8385      0     0     0     0     0     0     0     0     0     0     0     0     0
8386 
8387   Columns 10232 through 10244
8388 
8389      0     0     0     0     0     0     0     0     0     0     0     0     0
8390 
8391   Columns 10245 through 10257
8392 
8393      0     0     0     0     0     0     0     0     0     0     0     0     0
8394 
8395   Columns 10258 through 10270
8396 
8397      0     0     0     0     0     0     0     0     0     0     0     0     0
8398 
8399   Columns 10271 through 10283
8400 
8401      0     0     0     0     0     0     0     0     0     0     0     0     0
8402 
8403   Columns 10284 through 10296
8404 
8405      0     0     0     0     0     0     0     0     0     0     0     0     0
8406 
8407   Columns 10297 through 10309
8408 
8409      0     0     0     0     0     0     0     0     0     0     0     0     0
8410 
8411   Columns 10310 through 10322
8412 
8413      0     0     0     0     0     0     0     0     0     0     0     0     0
8414 
8415   Columns 10323 through 10335
8416 
8417      0     0     0     0     0     0     0     0     0     0     0     0     0
8418 
8419   Columns 10336 through 10348
8420 
8421      0     0     0     0     0     0     0     0     0     0     0     0     0
8422 
8423   Columns 10349 through 10361
8424 
8425      0     0     0     0     0     0     0     0     0     0     0     0     0
8426 
8427   Columns 10362 through 10374
8428 
8429      0     0     0     0     0     0     0     0     0     0     0     0     0
8430 
8431   Columns 10375 through 10387
8432 
8433      0     0     0     0     0     0     0     0     0     0     0     0     0
8434 
8435   Columns 10388 through 10400
8436 
8437      0     0     0     0     0     0     0     0     0     0     0     0     0
8438 
8439   Columns 10401 through 10413
8440 
8441      0     0     0     0     0     0     0     0     0     0     0     0     0
8442 
8443   Columns 10414 through 10426
8444 
8445      0     0     0     0     0     0     0     0     0     0     0     0     0
8446 
8447   Columns 10427 through 10439
8448 
8449      0     0     0     0     0     0     0     0     0     0     0     0     0
8450 
8451   Columns 10440 through 10452
8452 
8453      0     0     0     0     0     0     0     0     0     0     0     0     0
8454 
8455   Columns 10453 through 10465
8456 
8457      0     0     0     0     0     0     0     0     0     0     0     0     0
8458 
8459   Columns 10466 through 10478
8460 
8461      0     0     0     0     0     0     0     0     0     0     0     0     0
8462 
8463   Columns 10479 through 10491
8464 
8465      0     0     0     0     0     0     0     0     0     0     0     0     0
8466 
8467   Columns 10492 through 10504
8468 
8469      0     0     0     0     0     0     0     0     0     0     0     0     0
8470 
8471   Columns 10505 through 10517
8472 
8473      0     0     0     0     0     0     0     0     0     0     0     0     0
8474 
8475   Columns 10518 through 10530
8476 
8477      0     0     0     0     0     0     0     0     0     0     0     0     0
8478 
8479   Columns 10531 through 10543
8480 
8481      0     0     0     0     0     0     0     0     0     0     0     0     0
8482 
8483   Columns 10544 through 10556
8484 
8485      0     0     0     0     0     0     0     0     0     0     0     0     0
8486 
8487   Columns 10557 through 10569
8488 
8489      0     0     0     0     0     0     0     0     0     0     0     0     0
8490 
8491   Columns 10570 through 10582
8492 
8493      0     0     0     0     0     0     0     0     0     0     0     0     0
8494 
8495   Columns 10583 through 10595
8496 
8497      0     0     0     0     0     0     0     0     0     0     0     0     0
8498 
8499   Columns 10596 through 10608
8500 
8501      0     0     0     0     0     0     0     0     0     0     0     0     0
8502 
8503   Columns 10609 through 10621
8504 
8505      0     0     0     0     0     0     0     0     0     0     0     0     0
8506 
8507   Columns 10622 through 10634
8508 
8509      0     0     0     0     0     0     0     0     0     0     0     0     0
8510 
8511   Columns 10635 through 10647
8512 
8513      0     0     0     0     0     0     0     0     0     0     0     0     0
8514 
8515   Columns 10648 through 10660
8516 
8517      0     0     0     0     0     0     0     0     0     0     0     0     0
8518 
8519   Columns 10661 through 10673
8520 
8521      0     0     0     0     0     0     0     0     0     0     0     0     0
8522 
8523   Columns 10674 through 10686
8524 
8525      0     0     0     0     0     0     0     0     0     0     0     0     0
8526 
8527   Columns 10687 through 10699
8528 
8529      0     0     0     0     0     0     0     0     0     0     0     0     0
8530 
8531   Columns 10700 through 10712
8532 
8533      0     0     0     0     0     0     0     0     0     0     0     0     0
8534 
8535   Columns 10713 through 10725
8536 
8537      0     0     0     0     0     0     0     0     0     0     0     0     0
8538 
8539   Columns 10726 through 10738
8540 
8541      0     0     0     0     0     0     0     0     0     0     0     0     0
8542 
8543   Columns 10739 through 10751
8544 
8545      0     0     0     0     0     0     0     0     0     0     0     0     0
8546 
8547   Columns 10752 through 10764
8548 
8549      0     0     0     0     0     0     0     0     0     0     0     0     0
8550 
8551   Columns 10765 through 10777
8552 
8553      0     0     0     0     0     0     0     0     0     0     0     0     0
8554 
8555   Columns 10778 through 10790
8556 
8557      0     0     0     0     0     0     0     0     0     0     0     0     0
8558 
8559   Columns 10791 through 10803
8560 
8561      0     0     0     0     0     0     0     0     0     0     0     0     0
8562 
8563   Columns 10804 through 10816
8564 
8565      0     0     0     0     0     0     0     0     0     0     0     0     0
8566 
8567   Columns 10817 through 10829
8568 
8569      0     0     0     0     0     0     0     0     0     0     0     0     0
8570 
8571   Columns 10830 through 10842
8572 
8573      0     0     0     0     0     0     0     0     0     0     0     0     0
8574 
8575   Columns 10843 through 10855
8576 
8577      0     0     0     0     0     0     0     0     0     0     0     0     0
8578 
8579   Columns 10856 through 10868
8580 
8581      0     0     0     0     0     0     0     0     0     0     0     0     0
8582 
8583   Columns 10869 through 10881
8584 
8585      0     0     0     0     0     0     0     0     0     0     0     0     0
8586 
8587   Columns 10882 through 10894
8588 
8589      0     0     0     0     0     0     0     0     0     0     0     0     0
8590 
8591   Columns 10895 through 10907
8592 
8593      0     0     0     0     0     0     0     0     0     0     0     0     0
8594 
8595   Columns 10908 through 10920
8596 
8597      0     0     0     0     0     0     0     0     0     0     0     0     0
8598 
8599   Columns 10921 through 10933
8600 
8601      0     0     0     0     0     0     0     0     0     0     0     0     0
8602 
8603   Columns 10934 through 10946
8604 
8605      0     0     0     0     0     0     0     0     0     0     0     0     0
8606 
8607   Columns 10947 through 10959
8608 
8609      0     0     0     0     0     0     0     0     0     0     0     0     0
8610 
8611   Columns 10960 through 10972
8612 
8613      0     0     0     0     0     0     0     0     0     0     0     0     0
8614 
8615   Columns 10973 through 10985
8616 
8617      0     0     0     0     0     0     0     0     0     0     0     0     0
8618 
8619   Columns 10986 through 10998
8620 
8621      0     0     0     0     0     0     0     0     0     0     0     0     0
8622 
8623   Columns 10999 through 11011
8624 
8625      0     0     0     0     0     0     0     0     0     0     0     0     0
8626 
8627   Columns 11012 through 11024
8628 
8629      0     0     0     0     0     0     0     0     0     0     0     0     0
8630 
8631   Columns 11025 through 11037
8632 
8633      0     0     0     0     0     0     0     0     0     0     0     0     0
8634 
8635   Columns 11038 through 11050
8636 
8637      0     0     0     0     0     0     0     0     0     0     0     0     0
8638 
8639   Columns 11051 through 11063
8640 
8641      0     0     0     0     0     0     0     0     0     0     0     0     0
8642 
8643   Columns 11064 through 11076
8644 
8645      0     0     0     0     0     0     0     0     0     0     0     0     0
8646 
8647   Columns 11077 through 11089
8648 
8649      0     0     0     0     0     0     0     0     0     0     0     0     0
8650 
8651   Columns 11090 through 11102
8652 
8653      0     0     0     0     0     0     0     0     0     0     0     0     0
8654 
8655   Columns 11103 through 11115
8656 
8657      0     0     0     0     0     0     0     0     0     0     0     0     0
8658 
8659   Columns 11116 through 11128
8660 
8661      0     0     0     0     0     0     0     0     0     0     0     0     0
8662 
8663   Columns 11129 through 11141
8664 
8665      0     0     0     0     0     0     0     0     0     0     0     0     0
8666 
8667   Columns 11142 through 11154
8668 
8669      0     0     0     0     0     0     0     0     0     0     0     0     0
8670 
8671   Columns 11155 through 11167
8672 
8673      0     0     0     0     0     0     0     0     0     0     0     0     0
8674 
8675   Columns 11168 through 11180
8676 
8677      0     0     0     0     0     0     0     0     0     0     0     0     0
8678 
8679   Columns 11181 through 11193
8680 
8681      0     0     0     0     0     0     0     0     0     0     0     0     0
8682 
8683   Columns 11194 through 11206
8684 
8685      0     0     0     0     0     0     0     0     0     0     0     0     0
8686 
8687   Columns 11207 through 11219
8688 
8689      0     0     0     0     0     0     0     0     0     0     0     0     0
8690 
8691   Columns 11220 through 11232
8692 
8693      0     0     0     0     0     0     0     0     0     0     0     0     0
8694 
8695   Columns 11233 through 11245
8696 
8697      0     0     0     0     0     0     0     0     0     0     0     0     0
8698 
8699   Columns 11246 through 11258
8700 
8701      0     0     0     0     0     0     0     0     0     0     0     0     0
8702 
8703   Columns 11259 through 11271
8704 
8705      0     0     0     0     0     0     0     0     0     0     0     0     0
8706 
8707   Columns 11272 through 11284
8708 
8709      0     0     0     0     0     0     0     0     0     0     0     0     0
8710 
8711   Columns 11285 through 11297
8712 
8713      0     0     0     0     0     0     0     0     0     0     0     0     0
8714 
8715   Columns 11298 through 11310
8716 
8717      0     0     0     0     0     0     0     0     0     0     0     0     0
8718 
8719   Columns 11311 through 11323
8720 
8721      0     0     0     0     0     0     0     0     0     0     0     0     0
8722 
8723   Columns 11324 through 11336
8724 
8725      0     0     0     0     0     0     0     0     0     0     0     0     0
8726 
8727   Columns 11337 through 11349
8728 
8729      0     0     0     0     0     0     0     0     0     0     0     0     0
8730 
8731   Columns 11350 through 11362
8732 
8733      0     0     0     0     0     0     0     0     0     0     0     0     0
8734 
8735   Columns 11363 through 11375
8736 
8737      0     0     0     0     0     0     0     0     0     0     0     0     0
8738 
8739   Columns 11376 through 11388
8740 
8741      0     0     0     0     0     0     0     0     0     0     0     0     0
8742 
8743   Columns 11389 through 11401
8744 
8745      0     0     0     0     0     0     0     0     0     0     0     0     0
8746 
8747   Columns 11402 through 11414
8748 
8749      0     0     0     0     0     0     0     0     0     0     0     0     0
8750 
8751   Columns 11415 through 11427
8752 
8753      0     0     0     0     0     0     0     0     0     0     0     0     0
8754 
8755   Columns 11428 through 11440
8756 
8757      0     0     0     0     0     0     0     0     0     0     0     0     0
8758 
8759   Columns 11441 through 11453
8760 
8761      0     0     0     0     0     0     0     0     0     0     0     0     0
8762 
8763   Columns 11454 through 11466
8764 
8765      0     0     0     0     0     0     0     0     0     0     0     0     0
8766 
8767   Columns 11467 through 11479
8768 
8769      0     0     0     0     0     0     0     0     0     0     0     0     0
8770 
8771   Columns 11480 through 11492
8772 
8773      0     0     0     0     0     0     0     0     0     0     0     0     0
8774 
8775   Columns 11493 through 11505
8776 
8777      0     0     0     0     0     0     0     0     0     0     0     0     0
8778 
8779   Columns 11506 through 11518
8780 
8781      0     0     0     0     0     0     0     0     0     0     0     0     0
8782 
8783   Columns 11519 through 11531
8784 
8785      0     0     0     0     0     0     0     0     0     0     0     0     0
8786 
8787   Columns 11532 through 11544
8788 
8789      0     0     0     0     0     0     0     0     0     0     0     0     0
8790 
8791   Columns 11545 through 11557
8792 
8793      0     0     0     0     0     0     0     0     0     0     0     0     0
8794 
8795   Columns 11558 through 11570
8796 
8797      0     0     0     0     0     0     0     0     0     0     0     0     0
8798 
8799   Columns 11571 through 11583
8800 
8801      0     0     0     0     0     0     0     0     0     0     0     0     0
8802 
8803   Columns 11584 through 11596
8804 
8805      0     0     0     0     0     0     0     0     0     0     0     0     0
8806 
8807   Columns 11597 through 11609
8808 
8809      0     0     0     0     0     0     0     0     0     0     0     0     0
8810 
8811   Columns 11610 through 11622
8812 
8813      0     0     0     0     0     0     0     0     0     0     0     0     0
8814 
8815   Columns 11623 through 11635
8816 
8817      0     0     0     0     0     0     0     0     0     0     0     0     0
8818 
8819   Columns 11636 through 11648
8820 
8821      0     0     0     0     0     0     0     0     0     0     0     0     0
8822 
8823   Columns 11649 through 11661
8824 
8825      0     0     0     0     0     0     0     0     0     0     0     0     0
8826 
8827   Columns 11662 through 11674
8828 
8829      0     0     0     0     0     0     0     0     0     0     0     0     0
8830 
8831   Columns 11675 through 11687
8832 
8833      0     0     0     0     0     0     0     0     0     0     0     0     0
8834 
8835   Columns 11688 through 11700
8836 
8837      0     0     0     0     0     0     0     0     0     0     0     0     0
8838 
8839   Columns 11701 through 11713
8840 
8841      0     0     0     0     0     0     0     0     0     0     0     0     0
8842 
8843   Columns 11714 through 11726
8844 
8845      0     0     0     0     0     0     0     0     0     0     0     0     0
8846 
8847   Columns 11727 through 11739
8848 
8849      0     0     0     0     0     0     0     0     0     0     0     0     0
8850 
8851   Columns 11740 through 11752
8852 
8853      0     0     0     0     0     0     0     0     0     0     0     0     0
8854 
8855   Columns 11753 through 11765
8856 
8857      0     0     0     0     0     0     0     0     0     0     0     0     0
8858 
8859   Columns 11766 through 11778
8860 
8861      0     0     0     0     0     0     0     0     0     0     0     0     0
8862 
8863   Columns 11779 through 11791
8864 
8865      0     0     0     0     0     0     0     0     0     0     0     0     0
8866 
8867   Columns 11792 through 11804
8868 
8869      0     0     0     0     0     0     0     0     0     0     0     0     0
8870 
8871   Columns 11805 through 11817
8872 
8873      0     0     0     0     0     0     0     0     0     0     0     0     0
8874 
8875   Columns 11818 through 11830
8876 
8877      0     0     0     0     0     0     0     0     0     0     0     0     0
8878 
8879   Columns 11831 through 11843
8880 
8881      0     0     0     0     0     0     0     0     0     0     0     0     0
8882 
8883   Columns 11844 through 11856
8884 
8885      0     0     0     0     0     0     0     0     0     0     0     0     0
8886 
8887   Columns 11857 through 11869
8888 
8889      0     0     0     0     0     0     0     0     0     0     0     0     0
8890 
8891   Columns 11870 through 11882
8892 
8893      0     0     0     0     0     0     0     0     0     0     0     0     0
8894 
8895   Columns 11883 through 11895
8896 
8897      0     0     0     0     0     0     0     0     0     0     0     0     0
8898 
8899   Columns 11896 through 11908
8900 
8901      0     0     0     0     0     0     0     0     0     0     0     0     0
8902 
8903   Columns 11909 through 11921
8904 
8905      0     0     0     0     0     0     0     0     0     0     0     0     0
8906 
8907   Columns 11922 through 11934
8908 
8909      0     0     0     0     0     0     0     0     0     0     0     0     0
8910 
8911   Columns 11935 through 11947
8912 
8913      0     0     0     0     0     0     0     0     0     0     0     0     0
8914 
8915   Columns 11948 through 11960
8916 
8917      0     0     0     0     0     0     0     0     0     0     0     0     0
8918 
8919   Columns 11961 through 11973
8920 
8921      0     0     0     0     0     0     0     0     0     0     0     0     0
8922 
8923   Columns 11974 through 11986
8924 
8925      0     0     0     0     0     0     0     0     0     0     0     0     0
8926 
8927   Columns 11987 through 11999
8928 
8929      0     0     0     0     0     0     0     0     0     0     0     0     0
8930 
8931   Columns 12000 through 12012
8932 
8933      0     0     0     0     0     0     0     0     0     0     0     0     0
8934 
8935   Columns 12013 through 12025
8936 
8937      0     0     0     0     0     0     0     0     0     0     0     0     0
8938 
8939   Columns 12026 through 12038
8940 
8941      0     0     0     0     0     0     0     0     0     0     0     0     0
8942 
8943   Columns 12039 through 12051
8944 
8945      0     0     0     0     0     0     0     0     0     0     0     0     0
8946 
8947   Columns 12052 through 12064
8948 
8949      0     0     0     0     0     0     0     0     0     0     0     0     0
8950 
8951   Columns 12065 through 12077
8952 
8953      0     0     0     0     0     0     0     0     0     0     0     0     0
8954 
8955   Columns 12078 through 12090
8956 
8957      0     0     0     0     0     0     0     0     0     0     0     0     0
8958 
8959   Columns 12091 through 12103
8960 
8961      0     0     0     0     0     0     0     0     0     0     0     0     0
8962 
8963   Columns 12104 through 12116
8964 
8965      0     0     0     0     0     0     0     0     0     0     0     0     0
8966 
8967   Columns 12117 through 12129
8968 
8969      0     0     0     0     0     0     0     0     0     0     0     0     0
8970 
8971   Columns 12130 through 12142
8972 
8973      0     0     0     0     0     0     0     0     0     0     0     0     0
8974 
8975   Columns 12143 through 12155
8976 
8977      0     0     0     0     0     0     0     0     0     0     0     0     0
8978 
8979   Columns 12156 through 12168
8980 
8981      0     0     0     0     0     0     0     0     0     0     0     0     0
8982 
8983   Columns 12169 through 12181
8984 
8985      0     0     0     0     0     0     0     0     0     0     0     0     0
8986 
8987   Columns 12182 through 12194
8988 
8989      0     0     0     0     0     0     0     0     0     0     0     0     0
8990 
8991   Columns 12195 through 12207
8992 
8993      0     0     0     0     0     0     0     0     0     0     0     0     0
8994 
8995   Columns 12208 through 12220
8996 
8997      0     0     0     0     0     0     0     0     0     0     0     0     0
8998 
8999   Columns 12221 through 12233
9000 
9001      0     0     0     0     0     0     0     0     0     0     0     0     0
9002 
9003   Columns 12234 through 12246
9004 
9005      0     0     0     0     0     0     0     0     0     0     0     0     0
9006 
9007   Columns 12247 through 12259
9008 
9009      0     0     0     0     0     0     0     0     0     0     0     0     0
9010 
9011   Columns 12260 through 12272
9012 
9013      0     0     0     0     0     0     0     0     0     0     0     0     0
9014 
9015   Columns 12273 through 12285
9016 
9017      0     0     0     0     0     0     0     0     0     0     0     0     0
9018 
9019   Columns 12286 through 12298
9020 
9021      0     0     0     0     0     0     0     0     0     0     0     0     0
9022 
9023   Columns 12299 through 12311
9024 
9025      0     0     0     0     0     0     0     0     0     0     0     0     0
9026 
9027   Column 12312
9028 
9029      1
9030 
9031 
9032 y =
9033 
9034      9
9035 
9036 [x,y] = func1(3,3)
9037 ??? Attempted to access a(888); index out of bounds because numel(a)=1.
9038 
9039 Error in ==> func1 at 9
9040 b = a(888);
9041 
9042 9   b = a(888);
9043 dbquit
9044 help if
9045  IF Conditionally execute statements.
9046     The general form of the IF statement is
9047  
9048        IF expression
9049          statements
9050        ELSEIF expression
9051          statements
9052        ELSE
9053          statements
9054        END
9055  
9056     The statements are executed if the real part of the expression 
9057     has all non-zero elements. The ELSE and ELSEIF parts are optional.
9058     Zero or more ELSEIF parts can be used as well as nested IF's.
9059     The expression is usually of the form expr rop expr where 
9060     rop is ==, <, >, <=, >=, or ~=.
9061  
9062     Example
9063        if I == J
9064          A(I,J) = 2;
9065        elseif abs(I-J) == 1
9066          A(I,J) = -1;
9067        else
9068          A(I,J) = 0;
9069        end
9070  
9071     See also RELOP, ELSE, ELSEIF, END, FOR, WHILE, SWITCH.
9072 
9073     Reference page in Help browser
9074        doc if
9075 
9076 help while
9077  WHILE  Repeat statements an indefinite number of times.
9078     The general form of a WHILE statement is:
9079   
9080        WHILE expression
9081          statements
9082        END
9083   
9084     The statements are executed while the real part of the expression
9085     has all non-zero elements. The expression is usually the result of
9086     expr rop expr where rop is ==, <, >, <=, >=, or ~=.
9087  
9088     The BREAK statement can be used to terminate the loop prematurely.
9089  
9090     For example (assuming A already defined):
9091   
9092             E = 0*A; F = E + eye(size(E)); N = 1;
9093             while norm(E+F-E,1) > 0,
9094                E = E + F;
9095                F = A*F/N;
9096                N = N + 1;
9097             end
9098  
9099     See also FOR, IF, SWITCH, BREAK, CONTINUE, END.
9100 
9101     Reference page in Help browser
9102        doc while
9103 
9104 p = myprod(1:4)
9105 
9106 p =
9107 
9108     24
9109 
9110 1*2*3*4
9111 
9112 ans =
9113 
9114     24
9115 
9116 p = myprod([-1 -2 3 3])
9117 
9118 p =
9119 
9120      9
9121 
9122 help plot
9123  PLOT   Linear plot. 
9124     PLOT(X,Y) plots vector Y versus vector X. If X or Y is a matrix,
9125     then the vector is plotted versus the rows or columns of the matrix,
9126     whichever line up.  If X is a scalar and Y is a vector, disconnected
9127     line objects are created and plotted as discrete points vertically at
9128     X.
9129  
9130     PLOT(Y) plots the columns of Y versus their index.
9131     If Y is complex, PLOT(Y) is equivalent to PLOT(real(Y),imag(Y)).
9132     In all other uses of PLOT, the imaginary part is ignored.
9133  
9134     Various line types, plot symbols and colors may be obtained with
9135     PLOT(X,Y,S) where S is a character string made from one element
9136     from any or all the following 3 columns:
9137  
9138            b     blue          .     point              -     solid
9139            g     green         o     circle             :     dotted
9140            r     red           x     x-mark             -.    dashdot 
9141            c     cyan          +     plus               --    dashed   
9142            m     magenta       *     star             (none)  no line
9143            y     yellow        s     square
9144            k     black         d     diamond
9145            w     white         v     triangle (down)
9146                                ^     triangle (up)
9147                                <     triangle (left)
9148                                >     triangle (right)
9149                                p     pentagram
9150                                h     hexagram
9151                           
9152     For example, PLOT(X,Y,'c+:') plots a cyan dotted line with a plus 
9153     at each data point; PLOT(X,Y,'bd') plots blue diamond at each data 
9154     point but does not draw any line.
9155  
9156     PLOT(X1,Y1,S1,X2,Y2,S2,X3,Y3,S3,...) combines the plots defined by
9157     the (X,Y,S) triples, where the X's and Y's are vectors or matrices 
9158     and the S's are strings.  
9159  
9160     For example, PLOT(X,Y,'y-',X,Y,'go') plots the data twice, with a
9161     solid yellow line interpolating green circles at the data points.
9162  
9163     The PLOT command, if no color is specified, makes automatic use of
9164     the colors specified by the axes ColorOrder property.  The default
9165     ColorOrder is listed in the table above for color systems where the
9166     default is blue for one line, and for multiple lines, to cycle
9167     through the first six colors in the table.  For monochrome systems,
9168     PLOT cycles over the axes LineStyleOrder property.
9169  
9170     If you do not specify a marker type, PLOT uses no marker. 
9171     If you do not specify a line style, PLOT uses a solid line.
9172  
9173     PLOT(AX,...) plots into the axes with handle AX.
9174  
9175     PLOT returns a column vector of handles to lineseries objects, one
9176     handle per plotted line. 
9177  
9178     The X,Y pairs, or X,Y,S triples, can be followed by 
9179     parameter/value pairs to specify additional properties 
9180     of the lines. For example, PLOT(X,Y,'LineWidth',2,'Color',[.6 0 0]) 
9181     will create a plot with a dark red line width of 2 points.
9182  
9183     Example
9184        x = -pi:pi/10:pi;
9185        y = tan(sin(x)) - sin(tan(x));
9186        plot(x,y,'--rs','LineWidth',2,...
9187                        'MarkerEdgeColor','k',...
9188                        'MarkerFaceColor','g',...
9189                        'MarkerSize',10)
9190  
9191     See also PLOTTOOLS, SEMILOGX, SEMILOGY, LOGLOG, PLOTYY, PLOT3, GRID,
9192     TITLE, XLABEL, YLABEL, AXIS, AXES, HOLD, LEGEND, SUBPLOT, SCATTER, PLOT3.
9193 
9194     Overloaded functions or methods (ones with the same name in other directories)
9195        help SimTimeseries/plot.m
9196        help timeseries/plot.m
9197        help dspdata/plot.m
9198 
9199     Reference page in Help browser
9200        doc plot
9201 
9202 x = linspace(0,2*pi,100);
9203 y = sin(x);
9204 plot(x,y)
9205 plot(x,y,'r-')
9206 plot(x,y,'ro')
9207 plot(x,y,'r+')
9208 help plot
9209  PLOT   Linear plot. 
9210     PLOT(X,Y) plots vector Y versus vector X. If X or Y is a matrix,
9211     then the vector is plotted versus the rows or columns of the matrix,
9212     whichever line up.  If X is a scalar and Y is a vector, disconnected
9213     line objects are created and plotted as discrete points vertically at
9214     X.
9215  
9216     PLOT(Y) plots the columns of Y versus their index.
9217     If Y is complex, PLOT(Y) is equivalent to PLOT(real(Y),imag(Y)).
9218     In all other uses of PLOT, the imaginary part is ignored.
9219  
9220     Various line types, plot symbols and colors may be obtained with
9221     PLOT(X,Y,S) where S is a character string made from one element
9222     from any or all the following 3 columns:
9223  
9224            b     blue          .     point              -     solid
9225            g     green         o     circle             :     dotted
9226            r     red           x     x-mark             -.    dashdot 
9227            c     cyan          +     plus               --    dashed   
9228            m     magenta       *     star             (none)  no line
9229            y     yellow        s     square
9230            k     black         d     diamond
9231            w     white         v     triangle (down)
9232                                ^     triangle (up)
9233                                <     triangle (left)
9234                                >     triangle (right)
9235                                p     pentagram
9236                                h     hexagram
9237                           
9238     For example, PLOT(X,Y,'c+:') plots a cyan dotted line with a plus 
9239     at each data point; PLOT(X,Y,'bd') plots blue diamond at each data 
9240     point but does not draw any line.
9241  
9242     PLOT(X1,Y1,S1,X2,Y2,S2,X3,Y3,S3,...) combines the plots defined by
9243     the (X,Y,S) triples, where the X's and Y's are vectors or matrices 
9244     and the S's are strings.  
9245  
9246     For example, PLOT(X,Y,'y-',X,Y,'go') plots the data twice, with a
9247     solid yellow line interpolating green circles at the data points.
9248  
9249     The PLOT command, if no color is specified, makes automatic use of
9250     the colors specified by the axes ColorOrder property.  The default
9251     ColorOrder is listed in the table above for color systems where the
9252     default is blue for one line, and for multiple lines, to cycle
9253     through the first six colors in the table.  For monochrome systems,
9254     PLOT cycles over the axes LineStyleOrder property.
9255  
9256     If you do not specify a marker type, PLOT uses no marker. 
9257     If you do not specify a line style, PLOT uses a solid line.
9258  
9259     PLOT(AX,...) plots into the axes with handle AX.
9260  
9261     PLOT returns a column vector of handles to lineseries objects, one
9262     handle per plotted line. 
9263  
9264     The X,Y pairs, or X,Y,S triples, can be followed by 
9265     parameter/value pairs to specify additional properties 
9266     of the lines. For example, PLOT(X,Y,'LineWidth',2,'Color',[.6 0 0]) 
9267     will create a plot with a dark red line width of 2 points.
9268  
9269     Example
9270        x = -pi:pi/10:pi;
9271        y = tan(sin(x)) - sin(tan(x));
9272        plot(x,y,'--rs','LineWidth',2,...
9273                        'MarkerEdgeColor','k',...
9274                        'MarkerFaceColor','g',...
9275                        'MarkerSize',10)
9276  
9277     See also PLOTTOOLS, SEMILOGX, SEMILOGY, LOGLOG, PLOTYY, PLOT3, GRID,
9278     TITLE, XLABEL, YLABEL, AXIS, AXES, HOLD, LEGEND, SUBPLOT, SCATTER, PLOT3.
9279 
9280     Overloaded functions or methods (ones with the same name in other directories)
9281        help SimTimeseries/plot.m
9282        help timeseries/plot.m
9283        help dspdata/plot.m
9284 
9285     Reference page in Help browser
9286        doc plot
9287 
9288 title('sin(x)');
9289 xlabel('x');
9290 legend('sin(x)');
9291 hold on;
9292 hold off;
9293 hold on;
9294 plot(x,cos(x),'b--')
9295 legend('sin(x)', 'cos(x)');
9296 clf;
9297 figure
9298 figure(1)
9299 figure(2)
9300 help graph2d
9301   Two dimensional graphs.
9302   
9303   Elementary X-Y graphs.
9304     plot      - Linear plot.
9305     loglog    - Log-log scale plot.
9306     semilogx  - Semi-log scale plot.
9307     semilogy  - Semi-log scale plot.
9308     polar     - Polar coordinate plot.
9309     plotyy    - Graphs with y tick labels on the left and right.
9310  
9311   Axis control.
9312     axis       - Control axis scaling and appearance.
9313     zoom       - Zoom in and out on a 2-D plot.
9314     grid       - Grid lines.
9315     box        - Axis box.
9316     rbbox      - Rubberband box.
9317     hold       - Hold current graph.
9318     axes       - Create axes in arbitrary positions.
9319     subplot    - Create axes in tiled positions.
9320  
9321   Graph annotation.
9322     plotedit  - Tools for editing and annotating plots.
9323     title     - Graph title.
9324     xlabel    - X-axis label.
9325     ylabel    - Y-axis label. 
9326     texlabel  - Produces the TeX format from a character string.
9327     text      - Text annotation.
9328     gtext     - Place text with mouse.
9329  
9330   Hardcopy and printing.
9331     print      - Print graph or Simulink system; or save graph to M-file.
9332     printopt   - Printer defaults.
9333     orient     - Set paper orientation. 
9334  
9335   See also GRAPH3D, SPECGRAPH.
9336 
9337 help graph3d
9338   Three dimensional graphs.
9339   
9340   Elementary 3-D plots.
9341     plot3      - Plot lines and points in 3-D space.
9342     mesh       - 3-D mesh surface.
9343     surf       - 3-D colored surface.
9344     fill3      - Filled 3-D polygons.
9345    
9346   Color control.
9347     colormap   - Color look-up table.
9348     caxis      - Pseudocolor axis scaling.
9349     shading    - Color shading mode.
9350     hidden     - Mesh hidden line removal mode.
9351     brighten   - Brighten or darken color map.
9352     colordef   - Set color defaults.
9353     graymon    - Set graphics defaults for gray-scale monitors.
9354  
9355   Lighting.
9356     surfl      - 3-D shaded surface with lighting.
9357     lighting   - Lighting mode.
9358     material   - Material reflectance mode.
9359     specular   - Specular reflectance.
9360     diffuse    - Diffuse reflectance.
9361     surfnorm   - Surface normals.
9362  
9363   Color maps.
9364     hsv        - Hue-saturation-value color map.
9365     hot        - Black-red-yellow-white color map.
9366     gray       - Linear gray-scale color map.
9367     bone       - Gray-scale with tinge of blue color map.
9368     copper     - Linear copper-tone color map.
9369     pink       - Pastel shades of pink color map.
9370     white      - All white color map.
9371     flag       - Alternating red, white, blue, and black color map.
9372     lines      - Color map with the line colors.
9373     colorcube  - Enhanced color-cube color map.
9374     vga        - Windows colormap for 16 colors.
9375     jet        - Variant of HSV.
9376     prism      - Prism color map.
9377     cool       - Shades of cyan and magenta color map.
9378     autumn     - Shades of red and yellow color map.
9379     spring     - Shades of magenta and yellow color map.
9380     winter     - Shades of blue and green color map.
9381     summer     - Shades of green and yellow color map.
9382  
9383   Transparency.
9384     alpha      - Transparency (alpha) mode.
9385     alphamap   - Transparency (alpha) look-up table.
9386     alim       - Transparency (alpha) scaling
9387  
9388   Axis control.
9389     axis       - Control axis scaling and appearance.
9390     zoom       - Zoom in and out on a 2-D plot.
9391     grid       - Grid lines.
9392     box        - Axis box.
9393     hold       - Hold current graph.
9394     axes       - Create axes in arbitrary positions.
9395     subplot    - Create axes in tiled positions.
9396     daspect    - Data aspect ratio.
9397     pbaspect   - Plot box aspect ratio.
9398     xlim       - X limits.
9399     ylim       - Y limits.
9400     zlim       - Z limits.
9401  
9402   Viewpoint control.
9403     view       - 3-D graph viewpoint specification.
9404     viewmtx    - View transformation matrix.
9405     rotate3d   - Interactively rotate view of 3-D plot.
9406  
9407   Camera control.
9408     campos     - Camera position.
9409     camtarget  - Camera target.
9410     camva      - Camera view angle.
9411     camup      - Camera up vector.
9412     camproj    - Camera projection.
9413  
9414   High level camera control.
9415     camorbit   - Orbit camera.
9416     campan     - Pan camera.
9417     camdolly   - Dolly camera.
9418     camzoom    - Zoom camera.
9419     camroll    - Roll camera.
9420     camlookat  - Move camera and target to view specified objects.
9421     cameratoolbar - Interactively manipulate camera.
9422  
9423   High level light control.
9424     camlight   - Creates or sets position of a light.
9425     lightangle - Spherical position of a light.
9426  
9427   Graph annotation.
9428     title      - Graph title.
9429     xlabel     - X-axis label.
9430     ylabel     - Y-axis label.
9431     zlabel     - Z-axis label.
9432     text       - Text annotation.
9433     gtext      - Mouse placement of text.
9434     plotedit   - Experimental graph editing and annotation tools.
9435  
9436   Hardcopy and printing.
9437     print      - Print graph or Simulink system; or save graph to M-file.
9438     printopt   - Printer defaults.
9439     orient     - Set paper orientation. 
9440     vrml       - Save graphics to VRML 2.0 file.
9441  
9442   See also GRAPH2D, SPECGRAPH.
9443 
9444 help specgraph
9445   Specialized graphs.
9446  
9447   Specialized 2-D graphs.
9448     area         - Filled area plot.
9449     bar          - Bar graph.
9450     barh         - Horizontal bar graph.
9451     comet        - Comet-like trajectory.
9452     compass      - Compass plot.
9453     errorbar     - Error bar plot.
9454     ezplot       - Easy to use function plotter.
9455     ezpolar      - Easy to use polar coordinate plotter.
9456     feather      - Feather plot.
9457     fill         - Filled 2-D polygons.
9458     fplot        - Plot function.
9459     hist         - Histogram.
9460     pareto       - Pareto chart.
9461     pie          - Pie chart.
9462     plotmatrix   - Scatter plot matrix.
9463     rose         - Angle histogram plot.
9464     scatter      - Scatter plot.
9465     stem         - Discrete sequence or "stem" plot.
9466     stairs       - Stairstep plot.
9467   
9468   Contour and 2-1/2 D graphs.
9469     contour      - Contour plot.
9470     contourf     - Filled contour plot.
9471     contour3     - 3-D Contour plot.
9472     clabel       - Contour plot elevation labels.
9473     ezcontour    - Easy to use contour plotter.
9474     ezcontourf   - Easy to use filled contour plotter.
9475     pcolor       - Pseudocolor (checkerboard) plot.
9476     voronoi      - Voronoi diagram.
9477  
9478   Specialized 3-D graphs.
9479     bar3         - 3-D bar graph.
9480     bar3h        - Horizontal 3-D bar graph.
9481     comet3       - 3-D comet-like trajectories.
9482     ezgraph3     - General purpose surface plotter.
9483     ezmesh       - Easy to use 3-D mesh plotter.
9484     ezmeshc      - Easy to use combination mesh/contour plotter.
9485     ezplot3      - Easy to use 3-D parametric curve plotter.
9486     ezsurf       - Easy to use 3-D colored surface plotter.
9487     ezsurfc      - Easy to use combination surf/contour plotter.
9488     meshc        - Combination mesh/contour plot.
9489     meshz        - 3-D mesh with curtain.
9490     pie3         - 3-D pie chart.
9491     ribbon       - Draw 2-D lines as ribbons in 3-D.
9492     scatter3     - 3-D scatter plot.
9493     stem3        - 3-D stem plot.
9494     surfc        - Combination surf/contour plot.
9495     trisurf      - Triangular surface plot.
9496     trimesh      - Triangular mesh plot.
9497     waterfall    - Waterfall plot.
9498  
9499   Volume and vector visualization.
9500     vissuite     - Visualization suite.
9501     isosurface   - Isosurface extractor.
9502     isonormals   - Isosurface normals.
9503     isocaps      - Isosurface end caps.
9504     isocolors    - Isosurface and patch colors.
9505     contourslice - Contours in slice planes.
9506     slice        - Volumetric slice plot.
9507     streamline   - Streamlines from 2D or 3D vector data.
9508     stream3      - 3D streamlines.
9509     stream2      - 2D streamlines.
9510     quiver3      - 3D quiver plot.
9511     quiver       - 2D quiver plot.
9512     divergence   - Divergence of a vector field.
9513     curl         - Curl and angular velocity of a vector field.
9514     coneplot     - 3D cone plot.
9515     streamtube   - 3D stream tube.
9516     streamribbon - 3D stream ribbon.
9517     streamslice  - Streamlines in slice planes.
9518     streamparticles   - Display stream particles.
9519     interpstreamspeed - Interpolate streamline vertices from speed.
9520     subvolume    - Extract subset of volume dataset.
9521     reducevolume - Reduce volume dataset.
9522     volumebounds - Returns x,y,z and color limits for volume data.
9523     smooth3      - Smooth 3D data.
9524     reducepatch  - Reduce number of patch faces.
9525     shrinkfaces  - Reduce size of patch faces.
9526  
9527   Images display and file I/O.
9528     image        - Display image.
9529     imagesc      - Scale data and display as image.
9530     colormap     - Color look-up table.
9531     gray         - Linear gray-scale color map.
9532     contrast     - Gray scale color map to enhance image contrast.
9533     brighten     - Brighten or darken color map.
9534     colorbar     - Display color bar (color scale).
9535     imread       - Read image from graphics file.
9536     imwrite      - Write image to graphics file.
9537     imfinfo      - Information about graphics file.
9538     im2java      - Convert image to Java image.
9539  
9540   Movies and animation.
9541     getframe     - Get movie frame.
9542     movie        - Play recorded movie frames.
9543     rotate       - Rotate object about specified orgin and direction.
9544     frame2im     - Convert movie frame to indexed image.
9545     im2frame     - Convert index image into movie format.
9546  
9547   Color related functions.
9548     spinmap      - Spin color map.
9549     rgbplot      - Plot color map.
9550     colstyle     - Parse color and style from string.
9551     ind2rgb      - Convert indexed image to RGB image.
9552  
9553   Solid modeling.
9554     cylinder     - Generate cylinder.
9555     sphere       - Generate sphere.
9556     ellipsoid    - Generate ellipsoid.
9557     patch        - Create patch.
9558     surf2patch   - Convert surface data to patch data.
9559  
9560   See also GRAPH2D, GRAPH3D.
9561 
9562 pie([0.7 0.2 0.1])
9563 figure(1);
9564 pie([0.7 0.2 0.1])
9565 clf;
9566 imagesc(magic(3))
9567 colorbar
9568 colormap('gray')
9569 colormap('autumn')
9570 colormap('winter')
9571 help colormap
9572  COLORMAP Color look-up table.
9573     COLORMAP(MAP) sets the current figure's colormap to MAP.
9574     COLORMAP('default') sets the current figure's colormap to
9575     the root's default, whose setting is JET.
9576     MAP = COLORMAP retrieves the current colormap. The values
9577     are in the range from 0 to 1.
9578     COLORMAP(AX,...) uses the figure corresponding to axes AX
9579     instead of the current figure.
9580  
9581     A color map matrix may have any number of rows, but it must have
9582     exactly 3 columns.  Each row is interpreted as a color, with the
9583     first element specifying the intensity of red light, the second
9584     green, and the third blue.  Color intensity can be specified on the
9585     interval 0.0 to 1.0.
9586     For example, [0 0 0] is black, [1 1 1] is white,
9587     [1 0 0] is pure red, [.5 .5 .5] is gray, and
9588     [127/255 1 212/255] is aquamarine.
9589  
9590     Graphics objects that use pseudocolor  -- SURFACE and PATCH objects,
9591     which are created by the functions MESH, SURF, and PCOLOR -- map
9592     a color matrix, C, whose values are in the range [Cmin, Cmax],
9593     to an array of indices, k, in the range [1, m].
9594     The values of Cmin and Cmax are either min(min(C)) and max(max(C)),
9595     or are specified by CAXIS.  The mapping is linear, with Cmin
9596     mapping to index 1 and Cmax mapping to index m.  The indices are
9597     then used with the colormap to determine the color associated
9598     with each matrix element.  See CAXIS for details.
9599  
9600     Type HELP GRAPH3D to see a number of useful colormaps.
9601  
9602     COLORMAP is an M-file that sets the Colormap property of a figure.
9603  
9604     See also HSV, CAXIS, SPINMAP, BRIGHTEN, RGBPLOT, FIGURE, COLORMAPEDITOR.
9605 
9606     Reference page in Help browser
9607        doc colormap
9608 
9609 help graph3d
9610   Three dimensional graphs.
9611   
9612   Elementary 3-D plots.
9613     plot3      - Plot lines and points in 3-D space.
9614     mesh       - 3-D mesh surface.
9615     surf       - 3-D colored surface.
9616     fill3      - Filled 3-D polygons.
9617    
9618   Color control.
9619     colormap   - Color look-up table.
9620     caxis      - Pseudocolor axis scaling.
9621     shading    - Color shading mode.
9622     hidden     - Mesh hidden line removal mode.
9623     brighten   - Brighten or darken color map.
9624     colordef   - Set color defaults.
9625     graymon    - Set graphics defaults for gray-scale monitors.
9626  
9627   Lighting.
9628     surfl      - 3-D shaded surface with lighting.
9629     lighting   - Lighting mode.
9630     material   - Material reflectance mode.
9631     specular   - Specular reflectance.
9632     diffuse    - Diffuse reflectance.
9633     surfnorm   - Surface normals.
9634  
9635   Color maps.
9636     hsv        - Hue-saturation-value color map.
9637     hot        - Black-red-yellow-white color map.
9638     gray       - Linear gray-scale color map.
9639     bone       - Gray-scale with tinge of blue color map.
9640     copper     - Linear copper-tone color map.
9641     pink       - Pastel shades of pink color map.
9642     white      - All white color map.
9643     flag       - Alternating red, white, blue, and black color map.
9644     lines      - Color map with the line colors.
9645     colorcube  - Enhanced color-cube color map.
9646     vga        - Windows colormap for 16 colors.
9647     jet        - Variant of HSV.
9648     prism      - Prism color map.
9649     cool       - Shades of cyan and magenta color map.
9650     autumn     - Shades of red and yellow color map.
9651     spring     - Shades of magenta and yellow color map.
9652     winter     - Shades of blue and green color map.
9653     summer     - Shades of green and yellow color map.
9654  
9655   Transparency.
9656     alpha      - Transparency (alpha) mode.
9657     alphamap   - Transparency (alpha) look-up table.
9658     alim       - Transparency (alpha) scaling
9659  
9660   Axis control.
9661     axis       - Control axis scaling and appearance.
9662     zoom       - Zoom in and out on a 2-D plot.
9663     grid       - Grid lines.
9664     box        - Axis box.
9665     hold       - Hold current graph.
9666     axes       - Create axes in arbitrary positions.
9667     subplot    - Create axes in tiled positions.
9668     daspect    - Data aspect ratio.
9669     pbaspect   - Plot box aspect ratio.
9670     xlim       - X limits.
9671     ylim       - Y limits.
9672     zlim       - Z limits.
9673  
9674   Viewpoint control.
9675     view       - 3-D graph viewpoint specification.
9676     viewmtx    - View transformation matrix.
9677     rotate3d   - Interactively rotate view of 3-D plot.
9678  
9679   Camera control.
9680     campos     - Camera position.
9681     camtarget  - Camera target.
9682     camva      - Camera view angle.
9683     camup      - Camera up vector.
9684     camproj    - Camera projection.
9685  
9686   High level camera control.
9687     camorbit   - Orbit camera.
9688     campan     - Pan camera.
9689     camdolly   - Dolly camera.
9690     camzoom    - Zoom camera.
9691     camroll    - Roll camera.
9692     camlookat  - Move camera and target to view specified objects.
9693     cameratoolbar - Interactively manipulate camera.
9694  
9695   High level light control.
9696     camlight   - Creates or sets position of a light.
9697     lightangle - Spherical position of a light.
9698  
9699   Graph annotation.
9700     title      - Graph title.
9701     xlabel     - X-axis label.
9702     ylabel     - Y-axis label.
9703     zlabel     - Z-axis label.
9704     text       - Text annotation.
9705     gtext      - Mouse placement of text.
9706     plotedit   - Experimental graph editing and annotation tools.
9707  
9708   Hardcopy and printing.
9709     print      - Print graph or Simulink system; or save graph to M-file.
9710     printopt   - Printer defaults.
9711     orient     - Set paper orientation. 
9712     vrml       - Save graphics to VRML 2.0 file.
9713  
9714   See also GRAPH2D, SPECGRAPH.
9715 
9716 colormap('jet')
9717 clf
9718 x1 = [ 1 2 ];
9719 x2 = [ 7 -3 ];
9720 line( [ x1(1) x2(1) ], [ x1(2), x2(2) ]);
9721 h = line( [ x1(1) x2(1) ], [ x1(2), x2(2) ]);
9722 h
9723 
9724 h =
9725 
9726   326.0018
9727 
9728 get(h)
9729 	Color = [0 0 1]
9730 	EraseMode = normal
9731 	LineStyle = -
9732 	LineWidth = [0.5]
9733 	Marker = none
9734 	MarkerSize = [6]
9735 	MarkerEdgeColor = auto
9736 	MarkerFaceColor = none
9737 	XData = [1 7]
9738 	YData = [2 -3]
9739 	ZData = []
9740 
9741 	BeingDeleted = off
9742 	ButtonDownFcn = 
9743 	Children = []
9744 	Clipping = on
9745 	CreateFcn = 
9746 	DeleteFcn = 
9747 	BusyAction = queue
9748 	HandleVisibility = on
9749 	HitTest = on
9750 	Interruptible = on
9751 	Parent = [325.002]
9752 	Selected = off
9753 	SelectionHighlight = on
9754 	Tag = 
9755 	Type = line
9756 	UIContextMenu = []
9757 	UserData = []
9758 	Visible = on
9759 
9760 set(h, 'LineStyle', '--');
9761 get(h);
9762 	Color = [0 0 1]
9763 	EraseMode = normal
9764 	LineStyle = --
9765 	LineWidth = [0.5]
9766 	Marker = none
9767 	MarkerSize = [6]
9768 	MarkerEdgeColor = auto
9769 	MarkerFaceColor = none
9770 	XData = [1 7]
9771 	YData = [2 -3]
9772 	ZData = []
9773 
9774 	BeingDeleted = off
9775 	ButtonDownFcn = 
9776 	Children = []
9777 	Clipping = on
9778 	CreateFcn = 
9779 	DeleteFcn = 
9780 	BusyAction = queue
9781 	HandleVisibility = on
9782 	HitTest = on
9783 	Interruptible = on
9784 	Parent = [325.002]
9785 	Selected = off
9786 	SelectionHighlight = on
9787 	Tag = 
9788 	Type = line
9789 	UIContextMenu = []
9790 	UserData = []
9791 	Visible = on
9792 
9793 set(h, 'Color', 'red')
9794 hold off;
9795 clf
9796 line( [ x1(1) x2(1) ], [ x1(2), x2(2) ]);
9797 set(h, 'LineStyle', '--');
9798 ??? Invalid handle object.
9799 
9800 h = line( [ x1(1) x2(1) ], [ x1(2), x2(2) ]);
9801 set(h, 'LineStyle', '--');
9802 set(h, 'Color', 'red');
9803 set(h, 'LineStyle', ':');
9804 set(h, 'LineWidth', 10);
9805 set(h, 'LineWidth', 20);
9806 clf;
9807 hold off;
9808 h = line( [ x1(1) x2(1) ], [ x1(2), x2(2) ]);
9809 set(h, 'LineWidth', 5);
9810 set(h, 'LineStyle', '--');
9811 get(gca)
9812 	ActivePositionProperty = outerposition
9813 	ALim = [0 1]
9814 	ALimMode = auto
9815 	AmbientLightColor = [1 1 1]
9816 	Box = off
9817 	CameraPosition = [4 -0.5 17.3205]
9818 	CameraPositionMode = auto
9819 	CameraTarget = [4 -0.5 0]
9820 	CameraTargetMode = auto
9821 	CameraUpVector = [0 1 0]
9822 	CameraUpVectorMode = auto
9823 	CameraViewAngle = [6.60861]
9824 	CameraViewAngleMode = auto
9825 	CLim = [0 1]
9826 	CLimMode = auto
9827 	Color = [1 1 1]
9828 	CurrentPoint = [ (2 by 3) double array]
9829 	ColorOrder = [ (7 by 3) double array]
9830 	DataAspectRatio = [3 2.5 1]
9831 	DataAspectRatioMode = auto
9832 	DrawMode = normal
9833 	FontAngle = normal
9834 	FontName = Helvetica
9835 	FontSize = [10]
9836 	FontUnits = points
9837 	FontWeight = normal
9838 	GridLineStyle = :
9839 	Layer = bottom
9840 	LineStyleOrder = -
9841 	LineWidth = [0.5]
9842 	MinorGridLineStyle = :
9843 	NextPlot = replace
9844 	OuterPosition = [0 0 1 1]
9845 	PlotBoxAspectRatio = [1 1 1]
9846 	PlotBoxAspectRatioMode = auto
9847 	Projection = orthographic
9848 	Position = [0.13 0.11 0.775 0.815]
9849 	TickLength = [0.01 0.025]
9850 	TickDir = in
9851 	TickDirMode = auto
9852 	TightInset = [0.0670103 0.0414365 0.0103093 0.019337]
9853 	Title = [326.002]
9854 	Units = normalized
9855 	View = [0 90]
9856 	XColor = [0 0 0]
9857 	XDir = normal
9858 	XGrid = off
9859 	XLabel = [327.001]
9860 	XAxisLocation = bottom
9861 	XLim = [1 7]
9862 	XLimMode = auto
9863 	XMinorGrid = off
9864 	XMinorTick = off
9865 	XScale = linear
9866 	XTick = [ (1 by 7) double array]
9867 	XTickLabel = 
9868 		1
9869 		2
9870 		3
9871 		4
9872 		5
9873 		6
9874 		7
9875 	XTickLabelMode = auto
9876 	XTickMode = auto
9877 	YColor = [0 0 0]
9878 	YDir = normal
9879 	YGrid = off
9880 	YLabel = [328.001]
9881 	YAxisLocation = left
9882 	YLim = [-3 2]
9883 	YLimMode = auto
9884 	YMinorGrid = off
9885 	YMinorTick = off
9886 	YScale = linear
9887 	YTick = [ (1 by 11) double array]
9888 	YTickLabel = [ (11 by 4) char array]
9889 	YTickLabelMode = auto
9890 	YTickMode = auto
9891 	ZColor = [0 0 0]
9892 	ZDir = normal
9893 	ZGrid = off
9894 	ZLabel = [329.001]
9895 	ZLim = [-1 1]
9896 	ZLimMode = auto
9897 	ZMinorGrid = off
9898 	ZMinorTick = off
9899 	ZScale = linear
9900 	ZTick = [-1 0 1]
9901 	ZTickLabel = 
9902 	ZTickLabelMode = auto
9903 	ZTickMode = auto
9904 
9905 	BeingDeleted = off
9906 	ButtonDownFcn = 
9907 	Children = [325.002]
9908 	Clipping = on
9909 	CreateFcn = 
9910 	DeleteFcn = 
9911 	BusyAction = queue
9912 	HandleVisibility = on
9913 	HitTest = on
9914 	Interruptible = on
9915 	Parent = [1]
9916 	Selected = off
9917 	SelectionHighlight = on
9918 	Tag = 
9919 	Type = axes
9920 	UIContextMenu = []
9921 	UserData = []
9922 	Visible = on
9923 
9924 set(gca, 'XLim', [ -1 10 ]);
9925 get(gca, 'XTick')
9926 
9927 ans =
9928 
9929      0     2     4     6     8    10
9930 
9931 clf;
9932 hist(rand(1,100))
9933 hist(randn(1,100))
9934 hist(randn(1,1000))
9935 help mean
9936  MEAN   Average or mean value.
9937     For vectors, MEAN(X) is the mean value of the elements in X. For
9938     matrices, MEAN(X) is a row vector containing the mean value of
9939     each column.  For N-D arrays, MEAN(X) is the mean value of the
9940     elements along the first non-singleton dimension of X.
9941  
9942     MEAN(X,DIM) takes the mean along the dimension DIM of X. 
9943  
9944     Example: If X = [0 1 2
9945                      3 4 5]
9946  
9947     then mean(X,1) is [1.5 2.5 3.5] and mean(X,2) is [1
9948                                                       4]
9949  
9950     Class support for input X:
9951        float: double, single
9952  
9953     See also MEDIAN, STD, MIN, MAX, VAR, COV, MODE.
9954 
9955     Overloaded functions or methods (ones with the same name in other directories)
9956        help timeseries/mean.m
9957 
9958     Reference page in Help browser
9959        doc mean
9960 
9961 help std
9962  STD Standard deviation.
9963     For vectors, Y = STD(X) returns the standard deviation.  For matrices,
9964     Y is a row vector containing the standard deviation of each column.  For
9965     N-D arrays, STD operates along the first non-singleton dimension of X.
9966  
9967     STD normalizes Y by (N-1), where N is the sample size.  This is the
9968     sqrt of an unbiased estimator of the variance of the population from
9969     which X is drawn, as long as X consists of independent, identically
9970     distributed samples.
9971  
9972     Y = STD(X,1) normalizes by N and produces the square root of the second
9973     moment of the sample about its mean.  STD(X,0) is the same as STD(X).
9974  
9975     Y = STD(X,FLAG,DIM) takes the standard deviation along the dimension
9976     DIM of X.  Pass in FLAG==0 to use the default normalization by N-1, or
9977     1 to use N.
9978  
9979     Example: If X = [4 -2 1
9980                      9  5 7]
9981       then std(X,0,1) is [3.5355 4.9497 4.2426] and std(X,0,2) is [3.0
9982                                                                    2.0]
9983     Class support for input X:
9984        float: double, single
9985  
9986     See also COV, MEAN, VAR, MEDIAN, CORRCOEF.
9987 
9988     Overloaded functions or methods (ones with the same name in other directories)
9989        help timeseries/std.m
9990 
9991     Reference page in Help browser
9992        doc std
9993 
9994 exit

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2009-03-12 14:03:18, 74.6 KB) [[attachment:ML_Praktikum_U01.pdf]]
  • [get | view] (2009-03-12 14:03:18, 72.1 KB) [[attachment:ML_Praktikum_U02.pdf]]
  • [get | view] (2009-03-12 14:03:18, 66.7 KB) [[attachment:ML_Praktikum_U03.pdf]]
  • [get | view] (2009-03-12 14:03:18, 94.0 KB) [[attachment:ML_Praktikum_U04.pdf]]
  • [get | view] (2009-03-12 14:03:18, 65.2 KB) [[attachment:ML_Praktikum_U05.pdf]]
  • [get | view] (2009-03-12 14:03:18, 79.3 KB) [[attachment:ML_Praktikum_U06.pdf]]
  • [get | view] (2009-03-12 14:03:18, 66.6 KB) [[attachment:Praktikum_ML_Info.pdf]]
  • [get | view] (2009-03-12 14:03:18, 4053.5 KB) [[attachment:U01_usps.mat]]
  • [get | view] (2009-03-12 14:03:18, 6.3 KB) [[attachment:U03_2gaussians.dat]]
  • [get | view] (2009-03-12 14:03:18, 15.6 KB) [[attachment:U03_5gaussians.dat]]
  • [get | view] (2009-03-12 14:03:18, 1018.4 KB) [[attachment:U04_datasets.tar.gz]]
  • [get | view] (2009-03-12 14:03:18, 6.4 KB) [[attachment:U05_datasets.zip]]
  • [get | view] (2009-03-12 14:03:18, 108.7 KB) [[attachment:U06_datasets.tar.gz]]
  • [get | view] (2009-03-12 14:03:18, 1.1 KB) [[attachment:U06_test_margs.m]]
  • [get | view] (2009-03-12 14:03:18, 60.1 KB) [[attachment:fishbowl.mat]]
  • [get | view] (2009-03-12 14:03:18, 22.7 KB) [[attachment:flatroll.mat]]
  • [get | view] (2009-03-12 14:03:18, 0.1 KB) [[attachment:func1.m]]
  • [get | view] (2009-03-12 14:03:18, 371.2 KB) [[attachment:guide.pdf]]
  • [get | view] (2009-03-12 14:03:18, 496.0 KB) [[attachment:lle_talk.pdf]]
  • [get | view] (2009-03-12 14:03:18, 275.7 KB) [[attachment:logfile.txt]]
  • [get | view] (2009-03-12 14:03:18, 0.2 KB) [[attachment:myprod.m]]
  • [get | view] (2009-03-12 14:03:18, 27.3 KB) [[attachment:ratbert-debate.gif]]
  • [get | view] (2009-03-12 14:03:18, 7.6 KB) [[attachment:ratbert-debate.mat]]
  • [get | view] (2009-03-12 14:03:18, 45.3 KB) [[attachment:swissroll.mat]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.