Importar base de datos

# file.choose()
base_de_datos <- read.csv("C:\\Users\\raulc\\OneDrive\\Escritorio\\arca.csv")

Entender la base de datos

summary(base_de_datos)
##        ID              Año        Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##      CEDI             Cliente             Nombre          Tamaño.Cte.Industria
##  Length:466509      Length:466509      Length:466509      Length:466509       
##  Class :character   Class :character   Class :character   Class :character    
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character    
##                                                                               
##                                                                               
##                                                                               
##  Segmento.Det          Marca           Presentacion          Tamaño         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR         Enero             Febrero             Marzo          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##     Abril               Mayo              Junio              Julio          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##     Agosto           Septiembre          Octubre           Noviembre        
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##   Diciembre        
##  Length:466509     
##  Class :character  
##  Mode  :character  
##                    
##                    
## 
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Año                 : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : chr  "77737" "77737" "77737" "77737" ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamaño.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamaño              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : chr  "" "" "" "" ...
##  $ Febrero             : chr  "" "2" "" "" ...
##  $ Marzo               : chr  "" "8" "3" "" ...
##  $ Abril               : chr  "" "4" "6" "" ...
##  $ Mayo                : chr  "" "4" "3" "" ...
##  $ Junio               : chr  "" "2" "3" "" ...
##  $ Julio               : chr  "" "2" "3" "" ...
##  $ Agosto              : chr  "" "2" "3" "" ...
##  $ Septiembre          : chr  "" "2" "3" "" ...
##  $ Octubre             : chr  "" "2" "3" "" ...
##  $ Noviembre           : chr  "" "4" "3" "" ...
##  $ Diciembre           : chr  "1" "2" "3" "1" ...
# install.packages("dplyr")
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
count(base_de_datos, Territorio, sort = TRUE)
##    Territorio      n
## 1 Guadalajara 466508
## 2  Territorio      1
count(base_de_datos, Sub.Territorio, sort = TRUE)
##   Sub.Territorio      n
## 1        Belenes 208982
## 2      Huentitán 144196
## 3     Toluquilla 113330
## 4 Sub Territorio      1
count(base_de_datos, CEDI, sort = TRUE)
##              CEDI      n
## 1    Suc. Belenes 208982
## 2  Suc. Huentitán 144196
## 3 Suc. Toluquilla 113330
## 4            CEDI      1
count(base_de_datos, Cliente, sort = TRUE)
##      Cliente   n
## 1       0286 647
## 2       2912 586
## 3       2661 537
## 4       7821 531
## 5       1859 525
## 6       5583 516
## 7       9998 508
## 8       3601 506
## 9       5879 499
## 10      0335 496
## 11      1288 486
## 12      9098 478
## 13      0030 471
## 14      1053 468
## 15      9759 455
## 16      2627 447
## 17      2706 447
## 18      2700 445
## 19      1759 444
## 20      2795 444
## 21      3069 440
## 22      8694 439
## 23      9872 439
## 24      7033 436
## 25      0750 431
## 26      9964 427
## 27      4609 426
## 28      9455 426
## 29      0689 422
## 30      5835 422
## 31      8373 422
## 32      1174 415
## 33      7884 412
## 34      0475 411
## 35      5531 409
## 36      1582 408
## 37      0027 407
## 38      1431 407
## 39      2780 407
## 40      5365 407
## 41      3857 406
## 42      1397 405
## 43      2764 403
## 44      1257 402
## 45      8475 400
## 46      8537 399
## 47      2736 398
## 48      2980 398
## 49      1378 397
## 50      2651 396
## 51      2663 396
## 52      4855 395
## 53      9371 395
## 54      0372 394
## 55      7446 394
## 56      8266 394
## 57      7383 392
## 58      1836 391
## 59      0623 389
## 60      6251 389
## 61      8672 386
## 62      2797 384
## 63      8409 384
## 64      0386 382
## 65      7665 382
## 66      5719 381
## 67      6223 380
## 68      0438 378
## 69      7875 378
## 70      8152 378
## 71      2702 375
## 72      3881 375
## 73      1032 374
## 74      2993 373
## 75      9015 373
## 76      1523 372
## 77      9788 370
## 78      0411 369
## 79      9010 368
## 80      9267 368
## 81      0054 366
## 82      1862 366
## 83      3961 366
## 84      4167 366
## 85      6673 366
## 86      1451 364
## 87      9041 364
## 88      3072 363
## 89      4169 363
## 90      6812 363
## 91      6986 363
## 92      9245 363
## 93      1716 362
## 94      3247 361
## 95      8018 361
## 96      9734 361
## 97      4924 360
## 98      6307 360
## 99      8791 359
## 100     8259 358
## 101     2647 357
## 102     6190 357
## 103     4431 356
## 104     9646 356
## 105     4373 355
## 106     9139 355
## 107     1916 354
## 108     5965 354
## 109     6102 354
## 110     6593 354
## 111     9173 354
## 112     2878 353
## 113     3331 353
## 114     5261 353
## 115     2929 352
## 116     3063 352
## 117     5263 352
## 118     0652 350
## 119     1812 350
## 120     2097 350
## 121     0371 349
## 122     5493 349
## 123     5511 348
## 124     6805 348
## 125     7843 348
## 126     0457 347
## 127     3971 347
## 128     9615 347
## 129     0242 346
## 130     5230 346
## 131     1130 345
## 132     3107 345
## 133     4002 345
## 134     4122 345
## 135     5706 345
## 136     6785 345
## 137     0073 344
## 138     1393 344
## 139     1956 344
## 140     6004 344
## 141     8029 344
## 142     9864 344
## 143     0605 343
## 144     5108 343
## 145     6330 343
## 146     6547 343
## 147     1182 342
## 148     1937 342
## 149     2000 342
## 150     2682 342
## 151     6555 342
## 152     9506 342
## 153     6556 340
## 154     6811 340
## 155     9045 340
## 156     0100 339
## 157     2146 339
## 158     5840 339
## 159     6091 339
## 160     7538 339
## 161     3234 338
## 162     8283 338
## 163     0921 337
## 164     2713 337
## 165     4116 337
## 166     8493 337
## 167     9574 337
## 168     0294 336
## 169     0664 336
## 170     6319 336
## 171     6802 336
## 172     7299 336
## 173     8484 336
## 174     8612 336
## 175     9462 336
## 176     0396 335
## 177     1395 335
## 178     2539 335
## 179     3798 335
## 180     5257 335
## 181     1090 334
## 182     5007 334
## 183     6874 334
## 184     3867 333
## 185     7704 333
## 186     9781 333
## 187     4440 332
## 188     1791 331
## 189     3535 331
## 190     7309 331
## 191     8140 331
## 192     9957 330
## 193     2908 329
## 194     7632 329
## 195     8483 329
## 196     0578 328
## 197     4026 328
## 198     4112 328
## 199     6473 328
## 200     4693 327
## 201     5765 327
## 202     7208 327
## 203     1635 326
## 204     7917 326
## 205     0183 325
## 206     1196 325
## 207     7800 325
## 208     5526 324
## 209     9398 324
## 210     2760 323
## 211     6228 323
## 212     3249 322
## 213     4712 322
## 214     6181 322
## 215     8946 322
## 216     5259 321
## 217     6414 321
## 218     1664 320
## 219     5857 320
## 220     6253 320
## 221     1724 319
## 222     2019 319
## 223     4548 319
## 224     5525 319
## 225     7478 319
## 226     7831 319
## 227     9210 319
## 228     2486 318
## 229     4241 318
## 230     4734 318
## 231     8010 318
## 232     9017 318
## 233     9816 318
## 234     2399 317
## 235     5507 317
## 236     6263 317
## 237     5093 316
## 238     7742 316
## 239     7769 316
## 240     3748 315
## 241     0247 314
## 242     1180 314
## 243     3308 314
## 244     8065 314
## 245     2634 313
## 246     3853 313
## 247     5712 313
## 248     7196 313
## 249     7988 313
## 250     1074 312
## 251     2075 312
## 252     8201 312
## 253     0932 311
## 254     5488 311
## 255     5901 311
## 256     6422 311
## 257     3963 310
## 258     6999 310
## 259     8795 310
## 260     9248 310
## 261     9275 310
## 262     1417 309
## 263     1546 309
## 264     1785 309
## 265     1880 309
## 266     3023 309
## 267     6457 308
## 268     6775 308
## 269     7316 308
## 270     1203 307
## 271     1543 307
## 272     5781 307
## 273     5959 307
## 274     8407 307
## 275     8802 307
## 276     9756 307
## 277     5231 306
## 278     9165 306
## 279     0113 305
## 280     1039 305
## 281     0866 304
## 282     1388 304
## 283     5020 304
## 284     5532 304
## 285     8329 304
## 286     8408 304
## 287     9913 304
## 288     1927 303
## 289     6863 303
## 290     7740 303
## 291     9797 303
## 292     0485 302
## 293     0885 302
## 294     2967 302
## 295     3875 302
## 296     8125 302
## 297     8186 302
## 298     4478 301
## 299     4814 301
## 300     6451 301
## 301     0391 300
## 302     2069 300
## 303     2983 300
## 304     3060 300
## 305     8154 300
## 306     1160 299
## 307     2658 299
## 308     3157 299
## 309     6675 299
## 310     7488 299
## 311     7501 299
## 312     6847 298
## 313     9671 298
## 314     3085 297
## 315     4174 297
## 316     5023 297
## 317     7367 297
## 318     9677 297
## 319     4580 296
## 320     4657 296
## 321     8543 296
## 322     0487 295
## 323     2687 295
## 324     2751 295
## 325     4528 295
## 326     6729 295
## 327     9915 295
## 328     1332 294
## 329     4581 294
## 330     4861 294
## 331     5718 294
## 332     8421 294
## 333     4769 293
## 334     4979 293
## 335     5177 293
## 336     9603 293
## 337     9884 293
## 338     0184 292
## 339     3455 292
## 340     7844 292
## 341     0535 291
## 342     0905 291
## 343     1731 291
## 344     1870 290
## 345     4375 290
## 346     0445 288
## 347     4612 288
## 348     4382 287
## 349     5520 287
## 350     7450 287
## 351     7464 287
## 352     0365 286
## 353     4199 286
## 354     4792 286
## 355     5535 286
## 356     6043 286
## 357     7230 286
## 358     8689 286
## 359     0439 285
## 360     1685 285
## 361     1795 285
## 362     1920 285
## 363     3965 285
## 364     6014 285
## 365     3570 284
## 366     6182 284
## 367     7452 284
## 368     4238 283
## 369     4695 283
## 370     0407 282
## 371     1317 282
## 372     4968 282
## 373     0154 281
## 374     4115 281
## 375     5119 281
## 376     6557 281
## 377     8842 281
## 378     0575 280
## 379     3017 280
## 380     4034 280
## 381     0683 279
## 382     1098 278
## 383     3179 278
## 384     4738 278
## 385     1030 277
## 386     5796 277
## 387     9767 277
## 388     0651 276
## 389     4310 276
## 390     0800 275
## 391     7857 275
## 392     3142 274
## 393     4644 274
## 394     4652 274
## 395     4964 274
## 396     5775 274
## 397     8899 274
## 398     6601 273
## 399     1939 272
## 400     3357 272
## 401     6381 272
## 402     9811 272
## 403     1713 271
## 404     4215 271
## 405     6535 271
## 406     6626 271
## 407     1286 270
## 408     6005 270
## 409     2531 269
## 410     6112 269
## 411     6160 269
## 412     6792 269
## 413     7545 269
## 414     8250 269
## 415     1818 268
## 416     4900 268
## 417     6114 268
## 418     6449 268
## 419     7333 268
## 420     3254 267
## 421     6025 267
## 422     8927 267
## 423     9140 267
## 424     9861 267
## 425     0004 266
## 426     2242 266
## 427     6125 266
## 428     7204 266
## 429     7842 266
## 430     8306 266
## 431     1126 265
## 432     2859 265
## 433     3401 265
## 434     9707 265
## 435     4698 264
## 436     7410 264
## 437     9743 264
## 438     8112 263
## 439     8228 263
## 440     8284 263
## 441     8572 263
## 442     0062 262
## 443     2830 262
## 444     5046 262
## 445     6452 262
## 446     6462 262
## 447     2835 261
## 448     2861 261
## 449     3176 261
## 450     9742 261
## 451     4763 260
## 452     5690 260
## 453     6301 260
## 454     0786 259
## 455     1420 259
## 456     2611 259
## 457     8402 259
## 458     0280 258
## 459     0426 258
## 460     3173 258
## 461     7796 258
## 462     9230 258
## 463     2111 257
## 464     2594 257
## 465     2759 257
## 466     4050 257
## 467     4567 257
## 468     7198 257
## 469     7288 257
## 470     4293 256
## 471     5758 256
## 472     2294 255
## 473     7794 255
## 474     1238 254
## 475     2476 254
## 476     3230 254
## 477     4250 254
## 478     6007 254
## 479     0597 253
## 480     3931 253
## 481     4994 253
## 482     9632 253
## 483     2777 252
## 484     5448 252
## 485     4582 251
## 486     5743 251
## 487     6464 251
## 488     9186 251
## 489     2926 250
## 490     9407 250
## 491     9961 250
## 492     1511 248
## 493     1588 248
## 494     0337 247
## 495     3981 247
## 496     5015 247
## 497     8561 247
## 498     8920 247
## 499     2918 246
## 500     3325 246
## 501     4579 246
## 502     2529 245
## 503     3189 245
## 504     6365 245
## 505     7474 243
## 506     5521 242
## 507     6055 242
## 508     6930 242
## 509     7612 241
## 510     2516 240
## 511     4596 240
## 512     7339 240
## 513     1116 239
## 514     1888 239
## 515     2413 239
## 516     4370 239
## 517     8696 239
## 518     2605 237
## 519     3527 237
## 520     4367 237
## 521     8814 237
## 522     6869 236
## 523     5651 235
## 524     6252 235
## 525     9492 235
## 526     2756 234
## 527     2372 231
## 528     9448 230
## 529     7178 229
## 530     3779 228
## 531     5014 228
## 532     9873 228
## 533     0948 225
## 534     3083 225
## 535     8526 224
## 536     9158 224
## 537     1064 223
## 538     2800 223
## 539     3087 223
## 540     8691 223
## 541     1794 222
## 542     3745 222
## 543     5203 222
## 544     1897 221
## 545     3229 221
## 546     7737 221
## 547     2737 220
## 548     9003 220
## 549     9164 219
## 550     9591 219
## 551     5420 218
## 552     2988 217
## 553     5568 217
## 554     3082 216
## 555     7286 216
## 556     0518 214
## 557     0579 214
## 558     3058 214
## 559     9169 214
## 560     7771 213
## 561     1343 211
## 562     2752 210
## 563     3105 209
## 564     3235 209
## 565     0952 206
## 566     3496 206
## 567     9693 206
## 568     5043 205
## 569     7572 205
## 570     2456 204
## 571     3472 204
## 572     8190 204
## 573     0510 203
## 574     6352 203
## 575     6605 203
## 576     8678 202
## 577     0730 201
## 578     2504 200
## 579     4524 200
## 580     5139 200
## 581     5338 199
## 582     6967 199
## 583     1721 198
## 584     2566 198
## 585     9745 198
## 586     0464 197
## 587     0945 197
## 588     5577 197
## 589     8682 197
## 590     9415 197
## 591     0285 195
## 592     7778 195
## 593     0659 194
## 594     2958 194
## 595     4070 194
## 596     4650 194
## 597     6516 194
## 598     7483 193
## 599     9653 193
## 600     2678 192
## 601     8071 191
## 602     0712 190
## 603     4513 190
## 604     0586 189
## 605     2550 188
## 606     2867 188
## 607     2685 187
## 608     0766 186
## 609     2911 186
## 610     7378 186
## 611     0182 185
## 612     0610 185
## 613     2843 185
## 614     7543 185
## 615     0711 184
## 616     3170 184
## 617     2007 183
## 618     9281 183
## 619     0123 182
## 620     2969 182
## 621     6635 181
## 622     9553 181
## 623     1267 180
## 624     2530 180
## 625     2565 179
## 626     6646 179
## 627     7438 178
## 628     2047 177
## 629     3177 177
## 630     0181 175
## 631     2635 175
## 632     2656 175
## 633     6477 175
## 634     7802 175
## 635     2790 174
## 636     3996 174
## 637     4233 174
## 638     9311 174
## 639     0793 173
## 640     0996 173
## 641     2913 173
## 642     2430 172
## 643     9486 172
## 644     0017 171
## 645     2996 171
## 646     3114 171
## 647     1166 170
## 648     1156 169
## 649     2252 169
## 650     2404 169
## 651     2931 169
## 652     2786 168
## 653     3049 168
## 654     0357 167
## 655     2497 167
## 656     2527 167
## 657     5803 166
## 658     7039 166
## 659     2561 165
## 660     6865 165
## 661     7871 165
## 662     9505 165
## 663     9820 165
## 664     1755 164
## 665     7681 164
## 666     0600 163
## 667     2523 163
## 668     0839 162
## 669     3033 162
## 670     3109 162
## 671     7720 162
## 672     8224 162
## 673     8635 162
## 674     1746 161
## 675     1808 161
## 676     2933 161
## 677     2080 160
## 678     5271 160
## 679    53916 160
## 680     1337 159
## 681     2927 159
## 682     2945 159
## 683     9181 159
## 684     2586 158
## 685     2639 158
## 686     8285 158
## 687     0732 157
## 688     2233 157
## 689     3298 157
## 690     7882 157
## 691     8874 157
## 692     9408 157
## 693     1025 156
## 694     2637 156
## 695     0356 154
## 696     2046 154
## 697     2828 154
## 698     3003 154
## 699     3027 154
## 700     9510 154
## 701     2385 153
## 702     2395 153
## 703     3117 153
## 704     7358 153
## 705     7306 152
## 706     2078 151
## 707     2622 151
## 708     9736 151
## 709    98475 151
## 710     0923 150
## 711     2496 150
## 712     2970 150
## 713     6660 150
## 714    97821 150
## 715     2445 149
## 716     8943 149
## 717    00750 148
## 718     1456 148
## 719     2826 148
## 720     6576 148
## 721     9027 148
## 722     1014 147
## 723     1026 147
## 724     2686 147
## 725     4202 147
## 726    75365 147
## 727    01053 146
## 728     3211 146
## 729    97665 146
## 730     0789 145
## 731     1056 145
## 732     8786 145
## 733     1359 144
## 734     1958 144
## 735     2944 144
## 736     1273 143
## 737     1351 143
## 738     1438 143
## 739     3165 143
## 740     6688 143
## 741     8514 143
## 742     1447 142
## 743     2359 142
## 744     2805 142
## 745     0124 141
## 746    01378 141
## 747     0151 141
## 748     0209 141
## 749     2058 141
## 750     2576 141
## 751     2820 141
## 752     2920 141
## 753     2992 141
## 754     3175 141
## 755    95879 141
## 756     2654 140
## 757     5585 140
## 758     8187 140
## 759     0998 139
## 760     2483 139
## 761     7731 139
## 762     2489 138
## 763     2814 138
## 764     9149 138
## 765     0051 137
## 766    01174 137
## 767     8501 137
## 768     9110 137
## 769    98373 137
## 770     0412 136
## 771     1348 136
## 772     2498 136
## 773    73331 136
## 774     7733 136
## 775    94609 136
## 776     9485 136
## 777     9752 136
## 778    98694 136
## 779     7777 135
## 780     9730 135
## 781    01397 134
## 782     0763 134
## 783     1428 134
## 784     2947 134
## 785     3051 134
## 786     4552 134
## 787    79872 134
## 788    80438 134
## 789    97446 134
## 790     3141 133
## 791    72764 133
## 792     7766 133
## 793    79455 133
## 794    96812 133
## 795    98672 133
## 796    01451 132
## 797     0553 132
## 798     0628 132
## 799     2501 132
## 800     2749 132
## 801     3256 132
## 802    82647 132
## 803     8985 132
## 804    96223 132
## 805    99267 132
## 806     0646 131
## 807     2567 131
## 808     2734 131
## 809     7732 131
## 810    83072 131
## 811    97538 131
## 812    98791 131
## 813     0222 130
## 814     2817 130
## 815     3182 130
## 816     6880 130
## 817    72797 130
## 818    95583 130
## 819     0011 129
## 820     1429 129
## 821     2001 129
## 822     2174 129
## 823     2544 129
## 824     2788 129
## 825    79139 129
## 826     9008 129
## 827    96251 129
## 828     0804 128
## 829     1008 128
## 830     1175 128
## 831     1903 128
## 832     2551 128
## 833     4673 128
## 834    56247 128
## 835    75765 128
## 836     0103 127
## 837    01523 127
## 838     2808 127
## 839    81395 127
## 840    82706 127
## 841     9420 127
## 842    96228 127
## 843    96547 127
## 844    97033 127
## 845    98409 127
## 846    98484 127
## 847     0384 126
## 848     1472 126
## 849     2322 126
## 850     2836 126
## 851     3050 126
## 852     3095 126
## 853     3167 126
## 854    35053 126
## 855     5143 126
## 856    72663 126
## 857    74855 126
## 858    75093 126
## 859    76253 126
## 860     9500 126
## 861     9761 126
## 862     0148 125
## 863     2225 125
## 864     2625 125
## 865     2827 125
## 866    79010 125
## 867    81716 125
## 868     9625 125
## 869    96307 125
## 870    73234 124
## 871    74002 124
## 872    94431 124
## 873    96805 124
## 874     0067 123
## 875    00689 123
## 876     0179 123
## 877     1118 123
## 878     2010 123
## 879     3185 123
## 880     6193 123
## 881     6815 123
## 882    77875 123
## 883     9397 123
## 884     9774 123
## 885    98065 123
## 886    99734 123
## 887     1503 122
## 888     1542 122
## 889     3158 122
## 890     3164 122
## 891    42627 122
## 892    74116 122
## 893    76422 122
## 894     7760 122
## 895    80335 122
## 896    81759 122
## 897     8784 122
## 898    98029 122
## 899    01032 121
## 900     1077 121
## 901     2769 121
## 902    75840 121
## 903     7787 121
## 904     7987 121
## 905    82075 121
## 906    95493 121
## 907    96451 121
## 908    98329 121
## 909    99245 121
## 910    00411 120
## 911    00475 120
## 912    01582 120
## 913     0193 120
## 914     1249 120
## 915     2043 120
## 916    76802 120
## 917    77545 120
## 918     7812 120
## 919    79615 120
## 920    96811 120
## 921    98266 120
## 922    99371 120
## 923    99759 120
## 924    99998 120
## 925     0427 119
## 926     3018 119
## 927     3071 119
## 928     3106 119
## 929     3315 119
## 930    53595 119
## 931    72878 119
## 932    81731 119
## 933    81956 119
## 934    82000 119
## 935    95525 119
## 936    95959 119
## 937    98152 119
## 938     9893 119
## 939    99398 119
## 940    00054 118
## 941     0014 118
## 942     1312 118
## 943     1375 118
## 944     2960 118
## 945    34178 118
## 946    76874 118
## 947     7788 118
## 948    79646 118
## 949    96091 118
## 950    96190 118
## 951    96555 118
## 952    96673 118
## 953    99173 118
## 954    99816 118
## 955     0497 117
## 956     0533 117
## 957     1501 117
## 958     2494 117
## 959    72682 117
## 960    73798 117
## 961    74034 117
## 962    75488 117
## 963    75965 117
## 964    76102 117
## 965    76986 117
## 966    78946 117
## 967     8639 117
## 968     9096 117
## 969     9202 117
## 970    95359 117
## 971    99248 117
## 972    00372 116
## 973    01130 116
## 974     1063 116
## 975     2954 116
## 976     5907 116
## 977     7120 116
## 978    73875 116
## 979    75257 116
## 980    77196 116
## 981    77309 116
## 982    79574 116
## 983     9236 116
## 984    95108 116
## 985    96181 116
## 986    96593 116
## 987    99864 116
## 988     0715 115
## 989     0795 115
## 990     1231 115
## 991     1298 115
## 992     1748 115
## 993     2704 115
## 994     2968 115
## 995     3168 115
## 996     3632 115
## 997    63881 115
## 998    73249 115
## 999    73867 115
## 1000   75230 115
## 1001   79462 115
## 1002    8921 115
## 1003   94026 115
## 1004   94122 115
## 1005   00386 114
## 1006   00605 114
## 1007   01257 114
## 1008    0275 114
## 1009    0514 114
## 1010    2487 114
## 1011    2837 114
## 1012    2905 114
## 1013    3255 114
## 1014    3377 114
## 1015    7135 114
## 1016   73535 114
## 1017   73748 114
## 1018   76556 114
## 1019   80242 114
## 1020   81393 114
## 1021   81812 114
## 1022    9227 114
## 1023    9256 114
## 1024    9346 114
## 1025   94734 114
## 1026   95259 114
## 1027   96319 114
## 1028   97464 114
## 1029   98018 114
## 1030   98407 114
## 1031   98421 114
## 1032   99957 114
## 1033   01724 113
## 1034   02097 113
## 1035    1725 113
## 1036    2765 113
## 1037    3243 113
## 1038    5396 113
## 1039   77884 113
## 1040   80183 113
## 1041    9172 113
## 1042   94169 113
## 1043    9533 113
## 1044   96004 113
## 1045   98537 113
## 1046   99210 113
## 1047    0076 112
## 1048   01288 112
## 1049   01937 112
## 1050    0694 112
## 1051    1316 112
## 1052    1433 112
## 1053    1462 112
## 1054    2470 112
## 1055    2599 112
## 1056    2630 112
## 1057   42835 112
## 1058   73455 112
## 1059    7411 112
## 1060   75511 112
## 1061   79275 112
## 1062    9457 112
## 1063   96729 112
## 1064    9773 112
## 1065   98259 112
## 1066   99165 112
## 1067   00113 111
## 1068   00294 111
## 1069    0997 111
## 1070    1719 111
## 1071    1820 111
## 1072    2441 111
## 1073    2540 111
## 1074    2877 111
## 1075    3598 111
## 1076   42908 111
## 1077    6241 111
## 1078   75706 111
## 1079   77501 111
## 1080   81713 111
## 1081    8388 111
## 1082    9082 111
## 1083   95781 111
## 1084    9692 111
## 1085   98612 111
## 1086   01431 110
## 1087   01862 110
## 1088    1270 110
## 1089    2343 110
## 1090   74580 110
## 1091   75712 110
## 1092   76999 110
## 1093   83085 110
## 1094   94924 110
## 1095    9997 110
## 1096    0083 109
## 1097   01074 109
## 1098    0345 109
## 1099    0542 109
## 1100    0591 109
## 1101    1858 109
## 1102    2009 109
## 1103    2845 109
## 1104    2871 109
## 1105    3035 109
## 1106    3264 109
## 1107   42651 109
## 1108    6133 109
## 1109   73069 109
## 1110   74112 109
## 1111   77917 109
## 1112    8395 109
## 1113    8681 109
## 1114    8991 109
## 1115    9295 109
## 1116   93961 109
## 1117   94769 109
## 1118   95835 109
## 1119   98802 109
## 1120    0085 108
## 1121    1529 108
## 1122    2842 108
## 1123    3094 108
## 1124    3567 108
## 1125    6614 108
## 1126   78284 108
## 1127   80578 108
## 1128   81543 108
## 1129   94241 108
## 1130   94310 108
## 1131   94693 108
## 1132    9577 108
## 1133   96414 108
## 1134   97450 108
## 1135   97831 108
## 1136   98483 108
## 1137   99964 108
## 1138   00365 107
## 1139    1165 107
## 1140    1760 107
## 1141    1834 107
## 1142    2053 107
## 1143    2336 107
## 1144    2628 107
## 1145    2849 107
## 1146    3275 107
## 1147    3287 107
## 1148    3986 107
## 1149   42780 107
## 1150    5225 107
## 1151    5359 107
## 1152   72859 107
## 1153   73401 107
## 1154   78186 107
## 1155   80100 107
## 1156   81182 107
## 1157   81916 107
## 1158   82912 107
## 1159    9387 107
## 1160   94167 107
## 1161   95023 107
## 1162    9562 107
## 1163   96557 107
## 1164   96785 107
## 1165   97704 107
## 1166    9851 107
## 1167   00371 106
## 1168   01880 106
## 1169   01939 106
## 1170    0521 106
## 1171    0558 106
## 1172    1715 106
## 1173    2181 106
## 1174    2274 106
## 1175    2363 106
## 1176    2505 106
## 1177    2506 106
## 1178    2578 106
## 1179   73107 106
## 1180   73601 106
## 1181   73853 106
## 1182   74250 106
## 1183   74979 106
## 1184   77800 106
## 1185    7828 106
## 1186   78795 106
## 1187   80921 106
## 1188    8135 106
## 1189    8318 106
## 1190    8798 106
## 1191    9005 106
## 1192    9067 106
## 1193   97452 106
## 1194   98283 106
## 1195   99797 106
## 1196   00487 105
## 1197   10885 105
## 1198    1184 105
## 1199    2224 105
## 1200    2394 105
## 1201    2712 105
## 1202    2938 105
## 1203   34531 105
## 1204    4286 105
## 1205   72967 105
## 1206   73971 105
## 1207   74174 105
## 1208   74293 105
## 1209   76863 105
## 1210   79506 105
## 1211    8516 105
## 1212    9102 105
## 1213   94440 105
## 1214   96626 105
## 1215   99756 105
## 1216    0020 104
## 1217    0672 104
## 1218   10439 104
## 1219    1594 104
## 1220   16252 104
## 1221    1766 104
## 1222    1835 104
## 1223    2003 104
## 1224    2607 104
## 1225    2710 104
## 1226    2974 104
## 1227    3084 104
## 1228    3183 104
## 1229    4109 104
## 1230    6654 104
## 1231   72658 104
## 1232   72820 104
## 1233   74695 104
## 1234   81030 104
## 1235   81635 104
## 1236    9220 104
## 1237   95531 104
## 1238   96775 104
## 1239   97742 104
## 1240    9809 104
## 1241   98140 104
## 1242    0317 103
## 1243    0394 103
## 1244    0429 103
## 1245    1622 103
## 1246    1843 103
## 1247    1868 103
## 1248    1914 103
## 1249    3153 103
## 1250    3269 103
## 1251    6072 103
## 1252   73965 103
## 1253   78010 103
## 1254   79743 103
## 1255   81664 103
## 1256   82146 103
## 1257    8291 103
## 1258    8300 103
## 1259    8896 103
## 1260    9192 103
## 1261    9284 103
## 1262    9504 103
## 1263   96263 103
## 1264   97230 103
## 1265   98408 103
## 1266    9867 103
## 1267    9898 103
## 1268    1368 102
## 1269    1610 102
## 1270    1838 102
## 1271    2261 102
## 1272    2644 102
## 1273    3293 102
## 1274    5075 102
## 1275    5460 102
## 1276   62661 102
## 1277   72929 102
## 1278   73157 102
## 1279   77288 102
## 1280    7782 102
## 1281   79041 102
## 1282   80396 102
## 1283   81090 102
## 1284   82399 102
## 1285    8685 102
## 1286    9011 102
## 1287    9046 102
## 1288    9838 102
## 1289   99781 102
## 1290    9996 102
## 1291   00575 101
## 1292   01196 101
## 1293    0376 101
## 1294    1384 101
## 1295    1723 101
## 1296    2006 101
## 1297    2314 101
## 1298    2482 101
## 1299    2784 101
## 1300    2791 101
## 1301    3126 101
## 1302   31409 101
## 1303    5471 101
## 1304   73357 101
## 1305   74215 101
## 1306   79017 101
## 1307   80652 101
## 1308   82795 101
## 1309    8331 101
## 1310    9411 101
## 1311   94528 101
## 1312   94712 101
## 1313   95743 101
## 1314   95796 101
## 1315   96025 101
## 1316   97488 101
## 1317   98543 101
## 1318   98572 101
## 1319   99788 101
## 1320    9987 101
## 1321   00457 100
## 1322   01203 100
## 1323   01836 100
## 1324    0211 100
## 1325    0406 100
## 1326    0437 100
## 1327    1088 100
## 1328    1506 100
## 1329    1790 100
## 1330    2313 100
## 1331    2866 100
## 1332    4450 100
## 1333   76182 100
## 1334   78201 100
## 1335    9114 100
## 1336    9453 100
## 1337   94548 100
## 1338   94644 100
## 1339   95718 100
## 1340   96014 100
## 1341    9887 100
## 1342   00683  99
## 1343   00866  99
## 1344   01039  99
## 1345   02224  99
## 1346    0476  99
## 1347    0496  99
## 1348    0523  99
## 1349    1736  99
## 1350    2278  99
## 1351    2386  99
## 1352    2620  99
## 1353    2667  99
## 1354    3236  99
## 1355    3290  99
## 1356   42539  99
## 1357    4411  99
## 1358    5262  99
## 1359   56793  99
## 1360    6966  99
## 1361   75119  99
## 1362   75177  99
## 1363   76601  99
## 1364   79603  99
## 1365    8019  99
## 1366   80597  99
## 1367    8093  99
## 1368   80932  99
## 1369   81180  99
## 1370    9143  99
## 1371    9175  99
## 1372    9481  99
## 1373   96330  99
## 1374   97478  99
## 1375   97988  99
## 1376    9886  99
## 1377   99098  99
## 1378   99811  99
## 1379   00027  98
## 1380    0066  98
## 1381    0303  98
## 1382    0915  98
## 1383    0959  98
## 1384    1778  98
## 1385    1860  98
## 1386    2584  98
## 1387    2592  98
## 1388    2600  98
## 1389    2729  98
## 1390    3119  98
## 1391    3209  98
## 1392    4039  98
## 1393   42486  98
## 1394    6647  98
## 1395   72736  98
## 1396   73286  98
## 1397   75231  98
## 1398   76449  98
## 1399   76869  98
## 1400   79884  98
## 1401   81795  98
## 1402    8740  98
## 1403    9032  98
## 1404   96005  98
## 1405   97632  98
## 1406    9769  98
## 1407    9791  98
## 1408    0042  97
## 1409    0331  97
## 1410    0344  97
## 1411    0594  97
## 1412    0724  97
## 1413    0989  97
## 1414    1565  97
## 1415    1974  97
## 1416    2290  97
## 1417    2500  97
## 1418    2536  97
## 1419    2882  97
## 1420    3039  97
## 1421    5513  97
## 1422    7051  97
## 1423    7375  97
## 1424   74814  97
## 1425   75535  97
## 1426   76473  97
## 1427   78842  97
## 1428   80535  97
## 1429   80786  97
## 1430    8902  97
## 1431    9058  97
## 1432    9162  97
## 1433   94478  97
## 1434   95261  97
## 1435    9610  97
## 1436    9882  97
## 1437    9966  97
## 1438   00030  96
## 1439    0142  96
## 1440   01794  96
## 1441    0458  96
## 1442    0576  96
## 1443    1355  96
## 1444    2138  96
## 1445    2932  96
## 1446    2973  96
## 1447    3231  96
## 1448   42700  96
## 1449    5592  96
## 1450    7014  96
## 1451   73779  96
## 1452   75448  96
## 1453   75901  96
## 1454   80664  96
## 1455    8094  96
## 1456   81160  96
## 1457   94367  96
## 1458   96535  96
## 1459   98250  96
## 1460    0039  95
## 1461   01126  95
## 1462    0823  95
## 1463    1993  95
## 1464    3041  95
## 1465    3279  95
## 1466   33934  95
## 1467   43325  95
## 1468   72687  95
## 1469   74370  95
## 1470   75540  95
## 1471   75775  95
## 1472    7611  95
## 1473   76125  95
## 1474   76457  95
## 1475   76847  95
## 1476   79742  95
## 1477   79767  95
## 1478   79915  95
## 1479   80247  95
## 1480   80485  95
## 1481    8074  95
## 1482   81420  95
## 1483   81818  95
## 1484    8868  95
## 1485    9040  95
## 1486    9201  95
## 1487    9390  95
## 1488    9443  95
## 1489    9523  95
## 1490   97769  95
## 1491   01546  94
## 1492    0268  94
## 1493    1208  94
## 1494    1799  94
## 1495    1952  94
## 1496    2112  94
## 1497    2240  94
## 1498    2328  94
## 1499    2507  94
## 1500    2896  94
## 1501    2966  94
## 1502    3021  94
## 1503    3233  94
## 1504   42622  94
## 1505    4835  94
## 1506    6575  94
## 1507   73570  94
## 1508   74080  94
## 1509   74657  94
## 1510   77215  94
## 1511   79677  94
## 1512   80154  94
## 1513   80407  94
## 1514   81388  94
## 1515   94050  94
## 1516   94199  94
## 1517    9681  94
## 1518    9705  94
## 1519   97842  94
## 1520   97843  94
## 1521   00286  93
## 1522    0326  93
## 1523    0390  93
## 1524    0442  93
## 1525    0815  93
## 1526    0829  93
## 1527    1079  93
## 1528    2033  93
## 1529    2319  93
## 1530    2403  93
## 1531    2665  93
## 1532    4201  93
## 1533   42800  93
## 1534   43290  93
## 1535   58874  93
## 1536    6938  93
## 1537   72997  93
## 1538   73254  93
## 1539   74698  93
## 1540   75007  93
## 1541   76675  93
## 1542   80651  93
## 1543   81785  93
## 1544    8998  93
## 1545   93981  93
## 1546    9427  93
## 1547    9432  93
## 1548    9456  93
## 1549   94964  93
## 1550    9560  93
## 1551   96381  93
## 1552   97740  93
## 1553   97844  93
## 1554    9922  93
## 1555   99861  93
## 1556   00073  92
## 1557    0065  92
## 1558   02111  92
## 1559    0271  92
## 1560    0369  92
## 1561    0729  92
## 1562    0847  92
## 1563    1057  92
## 1564    1163  92
## 1565    2522  92
## 1566    2538  92
## 1567    2724  92
## 1568    3097  92
## 1569    3135  92
## 1570    3289  92
## 1571   34453  92
## 1572    4400  92
## 1573    4432  92
## 1574    7179  92
## 1575   76016  92
## 1576    7719  92
## 1577   78689  92
## 1578    9117  92
## 1579    9150  92
## 1580    9170  92
## 1581   94861  92
## 1582    9516  92
## 1583   96007  92
## 1584   98402  92
## 1585   99707  92
## 1586    0144  91
## 1587   02019  91
## 1588    0519  91
## 1589    0768  91
## 1590    0803  91
## 1591    0943  91
## 1592    0953  91
## 1593    1123  91
## 1594   11588  91
## 1595   12372  91
## 1596    1307  91
## 1597    1826  91
## 1598    2065  91
## 1599    2120  91
## 1600    2887  91
## 1601    2972  91
## 1602    3251  91
## 1603   34517  91
## 1604   73322  91
## 1605   74508  91
## 1606   77796  91
## 1607   78678  91
## 1608   80286  91
## 1609    8145  91
## 1610   83023  91
## 1611   83142  91
## 1612    8907  91
## 1613   95526  91
## 1614   97857  91
## 1615    9817  91
## 1616    0084  90
## 1617    0452  90
## 1618    0571  90
## 1619    0667  90
## 1620    1232  90
## 1621    1261  90
## 1622    1411  90
## 1623    1854  90
## 1624    1918  90
## 1625    2770  90
## 1626   30625  90
## 1627    3075  90
## 1628    3207  90
## 1629   34670  90
## 1630    3917  90
## 1631   42611  90
## 1632   74115  90
## 1633   74375  90
## 1634   77198  90
## 1635   77333  90
## 1636   82242  90
## 1637   82531  90
## 1638    8882  90
## 1639    9184  90
## 1640    9331  90
## 1641   95532  90
## 1642   96462  90
## 1643    9754  90
## 1644    9785  90
## 1645   98228  90
## 1646    9830  90
## 1647   98493  90
## 1648   01098  89
## 1649    0200  89
## 1650    0204  89
## 1651    0238  89
## 1652    0583  89
## 1653    0794  89
## 1654    1272  89
## 1655    2466  89
## 1656    3040  89
## 1657    3068  89
## 1658    3283  89
## 1659   42718  89
## 1660    4516  89
## 1661   72980  89
## 1662   73063  89
## 1663   75046  89
## 1664   77410  89
## 1665   95203  89
## 1666   98814  89
## 1667    0049  88
## 1668   00800  88
## 1669    0544  88
## 1670    0668  88
## 1671    0739  88
## 1672    0970  88
## 1673   11332  88
## 1674    1536  88
## 1675    1864  88
## 1676    2052  88
## 1677    2122  88
## 1678    2475  88
## 1679    2515  88
## 1680    3375  88
## 1681   43287  88
## 1682    6083  88
## 1683    6220  88
## 1684    6317  88
## 1685    6809  88
## 1686    7150  88
## 1687   72751  88
## 1688   74763  88
## 1689   74792  88
## 1690    7708  88
## 1691   77208  88
## 1692   77587  88
## 1693   81317  88
## 1694   97316  88
## 1695   98125  88
## 1696   00391  87
## 1697    0471  87
## 1698    0607  87
## 1699    1150  87
## 1700    1228  87
## 1701    1391  87
## 1702    1847  87
## 1703    1982  87
## 1704    2049  87
## 1705    2203  87
## 1706    2241  87
## 1707    2621  87
## 1708    2779  87
## 1709    3057  87
## 1710   42331  87
## 1711   43082  87
## 1712    4842  87
## 1713    7213  87
## 1714   75857  87
## 1715   76452  87
## 1716    7677  87
## 1717   77286  87
## 1718   80280  87
## 1719    8057  87
## 1720    8144  87
## 1721    8539  87
## 1722    8987  87
## 1723    9482  87
## 1724    9556  87
## 1725   96112  87
## 1726   96792  87
## 1727    9721  87
## 1728    9750  87
## 1729   98071  87
## 1730    9889  87
## 1731   01685  86
## 1732    0210  86
## 1733    0237  86
## 1734    0240  86
## 1735    0707  86
## 1736    1366  86
## 1737    2142  86
## 1738    2690  86
## 1739    3024  86
## 1740    4356  86
## 1741    4959  86
## 1742    5152  86
## 1743    5543  86
## 1744    5729  86
## 1745    6079  86
## 1746    6672  86
## 1747    6791  86
## 1748   73963  86
## 1749   74900  86
## 1750   75651  86
## 1751    7657  86
## 1752    7809  86
## 1753   78696  86
## 1754   80004  86
## 1755    8871  86
## 1756    9488  86
## 1757    9529  86
## 1758    9664  86
## 1759    0346  85
## 1760    0470  85
## 1761    0505  85
## 1762    1814  85
## 1763    1831  85
## 1764    2060  85
## 1765    2231  85
## 1766    2273  85
## 1767    2401  85
## 1768    2463  85
## 1769    2512  85
## 1770    2545  85
## 1771    2792  85
## 1772    2822  85
## 1773    2864  85
## 1774    3345  85
## 1775   35017  85
## 1776    3877  85
## 1777   42912  85
## 1778   43182  85
## 1779    4996  85
## 1780   54271  85
## 1781    5576  85
## 1782   72782  85
## 1783   74748  85
## 1784    7662  85
## 1785   77470  85
## 1786    7770  85
## 1787    7836  85
## 1788    7867  85
## 1789   79873  85
## 1790   81116  85
## 1791    8131  85
## 1792   81859  85
## 1793   83179  85
## 1794    9070  85
## 1795   94581  85
## 1796    9748  85
## 1797   98306  85
## 1798    9909  85
## 1799    0581  84
## 1800    0630  84
## 1801    2588  84
## 1802    2718  84
## 1803    2818  84
## 1804    2921  84
## 1805    3076  84
## 1806   31225  84
## 1807   33557  84
## 1808   43087  84
## 1809    4614  84
## 1810    4958  84
## 1811    5166  84
## 1812    5214  84
## 1813   56108  84
## 1814    6438  84
## 1815   73005  84
## 1816   73496  84
## 1817    7432  84
## 1818   74994  84
## 1819   75163  84
## 1820   76301  84
## 1821   80337  84
## 1822   80426  84
## 1823   82759  84
## 1824   82926  84
## 1825    9377  84
## 1826   95758  84
## 1827    9623  84
## 1828    9648  84
## 1829   96865  84
## 1830   97612  84
## 1831    9834  84
## 1832    9844  84
## 1833   98561  84
## 1834    9859  84
## 1835    9908  84
## 1836    9940  84
## 1837   00062  83
## 1838    0508  83
## 1839    0834  83
## 1840    0841  83
## 1841    1164  83
## 1842    1190  83
## 1843    1349  83
## 1844    1479  83
## 1845    1671  83
## 1846    2591  83
## 1847    2633  83
## 1848    2671  83
## 1849    2863  83
## 1850    2897  83
## 1851    2909  83
## 1852    3162  83
## 1853    3257  83
## 1854   34713  83
## 1855    3596  83
## 1856    3747  83
## 1857   42516  83
## 1858   42830  83
## 1859   43323  83
## 1860   43520  83
## 1861    4647  83
## 1862    7058  83
## 1863    7281  83
## 1864    7577  83
## 1865   76043  83
## 1866   77299  83
## 1867    7791  83
## 1868   79140  83
## 1869   79186  83
## 1870    8045  83
## 1871   81286  83
## 1872   82413  83
## 1873    8949  83
## 1874    9123  83
## 1875    9187  83
## 1876    9352  83
## 1877   94596  83
## 1878    9549  83
## 1879   99158  83
## 1880   01238  82
## 1881    1183  82
## 1882    1603  82
## 1883    1756  82
## 1884    1971  82
## 1885    2179  82
## 1886    2302  82
## 1887    3012  82
## 1888    3099  82
## 1889    3372  82
## 1890   33819  82
## 1891   34753  82
## 1892   43652  82
## 1893    4501  82
## 1894    4640  82
## 1895    5666  82
## 1896    6909  82
## 1897    7144  82
## 1898   72713  82
## 1899   73089  82
## 1900   73901  82
## 1901   76114  82
## 1902   76235  82
## 1903    7726  82
## 1904    7741  82
## 1905   82294  82
## 1906   83060  82
## 1907    9120  82
## 1908    9362  82
## 1909   94579  82
## 1910    9645  82
## 1911    9862  82
## 1912    9923  82
## 1913    9938  82
## 1914    1004  81
## 1915    1219  81
## 1916    1379  81
## 1917    1734  81
## 1918    1872  81
## 1919    2321  81
## 1920    2902  81
## 1921    2923  81
## 1922    3954  81
## 1923   42594  81
## 1924   42634  81
## 1925    4564  81
## 1926   51657  81
## 1927    6008  81
## 1928    6212  81
## 1929   74155  81
## 1930   74738  81
## 1931   74968  81
## 1932   76284  81
## 1933   76525  81
## 1934   77474  81
## 1935   77737  81
## 1936   79492  81
## 1937    8118  81
## 1938    8898  81
## 1939    9376  81
## 1940    9435  81
## 1941    0009  80
## 1942    0092  80
## 1943    0188  80
## 1944    0649  80
## 1945    0653  80
## 1946    1460  80
## 1947   14650  80
## 1948    1917  80
## 1949    2364  80
## 1950    2546  80
## 1951    2577  80
## 1952    2740  80
## 1953    2768  80
## 1954    2776  80
## 1955    2880  80
## 1956    3111  80
## 1957    3188  80
## 1958   35034  80
## 1959    3529  80
## 1960    5131  80
## 1961   53062  80
## 1962    5549  80
## 1963   73527  80
## 1964   74336  80
## 1965   75941  80
## 1966   75988  80
## 1967    7878  80
## 1968    8104  80
## 1969    8532  80
## 1970    8933  80
## 1971    9083  80
## 1972    9108  80
## 1973    9379  80
## 1974   95338  80
## 1975    9854  80
## 1976    9881  80
## 1977   99045  80
## 1978   01870  79
## 1979    0274  79
## 1980    0554  79
## 1981    1634  79
## 1982    1796  79
## 1983    1857  79
## 1984    2353  79
## 1985    2467  79
## 1986    2570  79
## 1987    2615  79
## 1988    2989  79
## 1989    3090  79
## 1990    3104  79
## 1991   33755  79
## 1992   34975  79
## 1993    3518  79
## 1994    3911  79
## 1995    3921  79
## 1996    3923  79
## 1997    4970  79
## 1998    6224  79
## 1999    6674  79
## 2000   73418  79
## 2001   74582  79
## 2002   76055  79
## 2003    7775  79
## 2004    9338  79
## 2005    9343  79
## 2006    9459  79
## 2007    9835  79
## 2008    0166  78
## 2009    0933  78
## 2010    0954  78
## 2011    1306  78
## 2012    2547  78
## 2013    2603  78
## 2014    2727  78
## 2015    2815  78
## 2016    2997  78
## 2017    3056  78
## 2018   34311  78
## 2019    3930  78
## 2020    3933  78
## 2021   52808  78
## 2022   54792  78
## 2023    6036  78
## 2024    7074  78
## 2025   73247  78
## 2026   75209  78
## 2027   76209  78
## 2028   82861  78
## 2029    9085  78
## 2030   95520  78
## 2031   97794  78
## 2032    9808  78
## 2033   98154  78
## 2034    9918  78
## 2035   01511  77
## 2036    0462  77
## 2037    0467  77
## 2038    0511  77
## 2039    0845  77
## 2040    1005  77
## 2041    1563  77
## 2042    1811  77
## 2043    1931  77
## 2044    2260  77
## 2045    2548  77
## 2046    2583  77
## 2047    2601  77
## 2048    2733  77
## 2049    2870  77
## 2050    3029  77
## 2051   32024  77
## 2052    3626  77
## 2053    4701  77
## 2054    5045  77
## 2055    5832  77
## 2056    5968  77
## 2057    6323  77
## 2058    6472  77
## 2059    6851  77
## 2060    6976  77
## 2061    7064  77
## 2062   72988  77
## 2063   73083  77
## 2064   74612  77
## 2065   79671  77
## 2066    8219  77
## 2067    8249  77
## 2068    9243  77
## 2069    9642  77
## 2070   98899  77
## 2071    9927  77
## 2072    0090  76
## 2073    1060  76
## 2074    1067  76
## 2075    1444  76
## 2076    1758  76
## 2077    1813  76
## 2078   18861  76
## 2079    2044  76
## 2080    2064  76
## 2081    2129  76
## 2082    2151  76
## 2083    2255  76
## 2084    2344  76
## 2085    2474  76
## 2086    2693  76
## 2087    2716  76
## 2088    2738  76
## 2089    2741  76
## 2090    3080  76
## 2091   33617  76
## 2092   34673  76
## 2093   34715  76
## 2094    3818  76
## 2095    4217  76
## 2096    4648  76
## 2097    5068  76
## 2098    5958  76
## 2099    7054  76
## 2100   72979  76
## 2101   73075  76
## 2102    7364  76
## 2103   73931  76
## 2104   74896  76
## 2105   76797  76
## 2106    8208  76
## 2107   83189  76
## 2108    8534  76
## 2109    8866  76
## 2110    8917  76
## 2111    9444  76
## 2112    9445  76
## 2113   94513  76
## 2114    0248  75
## 2115    0466  75
## 2116    0825  75
## 2117    0876  75
## 2118    1054  75
## 2119    1178  75
## 2120    1344  75
## 2121    1459  75
## 2122    1561  75
## 2123    1644  75
## 2124    2301  75
## 2125    2709  75
## 2126    2787  75
## 2127    3214  75
## 2128    4335  75
## 2129    4531  75
## 2130    4672  75
## 2131   48547  75
## 2132    5077  75
## 2133    5458  75
## 2134    5949  75
## 2135    6121  75
## 2136    6624  75
## 2137    6997  75
## 2138    7355  75
## 2139   75145  75
## 2140   75534  75
## 2141   77204  75
## 2142   79591  75
## 2143    8009  75
## 2144    8788  75
## 2145    9392  75
## 2146   94567  75
## 2147   96160  75
## 2148   96967  75
## 2149    9795  75
## 2150    9992  75
## 2151    0447  74
## 2152    0488  74
## 2153    0840  74
## 2154    0891  74
## 2155    0903  74
## 2156    0941  74
## 2157    1470  74
## 2158    1728  74
## 2159    1752  74
## 2160    1800  74
## 2161   23745  74
## 2162    2492  74
## 2163    2950  74
## 2164    3116  74
## 2165    3148  74
## 2166    3186  74
## 2167    3277  74
## 2168    3280  74
## 2169    3362  74
## 2170    3403  74
## 2171   34155  74
## 2172    3473  74
## 2173    3833  74
## 2174    3876  74
## 2175    4064  74
## 2176    4083  74
## 2177    4500  74
## 2178   47519  74
## 2179    4918  74
## 2180   50489  74
## 2181    5462  74
## 2182    5736  74
## 2183    7111  74
## 2184   72817  74
## 2185   74646  74
## 2186   75784  74
## 2187   76230  74
## 2188   76930  74
## 2189    7804  74
## 2190   79913  74
## 2191   81746  74
## 2192   81897  74
## 2193   82529  74
## 2194    8254  74
## 2195    8363  74
## 2196    8403  74
## 2197    8837  74
## 2198    9403  74
## 2199   95014  74
## 2200   95020  74
## 2201    9546  74
## 2202    9613  74
## 2203    9644  74
## 2204   99015  74
## 2205   99230  74
## 2206    9994  74
## 2207    0156  73
## 2208    0218  73
## 2209    0665  73
## 2210    0865  73
## 2211    1446  73
## 2212    1842  73
## 2213    1997  73
## 2214    2299  73
## 2215    2587  73
## 2216    2747  73
## 2217   30183  73
## 2218    3032  73
## 2219   31100  73
## 2220    3145  73
## 2221    3392  73
## 2222    3400  73
## 2223   35051  73
## 2224    4012  73
## 2225    4021  73
## 2226    4154  73
## 2227   42476  73
## 2228    4760  73
## 2229   55049  73
## 2230   56323  73
## 2231    5823  73
## 2232    6089  73
## 2233   73812  73
## 2234   74179  73
## 2235    7439  73
## 2236   76067  73
## 2237    7808  73
## 2238   82702  73
## 2239    8597  73
## 2240    9089  73
## 2241    9372  73
## 2242   95568  73
## 2243    9744  73
## 2244    9780  73
## 2245    0189  72
## 2246    0498  72
## 2247   08112  72
## 2248    0821  72
## 2249    1162  72
## 2250    1254  72
## 2251    1477  72
## 2252    1528  72
## 2253    1722  72
## 2254    2115  72
## 2255    2248  72
## 2256    2743  72
## 2257    2910  72
## 2258    2986  72
## 2259    3059  72
## 2260    3125  72
## 2261   34657  72
## 2262   35073  72
## 2263    3659  72
## 2264    4160  72
## 2265    4555  72
## 2266    5530  72
## 2267    6350  72
## 2268    6842  72
## 2269    6960  72
## 2270   72855  72
## 2271   74284  72
## 2272    7601  72
## 2273   76193  72
## 2274    7718  72
## 2275   80184  72
## 2276    8278  72
## 2277    9235  72
## 2278    9300  72
## 2279    9803  72
## 2280    9804  72
## 2281    9975  72
## 2282    0071  71
## 2283    0107  71
## 2284    0552  71
## 2285    0718  71
## 2286    0910  71
## 2287    0951  71
## 2288    1508  71
## 2289    1526  71
## 2290    1609  71
## 2291    1630  71
## 2292    1769  71
## 2293    2121  71
## 2294    2229  71
## 2295    2350  71
## 2296    2543  71
## 2297    2728  71
## 2298   31604  71
## 2299    3169  71
## 2300    3265  71
## 2301    3387  71
## 2302   34533  71
## 2303    3936  71
## 2304    4032  71
## 2305    4078  71
## 2306    4080  71
## 2307    5067  71
## 2308   53000  71
## 2309    5418  71
## 2310   54832  71
## 2311    5586  71
## 2312    5735  71
## 2313    5920  71
## 2314   64238  71
## 2315   75413  71
## 2316   75719  71
## 2317   76759  71
## 2318    7703  71
## 2319   77411  71
## 2320    7854  71
## 2321    7859  71
## 2322    8076  71
## 2323    8164  71
## 2324    8221  71
## 2325   82456  71
## 2326    8390  71
## 2327   86898  71
## 2328    9104  71
## 2329   95521  71
## 2330   95690  71
## 2331    9578  71
## 2332   97383  71
## 2333   98682  71
## 2334   01343  70
## 2335    0153  70
## 2336   02069  70
## 2337    0353  70
## 2338    0564  70
## 2339    0702  70
## 2340    0802  70
## 2341    1861  70
## 2342    2195  70
## 2343    2438  70
## 2344    2883  70
## 2345    3150  70
## 2346    3487  70
## 2347    3493  70
## 2348   34954  70
## 2349    3788  70
## 2350    4668  70
## 2351    6683  70
## 2352   72739  70
## 2353   75782  70
## 2354   76228  70
## 2355   76365  70
## 2356   76454  70
## 2357    7694  70
## 2358    7738  70
## 2359   80905  70
## 2360    8106  70
## 2361   81927  70
## 2362   83292  70
## 2363    8893  70
## 2364    8942  70
## 2365    9250  70
## 2366    9624  70
## 2367    9670  70
## 2368   97039  70
## 2369    0064  69
## 2370    0161  69
## 2371    0194  69
## 2372    0195  69
## 2373    0364  69
## 2374    0551  69
## 2375    0633  69
## 2376    0975  69
## 2377    1062  69
## 2378    1099  69
## 2379    1553  69
## 2380    2106  69
## 2381    2377  69
## 2382    2471  69
## 2383    2572  69
## 2384    2589  69
## 2385    2623  69
## 2386    2825  69
## 2387    2934  69
## 2388    3066  69
## 2389    3067  69
## 2390    3203  69
## 2391   33996  69
## 2392   34755  69
## 2393    3864  69
## 2394    3878  69
## 2395   42632  69
## 2396    4498  69
## 2397    5156  69
## 2398    5258  69
## 2399    5708  69
## 2400    6087  69
## 2401    7133  69
## 2402   72849  69
## 2403   73332  69
## 2404    7403  69
## 2405   74150  69
## 2406   75050  69
## 2407   77592  69
## 2408    7899  69
## 2409    8457  69
## 2410    8937  69
## 2411    9065  69
## 2412    9335  69
## 2413    9421  69
## 2414    9518  69
## 2415    9757  69
## 2416    9764  69
## 2417    9856  69
## 2418    0086  68
## 2419   01920  68
## 2420    0205  68
## 2421    0207  68
## 2422    1002  68
## 2423    1136  68
## 2424    1297  68
## 2425    1385  68
## 2426    1802  68
## 2427    1943  68
## 2428    2341  68
## 2429    2503  68
## 2430    2528  68
## 2431    2855  68
## 2432    3025  68
## 2433   34977  68
## 2434    4015  68
## 2435    4054  68
## 2436    4798  68
## 2437    5035  68
## 2438    5630  68
## 2439    6017  68
## 2440    6127  68
## 2441    6491  68
## 2442    6879  68
## 2443    7530  68
## 2444   75722  68
## 2445   76376  68
## 2446   76464  68
## 2447   76624  68
## 2448    7799  68
## 2449   79169  68
## 2450    8452  68
## 2451    8763  68
## 2452    9263  68
## 2453    9423  68
## 2454   95263  68
## 2455    9607  68
## 2456    9833  68
## 2457    0031  67
## 2458    0077  67
## 2459    0094  67
## 2460    0114  67
## 2461    0213  67
## 2462    0660  67
## 2463    0927  67
## 2464    1717  67
## 2465    1893  67
## 2466    1999  67
## 2467    2023  67
## 2468    2073  67
## 2469    2564  67
## 2470    2593  67
## 2471    2711  67
## 2472    2771  67
## 2473    2833  67
## 2474    2874  67
## 2475    2991  67
## 2476    3394  67
## 2477   34731  67
## 2478    3692  67
## 2479    4224  67
## 2480   42593  67
## 2481   43277  67
## 2482   43600  67
## 2483    5144  67
## 2484    5962  67
## 2485    6511  67
## 2486    6667  67
## 2487    7233  67
## 2488   74063  67
## 2489    7477  67
## 2490    7605  67
## 2491   77311  67
## 2492    7814  67
## 2493    8115  67
## 2494    9282  67
## 2495    0038  66
## 2496    0068  66
## 2497    0260  66
## 2498    0631  66
## 2499    0690  66
## 2500    0913  66
## 2501    0993  66
## 2502    1042  66
## 2503    1304  66
## 2504    1401  66
## 2505    1407  66
## 2506    1747  66
## 2507    1942  66
## 2508    2136  66
## 2509   24997  66
## 2510    2876  66
## 2511    2895  66
## 2512    2928  66
## 2513    3010  66
## 2514   34772  66
## 2515    3772  66
## 2516    3824  66
## 2517    4143  66
## 2518   42552  66
## 2519    4820  66
## 2520    4896  66
## 2521    5126  66
## 2522    5228  66
## 2523    6053  66
## 2524   60591  66
## 2525    6162  66
## 2526    6454  66
## 2527    6891  66
## 2528    7045  66
## 2529    7372  66
## 2530    7373  66
## 2531   73972  66
## 2532   74626  66
## 2533   75878  66
## 2534   76707  66
## 2535   77339  66
## 2536   78691  66
## 2537    8086  66
## 2538   80998  66
## 2539    8166  66
## 2540    9056  66
## 2541    9146  66
## 2542    9503  66
## 2543    9525  66
## 2544    9579  66
## 2545    9696  66
## 2546    9900  66
## 2547    0129  65
## 2548    0136  65
## 2549    0341  65
## 2550    0692  65
## 2551    0733  65
## 2552    1350  65
## 2553    1356  65
## 2554    1436  65
## 2555    1491  65
## 2556    1531  65
## 2557   17080  65
## 2558    2152  65
## 2559    2335  65
## 2560    2803  65
## 2561   34477  65
## 2562   34794  65
## 2563    3929  65
## 2564    3979  65
## 2565    4001  65
## 2566   42559  65
## 2567    4258  65
## 2568   43061  65
## 2569    4561  65
## 2570    5114  65
## 2571    5384  65
## 2572    5582  65
## 2573    5993  65
## 2574    6476  65
## 2575    6633  65
## 2576    6907  65
## 2577    7166  65
## 2578   73058  65
## 2579    7428  65
## 2580   75420  65
## 2581   75446  65
## 2582   76314  65
## 2583   77085  65
## 2584   77367  65
## 2585   77554  65
## 2586    7893  65
## 2587    8096  65
## 2588    9557  65
## 2589   96815  65
## 2590    0036  64
## 2591    0277  64
## 2592    1167  64
## 2593    1177  64
## 2594    2126  64
## 2595    2246  64
## 2596    2351  64
## 2597    2490  64
## 2598    2562  64
## 2599    2725  64
## 2600    2766  64
## 2601    2811  64
## 2602    2903  64
## 2603    3038  64
## 2604   33818  64
## 2605   34416  64
## 2606    4244  64
## 2607    4825  64
## 2608    5050  64
## 2609    5079  64
## 2610   53376  64
## 2611    5453  64
## 2612   57450  64
## 2613    5790  64
## 2614    5818  64
## 2615    6067  64
## 2616    6552  64
## 2617    7002  64
## 2618    7043  64
## 2619   72943  64
## 2620   75423  64
## 2621   76816  64
## 2622    7723  64
## 2623   79632  64
## 2624    8146  64
## 2625    8528  64
## 2626    9430  64
## 2627   94525  64
## 2628    0105  63
## 2629    0397  63
## 2630    0410  63
## 2631    0837  63
## 2632    0846  63
## 2633    0940  63
## 2634    0982  63
## 2635    1142  63
## 2636    1486  63
## 2637    1738  63
## 2638    2477  63
## 2639    2493  63
## 2640    2525  63
## 2641    2533  63
## 2642    2812  63
## 2643    3052  63
## 2644   31248  63
## 2645    3213  63
## 2646    3220  63
## 2647    3398  63
## 2648   34733  63
## 2649    3899  63
## 2650    3901  63
## 2651    4170  63
## 2652   52077  63
## 2653    5354  63
## 2654   56052  63
## 2655    6151  63
## 2656    6329  63
## 2657    7077  63
## 2658   74103  63
## 2659   74440  63
## 2660   76796  63
## 2661   76876  63
## 2662   77059  63
## 2663    7736  63
## 2664    7890  63
## 2665    8199  63
## 2666    8282  63
## 2667   82993  63
## 2668    8884  63
## 2669    8923  63
## 2670    9078  63
## 2671    9191  63
## 2672    9365  63
## 2673   94652  63
## 2674    9586  63
## 2675    9858  63
## 2676    9944  63
## 2677    0040  62
## 2678    0176  62
## 2679    0956  62
## 2680    0957  62
## 2681    1320  62
## 2682    1537  62
## 2683    1707  62
## 2684    1776  62
## 2685    1803  62
## 2686    1983  62
## 2687    2128  62
## 2688    2232  62
## 2689    2679  62
## 2690   27373  62
## 2691    3014  62
## 2692    3232  62
## 2693    4014  62
## 2694    4525  62
## 2695    4779  62
## 2696    5091  62
## 2697    5215  62
## 2698    5292  62
## 2699    6128  62
## 2700    6209  62
## 2701    6379  62
## 2702    6440  62
## 2703    6773  62
## 2704    7088  62
## 2705   73827  62
## 2706   74095  62
## 2707   74256  62
## 2708   74694  62
## 2709    7526  62
## 2710   75645  62
## 2711   76166  62
## 2712   76605  62
## 2713    7793  62
## 2714    7797  62
## 2715   81428  62
## 2716    8727  62
## 2717    9031  62
## 2718    9478  62
## 2719    9507  62
## 2720    9698  62
## 2721    9876  62
## 2722    9982  62
## 2723    0527  61
## 2724    0604  61
## 2725    0869  61
## 2726    0928  61
## 2727    0983  61
## 2728    1006  61
## 2729    1159  61
## 2730    1499  61
## 2731    1944  61
## 2732    2204  61
## 2733    2366  61
## 2734    2455  61
## 2735    2509  61
## 2736    2755  61
## 2737    2810  61
## 2738   29181  61
## 2739    2977  61
## 2740    3132  61
## 2741    3140  61
## 2742   34394  61
## 2743    3744  61
## 2744    3989  61
## 2745   43185  61
## 2746    5017  61
## 2747    5055  61
## 2748   50722  61
## 2749    5468  61
## 2750    5489  61
## 2751    5589  61
## 2752    5602  61
## 2753    5738  61
## 2754    6230  61
## 2755    6721  61
## 2756    6746  61
## 2757   72748  61
## 2758   73229  61
## 2759    7345  61
## 2760   74009  61
## 2761   74609  61
## 2762    7531  61
## 2763    8142  61
## 2764   82047  61
## 2765    8392  61
## 2766    9768  61
## 2767    9850  61
## 2768    0531  60
## 2769    0995  60
## 2770    1482  60
## 2771    1940  60
## 2772    2272  60
## 2773    2642  60
## 2774    2689  60
## 2775    2824  60
## 2776    2943  60
## 2777    2982  60
## 2778    3262  60
## 2779   34094  60
## 2780   34131  60
## 2781    4232  60
## 2782    4284  60
## 2783    4294  60
## 2784   43644  60
## 2785    5072  60
## 2786    5206  60
## 2787    5491  60
## 2788   55603  60
## 2789    5813  60
## 2790    5833  60
## 2791    5918  60
## 2792    6013  60
## 2793    6101  60
## 2794    6334  60
## 2795    6336  60
## 2796    6345  60
## 2797    6953  60
## 2798    7239  60
## 2799   72909  60
## 2800   75213  60
## 2801   77063  60
## 2802    8260  60
## 2803    9109  60
## 2804    9257  60
## 2805    9304  60
## 2806    9582  60
## 2807    9639  60
## 2808    0162  59
## 2809    0587  59
## 2810    0647  59
## 2811    0736  59
## 2812    0942  59
## 2813    0958  59
## 2814   10049  59
## 2815   10241  59
## 2816    1036  59
## 2817    1214  59
## 2818    1753  59
## 2819    1761  59
## 2820    2014  59
## 2821    2893  59
## 2822   31364  59
## 2823    3180  59
## 2824    3276  59
## 2825   33912  59
## 2826   34573  59
## 2827   34972  59
## 2828    3675  59
## 2829    3797  59
## 2830   43151  59
## 2831    4354  59
## 2832   44951  59
## 2833    4681  59
## 2834    4753  59
## 2835    4757  59
## 2836    5145  59
## 2837    5490  59
## 2838    5562  59
## 2839   58265  59
## 2840   59867  59
## 2841    6483  59
## 2842    6696  59
## 2843   73275  59
## 2844   74625  59
## 2845    7508  59
## 2846    7541  59
## 2847   76061  59
## 2848   76895  59
## 2849    9302  59
## 2850    9450  59
## 2851   94524  59
## 2852   95015  59
## 2853    0024  58
## 2854    0158  58
## 2855    0616  58
## 2856    1093  58
## 2857    1310  58
## 2858    1326  58
## 2859    1347  58
## 2860    1560  58
## 2861    1743  58
## 2862    1749  58
## 2863    2054  58
## 2864    2068  58
## 2865    2175  58
## 2866    2393  58
## 2867    2821  58
## 2868    2978  58
## 2869    3218  58
## 2870    3356  58
## 2871    3495  58
## 2872    3619  58
## 2873    4004  58
## 2874    4031  58
## 2875    4086  58
## 2876    4106  58
## 2877   42794  58
## 2878   47359  58
## 2879    5202  58
## 2880    5227  58
## 2881    5975  58
## 2882    6103  58
## 2883    6273  58
## 2884    6314  58
## 2885    6348  58
## 2886    6621  58
## 2887    6917  58
## 2888    6955  58
## 2889   73034  58
## 2890   73989  58
## 2891   74030  58
## 2892   74058  58
## 2893    7431  58
## 2894   74645  58
## 2895   74998  58
## 2896   75307  58
## 2897   76461  58
## 2898   76518  58
## 2899   76794  58
## 2900    7743  58
## 2901    8139  58
## 2902    8289  58
## 2903    9029  58
## 2904   94233  58
## 2905    9544  58
## 2906    9635  58
## 2907    9960  58
## 2908    0104  57
## 2909    0106  57
## 2910    0122  57
## 2911    0784  57
## 2912    0898  57
## 2913    1518  57
## 2914    1793  57
## 2915    1876  57
## 2916    2245  57
## 2917    2563  57
## 2918    2981  57
## 2919    3274  57
## 2920    3340  57
## 2921    3351  57
## 2922    3353  57
## 2923   33973  57
## 2924   34032  57
## 2925   34716  57
## 2926    3587  57
## 2927    3825  57
## 2928   42712  57
## 2929    4735  57
## 2930   47473  57
## 2931    4857  57
## 2932    4989  57
## 2933    5239  57
## 2934    5988  57
## 2935    6856  57
## 2936    7557  57
## 2937   76581  57
## 2938   77153  57
## 2939   77393  57
## 2940    7853  57
## 2941    8477  57
## 2942    8633  57
## 2943    8906  57
## 2944    9410  57
## 2945    9558  57
## 2946   96660  57
## 2947   00948  56
## 2948    0178  56
## 2949    0888  56
## 2950    2435  56
## 2951    2495  56
## 2952    2680  56
## 2953    2919  56
## 2954    3022  56
## 2955   31243  56
## 2956   31709  56
## 2957    3174  56
## 2958    3245  56
## 2959    3282  56
## 2960   33757  56
## 2961   34712  56
## 2962    3775  56
## 2963   42695  56
## 2964   43121  56
## 2965    4344  56
## 2966    4737  56
## 2967    5016  56
## 2968    5111  56
## 2969    5299  56
## 2970   54999  56
## 2971   57694  56
## 2972    6211  56
## 2973    6442  56
## 2974    6482  56
## 2975    6932  56
## 2976   75043  56
## 2977   75128  56
## 2978   75314  56
## 2979   75539  56
## 2980   75678  56
## 2981   76477  56
## 2982    8690  56
## 2983    8833  56
## 2984    9394  56
## 2985   96646  56
## 2986    9885  56
## 2987    0263  55
## 2988    0506  55
## 2989    1591  55
## 2990    2794  55
## 2991   30484  55
## 2992    3133  55
## 2993   35015  55
## 2994    3620  55
## 2995    3710  55
## 2996    3814  55
## 2997   42792  55
## 2998    4884  55
## 2999    5112  55
## 3000    5159  55
## 3001    6156  55
## 3002    6337  55
## 3003    6524  55
## 3004    6676  55
## 3005    6769  55
## 3006    7090  55
## 3007   73018  55
## 3008    7400  55
## 3009   74142  55
## 3010   76163  55
## 3011   77438  55
## 3012    9112  55
## 3013    9280  55
## 3014    9554  55
## 3015    9852  55
## 3016    9891  55
## 3017    9919  55
## 3018    9971  55
## 3019    0455  54
## 3020    0828  54
## 3021    1301  54
## 3022    1492  54
## 3023    1516  54
## 3024    1562  54
## 3025    1626  54
## 3026   16635  54
## 3027    2608  54
## 3028    2719  54
## 3029    2823  54
## 3030    2990  54
## 3031   31262  54
## 3032    3181  54
## 3033    3201  54
## 3034    3286  54
## 3035   34957  54
## 3036    3829  54
## 3037    3978  54
## 3038    3990  54
## 3039   43298  54
## 3040   43786  54
## 3041    4409  54
## 3042    4841  54
## 3043    4859  54
## 3044    5704  54
## 3045    6503  54
## 3046    6525  54
## 3047    6921  54
## 3048    7210  54
## 3049    7234  54
## 3050   72769  54
## 3051    7368  54
## 3052   74107  54
## 3053    7722  54
## 3054   77581  54
## 3055    7790  54
## 3056    7848  54
## 3057    8207  54
## 3058    8832  54
## 3059    9145  54
## 3060    9609  54
## 3061    9663  54
## 3062    9686  54
## 3063    9747  54
## 3064    9970  54
## 3065    0019  53
## 3066    0259  53
## 3067    0713  53
## 3068   10175  53
## 3069    1051  53
## 3070    1230  53
## 3071    1483  53
## 3072    1788  53
## 3073    2320  53
## 3074    2574  53
## 3075    2668  53
## 3076    2692  53
## 3077    2775  53
## 3078    2907  53
## 3079   31024  53
## 3080   31125  53
## 3081   32487  53
## 3082    3344  53
## 3083   33634  53
## 3084   34136  53
## 3085    4228  53
## 3086   43295  53
## 3087    4364  53
## 3088   43803  53
## 3089    5105  53
## 3090    5946  53
## 3091    6205  53
## 3092    6340  53
## 3093    6341  53
## 3094    7019  53
## 3095    7092  53
## 3096   72762  53
## 3097    7301  53
## 3098    7420  53
## 3099   74650  53
## 3100   75098  53
## 3101   76197  53
## 3102   76198  53
## 3103    8276  53
## 3104    9386  53
## 3105    9925  53
## 3106    9935  53
## 3107    0018  52
## 3108    0028  52
## 3109    0109  52
## 3110    0139  52
## 3111    0175  52
## 3112    0773  52
## 3113    0796  52
## 3114    1291  52
## 3115   16580  52
## 3116    1711  52
## 3117    1972  52
## 3118    2520  52
## 3119    2568  52
## 3120    2612  52
## 3121   30164  52
## 3122    3028  52
## 3123    3077  52
## 3124   33719  52
## 3125   34118  52
## 3126    3457  52
## 3127    3656  52
## 3128    3759  52
## 3129    3852  52
## 3130    3908  52
## 3131    4009  52
## 3132    4626  52
## 3133   47190  52
## 3134    4736  52
## 3135    4788  52
## 3136    5018  52
## 3137    5179  52
## 3138    5246  52
## 3139    5439  52
## 3140    5752  52
## 3141   57695  52
## 3142    6109  52
## 3143    6311  52
## 3144    6492  52
## 3145    6896  52
## 3146    6957  52
## 3147    7129  52
## 3148   74992  52
## 3149   75474  52
## 3150   75741  52
## 3151    7587  52
## 3152   76037  52
## 3153   76524  52
## 3154   77026  52
## 3155    7758  52
## 3156    8017  52
## 3157    9539  52
## 3158    9581  52
## 3159    0099  51
## 3160    0408  51
## 3161    0540  51
## 3162    2396  51
## 3163    2705  51
## 3164    2979  51
## 3165   31605  51
## 3166    3250  51
## 3167    3390  51
## 3168   34151  51
## 3169   34914  51
## 3170   35032  51
## 3171    3644  51
## 3172    3884  51
## 3173   43337  51
## 3174   43788  51
## 3175   43823  51
## 3176   43839  51
## 3177    4726  51
## 3178    4950  51
## 3179   54576  51
## 3180    6163  51
## 3181    6246  51
## 3182    6313  51
## 3183    6446  51
## 3184    6733  51
## 3185    6895  51
## 3186    7076  51
## 3187   74489  51
## 3188   74732  51
## 3189   76358  51
## 3190   76673  51
## 3191    7716  51
## 3192   77562  51
## 3193    8123  51
## 3194    8524  51
## 3195    8747  51
## 3196    8962  51
## 3197    9540  51
## 3198    9567  51
## 3199    9650  51
## 3200    9899  51
## 3201    0091  50
## 3202    0283  50
## 3203    0929  50
## 3204    1059  50
## 3205    1276  50
## 3206    1569  50
## 3207    1637  50
## 3208    1815  50
## 3209    1851  50
## 3210   18766  50
## 3211    2018  50
## 3212    2021  50
## 3213    2402  50
## 3214   26736  50
## 3215    2819  50
## 3216   32525  50
## 3217    3337  50
## 3218    4351  50
## 3219    4571  50
## 3220    4578  50
## 3221    4703  50
## 3222    4721  50
## 3223    4867  50
## 3224    5229  50
## 3225    5233  50
## 3226    5276  50
## 3227    5284  50
## 3228   54083  50
## 3229    5756  50
## 3230   61026  50
## 3231    6218  50
## 3232    6471  50
## 3233    6650  50
## 3234    7053  50
## 3235   72983  50
## 3236    7377  50
## 3237    7604  50
## 3238   76983  50
## 3239   77072  50
## 3240   77306  50
## 3241   77572  50
## 3242   77598  50
## 3243    7805  50
## 3244    7883  50
## 3245    8387  50
## 3246    8518  50
## 3247    8621  50
## 3248    8636  50
## 3249    9555  50
## 3250    9712  50
## 3251    9954  50
## 3252    9978  50
## 3253    9980  50
## 3254    0216  49
## 3255    0441  49
## 3256    0507  49
## 3257    1376  49
## 3258    1457  49
## 3259    1552  49
## 3260    1559  49
## 3261    1595  49
## 3262    1597  49
## 3263    1705  49
## 3264    2135  49
## 3265    2325  49
## 3266    2352  49
## 3267    2675  49
## 3268    2694  49
## 3269    2914  49
## 3270   30346  49
## 3271    3103  49
## 3272    3127  49
## 3273    3292  49
## 3274    3614  49
## 3275    3780  49
## 3276    3919  49
## 3277    4092  49
## 3278    4252  49
## 3279   42615  49
## 3280    4292  49
## 3281   43015  49
## 3282    4331  49
## 3283   43807  49
## 3284    4486  49
## 3285    4558  49
## 3286    4942  49
## 3287    5147  49
## 3288   54021  49
## 3289   54052  49
## 3290   57515  49
## 3291   60611  49
## 3292   62484  49
## 3293    6328  49
## 3294    6360  49
## 3295   73117  49
## 3296   74639  49
## 3297   74753  49
## 3298   74858  49
## 3299    7510  49
## 3300   75785  49
## 3301   77015  49
## 3302    7772  49
## 3303    7798  49
## 3304    7810  49
## 3305    8028  49
## 3306    8124  49
## 3307    8273  49
## 3308    9301  49
## 3309    9431  49
## 3310    9649  49
## 3311    9782  49
## 3312    0133  48
## 3313    0146  48
## 3314    1213  48
## 3315    1222  48
## 3316    1386  48
## 3317    1625  48
## 3318    1640  48
## 3319    1911  48
## 3320    2197  48
## 3321    2198  48
## 3322    2270  48
## 3323    2356  48
## 3324    2524  48
## 3325    2579  48
## 3326   31102  48
## 3327   31166  48
## 3328    3192  48
## 3329    3196  48
## 3330    3259  48
## 3331   33410  48
## 3332   33673  48
## 3333   33717  48
## 3334    3418  48
## 3335    4150  48
## 3336    4179  48
## 3337    5329  48
## 3338   56623  48
## 3339   57126  48
## 3340    5932  48
## 3341   61139  48
## 3342    6198  48
## 3343    6694  48
## 3344    6796  48
## 3345    6797  48
## 3346    6839  48
## 3347    6899  48
## 3348   72799  48
## 3349   74013  48
## 3350   74189  48
## 3351    7437  48
## 3352   74848  48
## 3353   77190  48
## 3354    8310  48
## 3355    8330  48
## 3356    8583  48
## 3357   95719  48
## 3358    9627  48
## 3359    9685  48
## 3360    9716  48
## 3361    9726  48
## 3362    0082  47
## 3363    0348  47
## 3364    0446  47
## 3365    0671  47
## 3366    0798  47
## 3367    0987  47
## 3368    1021  47
## 3369    1112  47
## 3370    1726  47
## 3371    2758  47
## 3372   30247  47
## 3373   31163  47
## 3374    3152  47
## 3375    3200  47
## 3376    3456  47
## 3377    3490  47
## 3378    3828  47
## 3379   43169  47
## 3380   43593  47
## 3381   43643  47
## 3382   43735  47
## 3383    4408  47
## 3384   60521  47
## 3385    6275  47
## 3386    6836  47
## 3387   72740  47
## 3388   73658  47
## 3389    7470  47
## 3390    7506  47
## 3391    7563  47
## 3392   76251  47
## 3393   76297  47
## 3394   77024  47
## 3395   77358  47
## 3396   77459  47
## 3397    8270  47
## 3398    8375  47
## 3399    8976  47
## 3400    9115  47
## 3401    9440  47
## 3402    9476  47
## 3403    9531  47
## 3404    9679  47
## 3405    9733  47
## 3406   97483  47
## 3407   98920  47
## 3408    0115  46
## 3409    0453  46
## 3410    0474  46
## 3411    0560  46
## 3412    0946  46
## 3413    1197  46
## 3414    1708  46
## 3415    1957  46
## 3416    1992  46
## 3417    2127  46
## 3418    2265  46
## 3419    2962  46
## 3420    2975  46
## 3421   31188  46
## 3422    3310  46
## 3423    3339  46
## 3424   33452  46
## 3425    3602  46
## 3426    3786  46
## 3427    4189  46
## 3428   42264  46
## 3429   42644  46
## 3430   43675  46
## 3431    4865  46
## 3432   55372  46
## 3433    5915  46
## 3434    6682  46
## 3435    6850  46
## 3436    7015  46
## 3437    7031  46
## 3438    7063  46
## 3439    7285  46
## 3440   73378  46
## 3441    7369  46
## 3442   73803  46
## 3443    7476  46
## 3444    7571  46
## 3445   77441  46
## 3446   77468  46
## 3447    8116  46
## 3448    8247  46
## 3449    8912  46
## 3450    8994  46
## 3451    9389  46
## 3452    9826  46
## 3453    9939  46
## 3454    0037  45
## 3455    0108  45
## 3456    0143  45
## 3457    0265  45
## 3458    0484  45
## 3459    1277  45
## 3460    1289  45
## 3461    1777  45
## 3462    1995  45
## 3463    2168  45
## 3464    2250  45
## 3465    2617  45
## 3466    2782  45
## 3467    2881  45
## 3468    2971  45
## 3469    3009  45
## 3470   30325  45
## 3471    3273  45
## 3472    3318  45
## 3473   33674  45
## 3474    3384  45
## 3475    3661  45
## 3476    3823  45
## 3477    4058  45
## 3478   42617  45
## 3479   42990  45
## 3480   43671  45
## 3481    4816  45
## 3482    4871  45
## 3483    5459  45
## 3484    5584  45
## 3485   56053  45
## 3486    5663  45
## 3487    5737  45
## 3488    5838  45
## 3489    5979  45
## 3490   61364  45
## 3491    6236  45
## 3492    6523  45
## 3493    6651  45
## 3494    6713  45
## 3495   73115  45
## 3496   73560  45
## 3497   73634  45
## 3498   73835  45
## 3499    7393  45
## 3500   73966  45
## 3501   73987  45
## 3502   74534  45
## 3503    7685  45
## 3504    7756  45
## 3505    8130  45
## 3506    9374  45
## 3507    9732  45
## 3508    9802  45
## 3509    9871  45
## 3510    0026  44
## 3511    0034  44
## 3512    0102  44
## 3513    0138  44
## 3514    1034  44
## 3515    1421  44
## 3516    2076  44
## 3517    2143  44
## 3518    2148  44
## 3519    2645  44
## 3520    2732  44
## 3521    2816  44
## 3522    2831  44
## 3523    2854  44
## 3524   30501  44
## 3525   31304  44
## 3526    3260  44
## 3527    3432  44
## 3528   34910  44
## 3529    3588  44
## 3530    3643  44
## 3531    3812  44
## 3532    3890  44
## 3533    3972  44
## 3534    4138  44
## 3535   42496  44
## 3536   42777  44
## 3537   43167  44
## 3538    4694  44
## 3539    4801  44
## 3540   49301  44
## 3541    4977  44
## 3542    4993  44
## 3543    4998  44
## 3544   55789  44
## 3545    5787  44
## 3546   58042  44
## 3547   60015  44
## 3548    6027  44
## 3549    6750  44
## 3550    6833  44
## 3551    6920  44
## 3552    7057  44
## 3553    7189  44
## 3554   72737  44
## 3555    7312  44
## 3556   73679  44
## 3557   75211  44
## 3558   75984  44
## 3559    7780  44
## 3560    7937  44
## 3561    8686  44
## 3562    8948  44
## 3563    8969  44
## 3564    9547  44
## 3565    9792  44
## 3566    0125  43
## 3567    0217  43
## 3568    0422  43
## 3569    0561  43
## 3570    0813  43
## 3571    0844  43
## 3572    0871  43
## 3573    1371  43
## 3574    1467  43
## 3575    1973  43
## 3576    2172  43
## 3577    2517  43
## 3578    2789  43
## 3579    2904  43
## 3580    3008  43
## 3581   30445  43
## 3582   31546  43
## 3583    3270  43
## 3584    3335  43
## 3585    3497  43
## 3586    3547  43
## 3587   43889  43
## 3588    4620  43
## 3589    4797  43
## 3590    4930  43
## 3591    5098  43
## 3592    5423  43
## 3593   56493  43
## 3594    5964  43
## 3595   60314  43
## 3596    6082  43
## 3597    6177  43
## 3598    6239  43
## 3599   73012  43
## 3600   73082  43
## 3601   73210  43
## 3602    7413  43
## 3603   74248  43
## 3604    7642  43
## 3605   77359  43
## 3606    8492  43
## 3607    9060  43
## 3608    9116  43
## 3609    9353  43
## 3610   95803  43
## 3611    9753  43
## 3612    9762  43
## 3613    9790  43
## 3614   99745  43
## 3615    0096  42
## 3616    0219  42
## 3617    0480  42
## 3618    0492  42
## 3619    0569  42
## 3620    0580  42
## 3621    0582  42
## 3622   09737  42
## 3623    1073  42
## 3624    1211  42
## 3625    1244  42
## 3626    1653  42
## 3627    1964  42
## 3628    2256  42
## 3629    2333  42
## 3630    2688  42
## 3631   30580  42
## 3632   31859  42
## 3633    3424  42
## 3634    3562  42
## 3635    3803  42
## 3636    3958  42
## 3637   42524  42
## 3638   43181  42
## 3639   43275  42
## 3640   43763  42
## 3641    4393  42
## 3642   53150  42
## 3643    5587  42
## 3644   58266  42
## 3645   58448  42
## 3646   58837  42
## 3647    5997  42
## 3648    6105  42
## 3649   61068  42
## 3650   63345  42
## 3651    6549  42
## 3652    6581  42
## 3653    6630  42
## 3654    7161  42
## 3655    7203  42
## 3656    7238  42
## 3657   73030  42
## 3658   73318  42
## 3659   74706  42
## 3660   76072  42
## 3661   76751  42
## 3662    9002  42
## 3663    9424  42
## 3664   94842  42
## 3665    9725  42
## 3666    0674  41
## 3667    0756  41
## 3668    1668  41
## 3669    1871  41
## 3670    2132  41
## 3671    2597  41
## 3672    2916  41
## 3673   31823  41
## 3674   33932  41
## 3675    3869  41
## 3676   42535  41
## 3677   43179  41
## 3678    4361  41
## 3679    4709  41
## 3680    4778  41
## 3681    5194  41
## 3682    5723  41
## 3683   58293  41
## 3684    6119  41
## 3685    6434  41
## 3686    6606  41
## 3687    6751  41
## 3688    6771  41
## 3689    7118  41
## 3690   73414  41
## 3691   73660  41
## 3692   73678  41
## 3693    7445  41
## 3694   76190  41
## 3695   77135  41
## 3696    7849  41
## 3697    7861  41
## 3698    8035  41
## 3699    8900  41
## 3700    9221  41
## 3701    9285  41
## 3702    9296  41
## 3703    0417  40
## 3704    0774  40
## 3705    1046  40
## 3706    1358  40
## 3707    1373  40
## 3708    1377  40
## 3709    1915  40
## 3710    2585  40
## 3711    2717  40
## 3712   30686  40
## 3713    3341  40
## 3714    4103  40
## 3715   42889  40
## 3716   43075  40
## 3717   43090  40
## 3718    4885  40
## 3719   50643  40
## 3720    5141  40
## 3721   52891  40
## 3722    5383  40
## 3723   54107  40
## 3724    5745  40
## 3725   57776  40
## 3726    6024  40
## 3727    6599  40
## 3728    6685  40
## 3729    6759  40
## 3730    6794  40
## 3731   72707  40
## 3732   73727  40
## 3733   73952  40
## 3734   74275  40
## 3735    7556  40
## 3736   76275  40
## 3737    8891  40
## 3738    9303  40
## 3739    9308  40
## 3740    9673  40
## 3741    9719  40
## 3742    9848  40
## 3743    0308  39
## 3744    1168  39
## 3745    1655  39
## 3746    1704  39
## 3747    2418  39
## 3748    2917  39
## 3749    3454  39
## 3750   34993  39
## 3751    3501  39
## 3752    3512  39
## 3753    3724  39
## 3754    3757  39
## 3755    3941  39
## 3756   42683  39
## 3757   42710  39
## 3758   42760  39
## 3759    4330  39
## 3760    4594  39
## 3761    4646  39
## 3762   53424  39
## 3763    5475  39
## 3764   54816  39
## 3765    5770  39
## 3766    6426  39
## 3767   73785  39
## 3768   74042  39
## 3769   74959  39
## 3770   75015  39
## 3771   75166  39
## 3772   75672  39
## 3773    7918  39
## 3774    8742  39
## 3775    9247  39
## 3776    9378  39
## 3777    9396  39
## 3778    9417  39
## 3779    9879  39
## 3780    0450  38
## 3781    0545  38
## 3782    0559  38
## 3783    1369  38
## 3784    1967  38
## 3785    2186  38
## 3786    2367  38
## 3787    2683  38
## 3788    3108  38
## 3789   31084  38
## 3790   32346  38
## 3791   33473  38
## 3792   33773  38
## 3793   43063  38
## 3794   43729  38
## 3795    4713  38
## 3796    4784  38
## 3797    5273  38
## 3798    5291  38
## 3799    5377  38
## 3800   60817  38
## 3801    6116  38
## 3802    6598  38
## 3803    6697  38
## 3804    6876  38
## 3805   74929  38
## 3806    7575  38
## 3807   76665  38
## 3808    7673  38
## 3809    7827  38
## 3810    8292  38
## 3811    8989  38
## 3812    9101  38
## 3813    9197  38
## 3814    9279  38
## 3815   94202  38
## 3816    9604  38
## 3817    0770  37
## 3818    0816  37
## 3819    1534  37
## 3820    1737  37
## 3821    2542  37
## 3822    2580  37
## 3823    2888  37
## 3824    3030  37
## 3825   30363  37
## 3826   31345  37
## 3827   31349  37
## 3828    3465  37
## 3829    3494  37
## 3830    4037  37
## 3831    4057  37
## 3832   42989  37
## 3833   43245  37
## 3834   43591  37
## 3835    4417  37
## 3836    5167  37
## 3837    5211  37
## 3838   54486  37
## 3839    5473  37
## 3840    6786  37
## 3841    7289  37
## 3842   75172  37
## 3843   75210  37
## 3844   75301  37
## 3845    7961  37
## 3846    8496  37
## 3847    9037  37
## 3848    9203  37
## 3849    9254  37
## 3850    9272  37
## 3851    9369  37
## 3852    9897  37
## 3853    0021  36
## 3854    0165  36
## 3855    0810  36
## 3856    0911  36
## 3857    1104  36
## 3858    1200  36
## 3859    1327  36
## 3860    1950  36
## 3861    2022  36
## 3862    2305  36
## 3863    2839  36
## 3864    3043  36
## 3865   31388  36
## 3866    3154  36
## 3867    3194  36
## 3868    3244  36
## 3869    3785  36
## 3870    3832  36
## 3871    4063  36
## 3872   43162  36
## 3873    5003  36
## 3874   55681  36
## 3875   57216  36
## 3876    5851  36
## 3877    6130  36
## 3878    6756  36
## 3879    6890  36
## 3880   72788  36
## 3881   73015  36
## 3882   73432  36
## 3883   73701  36
## 3884   73924  36
## 3885   74291  36
## 3886   74477  36
## 3887    7459  36
## 3888    7562  36
## 3889   77273  36
## 3890    8223  36
## 3891    9124  36
## 3892   98285  36
## 3893    0279  35
## 3894    0872  35
## 3895   10052  35
## 3896    1149  35
## 3897    1768  35
## 3898    1928  35
## 3899    2105  35
## 3900   24356  35
## 3901    2619  35
## 3902    2672  35
## 3903    2829  35
## 3904   30119  35
## 3905   34119  35
## 3906    3696  35
## 3907    3796  35
## 3908   42473  35
## 3909    4254  35
## 3910   42708  35
## 3911    4489  35
## 3912    4830  35
## 3913    5031  35
## 3914   56347  35
## 3915    5854  35
## 3916   59946  35
## 3917    6019  35
## 3918    6100  35
## 3919    6497  35
## 3920    6631  35
## 3921    6659  35
## 3922    6858  35
## 3923    7155  35
## 3924    7319  35
## 3925   73333  35
## 3926   75583  35
## 3927   76100  35
## 3928   76432  35
## 3929   76980  35
## 3930    7926  35
## 3931    8305  35
## 3932    8385  35
## 3933    9312  35
## 3934    9380  35
## 3935    9641  35
## 3936    9924  35
## 3937    0212  34
## 3938    0448  34
## 3939    0532  34
## 3940    0883  34
## 3941    1139  34
## 3942    1217  34
## 3943   13739  34
## 3944    1979  34
## 3945    2238  34
## 3946    2473  34
## 3947    2802  34
## 3948    2841  34
## 3949    2936  34
## 3950    3036  34
## 3951   31009  34
## 3952    3139  34
## 3953    3268  34
## 3954    3865  34
## 3955    3938  34
## 3956    4246  34
## 3957   43068  34
## 3958    4485  34
## 3959    4556  34
## 3960    5296  34
## 3961    5454  34
## 3962   57051  34
## 3963   57426  34
## 3964    5891  34
## 3965    5952  34
## 3966    6061  34
## 3967    6222  34
## 3968   73097  34
## 3969    7347  34
## 3970   73773  34
## 3971   74476  34
## 3972   74819  34
## 3973    7592  34
## 3974   77180  34
## 3975   77457  34
## 3976   77543  34
## 3977    8374  34
## 3978    8441  34
## 3979    8533  34
## 3980    8910  34
## 3981    0389  33
## 3982    0621  33
## 3983    0703  33
## 3984    1100  33
## 3985    1229  33
## 3986    1285  33
## 3987    1418  33
## 3988    1629  33
## 3989    1643  33
## 3990    2339  33
## 3991    2534  33
## 3992    2720  33
## 3993    2757  33
## 3994    2860  33
## 3995    3054  33
## 3996   30665  33
## 3997    3128  33
## 3998    3151  33
## 3999    3258  33
## 4000    3560  33
## 4001    3900  33
## 4002   42450  33
## 4003    4248  33
## 4004   42500  33
## 4005   42854  33
## 4006   43228  33
## 4007   43632  33
## 4008    4473  33
## 4009    4730  33
## 4010    4984  33
## 4011   51542  33
## 4012    5550  33
## 4013    5784  33
## 4014    6039  33
## 4015    6153  33
## 4016    6305  33
## 4017    6754  33
## 4018    6770  33
## 4019    7112  33
## 4020    7127  33
## 4021   73565  33
## 4022   73661  33
## 4023   74398  33
## 4024   74414  33
## 4025   74801  33
## 4026   75071  33
## 4027    7613  33
## 4028   76227  33
## 4029    7669  33
## 4030   76941  33
## 4031   77054  33
## 4032   77591  33
## 4033    7801  33
## 4034    9298  33
## 4035    9354  33
## 4036    9738  33
## 4037    0044  32
## 4038    0434  32
## 4039    0643  32
## 4040    0737  32
## 4041    0864  32
## 4042    1037  32
## 4043    2280  32
## 4044    3112  32
## 4045    3155  32
## 4046   32345  32
## 4047    3739  32
## 4048   42523  32
## 4049   43564  32
## 4050    4645  32
## 4051    4676  32
## 4052    5066  32
## 4053    5255  32
## 4054    5882  32
## 4055    6197  32
## 4056    6388  32
## 4057    6657  32
## 4058    6931  32
## 4059    6943  32
## 4060    7052  32
## 4061    7394  32
## 4062    7404  32
## 4063   75702  32
## 4064   77534  32
## 4065    9086  32
## 4066    0022  31
## 4067    0362  31
## 4068    1115  31
## 4069    2469  31
## 4070    2549  31
## 4071   30289  31
## 4072   30985  31
## 4073   31402  31
## 4074    3191  31
## 4075    3227  31
## 4076   33558  31
## 4077   33619  31
## 4078    3791  31
## 4079    3925  31
## 4080   43128  31
## 4081   43784  31
## 4082   44960  31
## 4083    4589  31
## 4084    5056  31
## 4085    5116  31
## 4086    5575  31
## 4087   56446  31
## 4088    6030  31
## 4089    6320  31
## 4090    6364  31
## 4091    6981  31
## 4092    7026  31
## 4093   73935  31
## 4094   73962  31
## 4095    7419  31
## 4096    7430  31
## 4097   75016  31
## 4098   76587  31
## 4099   77270  31
## 4100    7950  31
## 4101    8069  31
## 4102    8448  31
## 4103    8876  31
## 4104    0003  30
## 4105    0101  30
## 4106    0360  30
## 4107    0409  30
## 4108    1292  30
## 4109    1774  30
## 4110    1926  30
## 4111    2237  30
## 4112    2329  30
## 4113    2331  30
## 4114    2332  30
## 4115    2436  30
## 4116    2590  30
## 4117    2606  30
## 4118    2691  30
## 4119    2868  30
## 4120    2901  30
## 4121    2959  30
## 4122    3015  30
## 4123    3047  30
## 4124    3096  30
## 4125    3355  30
## 4126    3486  30
## 4127    3657  30
## 4128    3720  30
## 4129   42682  30
## 4130    4758  30
## 4131    5172  30
## 4132    5249  30
## 4133    5320  30
## 4134   53217  30
## 4135    7183  30
## 4136    7468  30
## 4137   76410  30
## 4138    7660  30
## 4139   76790  30
## 4140   76914  30
## 4141   76933  30
## 4142   77074  30
## 4143    7972  30
## 4144    8079  30
## 4145    8897  30
## 4146    8971  30
## 4147    9033  30
## 4148    9974  30
## 4149    0208  29
## 4150    0608  29
## 4151    0976  29
## 4152    1058  29
## 4153    1341  29
## 4154    1832  29
## 4155    1882  29
## 4156    1895  29
## 4157   20628  29
## 4158    2295  29
## 4159    2748  29
## 4160    2857  29
## 4161   30182  29
## 4162   32407  29
## 4163    3504  29
## 4164    3845  29
## 4165    4159  29
## 4166   43750  29
## 4167   49299  29
## 4168    4943  29
## 4169   55656  29
## 4170   58680  29
## 4171   60283  29
## 4172    6187  29
## 4173    6351  29
## 4174    6394  29
## 4175    7244  29
## 4176   73942  29
## 4177   74529  29
## 4178   74910  29
## 4179    7547  29
## 4180   75550  29
## 4181   75985  29
## 4182   76663  29
## 4183   77334  29
## 4184   77583  29
## 4185    8107  29
## 4186    8122  29
## 4187    8196  29
## 4188    8213  29
## 4189    8587  29
## 4190    9122  29
## 4191    9349  29
## 4192    9373  29
## 4193    9405  29
## 4194    0381  28
## 4195    0454  28
## 4196    2016  28
## 4197    2454  28
## 4198    2462  28
## 4199    2695  28
## 4200    2873  28
## 4201    2889  28
## 4202    2994  28
## 4203    3000  28
## 4204   31245  28
## 4205    3161  28
## 4206    3314  28
## 4207    3648  28
## 4208    3758  28
## 4209    4123  28
## 4210   42456  28
## 4211    4616  28
## 4212    4732  28
## 4213    5209  28
## 4214    5210  28
## 4215   54053  28
## 4216    5551  28
## 4217    5610  28
## 4218    5780  28
## 4219   59102  28
## 4220    6362  28
## 4221    6749  28
## 4222    7024  28
## 4223    7270  28
## 4224   72770  28
## 4225   73863  28
## 4226   76242  28
## 4227   77078  28
## 4228   77604  28
## 4229    7813  28
## 4230    8693  28
## 4231   96672  28
## 4232    9941  28
## 4233    0206  27
## 4234    0509  27
## 4235    0842  27
## 4236    1580  27
## 4237    2311  27
## 4238    2361  27
## 4239    2391  27
## 4240    2440  27
## 4241    2488  27
## 4242    2696  27
## 4243    2844  27
## 4244    2865  27
## 4245   30198  27
## 4246    3034  27
## 4247    3037  27
## 4248   31289  27
## 4249    3571  27
## 4250    3658  27
## 4251    3685  27
## 4252    3763  27
## 4253    3858  27
## 4254   43903  27
## 4255    4502  27
## 4256    4872  27
## 4257    4973  27
## 4258    5071  27
## 4259    5326  27
## 4260   54460  27
## 4261   56176  27
## 4262    6052  27
## 4263   62377  27
## 4264    6435  27
## 4265    6455  27
## 4266   73486  27
## 4267   73888  27
## 4268   74197  27
## 4269   74415  27
## 4270   74676  27
## 4271   75000  27
## 4272   75320  27
## 4273   76435  27
## 4274   77325  27
## 4275    8551  27
## 4276    9819  27
## 4277    9937  27
## 4278    0025  26
## 4279    0048  26
## 4280    0262  26
## 4281    0472  26
## 4282    0874  26
## 4283    0999  26
## 4284   10013  26
## 4285   10338  26
## 4286    1264  26
## 4287    1981  26
## 4288    2664  26
## 4289   31126  26
## 4290    3130  26
## 4291   33890  26
## 4292    3506  26
## 4293    3565  26
## 4294    3968  26
## 4295    4251  26
## 4296   42550  26
## 4297   42828  26
## 4298   43808  26
## 4299    4407  26
## 4300    4462  26
## 4301   44641  26
## 4302    4551  26
## 4303    4686  26
## 4304    5063  26
## 4305   53578  26
## 4306    5555  26
## 4307    5642  26
## 4308   60056  26
## 4309    6374  26
## 4310    6494  26
## 4311    6558  26
## 4312    6764  26
## 4313    7223  26
## 4314    7236  26
## 4315    7440  26
## 4316    7539  26
## 4317   75451  26
## 4318   75555  26
## 4319   76203  26
## 4320   76292  26
## 4321   76309  26
## 4322   77178  26
## 4323   77525  26
## 4324    7832  26
## 4325    8265  26
## 4326    8321  26
## 4327    8505  26
## 4328    8594  26
## 4329    8613  26
## 4330    8986  26
## 4331    9315  26
## 4332    9583  26
## 4333    9667  26
## 4334    0818  25
## 4335    1131  25
## 4336    1550  25
## 4337    1572  25
## 4338    2202  25
## 4339    2676  25
## 4340    3005  25
## 4341    3045  25
## 4342    3333  25
## 4343    3420  25
## 4344    3642  25
## 4345    3701  25
## 4346    3773  25
## 4347    3934  25
## 4348    3987  25
## 4349    4163  25
## 4350    4182  25
## 4351   42630  25
## 4352   42934  25
## 4353    4315  25
## 4354    4316  25
## 4355   43265  25
## 4356    5090  25
## 4357    5128  25
## 4358    5133  25
## 4359   62239  25
## 4360   62589  25
## 4361    6789  25
## 4362   72728  25
## 4363   72784  25
## 4364   72908  25
## 4365   74022  25
## 4366   76340  25
## 4367   77481  25
## 4368    8108  25
## 4369    8692  25
## 4370    8888  25
## 4371    9063  25
## 4372    9501  25
## 4373    9969  25
## 4374    0121  24
## 4375    0370  24
## 4376    0658  24
## 4377    0886  24
## 4378    0914  24
## 4379    0918  24
## 4380    1040  24
## 4381    1192  24
## 4382    1336  24
## 4383    1632  24
## 4384    2145  24
## 4385    2228  24
## 4386    2243  24
## 4387    2281  24
## 4388    2726  24
## 4389    2739  24
## 4390   30151  24
## 4391    3081  24
## 4392   31443  24
## 4393   32083  24
## 4394   34973  24
## 4395    3723  24
## 4396    3962  24
## 4397    4127  24
## 4398    4226  24
## 4399   42803  24
## 4400    4391  24
## 4401    4476  24
## 4402    4534  24
## 4403    4600  24
## 4404    4919  24
## 4405   51141  24
## 4406    5285  24
## 4407    5672  24
## 4408    5792  24
## 4409    5870  24
## 4410   59204  24
## 4411   61184  24
## 4412    6486  24
## 4413    6644  24
## 4414    6945  24
## 4415    7075  24
## 4416   72672  24
## 4417    7362  24
## 4418    7386  24
## 4419   74243  24
## 4420   75564  24
## 4421   75648  24
## 4422    7598  24
## 4423   77557  24
## 4424    8225  24
## 4425    8637  24
## 4426    8904  24
## 4427    9313  24
## 4428    9460  24
## 4429    0116  23
## 4430    0617  23
## 4431    0964  23
## 4432    1290  23
## 4433    1729  23
## 4434    1852  23
## 4435    2104  23
## 4436    2141  23
## 4437    2450  23
## 4438    2640  23
## 4439    2875  23
## 4440    2906  23
## 4441   30503  23
## 4442   31681  23
## 4443    3727  23
## 4444    3760  23
## 4445   42457  23
## 4446   42922  23
## 4447   43345  23
## 4448   43723  23
## 4449   43873  23
## 4450   58601  23
## 4451    5985  23
## 4452    6029  23
## 4453   61009  23
## 4454    6632  23
## 4455    6656  23
## 4456    6846  23
## 4457   73630  23
## 4458   74836  23
## 4459   74898  23
## 4460   76360  23
## 4461   77046  23
## 4462   77223  23
## 4463    8167  23
## 4464    9132  23
## 4465    9433  23
## 4466   96516  23
## 4467    9837  23
## 4468   09172  22
## 4469    1035  22
## 4470    1087  22
## 4471    1432  22
## 4472    1789  22
## 4473    2535  22
## 4474    2638  22
## 4475    2659  22
## 4476    2778  22
## 4477   30644  22
## 4478   30784  22
## 4479   31985  22
## 4480   32041  22
## 4481    3414  22
## 4482    3519  22
## 4483    3638  22
## 4484    3966  22
## 4485   42547  22
## 4486   42844  22
## 4487   42849  22
## 4488   42864  22
## 4489   42880  22
## 4490   43116  22
## 4491   43273  22
## 4492   43894  22
## 4493    4415  22
## 4494    4848  22
## 4495    5000  22
## 4496    5024  22
## 4497    5786  22
## 4498   58642  22
## 4499    6152  22
## 4500    6227  22
## 4501    6596  22
## 4502    6643  22
## 4503    6816  22
## 4504    7012  22
## 4505    7190  22
## 4506    7525  22
## 4507   75723  22
## 4508   75870  22
## 4509   76619  22
## 4510   77320  22
## 4511   77351  22
## 4512    8255  22
## 4513    9489  22
## 4514    9513  22
## 4515    0013  21
## 4516    1076  21
## 4517    1157  21
## 4518    2411  21
## 4519    2925  21
## 4520    3006  21
## 4521   30173  21
## 4522   31187  21
## 4523   31843  21
## 4524    3198  21
## 4525    3208  21
## 4526    3299  21
## 4527   34231  21
## 4528    3554  21
## 4529    3935  21
## 4530   42890  21
## 4531   43239  21
## 4532   43592  21
## 4533   43610  21
## 4534    4380  21
## 4535   43857  21
## 4536    4678  21
## 4537    4765  21
## 4538    4819  21
## 4539    5070  21
## 4540    5563  21
## 4541    5685  21
## 4542   57843  21
## 4543   58357  21
## 4544    6049  21
## 4545    6700  21
## 4546   74551  21
## 4547   76019  21
## 4548   76786  21
## 4549   76858  21
## 4550   77245  21
## 4551   77477  21
## 4552    9224  21
## 4553    9723  21
## 4554    9807  21
## 4555    9810  21
## 4556    0354  20
## 4557    0451  20
## 4558    0971  20
## 4559    2957  20
## 4560    3004  20
## 4561   30347  20
## 4562    3100  20
## 4563    3147  20
## 4564    3216  20
## 4565    3761  20
## 4566    3808  20
## 4567    3888  20
## 4568    4782  20
## 4569   47826  20
## 4570    4791  20
## 4571    4910  20
## 4572   52223  20
## 4573    5308  20
## 4574   57724  20
## 4575    6271  20
## 4576    6300  20
## 4577   72720  20
## 4578   72850  20
## 4579   73052  20
## 4580   73911  20
## 4581    7534  20
## 4582    7583  20
## 4583   75854  20
## 4584   76612  20
## 4585   77268  20
## 4586   77269  20
## 4587   77524  20
## 4588    9105  20
## 4589    9190  20
## 4590    9310  20
## 4591    9382  20
## 4592    9573  20
## 4593    9999  20
## 4594    0636  19
## 4595    1101  19
## 4596    1250  19
## 4597    2288  19
## 4598    2632  19
## 4599    2745  19
## 4600    2801  19
## 4601    2930  19
## 4602   30587  19
## 4603    3228  19
## 4604   34937  19
## 4605    3593  19
## 4606    3653  19
## 4607    3849  19
## 4608   43170  19
## 4609   43709  19
## 4610    4965  19
## 4611    5064  19
## 4612    5076  19
## 4613    5430  19
## 4614   55317  19
## 4615    5546  19
## 4616    5793  19
## 4617   58332  19
## 4618   58576  19
## 4619    6132  19
## 4620    6171  19
## 4621    6173  19
## 4622    6242  19
## 4623    6431  19
## 4624    6570  19
## 4625    6648  19
## 4626    6933  19
## 4627    7078  19
## 4628    7124  19
## 4629    7334  19
## 4630    7359  19
## 4631   73713  19
## 4632   74485  19
## 4633   75234  19
## 4634    8546  19
## 4635    9266  19
## 4636    9363  19
## 4637    9832  19
## 4638    0854  18
## 4639    2059  18
## 4640    2072  18
## 4641    2118  18
## 4642    2449  18
## 4643    2485  18
## 4644    2499  18
## 4645    2532  18
## 4646    2714  18
## 4647    3046  18
## 4648   31847  18
## 4649    3210  18
## 4650    3278  18
## 4651   34690  18
## 4652   34974  18
## 4653    4142  18
## 4654    4287  18
## 4655   43869  18
## 4656   45330  18
## 4657    4947  18
## 4658    5121  18
## 4659   52772  18
## 4660   53711  18
## 4661   56293  18
## 4662    5702  18
## 4663    5707  18
## 4664    6639  18
## 4665   73900  18
## 4666    7482  18
## 4667    7507  18
## 4668   75883  18
## 4669    8110  18
## 4670    8536  18
## 4671    8968  18
## 4672    1600  17
## 4673   16586  17
## 4674    1662  17
## 4675   16895  17
## 4676   26694  17
## 4677   30707  17
## 4678   31123  17
## 4679    3373  17
## 4680    3729  17
## 4681    3749  17
## 4682   41626  17
## 4683   42819  17
## 4684    4461  17
## 4685    5385  17
## 4686   54712  17
## 4687    5644  17
## 4688    5884  17
## 4689   61466  17
## 4690    6200  17
## 4691    6578  17
## 4692    6727  17
## 4693    7360  17
## 4694    7481  17
## 4695   74933  17
## 4696   77480  17
## 4697    8618  17
## 4698    8903  17
## 4699    9619  17
## 4700    9894  17
## 4701    0254  16
## 4702    0801  16
## 4703    2117  16
## 4704    2357  16
## 4705    2468  16
## 4706    2722  16
## 4707    3065  16
## 4708    3226  16
## 4709    3479  16
## 4710    3872  16
## 4711    3924  16
## 4712   42905  16
## 4713   43030  16
## 4714   43069  16
## 4715    4414  16
## 4716    4494  16
## 4717   54741  16
## 4718    5564  16
## 4719    5878  16
## 4720    5971  16
## 4721    6063  16
## 4722    6653  16
## 4723    6663  16
## 4724    6768  16
## 4725    6985  16
## 4726    7398  16
## 4727    7414  16
## 4728    7456  16
## 4729    7615  16
## 4730   77485  16
## 4731    7789  16
## 4732    9467  16
## 4733    9959  16
## 4734    0081  15
## 4735    1295  15
## 4736    1452  15
## 4737    1855  15
## 4738    2184  15
## 4739    2409  15
## 4740    2684  15
## 4741    2850  15
## 4742    3073  15
## 4743    3115  15
## 4744    3267  15
## 4745    3348  15
## 4746    3376  15
## 4747    3741  15
## 4748    4022  15
## 4749   42711  15
## 4750   43842  15
## 4751    4477  15
## 4752    4529  15
## 4753   49232  15
## 4754    5250  15
## 4755    5275  15
## 4756    5452  15
## 4757   55103  15
## 4758    5716  15
## 4759   58093  15
## 4760   58412  15
## 4761    5853  15
## 4762    6032  15
## 4763   61913  15
## 4764    6292  15
## 4765    6410  15
## 4766    6699  15
## 4767    6829  15
## 4768    7245  15
## 4769    7320  15
## 4770   75024  15
## 4771   76843  15
## 4772   77414  15
## 4773   77550  15
## 4774    8262  15
## 4775    8929  15
## 4776    8945  15
## 4777    9986  15
## 4778    0740  14
## 4779    1505  14
## 4780    2457  14
## 4781    2508  14
## 4782    3001  14
## 4783   30303  14
## 4784    3124  14
## 4785   31543  14
## 4786    3691  14
## 4787   43761  14
## 4788    4929  14
## 4789    4992  14
## 4790   55187  14
## 4791    5620  14
## 4792    6045  14
## 4793    6658  14
## 4794    6944  14
## 4795    7116  14
## 4796   74434  14
## 4797   74797  14
## 4798   75716  14
## 4799   76773  14
## 4800    7855  14
## 4801    7920  14
## 4802    8382  14
## 4803    9207  14
## 4804    9787  14
## 4805    0119  13
## 4806    0140  13
## 4807    0425  13
## 4808    1733  13
## 4809    2479  13
## 4810    2662  13
## 4811    2721  13
## 4812    2838  13
## 4813   31068  13
## 4814    3184  13
## 4815   32002  13
## 4816    3240  13
## 4817    3528  13
## 4818    4052  13
## 4819   42998  13
## 4820   43815  13
## 4821    5512  13
## 4822    5872  13
## 4823    5900  13
## 4824    5972  13
## 4825   60709  13
## 4826   60923  13
## 4827    6333  13
## 4828    6571  13
## 4829    7374  13
## 4830    7485  13
## 4831    7705  13
## 4832    8523  13
## 4833    9321  13
## 4834    9703  13
## 4835    9983  13
## 4836    0070  12
## 4837    1445  12
## 4838    1627  12
## 4839    2448  12
## 4840    2598  12
## 4841   30116  12
## 4842   30244  12
## 4843   30248  12
## 4844    3630  12
## 4845    3873  12
## 4846    3928  12
## 4847    4029  12
## 4848   41994  12
## 4849   42866  12
## 4850   43340  12
## 4851   43511  12
## 4852   43599  12
## 4853   43762  12
## 4854   43877  12
## 4855    4474  12
## 4856    5445  12
## 4857   54685  12
## 4858    5581  12
## 4859    6022  12
## 4860    6335  12
## 4861    6432  12
## 4862    6461  12
## 4863    6662  12
## 4864    6732  12
## 4865    7172  12
## 4866   73738  12
## 4867    7524  12
## 4868    7552  12
## 4869    7880  12
## 4870    9092  12
## 4871    9717  12
## 4872    0010  11
## 4873    0241  11
## 4874    0473  11
## 4875    0547  11
## 4876    0632  11
## 4877    0735  11
## 4878    0782  11
## 4879    1287  11
## 4880   17329  11
## 4881    2388  11
## 4882    2526  11
## 4883   31028  11
## 4884    3239  11
## 4885    3246  11
## 4886    3660  11
## 4887    3738  11
## 4888    3762  11
## 4889    3893  11
## 4890    3952  11
## 4891    4107  11
## 4892   42875  11
## 4893   43283  11
## 4894   43311  11
## 4895    4336  11
## 4896   43621  11
## 4897   43913  11
## 4898    4836  11
## 4899    4933  11
## 4900    5297  11
## 4901   55026  11
## 4902   55710  11
## 4903    5653  11
## 4904    5778  11
## 4905    6169  11
## 4906    6478  11
## 4907    7085  11
## 4908    7226  11
## 4909    7325  11
## 4910   75285  11
## 4911   75543  11
## 4912   75726  11
## 4913   76063  11
## 4914    7956  11
## 4915    8217  11
## 4916    8622  11
## 4917    9687  11
## 4918    0063  10
## 4919    0661  10
## 4920    1328  10
## 4921    1623  10
## 4922   31421  10
## 4923   33556  10
## 4924    3599  10
## 4925    3679  10
## 4926    3863  10
## 4927   43303  10
## 4928   43716  10
## 4929    5073  10
## 4930   53988  10
## 4931    5829  10
## 4932    5957  10
## 4933    6016  10
## 4934    6448  10
## 4935    6716  10
## 4936    7191  10
## 4937   73933  10
## 4938    7516  10
## 4939    7686  10
## 4940   76894  10
## 4941    8296  10
## 4942   84734  10
## 4943    9428  10
## 4944    9479  10
## 4945    0035   9
## 4946    0548   9
## 4947    0761   9
## 4948    1570   9
## 4949    2405   9
## 4950   30586   9
## 4951    3088   9
## 4952   30908   9
## 4953    3350   9
## 4954    3683   9
## 4955    3703   9
## 4956    3743   9
## 4957    3842   9
## 4958    4324   9
## 4959   53558   9
## 4960   56028   9
## 4961   57514   9
## 4962   57909   9
## 4963    5899   9
## 4964   60282   9
## 4965   60762   9
## 4966    6949   9
## 4967    7037   9
## 4968    7048   9
## 4969   75049   9
## 4970    8114   9
## 4971    9211   9
## 4972    0327   8
## 4973    0574   8
## 4974    0614   8
## 4975    0867   8
## 4976    0924   8
## 4977    1329   8
## 4978    1765   8
## 4979   18847   8
## 4980    2266   8
## 4981   30290   8
## 4982   30524   8
## 4983   31246   8
## 4984   31849   8
## 4985    3603   8
## 4986    4010   8
## 4987    4042   8
## 4988   46192   8
## 4989   48506   8
## 4990    5648   8
## 4991   56716   8
## 4992    5741   8
## 4993   57933   8
## 4994   58066   8
## 4995   58930   8
## 4996    5955   8
## 4997    5986   8
## 4998    6395   8
## 4999    6512   8
## 5000    6573   8
## 5001    6619   8
## 5002    6665   8
## 5003    6941   8
## 5004    7259   8
## 5005    7269   8
## 5006    7498   8
## 5007    7550   8
## 5008    7574   8
## 5009    7785   8
## 5010    8063   8
## 5011    8256   8
## 5012    9142   8
## 5013    0355   7
## 5014    1263   7
## 5015    1581   7
## 5016    2382   7
## 5017    2437   7
## 5018    2446   7
## 5019    2613   7
## 5020    2677   7
## 5021   31105   7
## 5022    3309   7
## 5023   34834   7
## 5024    3511   7
## 5025    3750   7
## 5026   43093   7
## 5027   47602   7
## 5028    5049   7
## 5029    5053   7
## 5030    5280   7
## 5031    5330   7
## 5032    5970   7
## 5033    6370   7
## 5034    6612   7
## 5035    7086   7
## 5036    7103   7
## 5037    7361   7
## 5038    8143   7
## 5039    9022   7
## 5040    9491   7
## 5041    0493   6
## 5042    0819   6
## 5043    0963   6
## 5044   17486   6
## 5045    1841   6
## 5046    2556   6
## 5047    2626   6
## 5048    2890   6
## 5049   30410   6
## 5050    3149   6
## 5051   32028   6
## 5052    3212   6
## 5053    3272   6
## 5054   42618   6
## 5055    4527   6
## 5056    4780   6
## 5057    4828   6
## 5058   54924   6
## 5059   55290   6
## 5060    5855   6
## 5061    5950   6
## 5062   61309   6
## 5063    6854   6
## 5064    6918   6
## 5065    6992   6
## 5066    7266   6
## 5067   72668   6
## 5068    7582   6
## 5069    9477   6
## 5070    9495   6
## 5071    9865   6
## 5072    1742   5
## 5073    2071   5
## 5074    2604   5
## 5075    2735   5
## 5076   30906   5
## 5077   31560   5
## 5078   38329   5
## 5079    3918   5
## 5080   42744   5
## 5081   43835   5
## 5082   44182   5
## 5083   44669   5
## 5084    4790   5
## 5085   53712   5
## 5086    5732   5
## 5087    5777   5
## 5088    5990   5
## 5089    5998   5
## 5090    6070   5
## 5091    6533   5
## 5092    6628   5
## 5093    6719   5
## 5094    6837   5
## 5095    7295   5
## 5096    7636   5
## 5097    0640   4
## 5098   30464   4
## 5099    3061   4
## 5100    3621   4
## 5101   43096   4
## 5102    4398   4
## 5103    4706   4
## 5104    4746   4
## 5105   51226   4
## 5106   51689   4
## 5107    5412   4
## 5108    5518   4
## 5109    5632   4
## 5110   59886   4
## 5111   60016   4
## 5112    6033   4
## 5113    6373   4
## 5114    7329   4
## 5115    7427   4
## 5116   77504   4
## 5117    8136   4
## 5118    9137   4
## 5119    0387   3
## 5120    2296   3
## 5121    2362   3
## 5122    2848   3
## 5123   30117   3
## 5124   31547   3
## 5125    3395   3
## 5126   34555   3
## 5127    3604   3
## 5128    3708   3
## 5129    4069   3
## 5130   43119   3
## 5131    4399   3
## 5132    4917   3
## 5133    4995   3
## 5134    5516   3
## 5135   55451   3
## 5136    5601   3
## 5137   56095   3
## 5138   57869   3
## 5139    5996   3
## 5140    6312   3
## 5141   63385   3
## 5142    7035   3
## 5143    7311   3
## 5144    7380   3
## 5145   76764   3
## 5146    8545   3
## 5147    0912   2
## 5148   10058   2
## 5149    1383   2
## 5150    1806   2
## 5151    1998   2
## 5152    2262   2
## 5153   29996   2
## 5154    3070   2
## 5155   31570   2
## 5156    3302   2
## 5157    3399   2
## 5158   34797   2
## 5159   35985   2
## 5160    4027   2
## 5161    4155   2
## 5162   43872   2
## 5163    4739   2
## 5164    5040   2
## 5165    5411   2
## 5166    5434   2
## 5167   57610   2
## 5168   58720   2
## 5169    5943   2
## 5170    6073   2
## 5171    6137   2
## 5172   66201   2
## 5173    6820   2
## 5174    6919   2
## 5175    7046   2
## 5176    7162   2
## 5177    7654   2
## 5178    7666   2
## 5179    7845   2
## 5180    8037   2
## 5181    8181   2
## 5182    9514   2
## 5183    0805   1
## 5184    1092   1
## 5185   17695   1
## 5186    1921   1
## 5187    2519   1
## 5188   28120   1
## 5189   28188   1
## 5190   28490   1
## 5191   30288   1
## 5192   30402   1
## 5193    3101   1
## 5194   31186   1
## 5195   32001   1
## 5196    3204   1
## 5197   32286   1
## 5198   33639   1
## 5199   34851   1
## 5200   35804   1
## 5201   35982   1
## 5202    3736   1
## 5203    3764   1
## 5204   38197   1
## 5205   38274   1
## 5206    3984   1
## 5207    4095   1
## 5208    4144   1
## 5209    4275   1
## 5210   43912   1
## 5211   44035   1
## 5212    5132   1
## 5213   51713   1
## 5214    5301   1
## 5215    5397   1
## 5216    5497   1
## 5217    5509   1
## 5218   55232   1
## 5219   55344   1
## 5220   55559   1
## 5221    5566   1
## 5222    5742   1
## 5223    6003   1
## 5224   60119   1
## 5225    6034   1
## 5226    6040   1
## 5227    6278   1
## 5228    6433   1
## 5229    6508   1
## 5230    6618   1
## 5231    6670   1
## 5232    6772   1
## 5233    6980   1
## 5234    7018   1
## 5235    7475   1
## 5236    7840   1
## 5237    7852   1
## 5238    8039   1
## 5239    8195   1
## 5240    8588   1
## 5241    8607   1
## 5242    8993   1
## 5243    9278   1
## 5244    9454   1
## 5245    9537   1
## 5246    9661   1
## 5247    9824   1
## 5248    9914   1
## 5249 Cliente   1
count(base_de_datos, Nombre, sort = TRUE)
##      Nombre     n
## 1     ABARR 71186
## 2     MARIA 39816
## 3     JOSE  17389
## 4     JUAN   7528
## 5     MARTH  5759
## 6     MISCE  5700
## 7     LUIS   5269
## 8     SUPER  4565
## 9     CARLO  3991
## 10    MIGUE  3856
## 11    FRANC  3773
## 12    VINOS  3772
## 13    ROSA   3719
## 14    ANTON  3595
## 15    PEDRO  3468
## 16    VICTO  3259
## 17    CREME  3135
## 18    MARTI  3066
## 19    PATRI  3063
## 20    JAIME  3057
## 21    Maria  3047
## 22    MINI   2829
## 23    JORGE  2672
## 24    JESUS  2636
## 25    BEATR  2586
## 26    MANUE  2405
## 27    TERES  2276
## 28    ROBER  2192
## 29    LAURA  2157
## 30    FARMA  2146
## 31    MINIS  2131
## 32    ALEJA  2084
## 33    MARGA  2062
## 34    SILVI  2041
## 35    CLAUD  2039
## 36    GUADA  1992
## 37    ENRIQ  1914
## 38    ALICI  1895
## 39    RAUL   1851
## 40    JUANA  1834
## 41    BERTH  1806
## 42    HECTO  1706
## 43    NORMA  1684
## 44    RAMON  1677
## 45    ROCIO  1659
## 46    IRMA   1617
## 47    SERGI  1613
## 48    SALVA  1591
## 49    MARIS  1574
## 50    JAVIE  1538
## 51    GERAR  1537
## 52    ALMA   1505
## 53    ANGEL  1499
## 54    RAFAE  1447
## 55    BLANC  1432
## 56    J JES  1414
## 57    HOGAR  1381
## 58    ANA L  1377
## 59    GABRI  1317
## 60    ARACE  1309
## 61    SAUL   1301
## 62    MARIO  1285
## 63    OSCAR  1280
## 64    RICAR  1268
## 65    ADRIA  1267
## 66    FERNA  1266
## 67    ANDRE  1264
## 68    MAYRA  1240
## 69    FELIP  1233
## 70    CELIA  1229
## 71    GLORI  1192
## 72    GUILL  1181
## 73    DULCE  1163
## 74    ANA M  1159
## 75    EDGAR  1132
## 76    ALBER  1114
## 77    RUBEN  1070
## 78    IVAN   1060
## 79    JOSEF  1039
## 80    OLGA   1030
## 81    CESAR  1014
## 82    ISMAE  1012
## 83    ELOIS  1001
## 84    LETIC   998
## 85    MONIC   964
## 86    DANIE   954
## 87    CARNI   946
## 88    VERON   943
## 89    ALFRE   936
## 90    MARCO   911
## 91    Jose    908
## 92    EMMAN   892
## 93    JULIA   891
## 94    DAVID   870
## 95    DIEGO   870
## 96    EMANU   870
## 97    DEPOS   857
## 98    SOCOR   857
## 99    BREND   839
## 100   MA DE   835
## 101   ARTUR   827
## 102    TERE   817
## 103   RODOL   798
## 104   ESTEB   796
## 105   MAGDA   796
## 106    RUIZ   791
## 107   RAMIR   785
## 108   ERNES   784
## 109   SAN J   753
## 110   EVA A   752
## 111   CRIST   749
## 112   EVELI   744
## 113   JOEL    743
## 114   RAQUE   739
## 115   MELIS   736
## 116   EL GR   715
## 117   RODRI   710
## 118   SAMUE   709
## 119   MICEL   705
## 120   MODEL   705
## 121   CARME   701
## 122   ELVIR   695
## 123   GONZA   673
## 124   NOEMI   656
## 125   DELIA   649
## 126   ERIKA   648
## 127   SANTI   644
## 128   IRENE   632
## 129   ESPER   618
## 130   EDUAR   611
## 131   CANDE   601
## 132   ELIAS   596
## 133   ESMER   594
## 134   CENTR   591
## 135   QUIRI   590
## 136   FRUTA   585
## 137   GRACI   582
## 138   TIEND   580
## 139   VALEN   580
## 140   CERVE   577
## 141   SUSAN   577
## 142   LUCIA   574
## 143   SIX T   563
## 144   OFELI   562
## 145   ABEL    559
## 146   VIRGI   559
## 147   Franc   550
## 148   TRINI   544
## 149   Rosa    543
## 150   BRAUL   542
## 151   LEONA   542
## 152   LUPIT   541
## 153   MOISE   541
## 154   HOMOB   539
## 155   OLIVI   539
## 156   OCTAV   534
## 157   CINTH   528
## 158   OMAR    526
## 159   JUVEN   522
## 160   RUTH    521
## 161   SARA    521
## 162   ADAN    517
## 163   HUGO    515
## 164   ROSAU   515
## 165   GUSTA   505
## 166   JULIO   502
## 167   Juan    501
## 168   NORBE   499
## 169   BENJA   494
## 170   IRIS    493
## 171   ELVA    492
## 172   OSVAL   490
## 173   JUNIO   489
## 174   DEMET   488
## 175   SAL Y   482
## 176   FABIO   479
## 177   PETRA   479
## 178   SIMON   479
## 179   CLARA   478
## 180   SANDR   477
## 181   MA DO   470
## 182   PELON   470
## 183   J GIL   467
## 184   ELISA   463
## 185   EL GU   462
## 186    PATO   461
## 187   CARBA   460
## 188   ORTIZ   460
## 189   CELED   457
## 190   ZAPAT   455
## 191   ROSAL   454
## 192   OSIEL   452
## 193   MA TE   450
## 194   VICEN   448
## 195   YOLAN   445
## 196   AMELI   444
## 197   VARGA   443
## 198   LILIA   442
## 199   ALBIN   439
## 200   LOS G   437
## 201   ERIK    436
## 202   FREDI   435
## 203   WILFR   435
## 204   IMELD   432
## 205   LOS I   432
## 206   ELVIA   431
## 207   LOREN   431
## 208   SAN I   431
## 209   LA HI   430
## 210   CORNE   429
## 211   VETIN   429
## 212   EDELM   426
## 213   GASOL   426
## 214   EDER    425
## 215   FELIC   424
## 216   CYNTH   423
## 217   ELENA   423
## 218   GENAR   422
## 219   J CON   422
## 220   OTILI   421
## 221   ANDAN   420
## 222   EVA S   416
## 223   RITA    414
## 224   DON B   413
## 225   FABIA   409
## 226   EVANG   405
## 227    CRUZ   403
## 228   AUGUS   402
## 229   GILBE   401
## 230   MUCIO   401
## 231   VIVIA   400
## 232   AVELI   399
## 233   BLAS    399
## 234   BODEG   398
## 235   LUZ E   397
## 236   TRINO   397
## 237   EL PI   396
## 238   LA LO   394
## 239   ABRAH   392
## 240   ISABE   390
## 241   CEREA   388
## 242   LEOVI   388
## 243   MARCE   387
## 244   ORFIL   385
## 245   QUINC   384
## 246   MARIB   382
## 247   AMPAR   380
## 248   ALVAR   378
## 249   J AUR   378
## 250    RAFA   378
## 251   RAYMU   378
## 252   MIX D   376
## 253   MIRIA   374
## 254   CAROL   373
## 255   LA CH   372
## 256   RIGOB   371
## 257   HUMBE   366
## 258   ZENAI   365
## 259    DIAZ   363
## 260   ADELA   361
## 261   ANA R   361
## 262   EL AN   359
## 263   TORIB   357
## 264   DONAT   351
## 265   LA DU   349
## 266   CABAL   348
## 267   SIX M   347
## 268   MERCE   345
## 269   Claud   337
## 270   EMPOR   334
## 271   EUGEN   333
## 272   LA TI   332
## 273   Marth   332
## 274   ELMER   331
## 275   PABLO   328
## 276   ROSAR   327
## 277   M DE    326
## 278   EL VE   324
## 279    REBE   324
## 280   ELIZA   317
## 281   ESTHE   317
## 282    LUIS   316
## 283   HILDA   314
## 284   IVONN   314
## 285   Teres   314
## 286   CHABE   313
## 287   KAREN   305
## 288   PUERQ   302
## 289   VALDE   302
## 290   ADALB   301
## 291   LUZ M   300
## 292   LA PE   291
## 293   JONAT   290
## 294   EMILI   289
## 295   SIX G   289
## 296   KARLA   285
## 297   DIVIN   283
## 298   ANA B   279
## 299   SIX P   279
## 300   IGNAC   277
## 301   LICON   270
## 302   Luis    269
## 303   MARIC   268
## 304   MERCA   268
## 305   Monic   267
## 306   EXPEN   266
## 307   PRIMI   264
## 308   ORALI   259
## 309   COLUM   257
## 310   Anton   256
## 311   MAXIM   254
## 312   Ma De   248
## 313   NESTO   248
## 314   ADELI   247
## 315   ADOLF   247
## 316   JOAQU   239
## 317   LA ME   238
## 318   SEMIL   237
## 319   INBOX   235
## 320   JANET   235
## 321   ANA G   230
## 322   FEDER   229
## 323   REBEC   226
## 324   SIX L   226
## 325   EL CH   225
## 326   CECIL   222
## 327   ELPID   217
## 328   Julio   216
## 329   NO US   216
## 330   JESSI   213
## 331   HERMI   209
## 332   Carlo   206
## 333   Enriq   204
## 334   Mayra   202
## 335   Sandr   202
## 336   ANA C   201
## 337   TENDE   201
## 338   Ferna   199
## 339   Aleja   196
## 340   PACHE   196
## 341   Hecto   191
## 342   KARIN   190
## 343   FIDEL   189
## 344   ARNUL   188
## 345   ABEND   187
## 346   GABIN   186
## 347   Blanc   183
## 348   Guada   183
## 349   Angel   182
## 350   AGUST   181
## 351   LA SU   181
## 352   VENTA   181
## 353   AMALI   180
## 354   Rafae   178
## 355   Susan   178
## 356   ESTEL   175
## 357   Jorge   175
## 358   FAUST   174
## 359   RENE    174
## 360   INDAL   173
## 361   MICAE   172
## 362   DISTR   171
## 363    ROSA   171
## 364   Salva   171
## 365   CONSU   170
## 366   Glori   170
## 367   TEODU   169
## 368   SIX V   166
## 369   Victo   166
## 370   ELIGI   165
## 371   LA PR   165
## 372   J REF   164
## 373   ALFON   163
## 374   FRUTE   163
## 375   EFRAI   161
## 376   NICOL   160
## 377   ANA A   159
## 378   ARCEL   159
## 379   ARMAN   159
## 380   SAID    159
## 381   TOMAS   159
## 382   CARLA   158
## 383   DE TE   158
## 384   CATAR   156
## 385   DOLOR   156
## 386   Erika   154
## 387   AVAL    151
## 388   EL MA   149
## 389   ELIA    149
## 390   J PAT   148
## 391   SANTO   147
## 392   SONIA   147
## 393   EL RE   146
## 394   EFREN   145
## 395   EL DK   145
## 396   EVERA   145
## 397   FORTI   144
## 398   SIX B   144
## 399   NEMEC   142
## 400   NOHEM   142
## 401   CRUZ    141
## 402   POLLE   141
## 403   HERME   140
## 404   IMPUL   139
## 405   MAURI   137
## 406   BENIL   136
## 407   Laura   136
## 408   OSWAL   136
## 409   BELEN   135
## 410   OBDUL   135
## 411   Pedro   135
## 412   GREGO   134
## 413   ELBA    133
## 414   Hugo    133
## 415   JUDIT   133
## 416   Patri   133
## 417   SOFIA   133
## 418   Esthe   132
## 419   LA ES   132
## 420   Rogel   132
## 421   AZUCE   131
## 422   FLOR    130
## 423   J ROS   130
## 424   ZOILA   130
## 425   MICHA   129
## 426   Oscar   129
## 427   PAZ L   129
## 428   SIX O   128
## 429   Feder   126
## 430   JUSTO   126
## 431   CONST   125
## 432   LUZ D   125
## 433   Beatr   124
## 434   EL PO   123
## 435   TANIA   123
## 436   ISAAC   122
## 437   ISAUR   122
## 438   LICOR   121
## 439   PETRO   121
## 440   Lilia   120
## 441   YESEN   120
## 442   CAMER   119
## 443   LIBRA   119
## 444   Ma Gu   119
## 445   SMART   119
## 446   AUROR   118
## 447   CELIN   118
## 448   MAURO   118
## 449   YENI    118
## 450   Jesus   117
## 451   REFUG   117
## 452   REYNA   117
## 453   XOCHI   117
## 454   TABY    116
## 455   Veron   116
## 456   SANTA   115
## 457   GENER   114
## 458   Adria   113
## 459   FROYL   113
## 460   Pablo   113
## 461   TECAT   113
## 462   VIOLE   113
## 463   EVARI   112
## 464   Alfre   111
## 465   ANA J   111
## 466   HERIB   111
## 467   LA NU   111
## 468   LA CA   110
## 469   Arman   109
## 470   Gabri   109
## 471   Humbe   109
## 472   HILAR   108
## 473   Loren   108
## 474   ABUND   107
## 475   Eduar   106
## 476   EL AB   106
## 477   NORA    106
## 478   Lidia   105
## 479   NAYEL   105
## 480   CASIM   104
## 481   MA AG   104
## 482   BALDO   103
## 483   BELY    103
## 484   DE GE   103
## 485   LUCIO   103
## 486   MAYEL   103
## 487   EL AL   102
## 488   LAS L   102
## 489   DARIO   101
## 490   Juana   101
## 491   Javie   100
## 492   AUDIE    99
## 493   AUREL    99
## 494   David    99
## 495   Irene    99
## 496   DOS H    98
## 497   ISRAE    98
## 498   JOSUE    98
## 499   Olga     98
## 500   LA VA    97
## 501   SULEM    97
## 502   Berth    96
## 503   GUMEC    96
## 504   YAZMI    96
## 505   Eliza    95
## 506   SEBAS    95
## 507   SIX E    95
## 508   USTEC    95
## 509   CIPRI    94
## 510   Luz M    94
## 511   OLEGA    94
## 512   Sergi    94
## 513   CLEME    93
## 514   MI BE    93
## 515   FELIZ    92
## 516   Epifa    91
## 517   LOS P    91
## 518   MAEST    91
## 519    JOSE    90
## 520   Ramon    90
## 521   SIX S    90
## 522   BRIAN    89
## 523   HIPOL    89
## 524   Alma     88
## 525   Aurel    88
## 526   CAMIL    88
## 527   FER T    88
## 528   LA MI    88
## 529   Migue    88
## 530   Rita     88
## 531   EVA F    87
## 532   Crist    86
## 533   Fabio    86
## 534   ROMAN    86
## 535   Y VIN    86
## 536   Ana I    85
## 537   Elvia    85
## 538   JAQUE    85
## 539   Pascu    85
## 540   Raul     85
## 541   ESTET    84
## 542   Felip    84
## 543   KRISH    84
## 544   ARON     83
## 545   BUGAM    83
## 546   CARRE    83
## 547   DONOV    83
## 548   EZEQU    83
## 549   MI RA    83
## 550   MYRIA    83
## 551   LOURD    82
## 552   RAYIT    82
## 553   Rober    82
## 554   Wilfr    82
## 555   EL TE    81
## 556   MATIL    81
## 557   DON P    80
## 558   EDUWI    80
## 559   Ernes    80
## 560   JACIE    80
## 561   KEBEL    80
## 562   KEVIN    80
## 563   LUCY     80
## 564   J Jes    79
## 565   LA BO    79
## 566   ANA I    78
## 567   Azuce    78
## 568   LA UN    78
## 569   Lucia    78
## 570   CHELI    77
## 571   VICKI    77
## 572   DESEC    76
## 573   CRISP    75
## 574   FELIX    75
## 575   GRANJ    75
## 576   J GUA    75
## 577   LA MA    75
## 578   MA GU    75
## 579   AMPEL    74
## 580   Carol    74
## 581   Casil    74
## 582   CYBER    74
## 583   Damar    74
## 584   JACOB    74
## 585    LULU    74
## 586   MAYGU    74
## 587   PICHO    74
## 588   VALER    74
## 589   ELIDI    73
## 590   Karla    73
## 591   Manue    73
## 592   NOE H    73
## 593   ALELI    72
## 594   BAUDE    72
## 595   Eva G    72
## 596    GERA    72
## 597   JERON    72
## 598   LA VI    72
## 599   LAGRO    72
## 600   MARZO    72
## 601   ELSA     71
## 602   ISELA    71
## 603   Leono    71
## 604   LOS 3    71
## 605   Luz E    71
## 606   Faust    70
## 607   NATAL    70
## 608   ADRI     69
## 609   EMA C    69
## 610   LEONO    69
## 611   MUNDO    69
## 612   YADIR    69
## 613   YOBAL    69
## 614   APOLI    68
## 615   BIANC    68
## 616   EPIFA    68
## 617   GRUPO    68
## 618   HOGR     68
## 619   JUANI    68
## 620   Ma Is    68
## 621   OBSEB    68
## 622   TORIV    68
## 623   FANY     67
## 624   GINO     67
## 625   HERLI    67
## 626   LA GL    67
## 627   REINA    67
## 628   Ana G    66
## 629   FREDY    66
## 630   Leopo    66
## 631   ROGEL    66
## 632   UBALD    66
## 633   ILEAN    65
## 634   LIZET    65
## 635   Ma El    65
## 636   NUCLE    65
## 637   ALTAG    64
## 638   AXAYA    64
## 639   Brend    64
## 640   EL CO    64
## 641   EMERI    64
## 642   EMMA     64
## 643   Mary     64
## 644   SIX C    64
## 645   Agust    63
## 646   BENIT    63
## 647   DON F    63
## 648   HELIO    63
## 649   Imeld    63
## 650   LEONI    63
## 651   LUCEC    63
## 652   MARBE    63
## 653   Apolo    62
## 654   BALTA    62
## 655   ERICK    62
## 656   ESTRE    62
## 657   JEOVA    62
## 658   Marga    62
## 659   MI SU    62
## 660   SEVER    62
## 661   BALDE    61
## 662   CATAL    61
## 663   J ISA    61
## 664   Joel     61
## 665   Ofeli    61
## 666   SIX R    61
## 667   Andre    60
## 668   Danie    60
## 669   Juven    60
## 670   Ma Es    60
## 671   PAULA    60
## 672   ANSEL    59
## 673   Avid     59
## 674   Cynth    59
## 675   LA HU    59
## 676   YARET    59
## 677   ABIGA    58
## 678   EDSON    58
## 679   EVA B    58
## 680    GABY    58
## 681   INOCE    58
## 682   Josef    58
## 683   SAN R    58
## 684   BEBID    57
## 685   DOÑA     57
## 686   EL AC    57
## 687   FLORE    57
## 688   HIBET    57
## 689   JADIE    57
## 690   MA EL    57
## 691   MARA     57
## 692   EMA D    56
## 693   LA CO    56
## 694   Tania    56
## 695   Joann    55
## 696   Osval    55
## 697   PALOM    55
## 698   Rosar    55
## 699   GEORG    54
## 700   LAS M    54
## 701   NOE G    54
## 702   RUFIN    54
## 703   Carme    53
## 704   Cruz     53
## 705   EL VA    53
## 706   Enedi    53
## 707   Nohem    53
## 708   PRISC    53
## 709   TADEO    53
## 710   Yesen    53
## 711   CARIN    52
## 712    JUAN    52
## 713   Miria    52
## 714   REYES    52
## 715   Rocio    52
## 716   Silvi    52
## 717   Ampar    51
## 718   ANA S    51
## 719   CACHO    51
## 720   EL CR    51
## 721   ENEID    51
## 722   FIGUE    51
## 723   DENIS    50
## 724   EL NA    50
## 725   ELIOD    50
## 726   Marco    50
## 727   PURIF    50
## 728    YOLI    50
## 729   BEREN    49
## 730   CIBER    49
## 731   CORON    49
## 732   EL BO    49
## 733   Genar    49
## 734   HORTE    49
## 735   JOVIT    49
## 736   MELAN    49
## 737   Rode     49
## 738   BADIL    48
## 739   EL BU    48
## 740   EL PA    48
## 741   Grego    48
## 742   Guill    48
## 743   HORAC    48
## 744   JISEL    48
## 745   LA TR    48
## 746   LOS C    48
## 747   Ruben    48
## 748   Gerar    47
## 749   LIBNI    47
## 750   LIDIA    47
## 751   MORAY    47
## 752   Orlan    47
## 753   Oswal    47
## 754   SACRA    47
## 755   Arace    46
## 756   CUBET    46
## 757   ELIAZ    46
## 758   IRINE    46
## 759   Rebec    46
## 760   ANACL    45
## 761   DIANA    45
## 762   HELAD    45
## 763   LA PA    45
## 764   MA JE    45
## 765   Ma So    45
## 766   MARIN    45
## 767   Oliva    45
## 768   Rodol    45
## 769   DESAY    44
## 770   DON M    44
## 771   EL AH    44
## 772   EL CA    44
## 773   Ma Pa    44
## 774   Ulloq    44
## 775   Areli    43
## 776   EMIDI    43
## 777   LAGUN    43
## 778   NUBIA    43
## 779   PALET    43
## 780   SILVE    43
## 781   Delia    42
## 782   LEYSI    42
## 783   LINDA    42
## 784   Mario    42
## 785   ODON     42
## 786   Omar     42
## 787   Trini    42
## 788   ANA Y    41
## 789   BETHE    41
## 790   Geova    41
## 791   IRAIS    41
## 792   M HER    41
## 793   PAULI    41
## 794   Secun    41
## 795   TAPIA    41
## 796   TEOFI    41
## 797   CIRIL    40
## 798   Nora     40
## 799   SOLED    40
## 800   VIRID    40
## 801   DORA     39
## 802   PASTE    39
## 803   Raque    39
## 804   ELIDA    38
## 805   Iran     38
## 806   JENNI    38
## 807   LA 56    38
## 808   Letic    38
## 809   NOE V    38
## 810   Samue    38
## 811   SANAT    38
## 812   TIBUR    38
## 813   VELIA    38
## 814   AMEZA    37
## 815   Ana A    37
## 816   Glady    37
## 817   LLUVI    37
## 818   ALSA     36
## 819   Avela    36
## 820   ELISE    36
## 821   LUISA    36
## 822   Marce    36
## 823   MICHE    36
## 824   Ruth     36
## 825   Sara     36
## 826    ADRY    35
## 827   CURSO    35
## 828   ELENO    35
## 829   GERMA    35
## 830   Lauro    35
## 831   MA GR    35
## 832   MACRI    35
## 833   PAMEL    35
## 834   PANAD    35
## 835   Reyna    35
## 836   ULISE    35
## 837   Yolan    35
## 838   ABELI    34
## 839   LA BA    34
## 840   LUDIV    34
## 841   LULU     34
## 842   MAIRA    34
## 843   Norma    34
## 844   VENTU    34
## 845   AIDEE    33
## 846   Marti    33
## 847   ROXAN    33
## 848   CHAGU    32
## 849   Ma Te    32
## 850   Rufin    32
## 851   Ana R    31
## 852   Dalil    31
## 853   EL MO    31
## 854   Elvir    31
## 855   Esper    31
## 856   LECHE    31
## 857   Suzan    31
## 858   Tibur    31
## 859   ABISA    30
## 860   ANITA    30
## 861   DEL C    30
## 862   ETELV    30
## 863   LAURO    30
## 864   MIREY    30
## 865   Senor    30
## 866   Ana L    29
## 867   ANIBA    29
## 868   Jocel    29
## 869   MARY     29
## 870   MURIL    29
## 871   Noe O    29
## 872   Refug    29
## 873   Yanet    29
## 874   DOS B    28
## 875   MARIT    28
## 876   PERLA    28
## 877   PLACI    28
## 878   ROMEL    28
## 879   TOÑO     28
## 880   Yadir    28
## 881   Gilbe    27
## 882   Panfi    27
## 883   Perfe    27
## 884   VERUL    27
## 885   Ameli    26
## 886   Benig    26
## 887   GLAFI    26
## 888   LEOPO    26
## 889   Nancy    26
## 890   RIGO     26
## 891   CRECE    25
## 892   Eunic    25
## 893   Maric    25
## 894   OTONI    25
## 895   Paula    25
## 896   Abiga    24
## 897   CRESC    24
## 898   CUATR    24
## 899   EREND    24
## 900   FERMA    24
## 901   GLADY    24
## 902   Judit    24
## 903   Keren    24
## 904   Ma Co    24
## 905   MA JU    24
## 906   Ricar    24
## 907   FUENT    23
## 908   LUZ R    23
## 909   Ma Ro    23
## 910   Moise    23
## 911   Renzo    23
## 912   RUBI     23
## 913   TACOS    23
## 914   ARSEN    22
## 915   ASUNC    22
## 916   Eva C    22
## 917   J TRI    22
## 918   Ma Lu    22
## 919   Cecil    21
## 920   Esteb    21
## 921   Irma     21
## 922   Israe    21
## 923   Karen    21
## 924   Ma Ra    21
## 925   NATIV    21
## 926   Nicol    21
## 927   VALVE    21
## 928   BIONI    20
## 929   EL SU    20
## 930   Hermi    20
## 931   Josue    20
## 932   NOEL     20
## 933   Virgi    20
## 934   ELEUT    19
## 935   Emanu    19
## 936   Eva J    19
## 937   GLORE    19
## 938   Hulbe    19
## 939   MA CO    19
## 940   REPAR    19
## 941   Saman    19
## 942   Santi    19
## 943   VANES    19
## 944   Abel     18
## 945   AMBRO    18
## 946   Balvi    18
## 947   ELMA     18
## 948   Emeli    18
## 949   Hilda    18
## 950   Joaqu    18
## 951    TOÑO    18
## 952   Ciril    17
## 953   Edgar    17
## 954   GUDAL    17
## 955   HERMA    17
## 956   Hidel    17
## 957   JUGOS    17
## 958   Lizet    17
## 959   MA RE    17
## 960   Narci    17
## 961   Salom    17
## 962   Vivia    17
## 963   Abrah    16
## 964   Clara    16
## 965   Const    16
## 966   Jessi    16
## 967   JUSTA    16
## 968   KENIA    16
## 969   Mateo    16
## 970   ZURI     16
## 971   Ana C    15
## 972   ANAST    15
## 973   Elias    15
## 974   Eloy     15
## 975   J. Je    15
## 976   LAS P    15
## 977   MARI     15
## 978   Pauli    15
## 979   REYMU    15
## 980   Vanes    15
## 981   Z ABR    15
## 982   Adolf    14
## 983   Elier    14
## 984   FILIB    14
## 985   Gonza    14
## 986   Ma Eu    14
## 987   Maris    14
## 988   J Gua    13
## 989   M DEL    13
## 990   MATIA    13
## 991   ALAN     12
## 992   EL RA    12
## 993   Flavi    12
## 994   GENOV    12
## 995   GRISE    12
## 996   ISIDO    12
## 997   Paola    12
## 998   POLLO    12
## 999   Alba     11
## 1000  ANCEL    11
## 1001  CALEB    11
## 1002  Diego    11
## 1003  GEMMA    11
## 1004  Horte    11
## 1005  Petra    11
## 1006  PORTO    11
## 1007  ZULEM    11
## 1008  CHRIS    10
## 1009  Cipri    10
## 1010  Mikja    10
## 1011  SIX A    10
## 1012  Yrene    10
## 1013  Belen     9
## 1014  Catal     9
## 1015  Clien     9
## 1016  Gerso     9
## 1017  IVETT     9
## 1018  J SAC     9
## 1019  ANA V     8
## 1020  Arian     8
## 1021  ASOCI     8
## 1022  Cinth     8
## 1023  Doria     8
## 1024  ESDRA     8
## 1025  Eva R     8
## 1026  Genov     8
## 1027  Graci     8
## 1028  Ivon      8
## 1029  LUZ H     8
## 1030  Ma Re     8
## 1031  Ma Ve     8
## 1032  Prosp     8
## 1033  Rigob     8
## 1034  ANAIS     7
## 1035  Ma As     7
## 1036  Merce     7
## 1037  NOA E     7
## 1038  Ramir     7
## 1039  Elia      6
## 1040  Jonat     6
## 1041  Julia     6
## 1042  NATHA     6
## 1043  Obdul     6
## 1044  Robus     6
## 1045  TORTI     6
## 1046  Adan      5
## 1047  Chris     5
## 1048  Claro     5
## 1049  Emma      5
## 1050  Froyl     5
## 1051  Karin     5
## 1052  LESLI     5
## 1053  Dulce     4
## 1054  Erik      4
## 1055  Libni     4
## 1056  Soled     4
## 1057  Sonia     4
## 1058  TRANQ     4
## 1059  Bibia     3
## 1060  Elva      3
## 1061  Evang     3
## 1062  Fiado     3
## 1063  Lourd     3
## 1064  SEATT     3
## 1065  Bryan     2
## 1066  Decot     2
## 1067  Domin     2
## 1068  Edilb     2
## 1069  Giova     2
## 1070  Hayde     2
## 1071  Jaime     2
## 1072  Lucy      2
## 1073  Modes     2
## 1074  Myrna     2
## 1075  Rosay     2
## 1076  Sever     2
## 1077  * * *     1
## 1078  AGUAL     1
## 1079  Alici     1
## 1080  Cesar     1
## 1081  Dolor     1
## 1082  Eric      1
## 1083  Erica     1
## 1084  Esmer     1
## 1085  Fatim     1
## 1086  Felix     1
## 1087  Livie     1
## 1088  Melid     1
## 1089 Nombre     1
## 1090  NUEVO     1
## 1091  Palmi     1
## 1092  Produ     1
## 1093  Rodri     1
## 1094  SIN N     1
## 1095  VETER     1
## 1096  VIKIN     1
## 1097  Zalat     1
count(base_de_datos, Tamaño.Cte.Industria, sort = TRUE)
##   Tamaño.Cte.Industria      n
## 1         Extra Grande 230190
## 2                Micro 117110
## 3              Pequeño  77875
## 4               Grande  41333
## 5 Tamaño Cte Industria      1
count(base_de_datos, Segmento.Det, sort = TRUE)
##            Segmento.Det      n
## 1       Sabores Regular 156242
## 2         Colas Regular  95720
## 3           Colas Light  43807
## 4      Jugos y Néctares  33362
## 5      Bebidas de Fruta  30641
## 6       Agua Purificada  20766
## 7          Agua Mineral  12590
## 8    Isotónicos Regular  11905
## 9            Té Regular  10062
## 10      Agua Saborizada  10056
## 11  Bebidas Energeticas   9847
## 12        Sabores Light   7330
## 13 Leche UHT Saborizada   6395
## 14    Leche UHT Regular   5618
## 15      Bebidas de Soya   5277
## 16 Leche UHT Especializ   4655
## 17     Isotónicos Light   1009
## 18 Cafe Listo Para Bebe    979
## 19             Té Light    241
## 20               Polvos      6
## 21         Segmento Det      1
count(base_de_datos, Marca, sort = TRUE)
##                   Marca     n
## 1             Coca-Cola 95720
## 2                Sprite 37925
## 3                 Fanta 35728
## 4                Fresca 26435
## 5          Manzana Lift 25598
## 6       Coca-Cola Light 21926
## 7             Del Valle 21325
## 8  Ciel Agua Purificada 20766
## 9         Sidral Mundet 17150
## 10           Valle Frut 15808
## 11 Coca-Cola Sin Azúcar 15523
## 12     Del Valle y Nada 12475
## 13             Powerade 11905
## 14             Fuze Tea 10062
## 15      Topo Chico A.M.  8191
## 16          Ciel Exprim  7183
## 17    Del Valle Reserva  6803
## 18 Santa Clara Saboriza  6395
## 19       Delaware Punch  6059
## 20               Frutsi  5566
## 21 Santa Clara Deslacto  4655
## 22       Coca-Cola Zero  4556
## 23    Ciel Mineralizada  4399
## 24   Santa Clara Entera  4055
## 25       Monster Energy  3808
## 26                 Burn  3591
## 27          AdeS Frutal  3430
## 28               Senzao  3125
## 29          Sprite Zero  3010
## 30                Pulpy  2885
## 31              Glacéau  2448
## 32                 Joya  1962
## 33 Del Valle NutriForte  1943
## 34          AdeS Lácteo  1847
## 35       Coca-Cola Life  1775
## 36            Ciel Mini  1742
## 37    Santa Clara Light  1563
## 38 Del Valle Nutridefen  1377
## 39     Del Valle Blends  1165
## 40      Ciel Saborizada  1131
## 41        Powerade Zero  1009
## 42         Barista Bros   973
## 43 Del Valle NutriVeget   749
## 44               Bebere   320
## 45       Fuze Tea Light   241
## 46               Mixtos    52
## 47           Fanta Zero    40
## 48    Manzana Lift Zero    29
## 49  Coca-Cola Light Sin    27
## 50          Fresca Zero    20
## 51   Topo Chico Sangría    14
## 52            Café Blak    12
## 53  Sidral Mundet Light     8
## 54       Del Valle Bits     3
## 55                Marca     1
## 56 Topo Chico Sangría L     1
count(base_de_datos, Presentacion, sort = TRUE)
##        Presentacion     n
## 1         600 ml NR 74008
## 2      1 Ltro. N.R. 36930
## 3         2 Lts. NR 36415
## 4        500 ml Ret 35165
## 5       1.5 Lts. NR 30637
## 6       Lata 235 ml 24551
## 7         400 ml NR 22877
## 8    250 ml. NR PET 21735
## 9  500 ml NR Vidrio 18758
## 10      2.5 Lts. NR 13235
## 11             Lata 11810
## 12     200 ml Tetra 11190
## 13    500 ml NR PET 11022
## 14    1 Ltro. Tetra 10580
## 15    235 ml NR Vid 10476
## 16    12 Oz. NR Pet  9906
## 17     1.5 Lts. Ret  8398
## 18    413 ml NR VId  8292
## 19      Lata 16 Oz.  7792
## 20       12 Oz. Ret  7373
## 21 2.5 Lts. Ret Pet  7161
## 22     250 ml Tetra  6121
## 23     1.250 Lts NR  4741
## 24   300 ML. NR PET  4356
## 25         8 Oz. NR  3876
## 26     1.750 Lts NR  3687
## 27    237 ml NR Pet  3611
## 28   250 ML. NR VID  3184
## 29  946 ml NR Tetra  3183
## 30       2 Lts. Ret  2501
## 31        5 Lts. NR  2253
## 32      1 Ltro Ret.  2111
## 33      Lata 450 ml  1505
## 34      Lata 453 ml  1269
## 35  125 ml NR Tetra  1093
## 36    355 Ml NR Pet   670
## 37      Lata 335 ml   586
## 38      6.5 Oz. Ret   573
## 39      Lata 340 ml   563
## 40      Lata 222 ml   499
## 41        473 ml NR   320
## 42  100 ml NR Tetra   285
## 43    237 ml NR Vid   238
## 44       Lata 8 OZ.   230
## 45 12 Oz. NR Vidrio   195
## 46        710 ml NR   172
## 47      LATA 680 ML   151
## 48        3 Lts. NR   145
## 49  750 ml NR Tetra    32
## 50    350 ML NR PET    16
## 51      Lata 237 ml    13
## 52       Bag In Box     6
## 53   Sobres 907 grs     6
## 54    251ml NR Alum     3
## 55        200 ml NR     2
## 56      Lata 310 ml     1
## 57     Presentacion     1
count(base_de_datos, Tamaño, sort = TRUE)
##       Tamaño      n
## 1 Individual 328513
## 2   Familiar 137995
## 3     Tamaño      1
count(base_de_datos, Retornable_NR, sort = TRUE)
##   Retornable_NR      n
## 1 No Retornable 403226
## 2    Retornable  63282
## 3 Retornable_NR      1
tibble(base_de_datos)
## # A tibble: 466,509 × 25
##       ID   Año Territorio  Sub.Terr…¹ CEDI  Cliente Nombre Tamañ…² Segme…³ Marca
##    <int> <int> <chr>       <chr>      <chr> <chr>   <chr>  <chr>   <chr>   <chr>
##  1     1  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua M… Topo…
##  2     2  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua P… Ciel…
##  3     3  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua P… Ciel…
##  4     4  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua S… Ciel…
##  5     5  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua S… Ciel…
##  6     6  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Agua S… Ciel…
##  7     7  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Bebida… Dela…
##  8     8  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Bebida… Dela…
##  9     9  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Bebida… Frut…
## 10    10  2016 Guadalajara Belenes    Suc.… 77737   ABARR  Extra … Bebida… Pulpy
## # … with 466,499 more rows, 15 more variables: Presentacion <chr>,
## #   Tamaño <chr>, Retornable_NR <chr>, Enero <chr>, Febrero <chr>, Marzo <chr>,
## #   Abril <chr>, Mayo <chr>, Junio <chr>, Julio <chr>, Agosto <chr>,
## #   Septiembre <chr>, Octubre <chr>, Noviembre <chr>, Diciembre <chr>, and
## #   abbreviated variable names ¹​Sub.Territorio, ²​Tamaño.Cte.Industria,
## #   ³​Segmento.Det
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Año                 : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : chr  "77737" "77737" "77737" "77737" ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamaño.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamaño              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : chr  "" "" "" "" ...
##  $ Febrero             : chr  "" "2" "" "" ...
##  $ Marzo               : chr  "" "8" "3" "" ...
##  $ Abril               : chr  "" "4" "6" "" ...
##  $ Mayo                : chr  "" "4" "3" "" ...
##  $ Junio               : chr  "" "2" "3" "" ...
##  $ Julio               : chr  "" "2" "3" "" ...
##  $ Agosto              : chr  "" "2" "3" "" ...
##  $ Septiembre          : chr  "" "2" "3" "" ...
##  $ Octubre             : chr  "" "2" "3" "" ...
##  $ Noviembre           : chr  "" "4" "3" "" ...
##  $ Diciembre           : chr  "1" "2" "3" "1" ...
head(base_de_datos)
##   ID  Año  Territorio Sub.Territorio         CEDI Cliente Nombre
## 1  1 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 2  2 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 3  3 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 4  4 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 5  5 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 6  6 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
##   Tamaño.Cte.Industria    Segmento.Det                Marca   Presentacion
## 1         Extra Grande    Agua Mineral      Topo Chico A.M.      600 ml NR
## 2         Extra Grande Agua Purificada Ciel Agua Purificada   1 Ltro. N.R.
## 3         Extra Grande Agua Purificada Ciel Agua Purificada    1.5 Lts. NR
## 4         Extra Grande Agua Saborizada          Ciel Exprim      600 ml NR
## 5         Extra Grande Agua Saborizada            Ciel Mini 300 ML. NR PET
## 6         Extra Grande Agua Saborizada      Ciel Saborizada   1 Ltro. N.R.
##       Tamaño Retornable_NR Enero Febrero Marzo Abril Mayo Junio Julio Agosto
## 1 Individual No Retornable                                                  
## 2 Individual No Retornable             2     8     4    4     2     2      2
## 3 Individual No Retornable                   3     6    3     3     3      3
## 4 Individual No Retornable                                                  
## 5 Individual No Retornable                                                  
## 6 Individual No Retornable                   1                              
##   Septiembre Octubre Noviembre Diciembre
## 1                                      1
## 2          2       2         4         2
## 3          3       3         3         3
## 4                                      1
## 5                            0          
## 6
tail(base_de_datos)
##            ID  Año  Territorio Sub.Territorio           CEDI Cliente Nombre
## 466504 466504 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
## 466505 466505 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
## 466506 466506 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
## 466507 466507 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
## 466508 466508 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
## 466509 466509 2019 Guadalajara      Huentitán Suc. Huentitán    4531  HECTO
##        Tamaño.Cte.Industria    Segmento.Det    Marca   Presentacion     Tamaño
## 466504              Pequeño Sabores Regular   Sprite 250 ml. NR PET Individual
## 466505              Pequeño Sabores Regular   Sprite      400 ml NR Individual
## 466506              Pequeño Sabores Regular   Sprite     500 ml Ret Individual
## 466507              Pequeño Sabores Regular   Sprite      600 ml NR Individual
## 466508              Pequeño Sabores Regular   Sprite    Lata 235 ml Individual
## 466509              Pequeño      Té Regular Fuze Tea      600 ml NR Individual
##        Retornable_NR Enero Febrero Marzo Abril Mayo Junio Julio Agosto
## 466504 No Retornable             1           1    1     1             
## 466505 No Retornable             0     1     2          2            1
## 466506    Retornable             6          10    4     8    11      8
## 466507 No Retornable     1       3     4     6    2     4     9      1
## 466508 No Retornable     0       0           0                1       
## 466509 No Retornable             1     2     1    4     1    16       
##        Septiembre Octubre Noviembre Diciembre
## 466504                                       
## 466505                                       
## 466506                                       
## 466507                                       
## 466508                                       
## 466509

Observaciones

  1. De Enero a Diciembre las cantidades de venta, y los Clientes, vienen como caracter, hay que cambiarlo a entero.

Convertir tipos de variables

base_de_datos$Cliente <- as.integer(base_de_datos$Cliente)
## Warning: NAs introducidos por coerción
str(base_de_datos)
## 'data.frame':    466509 obs. of  25 variables:
##  $ ID                  : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Año                 : int  2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 ...
##  $ Territorio          : chr  "Guadalajara" "Guadalajara" "Guadalajara" "Guadalajara" ...
##  $ Sub.Territorio      : chr  "Belenes" "Belenes" "Belenes" "Belenes" ...
##  $ CEDI                : chr  "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" "Suc. Belenes" ...
##  $ Cliente             : int  77737 77737 77737 77737 77737 77737 77737 77737 77737 77737 ...
##  $ Nombre              : chr  "ABARR" "ABARR" "ABARR" "ABARR" ...
##  $ Tamaño.Cte.Industria: chr  "Extra Grande" "Extra Grande" "Extra Grande" "Extra Grande" ...
##  $ Segmento.Det        : chr  "Agua Mineral" "Agua Purificada" "Agua Purificada" "Agua Saborizada" ...
##  $ Marca               : chr  "Topo Chico A.M." "Ciel Agua Purificada" "Ciel Agua Purificada" "Ciel Exprim" ...
##  $ Presentacion        : chr  "600 ml NR" "1 Ltro. N.R." "1.5 Lts. NR" "600 ml NR" ...
##  $ Tamaño              : chr  "Individual" "Individual" "Individual" "Individual" ...
##  $ Retornable_NR       : chr  "No Retornable" "No Retornable" "No Retornable" "No Retornable" ...
##  $ Enero               : chr  "" "" "" "" ...
##  $ Febrero             : chr  "" "2" "" "" ...
##  $ Marzo               : chr  "" "8" "3" "" ...
##  $ Abril               : chr  "" "4" "6" "" ...
##  $ Mayo                : chr  "" "4" "3" "" ...
##  $ Junio               : chr  "" "2" "3" "" ...
##  $ Julio               : chr  "" "2" "3" "" ...
##  $ Agosto              : chr  "" "2" "3" "" ...
##  $ Septiembre          : chr  "" "2" "3" "" ...
##  $ Octubre             : chr  "" "2" "3" "" ...
##  $ Noviembre           : chr  "" "4" "3" "" ...
##  $ Diciembre           : chr  "1" "2" "3" "1" ...
summary(base_de_datos)
##        ID              Año        Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##                                                                       
##      CEDI              Cliente         Nombre          Tamaño.Cte.Industria
##  Length:466509      Min.   :    3   Length:466509      Length:466509       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##                     NA's   :1                                              
##  Segmento.Det          Marca           Presentacion          Tamaño         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR         Enero             Febrero             Marzo          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##     Abril               Mayo              Junio              Julio          
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##     Agosto           Septiembre          Octubre           Noviembre        
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##   Diciembre        
##  Length:466509     
##  Class :character  
##  Mode  :character  
##                    
##                    
##                    
## 
base_de_datos$Enero <- as.integer(base_de_datos$Enero)
## Warning: NAs introducidos por coerción
base_de_datos$Febrero <- as.integer(base_de_datos$Febrero)
## Warning: NAs introducidos por coerción
base_de_datos$Marzo <- as.integer(base_de_datos$Marzo)
## Warning: NAs introducidos por coerción
base_de_datos$Abril <- as.integer(base_de_datos$Abril)
## Warning: NAs introducidos por coerción
base_de_datos$Mayo <- as.integer(base_de_datos$Mayo)
## Warning: NAs introducidos por coerción
base_de_datos$Junio <- as.integer(base_de_datos$Junio)
## Warning: NAs introducidos por coerción
base_de_datos$Julio <- as.integer(base_de_datos$Julio)
## Warning: NAs introducidos por coerción
base_de_datos$Agosto <- as.integer(base_de_datos$Agosto)
## Warning: NAs introducidos por coerción
base_de_datos$Septiembre <- as.integer(base_de_datos$Septiembre)
## Warning: NAs introducidos por coerción
base_de_datos$Octubre <- as.integer(base_de_datos$Octubre)
## Warning: NAs introducidos por coerción
base_de_datos$Noviembre <- as.integer(base_de_datos$Noviembre)
## Warning: NAs introducidos por coerción
base_de_datos$Diciembre <- as.integer(base_de_datos$Diciembre)
## Warning: NAs introducidos por coerción
summary(base_de_datos)
##        ID              Año        Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##                                                                       
##      CEDI              Cliente         Nombre          Tamaño.Cte.Industria
##  Length:466509      Min.   :    3   Length:466509      Length:466509       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##                     NA's   :1                                              
##  Segmento.Det          Marca           Presentacion          Tamaño         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR          Enero           Febrero           Marzo       
##  Length:466509      Min.   :-19.00   Min.   :-11.00   Min.   :-32.00  
##  Class :character   1st Qu.:  1.00   1st Qu.:  1.00   1st Qu.:  1.00  
##  Mode  :character   Median :  2.00   Median :  2.00   Median :  3.00  
##                     Mean   :  9.39   Mean   :  9.09   Mean   : 10.54  
##                     3rd Qu.:  6.00   3rd Qu.:  6.00   3rd Qu.:  6.00  
##                     Max.   :999.00   Max.   :986.00   Max.   :986.00  
##                     NA's   :233552   NA's   :231286   NA's   :227507  
##      Abril             Mayo             Junio             Julio       
##  Min.   :-70.00   Min.   :-106.00   Min.   :-211.00   Min.   :-60.00  
##  1st Qu.:  1.00   1st Qu.:   1.00   1st Qu.:   1.00   1st Qu.:  1.00  
##  Median :  3.00   Median :   3.00   Median :   3.00   Median :  2.00  
##  Mean   : 10.62   Mean   :  11.44   Mean   :  10.98   Mean   : 10.72  
##  3rd Qu.:  6.00   3rd Qu.:   7.00   3rd Qu.:   6.00   3rd Qu.:  6.00  
##  Max.   :993.00   Max.   : 991.00   Max.   : 998.00   Max.   :993.00  
##  NA's   :224186   NA's   :217073    NA's   :215908    NA's   :223538  
##      Agosto          Septiembre        Octubre         Noviembre     
##  Min.   :-211.00   Min.   :-527     Min.   :-38.0    Min.   :-25.0   
##  1st Qu.:   1.00   1st Qu.:   1     1st Qu.:  1.0    1st Qu.:  1.0   
##  Median :   3.00   Median :   3     Median :  3.0    Median :  3.0   
##  Mean   :  10.95   Mean   :  12     Mean   : 12.1    Mean   : 11.8   
##  3rd Qu.:   6.00   3rd Qu.:   7     3rd Qu.:  7.0    3rd Qu.:  6.0   
##  Max.   : 999.00   Max.   : 993     Max.   :998.0    Max.   :991.0   
##  NA's   :220367    NA's   :337402   NA's   :338483   NA's   :338546  
##    Diciembre     
##  Min.   :-28     
##  1st Qu.:  1     
##  Median :  3     
##  Mean   : 13     
##  3rd Qu.:  7     
##  Max.   :997     
##  NA's   :341955

¿Cuántos NA tengo en la base de datos?

sum(is.na(base_de_datos))
## [1] 3149804

¿Cuántos NA tengo por variable?

sapply(base_de_datos, function(x) sum(is.na(x)))
##                   ID                  Año           Territorio 
##                    0                    0                    0 
##       Sub.Territorio                 CEDI              Cliente 
##                    0                    0                    1 
##               Nombre Tamaño.Cte.Industria         Segmento.Det 
##                    0                    0                    0 
##                Marca         Presentacion               Tamaño 
##                    0                    0                    0 
##        Retornable_NR                Enero              Febrero 
##                    0               233552               231286 
##                Marzo                Abril                 Mayo 
##               227507               224186               217073 
##                Junio                Julio               Agosto 
##               215908               223538               220367 
##           Septiembre              Octubre            Noviembre 
##               337402               338483               338546 
##            Diciembre 
##               341955

Detectar valores atípicos

boxplot(base_de_datos$Enero, horizontal = TRUE)

boxplot(base_de_datos$Diciembre, horizontal = TRUE)

Medidas de Tendencia Central

Las medidas de tendencia central son: Media (Promedio), Mediana y Moda.

summary(base_de_datos)
##        ID              Año        Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466509      Length:466509     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233255   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##                                                                       
##      CEDI              Cliente         Nombre          Tamaño.Cte.Industria
##  Length:466509      Min.   :    3   Length:466509      Length:466509       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##                     NA's   :1                                              
##  Segmento.Det          Marca           Presentacion          Tamaño         
##  Length:466509      Length:466509      Length:466509      Length:466509     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR          Enero           Febrero           Marzo       
##  Length:466509      Min.   :-19.00   Min.   :-11.00   Min.   :-32.00  
##  Class :character   1st Qu.:  1.00   1st Qu.:  1.00   1st Qu.:  1.00  
##  Mode  :character   Median :  2.00   Median :  2.00   Median :  3.00  
##                     Mean   :  9.39   Mean   :  9.09   Mean   : 10.54  
##                     3rd Qu.:  6.00   3rd Qu.:  6.00   3rd Qu.:  6.00  
##                     Max.   :999.00   Max.   :986.00   Max.   :986.00  
##                     NA's   :233552   NA's   :231286   NA's   :227507  
##      Abril             Mayo             Junio             Julio       
##  Min.   :-70.00   Min.   :-106.00   Min.   :-211.00   Min.   :-60.00  
##  1st Qu.:  1.00   1st Qu.:   1.00   1st Qu.:   1.00   1st Qu.:  1.00  
##  Median :  3.00   Median :   3.00   Median :   3.00   Median :  2.00  
##  Mean   : 10.62   Mean   :  11.44   Mean   :  10.98   Mean   : 10.72  
##  3rd Qu.:  6.00   3rd Qu.:   7.00   3rd Qu.:   6.00   3rd Qu.:  6.00  
##  Max.   :993.00   Max.   : 991.00   Max.   : 998.00   Max.   :993.00  
##  NA's   :224186   NA's   :217073    NA's   :215908    NA's   :223538  
##      Agosto          Septiembre        Octubre         Noviembre     
##  Min.   :-211.00   Min.   :-527     Min.   :-38.0    Min.   :-25.0   
##  1st Qu.:   1.00   1st Qu.:   1     1st Qu.:  1.0    1st Qu.:  1.0   
##  Median :   3.00   Median :   3     Median :  3.0    Median :  3.0   
##  Mean   :  10.95   Mean   :  12     Mean   : 12.1    Mean   : 11.8   
##  3rd Qu.:   6.00   3rd Qu.:   7     3rd Qu.:  7.0    3rd Qu.:  6.0   
##  Max.   : 999.00   Max.   : 993     Max.   :998.0    Max.   :991.0   
##  NA's   :220367    NA's   :337402   NA's   :338483   NA's   :338546  
##    Diciembre     
##  Min.   :-28     
##  1st Qu.:  1     
##  Median :  3     
##  Mean   : 13     
##  3rd Qu.:  7     
##  Max.   :997     
##  NA's   :341955
mode <- function(x) {
  ux <- unique(x)
  ux[which.max(tabulate(match(x, ux)))]
}
# Nota: Si ningún dato se repite, la función coloca el primer valor en lugar de marcar error. 

mode(base_de_datos$Cliente)
## [1] 286
mode(base_de_datos$Enero)
## [1] NA

Limpiar todos los nombres de una tabla

# install.packages("janitor")
library(janitor)
## 
## Attaching package: 'janitor'
## The following objects are masked from 'package:stats':
## 
##     chisq.test, fisher.test
base_de_datos_1 <- clean_names(base_de_datos)

Función select

library(dplyr)
select <- select(base_de_datos, CEDI, Enero:Junio)
select
##                 CEDI Enero Febrero Marzo Abril Mayo Junio
## 1       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2       Suc. Belenes    NA       2     8     4    4     2
## 3       Suc. Belenes    NA      NA     3     6    3     3
## 4       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5       Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6       Suc. Belenes    NA      NA     1    NA   NA    NA
## 7       Suc. Belenes     1      NA    NA    NA    0    NA
## 8       Suc. Belenes    NA       1    NA     1   NA     1
## 9       Suc. Belenes     3       3     4     4    4     4
## 10      Suc. Belenes    NA      NA    NA    NA   NA     0
## 11      Suc. Belenes    NA       1     1     1    1     1
## 12      Suc. Belenes     0      NA    NA    NA   NA    NA
## 13      Suc. Belenes    NA       2     1     2    1     1
## 14      Suc. Belenes     3       3     3     3    3    NA
## 15      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 16      Suc. Belenes     4      NA    NA     2   NA    NA
## 17      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 18      Suc. Belenes     6      NA    NA     4   NA     4
## 19      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 20      Suc. Belenes    13      13     8    21   29     8
## 21      Suc. Belenes    NA      NA    NA    NA   NA    10
## 22      Suc. Belenes    41      38    44    76   57    67
## 23      Suc. Belenes    15      11     9    18   17    14
## 24      Suc. Belenes     5       2     2     3    3     2
## 25      Suc. Belenes    NA      NA    NA     6   NA    NA
## 26      Suc. Belenes    14       6     8    14    3     8
## 27      Suc. Belenes    14      21    28    32   14    14
## 28      Suc. Belenes    99      81    81   109   81    95
## 29      Suc. Belenes    25       6    11    27   27    23
## 30      Suc. Belenes    95      74    80   129  106   108
## 31      Suc. Belenes     3       2     1     3    4     2
## 32      Suc. Belenes     2       3     2     3    5     2
## 33      Suc. Belenes     6      NA     4     2    4     2
## 34      Suc. Belenes     3       1    NA     1    1     1
## 35      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 36      Suc. Belenes    NA      NA     1     1    1     1
## 37      Suc. Belenes    NA      NA    NA     1   NA    NA
## 38      Suc. Belenes     1      NA    NA    NA   NA    NA
## 39      Suc. Belenes     2       0     0     0    0     0
## 40      Suc. Belenes     1       1     1     0    1     1
## 41      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 42      Suc. Belenes     0      NA    NA     0   NA     1
## 43      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 44      Suc. Belenes    NA      NA     0     0    0     0
## 45      Suc. Belenes     1       1    NA     1    1     1
## 46      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 47      Suc. Belenes    NA      NA    NA    NA   NA     1
## 48      Suc. Belenes    NA      NA    NA     3   NA     3
## 49      Suc. Belenes     0      NA    NA    NA    0    NA
## 50      Suc. Belenes    NA      NA     0    NA    1     1
## 51      Suc. Belenes     1      NA     1     2    2     2
## 52      Suc. Belenes     2      NA     1     2    1     3
## 53      Suc. Belenes     0      NA    NA     0   NA    NA
## 54      Suc. Belenes    NA      NA     0     0   NA    NA
## 55      Suc. Belenes    NA      NA    NA    NA   NA     1
## 56      Suc. Belenes     0      NA    NA    NA    0    NA
## 57      Suc. Belenes    NA      NA    NA    NA    0     1
## 58      Suc. Belenes     1      NA     1     2    2     2
## 59      Suc. Belenes    NA       1    NA    NA    2    NA
## 60      Suc. Belenes     0      NA    NA     0   NA    NA
## 61      Suc. Belenes    NA      NA     0     0   NA    NA
## 62      Suc. Belenes     0      NA    NA    NA    0    NA
## 63      Suc. Belenes    NA      NA    NA    NA    0     1
## 64      Suc. Belenes     1      NA     1     2    2     2
## 65      Suc. Belenes    NA       1    NA     1    1    NA
## 66      Suc. Belenes     0      NA    NA     0   NA    NA
## 67      Suc. Belenes    NA      NA    NA    NA   NA     1
## 68      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 69      Suc. Belenes     2      NA    NA    NA   NA    NA
## 70      Suc. Belenes     1      NA    NA    NA   NA     3
## 71      Suc. Belenes    NA      NA     0     0   NA    NA
## 72      Suc. Belenes    NA      NA    NA    NA   NA     1
## 73      Suc. Belenes    NA      NA     3    NA    3     3
## 74      Suc. Belenes     0      NA    NA     1    0    NA
## 75      Suc. Belenes    NA      NA    NA     0   NA     1
## 76      Suc. Belenes     1      NA     1     2    4     2
## 77      Suc. Belenes     1       2     3     2    4    NA
## 78      Suc. Belenes     0      NA    NA     0   NA    NA
## 79      Suc. Belenes    NA      NA     0     0   NA    NA
## 80      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 81      Suc. Belenes     1       1     1     1    1     1
## 82      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 83      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 84      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 85      Suc. Belenes     2       8     4     8    4     4
## 86      Suc. Belenes     3      NA     3     6    6     6
## 87      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 88      Suc. Belenes     5       3     3    NA    3     3
## 89      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 90      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 91      Suc. Belenes    NA      NA     1    NA   NA    NA
## 92      Suc. Belenes     2       3     3     3    4     5
## 93      Suc. Belenes    NA      NA    NA    NA   NA     0
## 94      Suc. Belenes     1      NA    NA     1    1     3
## 95      Suc. Belenes     2      NA    NA     1    2     1
## 96      Suc. Belenes     3       3     6     3    3     6
## 97      Suc. Belenes    NA      NA    NA    NA   NA    NA
## 98      Suc. Belenes    NA      NA    NA    NA   NA     1
## 99      Suc. Belenes    NA      NA    NA    NA   NA     1
## 100     Suc. Belenes     2       4    NA     2    2    NA
## 101     Suc. Belenes    NA       1    NA     1    1    NA
## 102     Suc. Belenes     2       2     2     2   NA     2
## 103     Suc. Belenes    NA      NA    NA     3   NA     3
## 104     Suc. Belenes    NA      NA     3    NA   NA    NA
## 105     Suc. Belenes    NA      NA    NA    NA   NA     2
## 106     Suc. Belenes     2       2     2     2    4     2
## 107     Suc. Belenes     1      NA    NA    NA   NA    NA
## 108     Suc. Belenes    NA       1    NA     1    1    NA
## 109     Suc. Belenes    NA      NA    NA     2   NA    NA
## 110     Suc. Belenes     1      NA    NA    NA   NA     1
## 111     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 112     Suc. Belenes     3      NA     3     8   NA    NA
## 113     Suc. Belenes    NA      NA    NA    NA   NA     3
## 114     Suc. Belenes     6       3     6     6    3    10
## 115     Suc. Belenes     3       3     5     3    8     5
## 116     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 117     Suc. Belenes     3       3     3     6    3    NA
## 118     Suc. Belenes     7      NA     4    NA   NA    NA
## 119     Suc. Belenes    46      39    35    32   53    39
## 120     Suc. Belenes     2       4     4     6    4     4
## 121     Suc. Belenes     8      13    11     6   13    15
## 122     Suc. Belenes    49      46    46    38   46    44
## 123     Suc. Belenes     5       3     3     5    3     3
## 124     Suc. Belenes     2       2     2     2    2     2
## 125     Suc. Belenes     3       3     4     2    2     1
## 126     Suc. Belenes     1       1    NA     1    3     1
## 127     Suc. Belenes    NA       1    NA     1   NA    NA
## 128     Suc. Belenes     1       1    NA     2    4     3
## 129     Suc. Belenes     0       0     1     0    0     0
## 130     Suc. Belenes     3      NA     1     1    1     1
## 131     Suc. Belenes    NA       2    NA    NA   NA    NA
## 132     Suc. Belenes     0      NA    NA    NA   NA    NA
## 133     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 134     Suc. Belenes     1       0    NA     0   NA     0
## 135     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 136     Suc. Belenes    NA       1    NA     0    0     0
## 137     Suc. Belenes    NA      NA    NA    NA    1    NA
## 138     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 139     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 140     Suc. Belenes    NA      NA    NA    NA   NA     2
## 141     Suc. Belenes     1      NA     1     1   NA     3
## 142     Suc. Belenes     0      NA    NA    NA    1     0
## 143     Suc. Belenes     1      NA    NA     1    1    NA
## 144     Suc. Belenes    NA      NA    NA    NA    1    NA
## 145     Suc. Belenes    NA       0    NA    NA   NA    NA
## 146     Suc. Belenes    NA      NA    NA    NA   NA     2
## 147     Suc. Belenes     1      NA     1     1   NA    NA
## 148     Suc. Belenes    NA      NA    NA     0   NA     0
## 149     Suc. Belenes     1      NA    NA     1    1     2
## 150     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 151     Suc. Belenes    NA       0    NA    NA   NA    NA
## 152     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 153     Suc. Belenes     1      NA     1     1   NA    NA
## 154     Suc. Belenes    NA      NA    NA    NA   NA     1
## 155     Suc. Belenes     1      NA    NA     1    1    NA
## 156     Suc. Belenes     1      NA    NA    NA   NA    NA
## 157     Suc. Belenes    NA      NA    NA    NA    1    NA
## 158     Suc. Belenes    NA      NA    NA    NA   NA     2
## 159     Suc. Belenes    NA      NA     3    NA   NA    NA
## 160     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 161     Suc. Belenes    NA       2    NA    NA   NA    NA
## 162     Suc. Belenes    NA      NA     3    NA   NA    NA
## 163     Suc. Belenes    NA       0    NA    NA   NA    NA
## 164     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 165     Suc. Belenes    NA      NA    NA    NA   NA     2
## 166     Suc. Belenes     1      NA     1     1    3    NA
## 167     Suc. Belenes    NA      NA    NA    NA   NA     0
## 168     Suc. Belenes     1      NA    NA     1    1    NA
## 169     Suc. Belenes    NA      NA    NA    NA    1    NA
## 170     Suc. Belenes    NA       0    NA    NA   NA    NA
## 171     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 172     Suc. Belenes     1      NA     1    NA    3     1
## 173     Suc. Belenes    NA      NA    NA    NA    1    NA
## 174     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 175     Suc. Belenes     2      27     6    15   17    13
## 176     Suc. Belenes     6      41    10    16   38    32
## 177     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 178     Suc. Belenes    NA      NA    NA    NA    1    NA
## 179     Suc. Belenes    NA       5     8     5   15    13
## 180     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 181     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 182     Suc. Belenes    NA      NA    NA     6   NA     3
## 183     Suc. Belenes    NA      NA     1    NA   NA    NA
## 184     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 185     Suc. Belenes     4       1     1     3    5     2
## 186     Suc. Belenes    NA      NA    NA    NA   NA     0
## 187     Suc. Belenes     1       1    NA     3    4     2
## 188     Suc. Belenes     2       2    NA     1    2     1
## 189     Suc. Belenes     6       6     6    17    6    17
## 190     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 191     Suc. Belenes    NA      NA    NA     1   NA     1
## 192     Suc. Belenes    NA      NA    NA    NA   NA     1
## 193     Suc. Belenes    NA       6    NA    NA   NA    NA
## 194     Suc. Belenes    NA       2    NA    NA   NA    NA
## 195     Suc. Belenes     2       2    NA    NA   NA     2
## 196     Suc. Belenes    NA       1    NA    NA   NA    NA
## 197     Suc. Belenes     6       6     8    11    8     8
## 198     Suc. Belenes     2       3    NA    NA   NA     2
## 199     Suc. Belenes     3      11     3     6    6     6
## 200     Suc. Belenes     8       8     6    11   11     6
## 201     Suc. Belenes     4       7     7     7   11    14
## 202     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 203     Suc. Belenes    11      11    11    13   11     6
## 204     Suc. Belenes     2       3    NA     1    1     1
## 205     Suc. Belenes    NA      NA    NA     2    3    NA
## 206     Suc. Belenes    NA       1    NA     1   NA    NA
## 207     Suc. Belenes    NA       2     2    NA    2    NA
## 208     Suc. Belenes    NA      NA     0    NA   NA    NA
## 209     Suc. Belenes    NA       3    NA    NA   NA    NA
## 210     Suc. Belenes    NA       4     2     2    2     2
## 211     Suc. Belenes    17      11    15    11   13    11
## 212     Suc. Belenes     8      11    29     8   13     5
## 213     Suc. Belenes    NA       3     3    13    6    16
## 214     Suc. Belenes    16      16    19    10   22     6
## 215     Suc. Belenes     9       8     8     6    9     5
## 216     Suc. Belenes     2       3     3     3    3     2
## 217     Suc. Belenes     6       6     6    14   17    14
## 218     Suc. Belenes     6       8     6     8    8     3
## 219     Suc. Belenes    18      28    25    39   28    25
## 220     Suc. Belenes    56      53    32    56   56    25
## 221     Suc. Belenes    NA      NA    NA     5    2    NA
## 222     Suc. Belenes     4       2     4     6    4     4
## 223     Suc. Belenes    21      21    15    27   25    13
## 224     Suc. Belenes    57      53    49    87   57    42
## 225     Suc. Belenes     3       7     6     9    8     8
## 226     Suc. Belenes     5      11    NA     3    6     2
## 227     Suc. Belenes     2      10    NA    NA   NA     4
## 228     Suc. Belenes     1       5     4     4    3     3
## 229     Suc. Belenes     1       1     2     2    2     1
## 230     Suc. Belenes    NA      NA    NA     1   NA    NA
## 231     Suc. Belenes     3      NA     2     4    4     1
## 232     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 233     Suc. Belenes    NA       1    NA    NA   NA    NA
## 234     Suc. Belenes     2       0    NA     0    0     0
## 235     Suc. Belenes     1      NA    NA    NA    0    NA
## 236     Suc. Belenes     6       5     3     3    4     4
## 237     Suc. Belenes    NA      NA    NA    NA   NA     1
## 238     Suc. Belenes     2      NA    NA    NA   NA    NA
## 239     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 240     Suc. Belenes    NA      NA    NA    NA    2    NA
## 241     Suc. Belenes     0       0    NA     0    0     0
## 242     Suc. Belenes     1      NA    NA     1    1     1
## 243     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 244     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 245     Suc. Belenes    NA      NA    NA    NA    2    NA
## 246     Suc. Belenes     3       4     3     3    6     3
## 247     Suc. Belenes    NA      NA    NA     2    4    NA
## 248     Suc. Belenes    NA       1     1    NA    2    NA
## 249     Suc. Belenes     2       1     2     2    1     2
## 250     Suc. Belenes    NA       1     3     1    2     1
## 251     Suc. Belenes    NA       0    NA    NA   NA    NA
## 252     Suc. Belenes    NA       1    NA     6    3    NA
## 253     Suc. Belenes    NA      NA    NA     2    4    NA
## 254     Suc. Belenes    NA       1    NA     1    1    NA
## 255     Suc. Belenes    NA       1    NA    NA    1    NA
## 256     Suc. Belenes    NA       1     1     3    1     3
## 257     Suc. Belenes    NA       0    NA    NA   NA    NA
## 258     Suc. Belenes    NA       1    NA     3    3     3
## 259     Suc. Belenes    NA      NA    NA     2    4    NA
## 260     Suc. Belenes    NA       1     1    NA    4     0
## 261     Suc. Belenes    NA       1     2    NA    1    NA
## 262     Suc. Belenes    NA       1     2     2    1     2
## 263     Suc. Belenes    NA       1    NA    NA   NA     1
## 264     Suc. Belenes     3      11    NA     6    3    NA
## 265     Suc. Belenes    NA       4    NA     4   NA    NA
## 266     Suc. Belenes     2      NA    NA    NA   NA    NA
## 267     Suc. Belenes     1      NA    NA    NA   NA    NA
## 268     Suc. Belenes    NA       0    NA    NA   NA    NA
## 269     Suc. Belenes     2      NA    NA    NA   NA    NA
## 270     Suc. Belenes     6      10     8     8   11     3
## 271     Suc. Belenes    NA       4    NA     2    7    NA
## 272     Suc. Belenes     0       1     2     0    8     1
## 273     Suc. Belenes     2       3    NA     2    3    NA
## 274     Suc. Belenes     2       2     4     3    2     3
## 275     Suc. Belenes    NA       0    NA    NA   NA    NA
## 276     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 277     Suc. Belenes     4       6     1     2    4     1
## 278     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 279     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 280     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 281     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 282     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 283     Suc. Belenes     4      11    66     2    2     2
## 284     Suc. Belenes     6       3    67     3    3     3
## 285     Suc. Belenes    NA      NA    NA     0    0     0
## 286     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 287     Suc. Belenes    NA      NA    51    NA   NA    NA
## 288     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 289     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 290     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 291     Suc. Belenes    NA       0     2    NA    3     2
## 292     Suc. Belenes    NA      NA     2     2    3     2
## 293     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 294     Suc. Belenes    NA      NA    NA    NA    1    NA
## 295     Suc. Belenes     1      NA    NA     1   NA    NA
## 296     Suc. Belenes     3      NA     1     1   NA     1
## 297     Suc. Belenes     4       1     6     5    5    11
## 298     Suc. Belenes     0      NA     1    NA   NA     1
## 299     Suc. Belenes    NA       1     1     1    1     1
## 300     Suc. Belenes    NA      NA     2    NA   NA    NA
## 301     Suc. Belenes    NA       2     4     1    1     1
## 302     Suc. Belenes    NA       6     8     6   NA    11
## 303     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 304     Suc. Belenes    NA      NA    NA     0    0     0
## 305     Suc. Belenes    NA      NA    NA     1    1     1
## 306     Suc. Belenes    NA      NA    NA    NA   NA     1
## 307     Suc. Belenes     2       6    NA    NA   NA    NA
## 308     Suc. Belenes    NA      NA    NA    NA   NA     1
## 309     Suc. Belenes    NA      NA    NA    NA   NA     2
## 310     Suc. Belenes    NA      27    NA    27   NA    NA
## 311     Suc. Belenes    48      NA    NA    70   NA    NA
## 312     Suc. Belenes    14      18     4    56   NA    NA
## 313     Suc. Belenes    13      25    32    25   NA    25
## 314     Suc. Belenes     2       3     2    16   NA    NA
## 315     Suc. Belenes     2      NA    NA    NA    2    NA
## 316     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 317     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 318     Suc. Belenes    36      27    NA    27   NA    27
## 319     Suc. Belenes    NA      45    NA    34   NA    NA
## 320     Suc. Belenes    NA      NA    NA    NA   NA    41
## 321     Suc. Belenes    44       3    22    98   86    44
## 322     Suc. Belenes     3      17    12    18   21     6
## 323     Suc. Belenes    23      NA    NA    NA   NA    NA
## 324     Suc. Belenes     8      42    NA    42   NA    37
## 325     Suc. Belenes    NA       6    NA     8    6    37
## 326     Suc. Belenes    63      46   187     4   56    92
## 327     Suc. Belenes   240     222   278    42   95   380
## 328     Suc. Belenes     6       4     4     6    6    34
## 329     Suc. Belenes    11      85    -4    25   53    51
## 330     Suc. Belenes   192     129   205   499   11     2
## 331     Suc. Belenes    13      NA    15    13   NA    13
## 332     Suc. Belenes    NA      NA     3    NA   NA     2
## 333     Suc. Belenes    NA      NA    NA    NA    4     2
## 334     Suc. Belenes     1      15    NA    NA   NA     1
## 335     Suc. Belenes    NA      NA     1    NA   NA    NA
## 336     Suc. Belenes     1       2     1     5    1     3
## 337     Suc. Belenes    NA      NA     1     2    1     2
## 338     Suc. Belenes     1       3     3     5    2     6
## 339     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 340     Suc. Belenes    NA       1    NA    NA   NA    NA
## 341     Suc. Belenes     2       2     0     1    1     1
## 342     Suc. Belenes    NA      NA    NA    NA    0    NA
## 343     Suc. Belenes     3       2    12     1    4    26
## 344     Suc. Belenes     3       1     1     4    2     3
## 345     Suc. Belenes    NA      NA    NA    NA   NA     1
## 346     Suc. Belenes     4      NA     2     2    2    NA
## 347     Suc. Belenes     1      NA     1     1    1     1
## 348     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 349     Suc. Belenes    NA      NA    NA    NA   NA     1
## 350     Suc. Belenes    NA       1     1     0    0     1
## 351     Suc. Belenes     1       1     1     2    3    NA
## 352     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 353     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 354     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 355     Suc. Belenes    NA      NA    NA    NA   NA     2
## 356     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 357     Suc. Belenes    NA      11    31     3    8    28
## 358     Suc. Belenes    NA      NA    NA    NA    6    NA
## 359     Suc. Belenes     0       3    NA    NA   NA    NA
## 360     Suc. Belenes    NA       2     1     1    2     1
## 361     Suc. Belenes     2      NA     7     2    8    NA
## 362     Suc. Belenes     1       1     3     1    1     1
## 363     Suc. Belenes    NA       2    NA    NA   NA    NA
## 364     Suc. Belenes    NA      NA    NA    NA   NA     2
## 365     Suc. Belenes    NA       6    NA     3    6     6
## 366     Suc. Belenes     0      NA    NA    NA   NA    NA
## 367     Suc. Belenes     1       1    NA     1    2    NA
## 368     Suc. Belenes     2      NA     3    NA    6    NA
## 369     Suc. Belenes     1      NA     1     1    1    NA
## 370     Suc. Belenes    NA       2    NA    NA   NA    NA
## 371     Suc. Belenes     2       2    NA     2    2    NA
## 372     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 373     Suc. Belenes    NA      NA    NA    11    3     6
## 374     Suc. Belenes     0      NA    NA    NA   NA    NA
## 375     Suc. Belenes    NA       2    NA     1    2     1
## 376     Suc. Belenes    NA      NA    NA     2   NA    NA
## 377     Suc. Belenes    NA      NA     7    NA    2    NA
## 378     Suc. Belenes    NA       1     1     1   NA     1
## 379     Suc. Belenes    NA      NA     1    NA   NA    NA
## 380     Suc. Belenes    NA      NA    NA    NA   NA     2
## 381     Suc. Belenes     8      11    28    NA   NA    31
## 382     Suc. Belenes    NA       1     0    NA    2    NA
## 383     Suc. Belenes    NA      NA     2    NA    6    NA
## 384     Suc. Belenes    NA      NA    NA     1    1    NA
## 385     Suc. Belenes    NA       2    NA    NA   NA    NA
## 386     Suc. Belenes     4       2     4     2    2     2
## 387     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 388     Suc. Belenes    NA      NA    NA    NA   NA     2
## 389     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 390     Suc. Belenes    NA      11    42    11   NA    31
## 391     Suc. Belenes    NA      NA     6     6    6     3
## 392     Suc. Belenes     0       3    NA    NA   NA    NA
## 393     Suc. Belenes    NA       1     1     1    0     3
## 394     Suc. Belenes    NA      NA    NA    NA   NA     2
## 395     Suc. Belenes     2       2     7    NA    6     2
## 396     Suc. Belenes     3      NA     7     6    1     9
## 397     Suc. Belenes    NA       2    NA    NA   NA    NA
## 398     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 399     Suc. Belenes     1       6    11     5   10    13
## 400     Suc. Belenes    NA      NA    NA    NA   NA     1
## 401     Suc. Belenes    NA      NA    NA    NA   NA     0
## 402     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 403     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 404     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 405     Suc. Belenes     4       2     2     4    4     2
## 406     Suc. Belenes     6       3     3    10    3     3
## 407     Suc. Belenes     3      NA    NA    NA    3    NA
## 408     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 409     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 410     Suc. Belenes    NA       2    NA    NA   NA    NA
## 411     Suc. Belenes     0      NA     0     1   NA    NA
## 412     Suc. Belenes    NA      NA     2    NA   NA     1
## 413     Suc. Belenes     1       1     1    NA    1     1
## 414     Suc. Belenes    NA      NA    NA    NA   NA     4
## 415     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 416     Suc. Belenes    NA       2    NA     2    1     1
## 417     Suc. Belenes     2      NA     2    NA   NA    NA
## 418     Suc. Belenes     2       1     1     1    2     1
## 419     Suc. Belenes     6       6     3     6    6     6
## 420     Suc. Belenes    NA      NA     3    NA    1    NA
## 421     Suc. Belenes    NA       0     1     1    1     1
## 422     Suc. Belenes     1      NA    NA    NA   NA    NA
## 423     Suc. Belenes     1       1     1     1    1     1
## 424     Suc. Belenes    NA      NA    NA    NA   NA     1
## 425     Suc. Belenes     2      NA     2     2    2     2
## 426     Suc. Belenes    11      11    17    11    8    13
## 427     Suc. Belenes     3       6     8    11   11    11
## 428     Suc. Belenes     4      NA    NA    NA   NA    NA
## 429     Suc. Belenes     2       2     3     3    3     2
## 430     Suc. Belenes    17      13    15     8   15    15
## 431     Suc. Belenes     1       1     2     1    1     2
## 432     Suc. Belenes     2      NA     4     2    2     2
## 433     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 434     Suc. Belenes     2       2     4     4    2     4
## 435     Suc. Belenes     1       1     1    NA   NA    NA
## 436     Suc. Belenes    21      NA    NA    NA    2    15
## 437     Suc. Belenes    16      34    45    45   32    24
## 438     Suc. Belenes    NA      NA    NA    NA   NA     3
## 439     Suc. Belenes    22      13    29    44   10    13
## 440     Suc. Belenes     9       6    15    12   14    12
## 441     Suc. Belenes     8       5     5     8    5     8
## 442     Suc. Belenes     3       3     6    13    3     3
## 443     Suc. Belenes     6       3     3     8    3     6
## 444     Suc. Belenes    49      60    49    63   60    46
## 445     Suc. Belenes   102      70   116   134  130    99
## 446     Suc. Belenes     4       6     4     8    6     8
## 447     Suc. Belenes    27      23    42    40   32    40
## 448     Suc. Belenes    72      55    70    80   91    70
## 449     Suc. Belenes    NA       3    NA    NA   NA    NA
## 450     Suc. Belenes    21      14    15    15   16    18
## 451     Suc. Belenes     2       3     3     2    2    NA
## 452     Suc. Belenes     3       3     3     3    2     1
## 453     Suc. Belenes    NA       1    NA    NA   NA    NA
## 454     Suc. Belenes     1       1     1     1    1     1
## 455     Suc. Belenes     1       1    NA     2   NA    NA
## 456     Suc. Belenes     1      NA    NA    NA    1     1
## 457     Suc. Belenes     1       0     0     0    0     0
## 458     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 459     Suc. Belenes     2      NA     3     1    1     4
## 460     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 461     Suc. Belenes     2      NA     2    NA    2    NA
## 462     Suc. Belenes     1      NA    NA    NA    0     0
## 463     Suc. Belenes    NA      NA    NA    NA   NA     1
## 464     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 465     Suc. Belenes     1       0     0     0    0     0
## 466     Suc. Belenes     3       1     1     2    3     3
## 467     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 468     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 469     Suc. Belenes    NA      NA    NA    NA   NA     1
## 470     Suc. Belenes     3      NA     1    NA   NA    NA
## 471     Suc. Belenes    NA      NA     7     4    4     4
## 472     Suc. Belenes     0      NA     0    NA   NA    NA
## 473     Suc. Belenes     1      NA     0     0    1     0
## 474     Suc. Belenes    NA       2    NA    NA    2     2
## 475     Suc. Belenes    NA       2    NA     3    2     2
## 476     Suc. Belenes     1       1    NA     2    1     1
## 477     Suc. Belenes    NA       0    NA    NA   NA    NA
## 478     Suc. Belenes    NA      NA    NA    NA   NA     1
## 479     Suc. Belenes    NA      NA     1    NA    3    NA
## 480     Suc. Belenes    NA      NA     4    NA   NA     4
## 481     Suc. Belenes     0      NA     0    NA   NA    NA
## 482     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 483     Suc. Belenes     2      NA    NA    NA   NA    NA
## 484     Suc. Belenes    NA      NA    NA     1   NA    NA
## 485     Suc. Belenes     1      NA     1     1    1     1
## 486     Suc. Belenes    NA       0    NA    NA   NA    NA
## 487     Suc. Belenes    NA      NA     1     3    3    NA
## 488     Suc. Belenes    NA       4     4     7   NA     4
## 489     Suc. Belenes     0      NA     0    NA   NA    NA
## 490     Suc. Belenes    NA      NA     0    NA    0    NA
## 491     Suc. Belenes    NA       2    NA    NA    2     2
## 492     Suc. Belenes    NA      NA    NA     1   NA    NA
## 493     Suc. Belenes     1       2     1     3    1     1
## 494     Suc. Belenes    NA       2    NA    NA   NA    NA
## 495     Suc. Belenes     1      NA     2    NA   NA     1
## 496     Suc. Belenes    NA      NA    NA    NA   NA     1
## 497     Suc. Belenes    NA       3    NA     3   NA    NA
## 498     Suc. Belenes    NA       4    11     7    4     4
## 499     Suc. Belenes     1      NA    NA    NA   NA    NA
## 500     Suc. Belenes    NA       0    NA    NA    0    NA
## 501     Suc. Belenes     1      NA     1    NA    1     1
## 502     Suc. Belenes    NA       0    NA    NA   NA    NA
## 503     Suc. Belenes     4      NA    NA     2   NA    NA
## 504     Suc. Belenes    NA      NA    NA    NA   NA     1
## 505     Suc. Belenes     3      NA     1    NA   NA     3
## 506     Suc. Belenes     4      NA    11     4    7     7
## 507     Suc. Belenes     0      NA     0    NA   NA    NA
## 508     Suc. Belenes    NA      NA    NA     0    1     0
## 509     Suc. Belenes    NA       2    NA     2   NA     2
## 510     Suc. Belenes     2       2     2     1   NA    NA
## 511     Suc. Belenes     2       2     1     3    3     1
## 512     Suc. Belenes    NA       0    NA    NA   NA    NA
## 513     Suc. Belenes    NA      NA     1    NA   NA    NA
## 514     Suc. Belenes     3       1     6     3    1     3
## 515     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 516     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 517     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 518     Suc. Belenes     2       8   150     2    2     2
## 519     Suc. Belenes     3       6    10     3    3     3
## 520     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 521     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 522     Suc. Belenes    NA      NA     3    NA   NA    NA
## 523     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 524     Suc. Belenes    NA      NA    NA     0   NA    NA
## 525     Suc. Belenes    NA      NA     1    NA   NA    NA
## 526     Suc. Belenes     1       1     1     0    0    NA
## 527     Suc. Belenes     2       1     3     1    1     1
## 528     Suc. Belenes    NA      NA    NA     2    2     4
## 529     Suc. Belenes    NA      NA    NA    NA   NA     1
## 530     Suc. Belenes    NA       1     1     1    1     3
## 531     Suc. Belenes     2       2    NA    NA   NA    NA
## 532     Suc. Belenes    NA       1     1     1    1     2
## 533     Suc. Belenes    NA       8    11     8    6     6
## 534     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 535     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 536     Suc. Belenes    NA       1    NA    NA   NA     1
## 537     Suc. Belenes    NA      NA    NA     1   NA     2
## 538     Suc. Belenes     2       2    NA    NA   NA    NA
## 539     Suc. Belenes    NA       1    NA    NA   NA    NA
## 540     Suc. Belenes     2       4    NA    NA    2    NA
## 541     Suc. Belenes    11      13    13    13   42     2
## 542     Suc. Belenes    NA      NA    NA    NA   NA     2
## 543     Suc. Belenes    14      17    11    11   11     8
## 544     Suc. Belenes     8       8    14    14    8    14
## 545     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 546     Suc. Belenes    15      17    17    21   17    46
## 547     Suc. Belenes     2       1     3     2    3     2
## 548     Suc. Belenes     2       2     2    NA   NA    NA
## 549     Suc. Belenes     2       4     4     4    2     4
## 550     Suc. Belenes    11      14    14    17   14     8
## 551     Suc. Belenes     2       4     6     4    4     4
## 552     Suc. Belenes    NA       1    NA    NA   NA    NA
## 553     Suc. Belenes    13      17    17    19   51    27
## 554     Suc. Belenes    16      16    11    11    8    NA
## 555     Suc. Belenes    13      16    16    10    6    51
## 556     Suc. Belenes    32      32    48    35  120    10
## 557     Suc. Belenes     9       6    12    14   11    24
## 558     Suc. Belenes     5      NA     5     5    5     5
## 559     Suc. Belenes    17      14    14    18   20    17
## 560     Suc. Belenes    11      11    11     6   14     3
## 561     Suc. Belenes    25      60    74   116  190    88
## 562     Suc. Belenes   120     106   116   113  225   116
## 563     Suc. Belenes    23      25    21    38   55    30
## 564     Suc. Belenes    80      82    97    97  222   131
## 565     Suc. Belenes    NA       1     1    NA   NA     1
## 566     Suc. Belenes     3       5     6     6   20     2
## 567     Suc. Belenes     6       3     6     6   24    NA
## 568     Suc. Belenes     4       6     4     8    2    30
## 569     Suc. Belenes     2       4     4     4    5     3
## 570     Suc. Belenes    NA       1     1     1    2     2
## 571     Suc. Belenes    NA       1    NA    NA   NA    NA
## 572     Suc. Belenes     1       1    NA     3    1     3
## 573     Suc. Belenes     1       0     0     0    0     1
## 574     Suc. Belenes    NA      NA     3    NA    1     3
## 575     Suc. Belenes     2      NA    NA     2   NA     2
## 576     Suc. Belenes     1       1     1    NA   NA     0
## 577     Suc. Belenes    NA      NA    NA    NA   NA     1
## 578     Suc. Belenes    NA       0     0     1    1     2
## 579     Suc. Belenes     1       1     1     2    1     1
## 580     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 581     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 582     Suc. Belenes     2       2     2     2    4     4
## 583     Suc. Belenes    NA      NA    NA    NA   NA     2
## 584     Suc. Belenes    NA      NA     4     3    6     3
## 585     Suc. Belenes    NA      NA     4    NA   NA    NA
## 586     Suc. Belenes     1       1     1     0    0    NA
## 587     Suc. Belenes    NA      NA    NA    NA    0    NA
## 588     Suc. Belenes     1       2     1     1    1     1
## 589     Suc. Belenes     1       3     1     2    2     3
## 590     Suc. Belenes    NA       0     0    NA   NA    NA
## 591     Suc. Belenes    NA      NA    NA    NA   NA     2
## 592     Suc. Belenes    NA      NA     1    NA   NA    NA
## 593     Suc. Belenes     1       0     1     0    0    NA
## 594     Suc. Belenes     0      NA    NA    NA    0    NA
## 595     Suc. Belenes     1      NA     1     1    1     1
## 596     Suc. Belenes    NA      NA    NA    NA    1     1
## 597     Suc. Belenes    NA       0     0    NA   NA    NA
## 598     Suc. Belenes    NA      NA     4    NA   NA    NA
## 599     Suc. Belenes    NA      NA     1    NA   NA    NA
## 600     Suc. Belenes     1       1     1     0    0    NA
## 601     Suc. Belenes    NA      NA    NA    NA    0    NA
## 602     Suc. Belenes     1      NA     1     1    1     1
## 603     Suc. Belenes    NA      NA     2     1    1     1
## 604     Suc. Belenes     2       1    NA    NA    1     1
## 605     Suc. Belenes    NA      NA    NA    NA   NA     2
## 606     Suc. Belenes    NA       3    NA     3   NA     3
## 607     Suc. Belenes     4       7     7    NA   NA    NA
## 608     Suc. Belenes    NA      NA    NA    NA    0    NA
## 609     Suc. Belenes     1      NA    NA    NA    3    NA
## 610     Suc. Belenes    NA       0     0    NA   NA    NA
## 611     Suc. Belenes     8       6     8     8    4    34
## 612     Suc. Belenes    NA      NA    NA    NA   NA     2
## 613     Suc. Belenes     3      NA     4    NA    6    NA
## 614     Suc. Belenes    NA       7     4     7   NA    NA
## 615     Suc. Belenes     1       1     1     0    0    NA
## 616     Suc. Belenes     0       0     0     1    0     0
## 617     Suc. Belenes     1      NA     1     1    1     3
## 618     Suc. Belenes     1       3     3     3    3     2
## 619     Suc. Belenes    NA       0     0    NA   NA    NA
## 620     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 621     Suc. Belenes     3      18     2     1   11    13
## 622     Suc. Belenes    NA      NA    NA    NA   NA     1
## 623     Suc. Belenes    NA      NA    NA    NA   NA     0
## 624     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 625     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 626     Suc. Belenes     6      15     2     2    8     6
## 627     Suc. Belenes    10      13     3     6   10     3
## 628     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 629     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 630     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 631     Suc. Belenes    NA       1    NA    NA   NA    NA
## 632     Suc. Belenes    NA      NA    NA    NA    1    NA
## 633     Suc. Belenes     7       6     5     7    4     9
## 634     Suc. Belenes     3       2     3     3    2     1
## 635     Suc. Belenes    NA       1     1     1    1     1
## 636     Suc. Belenes    NA      NA    NA    NA    2    NA
## 637     Suc. Belenes    NA       1     1     2    1     1
## 638     Suc. Belenes     3       3    14    25   17    25
## 639     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 640     Suc. Belenes    NA       0    NA    NA   NA    NA
## 641     Suc. Belenes    NA      NA     1     1    3    NA
## 642     Suc. Belenes     3      NA     2     1    3     7
## 643     Suc. Belenes     2       6     6    NA   NA    NA
## 644     Suc. Belenes     2      NA    NA     1   NA    NA
## 645     Suc. Belenes     4      NA     4     6    2     4
## 646     Suc. Belenes    44      66    40    46   72    44
## 647     Suc. Belenes    14      11    11    14   15    15
## 648     Suc. Belenes    99     116    68    76  113   101
## 649     Suc. Belenes    82      76    82    82  104    96
## 650     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 651     Suc. Belenes    42      40    40    68   46    55
## 652     Suc. Belenes    15      16    16    18   17    16
## 653     Suc. Belenes     8       8     9     8    9     6
## 654     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 655     Suc. Belenes     6       8     8     4    4     6
## 656     Suc. Belenes    34      14    37    31   42    20
## 657     Suc. Belenes     6       2     6     4    4     4
## 658     Suc. Belenes    NA      NA     1    NA   NA     1
## 659     Suc. Belenes    NA      NA    NA    NA    8    NA
## 660     Suc. Belenes    98     114    69    87   74    45
## 661     Suc. Belenes    NA      NA    NA    NA   NA    79
## 662     Suc. Belenes     3       6     3     3    3     3
## 663     Suc. Belenes     9       6     6    14    9    18
## 664     Suc. Belenes    17      14    14    17   12    12
## 665     Suc. Belenes    82      96    54    93   85    73
## 666     Suc. Belenes    34      31    23    56   34    28
## 667     Suc. Belenes   109     180   127   106  169   201
## 668     Suc. Belenes   120     116   144   173  183   197
## 669     Suc. Belenes     2      NA    NA    NA    2    NA
## 670     Suc. Belenes    44      38    61    89   87    74
## 671     Suc. Belenes    82      78    72   123   53   125
## 672     Suc. Belenes    30      20    21    30   29    33
## 673     Suc. Belenes     6       5     9     6    8     3
## 674     Suc. Belenes     2      NA     4     4    2     8
## 675     Suc. Belenes    NA       2     2     4    1    NA
## 676     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 677     Suc. Belenes    NA       1     1     1    1     1
## 678     Suc. Belenes    NA      NA    NA     1   NA    NA
## 679     Suc. Belenes    23      19    15    20   13     8
## 680     Suc. Belenes     0       0     0     0    0     0
## 681     Suc. Belenes     4       3     5     2    3     4
## 682     Suc. Belenes     5      20    19    NA   37     2
## 683     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 684     Suc. Belenes     4       4     4     2    4     2
## 685     Suc. Belenes     2       2     2     2   NA     2
## 686     Suc. Belenes     2       1     3     3    2     2
## 687     Suc. Belenes     4       2     1     3    2     3
## 688     Suc. Belenes     2       2     3     3    1     3
## 689     Suc. Belenes     0       1     0     0    0     0
## 690     Suc. Belenes     3      NA    NA    NA   NA     3
## 691     Suc. Belenes    NA      NA    NA    NA   NA     3
## 692     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 693     Suc. Belenes     8       5     9    14    7     8
## 694     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 695     Suc. Belenes    NA      NA    NA    NA   NA     3
## 696     Suc. Belenes    NA       3     8     6   20    11
## 697     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 698     Suc. Belenes    NA      NA     0    NA    1     0
## 699     Suc. Belenes     1       2    NA     1   NA     1
## 700     Suc. Belenes     1       4     1     3    4     3
## 701     Suc. Belenes    NA       1    NA    NA   NA    NA
## 702     Suc. Belenes    NA       3     8     8    3     8
## 703     Suc. Belenes    NA      NA    NA     0   NA     0
## 704     Suc. Belenes     1      NA    NA     1   NA     1
## 705     Suc. Belenes    NA       4     3     2    2    NA
## 706     Suc. Belenes    NA       1    NA    NA   NA    NA
## 707     Suc. Belenes    NA      NA     6     3   NA    NA
## 708     Suc. Belenes     0       0    NA    NA   NA     0
## 709     Suc. Belenes     1      NA    NA     1   NA     1
## 710     Suc. Belenes     1       5     3     3    1     1
## 711     Suc. Belenes     1       2     4     4    1    NA
## 712     Suc. Belenes     8      14     6    17   20    23
## 713     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 714     Suc. Belenes    NA      NA    NA    NA    2    NA
## 715     Suc. Belenes     1       3     3     3    4     5
## 716     Suc. Belenes    NA       1    NA    NA   NA    NA
## 717     Suc. Belenes    NA      NA    NA    NA   NA     2
## 718     Suc. Belenes     3      14    17    20   11     8
## 719     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 720     Suc. Belenes    NA      NA    NA    NA    1     0
## 721     Suc. Belenes     1      NA     2     3   NA     1
## 722     Suc. Belenes     1       5     5     3    3     5
## 723     Suc. Belenes    NA       1    NA    NA   NA    NA
## 724     Suc. Belenes     5      NA     1     3   NA    NA
## 725     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 726     Suc. Belenes    16      13    13    22   14    11
## 727     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 728     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 729     Suc. Belenes     6      55    11    NA   25    51
## 730     Suc. Belenes    NA      38     6    NA   48    25
## 731     Suc. Belenes     2      20    NA    NA    8     3
## 732     Suc. Belenes    35     106    28    25   49    25
## 733     Suc. Belenes     8      33    NA    13   18    18
## 734     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 735     Suc. Belenes     2      NA    NA     1   NA    NA
## 736     Suc. Belenes     3      NA     3     1   NA     1
## 737     Suc. Belenes     3       5    NA    NA   NA     3
## 738     Suc. Belenes     8       8     2     2    4     3
## 739     Suc. Belenes    NA      NA    NA    NA   NA     0
## 740     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 741     Suc. Belenes    NA      NA     4     2   NA     2
## 742     Suc. Belenes    NA       2     2    NA   NA    NA
## 743     Suc. Belenes    11      17     6    17    6    31
## 744     Suc. Belenes     3       3     3    NA    3     3
## 745     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 746     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 747     Suc. Belenes     3      NA     3    NA    3     1
## 748     Suc. Belenes     6      NA     6    NA   NA    NA
## 749     Suc. Belenes    NA      NA     1     1   NA     2
## 750     Suc. Belenes     2       2     6     8    4     8
## 751     Suc. Belenes    NA      NA    NA     5   13     3
## 752     Suc. Belenes    NA       2     2     2   NA    NA
## 753     Suc. Belenes    72      72    59   127   87    30
## 754     Suc. Belenes    37     155   189    NA  121   251
## 755     Suc. Belenes    38      68    38    74   82     8
## 756     Suc. Belenes    NA       5     8     5   10    13
## 757     Suc. Belenes    15      11    21    NA   40    10
## 758     Suc. Belenes     6       5    11     9   17     5
## 759     Suc. Belenes     8       5     5     8    5    NA
## 760     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 761     Suc. Belenes    11      15    13    15   17    17
## 762     Suc. Belenes    17      23    28    31   17    17
## 763     Suc. Belenes     4       4     6     6    6     8
## 764     Suc. Belenes     5       8     5     8    8     3
## 765     Suc. Belenes     2       2     1     1    2     2
## 766     Suc. Belenes    NA       2     2    NA    3    NA
## 767     Suc. Belenes    95     159    32   161  118     8
## 768     Suc. Belenes    NA      NA    58    90   21    61
## 769     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 770     Suc. Belenes    NA      NA    NA     3    3     3
## 771     Suc. Belenes     3      NA    NA    NA   NA     2
## 772     Suc. Belenes   163     217   355   107  192   211
## 773     Suc. Belenes   123     240   335   183  243   275
## 774     Suc. Belenes    46     204   190   134  183   144
## 775     Suc. Belenes    27      24    41     8   71     7
## 776     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 777     Suc. Belenes    68      76   135   120  116    49
## 778     Suc. Belenes   154     139    95   224   87   169
## 779     Suc. Belenes     2       1    NA    NA   NA    NA
## 780     Suc. Belenes    28      10    20    20   20    25
## 781     Suc. Belenes    24      22    35    10   68    16
## 782     Suc. Belenes    18      18    24    21   41    NA
## 783     Suc. Belenes    10      NA    NA     4    6     6
## 784     Suc. Belenes    NA       1    NA    NA   NA    NA
## 785     Suc. Belenes    NA      NA     1     2    2    NA
## 786     Suc. Belenes     2       2     2    NA    3     3
## 787     Suc. Belenes    NA      NA     3     3   NA     1
## 788     Suc. Belenes    20      13     9    13   30    13
## 789     Suc. Belenes     8      NA     4    NA    2     5
## 790     Suc. Belenes     3       1     2    NA    2     4
## 791     Suc. Belenes    20      24    19    NA   NA     7
## 792     Suc. Belenes    NA       1    NA    NA   NA    NA
## 793     Suc. Belenes     4       4    NA     2    4     4
## 794     Suc. Belenes     2       1     1     1    0     1
## 795     Suc. Belenes    13      10    14     8   10    NA
## 796     Suc. Belenes     6       3    10    11    8     5
## 797     Suc. Belenes    10       6     7    12   10     8
## 798     Suc. Belenes    11       5     4     7    6     7
## 799     Suc. Belenes     2       2     3     1    6     3
## 800     Suc. Belenes     5       3    NA    NA    8     8
## 801     Suc. Belenes    NA       5     3     3    3    NA
## 802     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 803     Suc. Belenes     5       5     5    10    3     3
## 804     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 805     Suc. Belenes    NA       6     6    14   NA    NA
## 806     Suc. Belenes     1       3     3     1    1     3
## 807     Suc. Belenes     0      NA    NA    NA    1    NA
## 808     Suc. Belenes     3      NA    NA     3    8    NA
## 809     Suc. Belenes    NA       3    NA    NA    3     8
## 810     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 811     Suc. Belenes    NA      NA    NA    NA    0    NA
## 812     Suc. Belenes     3      NA    NA     3    5    NA
## 813     Suc. Belenes    NA      11    NA    11    3    NA
## 814     Suc. Belenes     3      NA     1     3    3     1
## 815     Suc. Belenes    NA      NA    NA    NA    0    NA
## 816     Suc. Belenes     3      NA    NA     3    5    NA
## 817     Suc. Belenes    NA       3    NA     3    5     3
## 818     Suc. Belenes    NA       8     3    11    3     3
## 819     Suc. Belenes     3      NA     1    NA    1    NA
## 820     Suc. Belenes    NA      NA    NA    NA    1    NA
## 821     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 822     Suc. Belenes     3       5    NA     5    5     3
## 823     Suc. Belenes    NA      NA    NA    NA   NA     3
## 824     Suc. Belenes    NA      14     8    48    6    NA
## 825     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 826     Suc. Belenes     5       1     3     4    4     4
## 827     Suc. Belenes    NA      NA    NA    NA    1    NA
## 828     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 829     Suc. Belenes     3      NA     3    NA   10     3
## 830     Suc. Belenes     5       6     3     7    4     6
## 831     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 832     Suc. Belenes    15      18    16     6   21    21
## 833     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 834     Suc. Belenes    NA      NA    NA     1   NA    NA
## 835     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 836     Suc. Belenes    13      19    17    13   15    17
## 837     Suc. Belenes    10      19    19    19   29    22
## 838     Suc. Belenes     3       5     5     5    8     3
## 839     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 840     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 841     Suc. Belenes     0       0     1     0   NA     0
## 842     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 843     Suc. Belenes     1      NA    NA     0    0    NA
## 844     Suc. Belenes    NA       1    NA    NA    5     1
## 845     Suc. Belenes    NA      NA     2     2    4    NA
## 846     Suc. Belenes    NA       2     2     1    1     1
## 847     Suc. Belenes     6       3     6     6   11     6
## 848     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 849     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 850     Suc. Belenes    NA       3    NA     1    1    NA
## 851     Suc. Belenes    NA      NA     2    NA    2    NA
## 852     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 853     Suc. Belenes     2      NA     2    NA   NA     2
## 854     Suc. Belenes     1      NA    NA    NA   NA    NA
## 855     Suc. Belenes    23      25    21    21   27    25
## 856     Suc. Belenes    15      17    18    15   23    17
## 857     Suc. Belenes    28      20    14    20   17    23
## 858     Suc. Belenes    23      20    25    23   34    17
## 859     Suc. Belenes     7       8     5     7   10     8
## 860     Suc. Belenes    19      19    23    23   23    17
## 861     Suc. Belenes     3       5     2     7    4     4
## 862     Suc. Belenes     5       6     6     8    8     8
## 863     Suc. Belenes     6      13     8     6    8     8
## 864     Suc. Belenes    NA      NA     3     6    3    NA
## 865     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 866     Suc. Belenes     4       4     6     8    8     8
## 867     Suc. Belenes     1       2    NA     1    2    NA
## 868     Suc. Belenes     4       2     2    NA   NA    NA
## 869     Suc. Belenes    45      61    40    53   55    40
## 870     Suc. Belenes    NA      NA    NA    NA   NA    25
## 871     Suc. Belenes     3       3     3     6    3    22
## 872     Suc. Belenes    14      14    11    11   14     9
## 873     Suc. Belenes    11      12    11    11    9    17
## 874     Suc. Belenes    NA       6    NA     6   NA     3
## 875     Suc. Belenes    23      14    11     8    8     3
## 876     Suc. Belenes    63      56    63    67   63    74
## 877     Suc. Belenes   190     208   116   201  240   222
## 878     Suc. Belenes    NA      NA    NA    NA    2    NA
## 879     Suc. Belenes    36      32    38    34   38    34
## 880     Suc. Belenes    80      80    59    85   87    82
## 881     Suc. Belenes    12      13     6    15   12    12
## 882     Suc. Belenes     8       6     9     9   11    11
## 883     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 884     Suc. Belenes    NA       2     1    NA   NA    NA
## 885     Suc. Belenes    NA       1    NA    NA   NA    NA
## 886     Suc. Belenes    NA       1     1     1    7     1
## 887     Suc. Belenes    NA       1    NA     1   NA    NA
## 888     Suc. Belenes     1      NA    NA    NA   NA    NA
## 889     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 890     Suc. Belenes     1       0     0     0    0     0
## 891     Suc. Belenes    NA       0    NA    NA    1    NA
## 892     Suc. Belenes     3       3     2     3    3     3
## 893     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 894     Suc. Belenes     2       2     4     2    4     2
## 895     Suc. Belenes    NA      NA    NA    NA   NA     1
## 896     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 897     Suc. Belenes     0       0     0     0    1     0
## 898     Suc. Belenes     3       4     4     4    4     3
## 899     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 900     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 901     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 902     Suc. Belenes     3       3     1     4    4     3
## 903     Suc. Belenes     0       0     1     0   NA     0
## 904     Suc. Belenes    NA       0     0    NA   NA     0
## 905     Suc. Belenes    NA      NA    NA     1   NA     1
## 906     Suc. Belenes     1       1     1     1    1     2
## 907     Suc. Belenes    NA       0    NA     0   NA    NA
## 908     Suc. Belenes     3      NA     1     4    9     3
## 909     Suc. Belenes     0       0     0     0   NA     0
## 910     Suc. Belenes     0      NA    NA     0   NA     0
## 911     Suc. Belenes    NA      NA    NA     1   NA     1
## 912     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 913     Suc. Belenes    NA       0    NA     0   NA    NA
## 914     Suc. Belenes    NA      NA     1     1    1    NA
## 915     Suc. Belenes     0       0     1     0   NA     0
## 916     Suc. Belenes    NA      NA    NA    NA   NA     0
## 917     Suc. Belenes    NA       2    NA     1    2     1
## 918     Suc. Belenes    NA       2     1     1    1     2
## 919     Suc. Belenes     1       4     1     1    3     3
## 920     Suc. Belenes    NA       6     8     3    6     8
## 921     Suc. Belenes    NA      NA    NA    NA    1    NA
## 922     Suc. Belenes     2      NA     2    NA    2    NA
## 923     Suc. Belenes    NA       0    NA     0   NA    NA
## 924     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 925     Suc. Belenes     6       8     4     9   18    11
## 926     Suc. Belenes     0       0     1     0   NA     0
## 927     Suc. Belenes    NA      NA    NA    NA    0     0
## 928     Suc. Belenes    NA      NA    NA     1   NA     1
## 929     Suc. Belenes     4       4     4     3    4     4
## 930     Suc. Belenes    NA       0    NA     0   NA    NA
## 931     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 932     Suc. Belenes    NA      NA    NA     1   10     3
## 933     Suc. Belenes    NA       0    NA    NA   NA    NA
## 934     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 935     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 936     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 937     Suc. Belenes     2       2     2     6    2     2
## 938     Suc. Belenes     3       3     3     3    3     3
## 939     Suc. Belenes    NA      NA    NA    NA   NA     4
## 940     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 941     Suc. Belenes    NA      NA     1     1    1    NA
## 942     Suc. Belenes     1       1     1     1    1     1
## 943     Suc. Belenes     1      NA     1     4    1     1
## 944     Suc. Belenes     1      NA     2     1   NA     1
## 945     Suc. Belenes    NA      NA    NA    NA   NA    NA
## 946     Suc. Belenes     1       1     1    NA    1     1
## 947     Suc. Belenes    NA      NA    NA     2    4    NA
## 948     Suc. Belenes    NA       2     1     1    1     2
## 949     Suc. Belenes     1      NA    NA    NA   NA    NA
## 950     Suc. Belenes     2       2     2    NA   NA    NA
## 951     Suc. Belenes     4       4     2     2   NA     2
## 952     Suc. Belenes    25      30    27    27   36    30
## 953     Suc. Belenes     8       6     5     3    6     8
## 954     Suc. Belenes    39      28    31    37   39    28
## 955     Suc. Belenes    28      28    17    25   28    23
## 956     Suc. Belenes    25      25    11    19   21    25
## 957     Suc. Belenes     5      10    10    10    8     8
## 958     Suc. Belenes     4       5     4     4    6     4
## 959     Suc. Belenes     5       9     5     5    8     8
## 960     Suc. Belenes    NA      NA    NA    NA   NA     1
## 961     Suc. Belenes     4       8     6     8    8     6
## 962     Suc. Belenes     6       6    14    11    8     8
## 963     Suc. Belenes    NA      NA     2     4    4     4
## 964     Suc. Belenes     5       3     3     5    5     5
## 965     Suc. Belenes     1       1     3     1    3     2
## 966     Suc. Belenes    34      34    34    42   42    51
## 967     Suc. Belenes     3      NA    NA    NA   NA    NA
## 968     Suc. Belenes    25      22    22    22   29    25
## 969     Suc. Belenes     3       3     3     3    3     3
## 970     Suc. Belenes     6       8    11     8   11    11
## 971     Suc. Belenes    11       5     3     6    2    NA
## 972     Suc. Belenes    NA      NA    NA    11   NA    NA
## 973     Suc. Belenes     3       3     3    NA    3     6
## 974     Suc. Belenes    49      88    77    95  130    74
## 975     Suc. Belenes    49      70    67    53   39   113
## 976     Suc. Belenes    NA      NA    NA    NA   NA     2
## 977     Suc. Belenes    13      13    11    15   17    25
## 978     Suc. Belenes    27      44    59    19   36    51
## 979     Suc. Belenes    36      42    38    55   30    46
## 980     Suc. Belenes     2       2     2     2    2     3
## 981     Suc. Belenes    15      12     9    12   12    NA
## 982     Suc. Belenes    15      17    17    23   22    24
## 983     Suc. Belenes     3       6     3     9    3     3
## 984     Suc. Belenes     4       6     2     6    2     6
## 985     Suc. Belenes     3       4     2     3    2     4
## 986     Suc. Belenes    NA       1    NA    NA   NA    NA
## 987     Suc. Belenes     1       1     1     1    2     1
## 988     Suc. Belenes    NA       1    NA     1   NA    NA
## 989     Suc. Belenes     4      NA     3     1    2     1
## 990     Suc. Belenes     4       4     5     2    4     5
## 991     Suc. Belenes    NA       1    NA    NA   NA    NA
## 992     Suc. Belenes     1       0     2     0    0     1
## 993     Suc. Belenes     2       3     2     1    2     1
## 994     Suc. Belenes     6       1     4     3    8     6
## 995     Suc. Belenes    NA      NA    NA    NA   NA     1
## 996     Suc. Belenes    NA      NA    NA    NA   NA     1
## 997     Suc. Belenes    NA       4     4     4    2    NA
## 998     Suc. Belenes     2      NA     1     1    1     1
## 999     Suc. Belenes    NA      NA    NA    NA   NA     1
## 1000    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1001    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1002    Suc. Belenes     1       1     1     0    1     1
## 1003    Suc. Belenes     4       1     3     2    4     1
## 1004    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1005    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1006    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1007    Suc. Belenes    NA       2    NA     2   NA     4
## 1008    Suc. Belenes    NA      NA     3    NA    3     3
## 1009    Suc. Belenes    NA      NA     0     0    1     0
## 1010    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1011    Suc. Belenes    NA      NA    NA     2   NA     1
## 1012    Suc. Belenes     1       2     2     1    3     3
## 1013    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1014    Suc. Belenes     2      NA     2    NA   NA    NA
## 1015    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1016    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1017    Suc. Belenes    NA       3     3     3    6     6
## 1018    Suc. Belenes     0      NA    NA    NA    1    NA
## 1019    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1020    Suc. Belenes     1       1    NA     1    3     2
## 1021    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1022    Suc. Belenes     4      NA    NA     2    2     2
## 1023    Suc. Belenes    NA       3     3     3    3    NA
## 1024    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1025    Suc. Belenes     2      NA    NA    NA   NA     1
## 1026    Suc. Belenes     3      NA     2     1    1     1
## 1027    Suc. Belenes     3       1     3     1   NA     2
## 1028    Suc. Belenes     6       6    14    14   14    14
## 1029    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1030    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1031    Suc. Belenes     3       1     5     1    3     3
## 1032    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1033    Suc. Belenes     4      NA     2     4    4     6
## 1034    Suc. Belenes     3       6     8     3   14     6
## 1035    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1036    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1037    Suc. Belenes    NA       2     2    NA    2     1
## 1038    Suc. Belenes     1       3     1     2    3     3
## 1039    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1040    Suc. Belenes     8      11     5     4    6     8
## 1041    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1042    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1043    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1044    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1045    Suc. Belenes     4       4     2     2    2     2
## 1046    Suc. Belenes     3       3     3     3    3    13
## 1047    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1048    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1049    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1050    Suc. Belenes    NA      NA     2    NA   NA     1
## 1051    Suc. Belenes     1       1     1     1    4     1
## 1052    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1053    Suc. Belenes     1       1     1     2    1     2
## 1054    Suc. Belenes    NA      NA     2    NA   NA    NA
## 1055    Suc. Belenes     2       1     2     2    1     1
## 1056    Suc. Belenes    NA      NA    11    NA   NA     3
## 1057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1058    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1059    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1060    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1061    Suc. Belenes     1      NA     1     1   NA     1
## 1062    Suc. Belenes    11       8    13    13   11    13
## 1063    Suc. Belenes     8       8     3     6    3     6
## 1064    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1065    Suc. Belenes    21      21    19    23   25    34
## 1066    Suc. Belenes    NA      NA    NA    NA    1     1
## 1067    Suc. Belenes    NA       1     1     1   NA     1
## 1068    Suc. Belenes     2       1     2     3    3     3
## 1069    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1070    Suc. Belenes    21      24    29    37   29    24
## 1071    Suc. Belenes    NA      NA    NA    NA   NA     3
## 1072    Suc. Belenes     3       3     3    13    6     3
## 1073    Suc. Belenes     5       6     8    11    5     9
## 1074    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1075    Suc. Belenes     3      NA    NA    NA   NA    NA
## 1076    Suc. Belenes    35      53    53    60   42    56
## 1077    Suc. Belenes    70      74    70    95   81    92
## 1078    Suc. Belenes    23      25    30    38   27    36
## 1079    Suc. Belenes    74      72    89    95   91   116
## 1080    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1081    Suc. Belenes     3       2     4     8    5     6
## 1082    Suc. Belenes     3       2     5     5    3     6
## 1083    Suc. Belenes     2       2     2     2    2     2
## 1084    Suc. Belenes     1       1     1     1    1     1
## 1085    Suc. Belenes     1       1    NA     1    1    NA
## 1086    Suc. Belenes     1      NA    NA    NA    1     1
## 1087    Suc. Belenes     2       0     0     0    0     0
## 1088    Suc. Belenes    NA       1    NA    NA    0    NA
## 1089    Suc. Belenes     2       3     2     5    5    NA
## 1090    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1091    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1092    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1093    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1094    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1095    Suc. Belenes     0       0     0     0    0     0
## 1096    Suc. Belenes     3       1     3     4    3     4
## 1097    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1098    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1099    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1100    Suc. Belenes    NA      NA     0    NA    0    NA
## 1101    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1102    Suc. Belenes     1       2     3     4    3     4
## 1103    Suc. Belenes    NA       0     0     0   NA     0
## 1104    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1105    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1106    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1107    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1108    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1109    Suc. Belenes    NA      NA    NA     1   NA     1
## 1110    Suc. Belenes    NA       0     0     0   NA     0
## 1111    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1112    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1113    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1114    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1115    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1116    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1117    Suc. Belenes    NA      NA     3     3    3    NA
## 1118    Suc. Belenes     0      NA    NA     0   NA    NA
## 1119    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1120    Suc. Belenes     1      NA     3     3    3     4
## 1121    Suc. Belenes    NA       0     0     0   NA     0
## 1122    Suc. Belenes     3       3     3    NA   NA     4
## 1123    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1124    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1125    Suc. Belenes    NA      NA     2    NA    2     2
## 1126    Suc. Belenes     1       2     3     4    3     4
## 1127    Suc. Belenes    NA       0     0     0   NA     0
## 1128    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1129    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1130    Suc. Belenes     3      NA     3    NA   NA     1
## 1131    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1132    Suc. Belenes    NA       0    NA    NA   NA     2
## 1133    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1134    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1135    Suc. Belenes     2       2     2     2    4     2
## 1136    Suc. Belenes     3       3     3     3    6     3
## 1137    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1138    Suc. Belenes    NA       3    NA    NA    3    NA
## 1139    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1140    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1141    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1142    Suc. Belenes     2       3     3     5    3     4
## 1143    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1144    Suc. Belenes    NA       1     1     2    1     1
## 1145    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1146    Suc. Belenes    NA       2     2     2    1     1
## 1147    Suc. Belenes     3      NA    NA     3   NA    NA
## 1148    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1149    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1150    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1151    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1152    Suc. Belenes     4      11    13     8   11    11
## 1153    Suc. Belenes    NA      NA    NA    NA   NA     3
## 1154    Suc. Belenes    NA      NA    NA    NA   NA     7
## 1155    Suc. Belenes     2       8     6    11    8    11
## 1156    Suc. Belenes     2       1     2     1    2     2
## 1157    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1158    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1159    Suc. Belenes    21      26    37    26   24    21
## 1160    Suc. Belenes    NA      NA    NA    NA   NA    19
## 1161    Suc. Belenes     6       6    16     6   25    16
## 1162    Suc. Belenes    12       9     6    11   12    12
## 1163    Suc. Belenes    NA      NA     3     6   NA    NA
## 1164    Suc. Belenes     7      11    18    32   35    46
## 1165    Suc. Belenes   155     113   159   169  180   218
## 1166    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1167    Suc. Belenes    17      15    21    19   25    27
## 1168    Suc. Belenes   106      74    95   114   95   135
## 1169    Suc. Belenes     4       1     4     4    4     5
## 1170    Suc. Belenes     2       3     3     3    3     5
## 1171    Suc. Belenes    NA       2     4     4    2     6
## 1172    Suc. Belenes    NA       1    NA     1    2     4
## 1173    Suc. Belenes     1       1     1     3    1     1
## 1174    Suc. Belenes     1      NA    NA     1   NA    NA
## 1175    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1176    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1177    Suc. Belenes     2       0     0     0    0     0
## 1178    Suc. Belenes     4       2     2     3    2     2
## 1179    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1180    Suc. Belenes     2      NA    NA     2    2    NA
## 1181    Suc. Belenes    NA      NA    NA    NA    0    NA
## 1182    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1183    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1184    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1185    Suc. Belenes     0       0     0     0    0     0
## 1186    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1187    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1188    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1189    Suc. Belenes     2      NA    NA    NA   NA     1
## 1190    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1191    Suc. Belenes    NA       1     1     3    1     1
## 1192    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1193    Suc. Belenes    NA       0     0    NA   NA    NA
## 1194    Suc. Belenes    NA       1     1    NA    1     2
## 1195    Suc. Belenes     2       1     1     1    2     1
## 1196    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1197    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1198    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1199    Suc. Belenes    NA       1     1    NA    1     1
## 1200    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1201    Suc. Belenes    NA       1     1    NA    1     2
## 1202    Suc. Belenes    NA       1     1     1    1     1
## 1203    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1204    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1205    Suc. Belenes    NA       1     4    NA    1     1
## 1206    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1207    Suc. Belenes    NA      NA     0    NA   NA    NA
## 1208    Suc. Belenes    NA       1     1    NA    1     2
## 1209    Suc. Belenes     2       1     1     1    1     1
## 1210    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1211    Suc. Belenes    NA      NA     1    NA   NA     1
## 1212    Suc. Belenes    NA      NA    NA    NA    2    NA
## 1213    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1214    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1215    Suc. Belenes     3       1     4    NA    1     4
## 1216    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1217    Suc. Belenes     0      NA     0     0    0     0
## 1218    Suc. Belenes     4       1     1    NA    1     2
## 1219    Suc. Belenes     2       1     1     1    2     1
## 1220    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1221    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1222    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1223    Suc. Belenes    NA       4     3     4   10     3
## 1224    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1225    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1226    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1227    Suc. Belenes     2       2     6     2    2     2
## 1228    Suc. Belenes    NA       3     6     3   10    NA
## 1229    Suc. Belenes    NA       3     3    NA    3     3
## 1230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1231    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1232    Suc. Belenes     0      NA    NA    NA    0    NA
## 1233    Suc. Belenes     1       1     1     1   NA     1
## 1234    Suc. Belenes     0       1    NA    NA   NA     0
## 1235    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1236    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1237    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1238    Suc. Belenes     2      NA     2     2    2     2
## 1239    Suc. Belenes    NA       2    NA    NA    2     2
## 1240    Suc. Belenes    NA       3     3     3    3     3
## 1241    Suc. Belenes     6       4     2     4    6     4
## 1242    Suc. Belenes    NA       1     2     2    3     2
## 1243    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1244    Suc. Belenes     5      11    13     8   11     5
## 1245    Suc. Belenes    NA      NA    NA    NA   NA     6
## 1246    Suc. Belenes     3       3     3     3    3     3
## 1247    Suc. Belenes     5       3     6     3    6     5
## 1248    Suc. Belenes    NA       4    14    14   25    18
## 1249    Suc. Belenes    21      42    42    56   63    46
## 1250    Suc. Belenes     8      13    13    11   13    15
## 1251    Suc. Belenes    23      42    40    40   44    57
## 1252    Suc. Belenes     1       2     2     2    1     2
## 1253    Suc. Belenes    NA      NA     2    NA    2    NA
## 1254    Suc. Belenes    NA       1    NA     1    1    NA
## 1255    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1256    Suc. Belenes     1       1    NA    NA   NA    NA
## 1257    Suc. Belenes     0       0     0    NA   NA    NA
## 1258    Suc. Belenes    NA      NA    NA    NA    0    NA
## 1259    Suc. Belenes     3       6     1     5    4     5
## 1260    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1261    Suc. Belenes     0       0     0    NA   NA    NA
## 1262    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1263    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1264    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1265    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1266    Suc. Belenes     0      NA    NA    NA    0    NA
## 1267    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1268    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1269    Suc. Belenes     1       2     1     1    1     1
## 1270    Suc. Belenes    NA       0     0    NA    0    NA
## 1271    Suc. Belenes    NA      NA    NA    NA    2    NA
## 1272    Suc. Belenes     0      NA    NA    NA    0    NA
## 1273    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1274    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1275    Suc. Belenes    NA       0     0    NA    0    NA
## 1276    Suc. Belenes     0      NA    NA    NA    0    NA
## 1277    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1278    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1279    Suc. Belenes     2       1     1     1   NA     1
## 1280    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1281    Suc. Belenes     3      NA    NA    NA   NA    NA
## 1282    Suc. Belenes    NA       0     0    NA    0    NA
## 1283    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1284    Suc. Belenes    NA       3    NA    NA    3     3
## 1285    Suc. Belenes     0      NA    NA    NA    0    NA
## 1286    Suc. Belenes     0      NA    NA    NA   NA    NA
## 1287    Suc. Belenes     1       2    NA    NA   NA    NA
## 1288    Suc. Belenes     2       2     1     3    1     2
## 1289    Suc. Belenes    NA       0     0    NA    0    NA
## 1290    Suc. Belenes     1      NA     1    NA    1     1
## 1291    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1292    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1293    Suc. Belenes     2      NA     4     2    4     2
## 1294    Suc. Belenes     3      NA     6     3    6     3
## 1295    Suc. Belenes    NA      NA     3    NA   NA    NA
## 1296    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1297    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1298    Suc. Belenes     0      NA    NA     0    0     0
## 1299    Suc. Belenes    NA      NA    NA    NA    1    NA
## 1300    Suc. Belenes     3       1     4     3    1     2
## 1301    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1302    Suc. Belenes     1      NA     1     1    1     1
## 1303    Suc. Belenes     2      NA     1     1    1     1
## 1304    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1305    Suc. Belenes     2       2    NA     4    2    NA
## 1306    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1307    Suc. Belenes    11       8     8    13   15    13
## 1308    Suc. Belenes    NA      NA     2    NA   NA    NA
## 1309    Suc. Belenes    NA       6    NA     6    3     6
## 1310    Suc. Belenes     6       8     6    11    8     6
## 1311    Suc. Belenes    NA      NA    NA    NA   NA     4
## 1312    Suc. Belenes    NA      NA     2     3    3     3
## 1313    Suc. Belenes     4       2     6     8   11     6
## 1314    Suc. Belenes     3      NA    NA    NA   NA     3
## 1315    Suc. Belenes     1       1    NA     1    2     1
## 1316    Suc. Belenes    NA       2    NA     2    2    NA
## 1317    Suc. Belenes     4      NA     2     2    2     4
## 1318    Suc. Belenes    NA      NA     2     4    4     4
## 1319    Suc. Belenes     3      NA    NA    NA   NA    NA
## 1320    Suc. Belenes    13      11    11     8   17    13
## 1321    Suc. Belenes    13      11    16    18   11    16
## 1322    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1323    Suc. Belenes     3       3     3     3    3     3
## 1324    Suc. Belenes     5      11     9     8   11     9
## 1325    Suc. Belenes     6       3     3     6    3     3
## 1326    Suc. Belenes    NA      NA    NA     6   NA    NA
## 1327    Suc. Belenes    NA      18    21    21   25    25
## 1328    Suc. Belenes    92      88    81    99   81    99
## 1329    Suc. Belenes    11       6     8    15   11     8
## 1330    Suc. Belenes    34      49    59    59   44    46
## 1331    Suc. Belenes     9       7    11     8   14    13
## 1332    Suc. Belenes     6       5     5     6    8     6
## 1333    Suc. Belenes     2      NA     1    NA   NA    NA
## 1334    Suc. Belenes     1       1     1     1    1     1
## 1335    Suc. Belenes     1      NA     2    NA   NA    NA
## 1336    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1337    Suc. Belenes     2       0     0     0    0     0
## 1338    Suc. Belenes    NA      NA     2    NA   NA    NA
## 1339    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1340    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1341    Suc. Belenes     0       0     0     0    0     0
## 1342    Suc. Belenes     1       1     1     1    1     2
## 1343    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1344    Suc. Belenes     2       2    NA     2   NA     2
## 1345    Suc. Belenes    NA       3     6     6    8     3
## 1346    Suc. Belenes     0      NA    NA     0    0     0
## 1347    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1348    Suc. Belenes    NA       2    NA     3    1    NA
## 1349    Suc. Belenes     1       1     1     3    1     2
## 1350    Suc. Belenes    NA       0    NA     0   NA    NA
## 1351    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1352    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1353    Suc. Belenes     0      NA    NA     0    0     0
## 1354    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1355    Suc. Belenes    NA      NA    NA     1    1    NA
## 1356    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1357    Suc. Belenes    NA       0    NA     0   NA    NA
## 1358    Suc. Belenes     0      NA    NA     0    0     0
## 1359    Suc. Belenes    NA      NA    NA    NA    0    NA
## 1360    Suc. Belenes    NA      NA    NA     1    1    NA
## 1361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1362    Suc. Belenes     1       1     1     1    2     2
## 1363    Suc. Belenes     3       3    11     6    8     3
## 1364    Suc. Belenes     0      NA    NA    NA   NA    NA
## 1365    Suc. Belenes     2      NA     2    NA    2     2
## 1366    Suc. Belenes    NA       1     1     3    1     1
## 1367    Suc. Belenes    NA       0    NA     0   NA    NA
## 1368    Suc. Belenes     2      NA    NA     2    2     2
## 1369    Suc. Belenes    NA      NA     6    NA    8     6
## 1370    Suc. Belenes     0      NA    NA     0    0     0
## 1371    Suc. Belenes    NA      NA     0     0   NA     0
## 1372    Suc. Belenes    NA      NA     2     3    1     2
## 1373    Suc. Belenes     2       2     1     1    1     1
## 1374    Suc. Belenes    NA       0    NA     0   NA    NA
## 1375    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1376    Suc. Belenes     1       1    NA    NA    1    NA
## 1377    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1378    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1379    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1380    Suc. Belenes    19     108     2     2   13    15
## 1381    Suc. Belenes    16      73     3     3   16    13
## 1382    Suc. Belenes     3      18    NA    NA   NA     3
## 1383    Suc. Belenes     7      NA    NA    NA   NA    NA
## 1384    Suc. Belenes     8      48    NA    NA   NA     5
## 1385    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1386    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1387    Suc. Belenes     1       1     1     1    0     1
## 1388    Suc. Belenes     1       1     1     1   NA     1
## 1389    Suc. Belenes     3       1    NA     2    2     4
## 1390    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1391    Suc. Belenes     1      NA    NA     1    2     1
## 1392    Suc. Belenes    NA       2     4    NA   NA     2
## 1393    Suc. Belenes     2       2     3     1    2     1
## 1394    Suc. Belenes    NA       8     8     3    6     8
## 1395    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1396    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1397    Suc. Belenes     4       4     2     2    6     2
## 1398    Suc. Belenes    15       8    15    15   13    15
## 1399    Suc. Belenes     2       2     2     2    2     3
## 1400    Suc. Belenes    11       7    11     4    7    11
## 1401    Suc. Belenes     3       3     5     3    2     3
## 1402    Suc. Belenes    15      15    17    19   30    19
## 1403    Suc. Belenes     4       6     5     7    9     8
## 1404    Suc. Belenes     3       2     5     5    3     5
## 1405    Suc. Belenes     1       2     2     1   NA    NA
## 1406    Suc. Belenes     2      NA     2     2    2     4
## 1407    Suc. Belenes     3      NA    NA    NA   NA    NA
## 1408    Suc. Belenes     4       2     4     6    8     4
## 1409    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1410    Suc. Belenes     1      NA    NA    NA   NA     2
## 1411    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1412    Suc. Belenes    40      26    40    45   21    26
## 1413    Suc. Belenes    NA      NA    NA    NA   NA    19
## 1414    Suc. Belenes    25      35    73    54   16    32
## 1415    Suc. Belenes    17      15    21    39   12    24
## 1416    Suc. Belenes    NA       2     3     3    3     3
## 1417    Suc. Belenes     3      NA    NA     6   NA    NA
## 1418    Suc. Belenes    42      28    81     4   NA    18
## 1419    Suc. Belenes   151     127   151   134  229   151
## 1420    Suc. Belenes     4       4     4    NA   NA    NA
## 1421    Suc. Belenes    36      36    44    30   32    19
## 1422    Suc. Belenes    82      68    85    91   97    99
## 1423    Suc. Belenes     2       1     1     1    1     2
## 1424    Suc. Belenes     9       8    13     9   13    13
## 1425    Suc. Belenes     9       6     6     8    9     8
## 1426    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1427    Suc. Belenes     7       7     5     4    5     5
## 1428    Suc. Belenes    NA       1     1     1    1     1
## 1429    Suc. Belenes    NA      NA    NA     1    1    NA
## 1430    Suc. Belenes    NA      NA    NA    NA    3    NA
## 1431    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1432    Suc. Belenes     3       0     0     0    0     0
## 1433    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1434    Suc. Belenes     2      NA     2     1    1     0
## 1435    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1436    Suc. Belenes    NA       2     4    NA    2     2
## 1437    Suc. Belenes    NA       3     1     2   NA    NA
## 1438    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1439    Suc. Belenes     0       0     0     0    0     0
## 1440    Suc. Belenes     5      NA    NA    NA    3     1
## 1441    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1442    Suc. Belenes    NA      NA     1     3    6    NA
## 1443    Suc. Belenes     4       4     7    NA    4    NA
## 1444    Suc. Belenes     1       1     1     1    0     1
## 1445    Suc. Belenes     0       1     2     1    3     3
## 1446    Suc. Belenes     2      NA     3     2    4    NA
## 1447    Suc. Belenes     1       1     1     2    2     2
## 1448    Suc. Belenes    NA       0     0     0    0     0
## 1449    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1450    Suc. Belenes    NA      NA     1    NA    1    NA
## 1451    Suc. Belenes     0       1     1     0    0     0
## 1452    Suc. Belenes    NA      NA    NA     0   NA    NA
## 1453    Suc. Belenes    NA       2     1    NA   NA    NA
## 1454    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1455    Suc. Belenes    NA       0     0     0    0     0
## 1456    Suc. Belenes    NA      NA     1    NA    1     3
## 1457    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1458    Suc. Belenes     1       1     1     1    0     1
## 1459    Suc. Belenes    NA      NA     0     1   NA    NA
## 1460    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1461    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1462    Suc. Belenes     3       1     1     3    2     3
## 1463    Suc. Belenes    NA      NA    NA    NA   NA     3
## 1464    Suc. Belenes     3      NA     3    NA    3    NA
## 1465    Suc. Belenes    11      NA    11    NA   NA     4
## 1466    Suc. Belenes    NA       1    NA     0    3     6
## 1467    Suc. Belenes     4       2    11     4    6     2
## 1468    Suc. Belenes     3      NA    NA     1    3    NA
## 1469    Suc. Belenes    NA       0     0     0    0     0
## 1470    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1471    Suc. Belenes    NA       6     1    NA    4    NA
## 1472    Suc. Belenes    11       4     7     7    7     4
## 1473    Suc. Belenes     1       1     1     1    0     1
## 1474    Suc. Belenes     1       2     2     2    1     3
## 1475    Suc. Belenes     2      NA     1     2   11     4
## 1476    Suc. Belenes     3       1     1     3    1     4
## 1477    Suc. Belenes    NA       0     0     0    0     0
## 1478    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1479    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1480    Suc. Belenes     6      10     4     4    6     7
## 1481    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1482    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1483    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1484    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1485    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1486    Suc. Belenes     6      27    11     4    2     2
## 1487    Suc. Belenes     3       3    10    13    3     3
## 1488    Suc. Belenes    18      28    14    14   28    11
## 1489    Suc. Belenes    NA      10    NA     8   NA    NA
## 1490    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1491    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1492    Suc. Belenes     1       1     1     2    3     2
## 1493    Suc. Belenes     4       3     3     3    4     1
## 1494    Suc. Belenes     6       2    NA     2    6    NA
## 1495    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1496    Suc. Belenes    NA       1     1     1    1     1
## 1497    Suc. Belenes    NA       1     2     1    1     1
## 1498    Suc. Belenes    NA      37    NA    28   NA    28
## 1499    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1500    Suc. Belenes    NA      NA     0    NA   NA    NA
## 1501    Suc. Belenes    NA      NA    NA    NA    1     1
## 1502    Suc. Belenes    NA       3    NA     1    1     5
## 1503    Suc. Belenes     6       8     8     8   13     8
## 1504    Suc. Belenes     6       6     3    14    8     8
## 1505    Suc. Belenes     6      NA     3     3    6     6
## 1506    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1507    Suc. Belenes    17      32    17    21   40    NA
## 1508    Suc. Belenes     2       1     4     3    3     3
## 1509    Suc. Belenes    NA       2    NA     2    2     2
## 1510    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1511    Suc. Belenes     2      NA     2     2    2     4
## 1512    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1513    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1514    Suc. Belenes    48      71    32    42   77     5
## 1515    Suc. Belenes    NA      NA    NA    NA   NA    38
## 1516    Suc. Belenes    22      19    25    25   29    29
## 1517    Suc. Belenes    17      12    15    15   30     2
## 1518    Suc. Belenes    NA      NA    NA     6   NA    NA
## 1519    Suc. Belenes    11       6     8     8   14     8
## 1520    Suc. Belenes    49      88    49    88  102    56
## 1521    Suc. Belenes    74     232    42   144  236   127
## 1522    Suc. Belenes    25      53    11    19   44    30
## 1523    Suc. Belenes    23     101    25    80  118    59
## 1524    Suc. Belenes     6       4     8     7    6     6
## 1525    Suc. Belenes     5       5     3     7    6     6
## 1526    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1527    Suc. Belenes     6       6     4     6    4     6
## 1528    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1529    Suc. Belenes    NA       2     1     1    1     1
## 1530    Suc. Belenes    NA      NA    NA     1    1    NA
## 1531    Suc. Belenes     8      NA    NA    NA    3     1
## 1532    Suc. Belenes     4      NA     4     2    2     2
## 1533    Suc. Belenes     2       0     0     0    0     0
## 1534    Suc. Belenes     1       2    NA     3    2     1
## 1535    Suc. Belenes     3      22    NA     1   NA    NA
## 1536    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1537    Suc. Belenes     4       2     2     2    4     2
## 1538    Suc. Belenes     1       1     0     1    0     1
## 1539    Suc. Belenes     1       1    NA    NA   NA    NA
## 1540    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1541    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1542    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1543    Suc. Belenes     0       0     0     0    0     0
## 1544    Suc. Belenes     6       1     3     3    4     5
## 1545    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1546    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1547    Suc. Belenes     6       6     6     8    6     8
## 1548    Suc. Belenes     0       0    NA    NA   NA     0
## 1549    Suc. Belenes    NA      NA     1     2    1     1
## 1550    Suc. Belenes     4       3     3     4    4     3
## 1551    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1552    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1553    Suc. Belenes    NA       3     6     3    8    NA
## 1554    Suc. Belenes    NA      NA    NA    NA    2     0
## 1555    Suc. Belenes    NA      NA     1    NA    1     1
## 1556    Suc. Belenes     4       1     3     3    2     3
## 1557    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1558    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1559    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1560    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1561    Suc. Belenes     2      NA     1    NA    1     1
## 1562    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1563    Suc. Belenes     2       1     3     3    4     4
## 1564    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1565    Suc. Belenes     3      17     8    14   20    17
## 1566    Suc. Belenes    NA      NA     0    NA   NA     0
## 1567    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1568    Suc. Belenes     4       3     4     4    4     4
## 1569    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1570    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1571    Suc. Belenes    NA      23     3    14   23    NA
## 1572    Suc. Belenes    NA      NA    NA     0   NA     1
## 1573    Suc. Belenes    NA      NA     1    NA    1     1
## 1574    Suc. Belenes     4       3     4     4    4     6
## 1575    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1576    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1577    Suc. Belenes     6       8     7    13   10     2
## 1578    Suc. Belenes    NA      NA     3    NA   NA    NA
## 1579    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1580    Suc. Belenes    NA       3    11    NA    3    11
## 1581    Suc. Belenes     3      NA     5     5    3     9
## 1582    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1583    Suc. Belenes     6      15    21     2    2     8
## 1584    Suc. Belenes    10       6    16    13    6    22
## 1585    Suc. Belenes    NA      NA     2     1   NA    NA
## 1586    Suc. Belenes     3       3     5    NA    3    14
## 1587    Suc. Belenes     4       4     4    NA    7     7
## 1588    Suc. Belenes     5       8    10     3    5    23
## 1589    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1590    Suc. Belenes     4       5     4     3    2     3
## 1591    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1592    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1593    Suc. Belenes     1       0     1    NA    0     1
## 1594    Suc. Belenes    NA      NA     2    NA   NA    NA
## 1595    Suc. Belenes     3       3    NA    NA    1     3
## 1596    Suc. Belenes     7       5     4     7   NA     8
## 1597    Suc. Belenes     1       1    NA    NA   NA     0
## 1598    Suc. Belenes     1       3     1     1    1     1
## 1599    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1600    Suc. Belenes     3       3     1     1    2     1
## 1601    Suc. Belenes     8      17     3    20    6     8
## 1602    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1603    Suc. Belenes    NA      NA     0    NA   NA    NA
## 1604    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1605    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1606    Suc. Belenes     1       1    NA    NA   NA    NA
## 1607    Suc. Belenes     4       2     8    NA    8     8
## 1608    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1609    Suc. Belenes     2      NA    NA     2   NA    NA
## 1610    Suc. Belenes    NA       4     2     6   NA    NA
## 1611    Suc. Belenes    21      11    29    NA   11    21
## 1612    Suc. Belenes    25      25    25     3   29    35
## 1613    Suc. Belenes    25      32    16    38   29    19
## 1614    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1615    Suc. Belenes    15      17    27    30   26    14
## 1616    Suc. Belenes    NA      NA    NA     3   NA    NA
## 1617    Suc. Belenes    NA       3    NA     6   NA    NA
## 1618    Suc. Belenes    NA       6     3    NA   NA    NA
## 1619    Suc. Belenes    70     116   102    77   67   127
## 1620    Suc. Belenes    56      88   106    42   74    46
## 1621    Suc. Belenes     2       2    15    NA   NA     2
## 1622    Suc. Belenes    19       6    27    23    4    15
## 1623    Suc. Belenes    72      85    82   139  104    82
## 1624    Suc. Belenes     4       4     4     3    4     5
## 1625    Suc. Belenes     2       2     6     5   NA     5
## 1626    Suc. Belenes     6       4     6     2    6    10
## 1627    Suc. Belenes     8       7     8     3    8    10
## 1628    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1629    Suc. Belenes     1       1     1     8    4     4
## 1630    Suc. Belenes     3      NA     1     5    2     2
## 1631    Suc. Belenes    10       4     5    15   13    10
## 1632    Suc. Belenes    NA      NA     2     1    1     2
## 1633    Suc. Belenes     1       1     1    NA    1    NA
## 1634    Suc. Belenes     4       2     2     1    0     0
## 1635    Suc. Belenes     1       3    NA    NA    2    NA
## 1636    Suc. Belenes    14      11     7    10   16     5
## 1637    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1638    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1639    Suc. Belenes    NA       2     4     2    2     2
## 1640    Suc. Belenes     1       0     1     1   NA     1
## 1641    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1642    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1643    Suc. Belenes     0       0     1     0    0     0
## 1644    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1645    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1646    Suc. Belenes    NA       4    NA    NA   NA     2
## 1647    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1648    Suc. Belenes     3      NA    11     6    6    14
## 1649    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1650    Suc. Belenes     7       7     7     8    7     7
## 1651    Suc. Belenes     1       0     1    NA    0     1
## 1652    Suc. Belenes     3       5     5     3    8    10
## 1653    Suc. Belenes    NA       1     2     2   NA     1
## 1654    Suc. Belenes     3       6    NA     2   NA    NA
## 1655    Suc. Belenes    NA       1     1    NA    2     2
## 1656    Suc. Belenes     3       2    NA    NA   NA     2
## 1657    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1658    Suc. Belenes    NA       6     8     8   11    17
## 1659    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1660    Suc. Belenes     7      25    18     1    4     4
## 1661    Suc. Belenes     0       0     0    NA    0     1
## 1662    Suc. Belenes     5       2     9     5    8    10
## 1663    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1664    Suc. Belenes    NA       3     2     2    2     1
## 1665    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1666    Suc. Belenes    NA       1     1    NA    2     2
## 1667    Suc. Belenes    NA       2    NA    NA   NA     2
## 1668    Suc. Belenes    NA      NA    NA     3   NA    NA
## 1669    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1670    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1671    Suc. Belenes     1       0     1    NA    0     1
## 1672    Suc. Belenes     0      NA    NA    NA    1     3
## 1673    Suc. Belenes    NA       1     2     2    2     1
## 1674    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1675    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1676    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1677    Suc. Belenes    NA      NA     6    NA    8     8
## 1678    Suc. Belenes     7       4     4     4   NA     4
## 1679    Suc. Belenes    NA      NA     3     0    4     3
## 1680    Suc. Belenes     2      NA    NA    NA    6    NA
## 1681    Suc. Belenes    NA      NA    NA    NA    1    NA
## 1682    Suc. Belenes    NA       1     1    NA    2     2
## 1683    Suc. Belenes    NA       2    NA    NA   NA     2
## 1684    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1685    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1686    Suc. Belenes     3      NA     6     3    8     8
## 1687    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1688    Suc. Belenes    NA      14     4     4    7     4
## 1689    Suc. Belenes     1       0     1    NA    0     1
## 1690    Suc. Belenes     2       3     5     3    5    14
## 1691    Suc. Belenes    NA       3     2     2    2     1
## 1692    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1693    Suc. Belenes    NA       1     1    NA    2     2
## 1694    Suc. Belenes     1      NA    NA     1    1    NA
## 1695    Suc. Belenes    NA       0    NA    NA   NA    NA
## 1696    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1697    Suc. Belenes     3      NA    NA    NA    3     3
## 1698    Suc. Belenes     1       4    NA     5    5     5
## 1699    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1700    Suc. Belenes     2      95     2     2   27    27
## 1701    Suc. Belenes     6     101     3    16   35    41
## 1702    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1703    Suc. Belenes     7      14    NA    18    7     4
## 1704    Suc. Belenes     5      36    NA     8   10    10
## 1705    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1706    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1707    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1708    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1709    Suc. Belenes     1       0     0     0    0     1
## 1710    Suc. Belenes     5       4    NA    NA   NA     1
## 1711    Suc. Belenes    NA       2    NA     1   NA     1
## 1712    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1713    Suc. Belenes    NA       1    NA     1   NA    NA
## 1714    Suc. Belenes     2       4     2     2    4     2
## 1715    Suc. Belenes    NA       4    NA    NA   NA    NA
## 1716    Suc. Belenes    NA       2     1     1   NA    NA
## 1717    Suc. Belenes     3       8     3    11    3     8
## 1718    Suc. Belenes    NA      NA    NA     3    1     3
## 1719    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1720    Suc. Belenes     1      NA     1    NA   NA    NA
## 1721    Suc. Belenes     3      NA    NA    NA   NA    NA
## 1722    Suc. Belenes     2       2    NA    NA   NA    NA
## 1723    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1724    Suc. Belenes     4       2     2     2    4     6
## 1725    Suc. Belenes    NA       1    NA     1   NA    NA
## 1726    Suc. Belenes    23      23    30    40   42    40
## 1727    Suc. Belenes     6       8     6     9   14     6
## 1728    Suc. Belenes    28      31    37    34   59    39
## 1729    Suc. Belenes     6       6     8     8   11    11
## 1730    Suc. Belenes     3      14     5    19   14    12
## 1731    Suc. Belenes    36      40    34    32   49    40
## 1732    Suc. Belenes     3       4     3     8    8     8
## 1733    Suc. Belenes     3       3     3     5    5     6
## 1734    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1735    Suc. Belenes     8       4     8     8   11    11
## 1736    Suc. Belenes     8       8    11    11    8    17
## 1737    Suc. Belenes     6       6     6     2    6     4
## 1738    Suc. Belenes    NA       2    NA     1    1     1
## 1739    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1740    Suc. Belenes    NA      NA    NA    NA    4     4
## 1741    Suc. Belenes    53      53    53    90   69    45
## 1742    Suc. Belenes    NA       6     6     6    6    29
## 1743    Suc. Belenes     3       3     3    NA    3     3
## 1744    Suc. Belenes    17      17    17    21   32    23
## 1745    Suc. Belenes    17      17    20    27   29    29
## 1746    Suc. Belenes    28      28    25    62   73    73
## 1747    Suc. Belenes     6       6     6     8   14     8
## 1748    Suc. Belenes    81      85    77    70   85    92
## 1749    Suc. Belenes    35      28    32    28   28    28
## 1750    Suc. Belenes     7       2     3    NA    5    NA
## 1751    Suc. Belenes    21      15    13    25   15    19
## 1752    Suc. Belenes    49      55    38    49   72    76
## 1753    Suc. Belenes    55      53    38    57   80    80
## 1754    Suc. Belenes     2       2     1     2    2     2
## 1755    Suc. Belenes     6       3     9    18   18    NA
## 1756    Suc. Belenes    13      13    12    20   22    23
## 1757    Suc. Belenes     5       6     6     8    8    11
## 1758    Suc. Belenes     2       2     4     6    8    10
## 1759    Suc. Belenes     4       6     4     5    6     6
## 1760    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1761    Suc. Belenes     2       1     1     1    2     2
## 1762    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1763    Suc. Belenes     1      NA     2     3    3     3
## 1764    Suc. Belenes     2       1     1     5    2     1
## 1765    Suc. Belenes     2       1     2     1   NA     1
## 1766    Suc. Belenes     1       1     1     2    2     5
## 1767    Suc. Belenes     3      13    NA     1    2     2
## 1768    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1769    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1770    Suc. Belenes     2       2     2     6    2    NA
## 1771    Suc. Belenes     0       1    NA     1    1     1
## 1772    Suc. Belenes     1       4     7    NA    3     2
## 1773    Suc. Belenes     1       3     4     3   NA     3
## 1774    Suc. Belenes     4       1     7    NA   NA     2
## 1775    Suc. Belenes     5       2     6     5    5     5
## 1776    Suc. Belenes     1       1     0     1    1     1
## 1777    Suc. Belenes     3       4     5     8    9     8
## 1778    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1779    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1780    Suc. Belenes     2       2     2     4    4     4
## 1781    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1782    Suc. Belenes    NA      NA     3     3   11    NA
## 1783    Suc. Belenes     1       0     0     0    0     1
## 1784    Suc. Belenes     2       2     4     3    6     3
## 1785    Suc. Belenes     1       1     1     1    3     3
## 1786    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1787    Suc. Belenes    NA       1     1     0    0     0
## 1788    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1789    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1790    Suc. Belenes     0       0     0     0    0     1
## 1791    Suc. Belenes     1      NA     1    NA   NA    NA
## 1792    Suc. Belenes     1       1     1     1    3     3
## 1793    Suc. Belenes    NA       1     1     0    0     0
## 1794    Suc. Belenes     2       2     2    NA   NA     2
## 1795    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1796    Suc. Belenes     1       0     0     0    0     1
## 1797    Suc. Belenes     1      NA     4    NA    2     3
## 1798    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1799    Suc. Belenes     1       1     1     1    3     3
## 1800    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1801    Suc. Belenes     1      NA    NA    NA    1    NA
## 1802    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1803    Suc. Belenes     6       3     3     3    6     6
## 1804    Suc. Belenes    NA      NA     2     2    2     3
## 1805    Suc. Belenes     2       2    NA     2    2     4
## 1806    Suc. Belenes    NA      NA     1     4    1     5
## 1807    Suc. Belenes    NA       1     1     0    0     0
## 1808    Suc. Belenes     6       6     4     4    4     8
## 1809    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1810    Suc. Belenes    NA      NA    NA    NA   NA     2
## 1811    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1812    Suc. Belenes     8       6     6     6    3     6
## 1813    Suc. Belenes     1       0     0     0    0     1
## 1814    Suc. Belenes     4      NA     4     5    7     7
## 1815    Suc. Belenes     4      NA    NA    NA   NA    NA
## 1816    Suc. Belenes     1       1     1     1    3     3
## 1817    Suc. Belenes    NA      NA    NA    NA    1    NA
## 1818    Suc. Belenes    NA       1     1     0    0     0
## 1819    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1820    Suc. Belenes     6       2     3    10    7     8
## 1821    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1822    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1823    Suc. Belenes     2       8     6     6   13     8
## 1824    Suc. Belenes     6       6     3     6    6     6
## 1825    Suc. Belenes    11       7     4     7    7     7
## 1826    Suc. Belenes     3       3     3     3    5     3
## 1827    Suc. Belenes     1       1     1     1    0     3
## 1828    Suc. Belenes    NA      NA     1    NA   NA    NA
## 1829    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1830    Suc. Belenes     1       2     1     1    3     3
## 1831    Suc. Belenes     1       0     1     1    2     1
## 1832    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1833    Suc. Belenes    NA       1     1    NA   NA    NA
## 1834    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1835    Suc. Belenes    NA       2     1     1   NA    NA
## 1836    Suc. Belenes     3       3    NA     3    3     3
## 1837    Suc. Belenes     2      NA    NA    NA   NA    NA
## 1838    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1839    Suc. Belenes     6      13     8    13   11    11
## 1840    Suc. Belenes     5       3     3     5    3     6
## 1841    Suc. Belenes     6       8     6     6   11     6
## 1842    Suc. Belenes     6       3     3    11    6     6
## 1843    Suc. Belenes     7       4     4     4    7    11
## 1844    Suc. Belenes    12      12     8    17   15    12
## 1845    Suc. Belenes     8       6     6    13   11     8
## 1846    Suc. Belenes     1       1     1    NA    1     3
## 1847    Suc. Belenes     5       2     5     5    6     6
## 1848    Suc. Belenes     1      NA     1    NA    1    NA
## 1849    Suc. Belenes    NA      NA     2    NA    2    NA
## 1850    Suc. Belenes    NA      NA    NA     3   NA     3
## 1851    Suc. Belenes     2      NA     4    NA    2     4
## 1852    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1853    Suc. Belenes     4       6     8     8   13    15
## 1854    Suc. Belenes    11      11    16    11   18     5
## 1855    Suc. Belenes     6       6    10     6    6     6
## 1856    Suc. Belenes     3       3     3    NA    3     3
## 1857    Suc. Belenes     3       3     3     5    2     2
## 1858    Suc. Belenes     6       6     6     6    9     9
## 1859    Suc. Belenes     8      23     8    17   23    17
## 1860    Suc. Belenes     8       6     6    14    8     6
## 1861    Suc. Belenes     7      18    14    11   18    14
## 1862    Suc. Belenes    25      56    35    53   53    49
## 1863    Suc. Belenes    21      25    19    23   23    23
## 1864    Suc. Belenes    23      15    53     8   36    11
## 1865    Suc. Belenes     5       7     6     6    8     4
## 1866    Suc. Belenes     2       5     2     5    2     5
## 1867    Suc. Belenes    NA      NA     2    NA    2     2
## 1868    Suc. Belenes     2       7     5     2    4     4
## 1869    Suc. Belenes     1       1     1     1    1     3
## 1870    Suc. Belenes     1       2     1     2    2     2
## 1871    Suc. Belenes     1      NA     1     1    2     3
## 1872    Suc. Belenes     5       2     3     2    3     1
## 1873    Suc. Belenes     2       0     0    NA   NA    NA
## 1874    Suc. Belenes     1       1     1     1    1     1
## 1875    Suc. Belenes     2       1     1     2    1     3
## 1876    Suc. Belenes     6       2     2     5    3     4
## 1877    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1878    Suc. Belenes    NA       1     0     1    1     1
## 1879    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1880    Suc. Belenes     0       0     0    NA   NA    NA
## 1881    Suc. Belenes     4       4     2     4    3     6
## 1882    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1883    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1884    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1885    Suc. Belenes     2      NA     2     2    2    NA
## 1886    Suc. Belenes    NA      NA     3    NA    6    NA
## 1887    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1888    Suc. Belenes     0      NA    NA     1   NA     1
## 1889    Suc. Belenes     2      NA     2    NA   NA     2
## 1890    Suc. Belenes    NA       1     1     3    1     1
## 1891    Suc. Belenes    NA       1     0     0   NA     0
## 1892    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1893    Suc. Belenes     0      NA    NA    NA   NA    NA
## 1894    Suc. Belenes    NA      NA    NA    NA   NA     3
## 1895    Suc. Belenes     0      NA    NA    NA   NA    NA
## 1896    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1897    Suc. Belenes     1      NA    NA     1    1    NA
## 1898    Suc. Belenes    NA       1     0     0   NA     0
## 1899    Suc. Belenes     0       2    NA    NA   NA    NA
## 1900    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1901    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1902    Suc. Belenes    NA       2    NA    NA   NA    NA
## 1903    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1904    Suc. Belenes     1       1     3     1    2     2
## 1905    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1906    Suc. Belenes    NA      NA    NA     2   NA     2
## 1907    Suc. Belenes     3       6     3     3    3     3
## 1908    Suc. Belenes    NA      NA    NA     0   NA     0
## 1909    Suc. Belenes     2       2     2    NA    2     2
## 1910    Suc. Belenes     1       1     1     3    1     1
## 1911    Suc. Belenes    NA       1     0     0   NA     0
## 1912    Suc. Belenes     2       2    NA     4   NA    NA
## 1913    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1914    Suc. Belenes     2      NA     2     2    3    NA
## 1915    Suc. Belenes    NA       3     6     3    3    NA
## 1916    Suc. Belenes     1      NA    NA    NA   NA    NA
## 1917    Suc. Belenes    NA       0     2     1    1     3
## 1918    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1919    Suc. Belenes     1       4     3     3    3     1
## 1920    Suc. Belenes    NA       1     0     0   NA     0
## 1921    Suc. Belenes     4       3     6     3   10     7
## 1922    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1923    Suc. Belenes     2      NA     1     1    1     1
## 1924    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1925    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1926    Suc. Belenes     4       2    NA     4   11    11
## 1927    Suc. Belenes     3       3    NA    10   13    19
## 1928    Suc. Belenes    NA      NA     1     0   NA    NA
## 1929    Suc. Belenes     4      NA    NA    NA   NA    NA
## 1930    Suc. Belenes     8      NA    NA    NA   NA     5
## 1931    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1932    Suc. Belenes     0       0     0    NA    0     0
## 1933    Suc. Belenes    NA      NA    NA    NA    1     2
## 1934    Suc. Belenes     1      NA    NA     2    1     4
## 1935    Suc. Belenes    NA      NA    NA    NA   NA     0
## 1936    Suc. Belenes    NA       1    NA     1   NA     1
## 1937    Suc. Belenes    NA      NA    NA    NA    2    NA
## 1938    Suc. Belenes    NA       1    NA     1    1     1
## 1939    Suc. Belenes    NA      NA     3     3    6     3
## 1940    Suc. Belenes    NA      NA    NA     1   NA     1
## 1941    Suc. Belenes    NA       0    NA    NA    0    NA
## 1942    Suc. Belenes     1      NA    NA    NA    1     1
## 1943    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1944    Suc. Belenes     2       2    NA    NA   NA    NA
## 1945    Suc. Belenes     2       2     4    NA   NA     2
## 1946    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1947    Suc. Belenes    11      11    11     2   13    11
## 1948    Suc. Belenes     8       8     8     8   13     5
## 1949    Suc. Belenes    16       3     6     6   13    10
## 1950    Suc. Belenes    10       6     3     6    6     6
## 1951    Suc. Belenes     2       2     3     2    2     3
## 1952    Suc. Belenes    NA      NA    NA     1   NA    NA
## 1953    Suc. Belenes    63      39    35    11   95    74
## 1954    Suc. Belenes    25      21    14    11    4    14
## 1955    Suc. Belenes     4       6     6     2    4     4
## 1956    Suc. Belenes    15      11    13     6   15    21
## 1957    Suc. Belenes    40      27    25    25   19    34
## 1958    Suc. Belenes     1       1     1    NA   NA     2
## 1959    Suc. Belenes     6       2     3    NA    3    NA
## 1960    Suc. Belenes     2       4     4     2    6     4
## 1961    Suc. Belenes     5       3     3     2    4     4
## 1962    Suc. Belenes    NA       1    NA    NA   NA    NA
## 1963    Suc. Belenes    NA       1    NA     1    1     1
## 1964    Suc. Belenes    NA      NA    NA    NA    1    NA
## 1965    Suc. Belenes    NA      NA    NA     2   NA    NA
## 1966    Suc. Belenes    NA       0     0     2    0     0
## 1967    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1968    Suc. Belenes    NA      NA    NA     3    0     1
## 1969    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1970    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1971    Suc. Belenes    NA      NA    NA    NA    1     1
## 1972    Suc. Belenes    NA      NA    NA    NA    1    NA
## 1973    Suc. Belenes    NA      NA    NA     1    2     1
## 1974    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1975    Suc. Belenes    NA       0     0     0    0     0
## 1976    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1977    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 1978    Suc. Belenes     2       2     2     2    2    NA
## 1979    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1980    Suc. Belenes     4       1    NA     1   NA     3
## 1981    Suc. Belenes     2       3     1     2   NA     1
## 1982    Suc. Belenes     0       0     0    NA    0     0
## 1983    Suc. Belenes    NA      NA     1    NA    0     2
## 1984    Suc. Belenes     1       1    NA     1    3    NA
## 1985    Suc. Belenes     1       1     1    NA    1     2
## 1986    Suc. Belenes     0      NA    NA    NA   NA     1
## 1987    Suc. Belenes    NA       0     0    NA   NA     0
## 1988    Suc. Belenes     2       2     2     2    2    NA
## 1989    Suc. Belenes    NA      NA    NA    NA   NA     1
## 1990    Suc. Belenes     1       1     3     1    8    NA
## 1991    Suc. Belenes     9       3     4     5    4     1
## 1992    Suc. Belenes     0       0     0    NA    0     0
## 1993    Suc. Belenes     1       0     1     0    1     1
## 1994    Suc. Belenes     3       3     2     1    5    NA
## 1995    Suc. Belenes     2       3     1     1    1     3
## 1996    Suc. Belenes     0      NA    NA    NA   NA     1
## 1997    Suc. Belenes    NA       0     0    NA   NA     0
## 1998    Suc. Belenes     2       2     2     2    2    NA
## 1999    Suc. Belenes     1       1    NA     1   NA    NA
## 2000    Suc. Belenes     2       3     3     2   NA     1
## 2001    Suc. Belenes     0       0     0    NA    0     0
## 2002    Suc. Belenes     1      NA     0     0    0     1
## 2003    Suc. Belenes     1       1    NA     1    3    NA
## 2004    Suc. Belenes     1       1     1    NA    1     1
## 2005    Suc. Belenes     0      NA    NA    NA   NA     1
## 2006    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2007    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2008    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2009    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2010    Suc. Belenes    NA       0     0    NA   NA     0
## 2011    Suc. Belenes     2       2     2     2    2    NA
## 2012    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2013    Suc. Belenes     1       1    NA     1    6    NA
## 2014    Suc. Belenes     2       3     3     2   NA     1
## 2015    Suc. Belenes     0       0     0    NA    0     0
## 2016    Suc. Belenes     1       0     1     0    1     2
## 2017    Suc. Belenes     1       1    NA     1    3     2
## 2018    Suc. Belenes     4       2     1    NA    1     3
## 2019    Suc. Belenes     0      NA    NA    NA   NA     1
## 2020    Suc. Belenes    NA       0     0    NA   NA     0
## 2021    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2022    Suc. Belenes    NA      NA    NA    NA    1     2
## 2023    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2024    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2025    Suc. Belenes     1       1    NA    NA   NA    NA
## 2026    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2027    Suc. Belenes    15      49    40    25   59    53
## 2028    Suc. Belenes    10      13    NA    10   60    57
## 2029    Suc. Belenes    NA      NA     0    NA    0     0
## 2030    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2031    Suc. Belenes    13      25    13    15   10    20
## 2032    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2033    Suc. Belenes     1       3    NA    NA    2    NA
## 2034    Suc. Belenes     3       6     1     2    8    12
## 2035    Suc. Belenes     6       3     2    NA    8     1
## 2036    Suc. Belenes     1       3     1     1    2     1
## 2037    Suc. Belenes     0       2    NA    NA   NA    NA
## 2038    Suc. Belenes     8       5     3     3    5     2
## 2039    Suc. Belenes     8       8     5     6   12     4
## 2040    Suc. Belenes     0       1     1     0    0    NA
## 2041    Suc. Belenes    NA      NA    NA     1    1    NA
## 2042    Suc. Belenes     2      NA    NA    NA    2    NA
## 2043    Suc. Belenes    NA      NA     1     1    1    NA
## 2044    Suc. Belenes     8       6     8     6   14     6
## 2045    Suc. Belenes     3       1    NA    NA   NA    NA
## 2046    Suc. Belenes     1       0     1     1    2     2
## 2047    Suc. Belenes     2       4     4     4   11     3
## 2048    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2049    Suc. Belenes    NA       4    NA    NA   NA    NA
## 2050    Suc. Belenes     1       2     1    NA    1     1
## 2051    Suc. Belenes    NA       2    NA     2    2     4
## 2052    Suc. Belenes     8       6    17    NA   15    11
## 2053    Suc. Belenes     2       3     3     2    5     2
## 2054    Suc. Belenes    14      14    14    20   23    17
## 2055    Suc. Belenes     3       8     6    14   11     6
## 2056    Suc. Belenes     6      17    13    17   30    32
## 2057    Suc. Belenes     7       4     8     7    6     9
## 2058    Suc. Belenes    NA      NA    NA     2    2     3
## 2059    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2060    Suc. Belenes     4       6    11    NA    8     4
## 2061    Suc. Belenes     8       8     3     8    6     3
## 2062    Suc. Belenes    NA       6    NA     4    4     4
## 2063    Suc. Belenes    NA       2    NA    NA   NA     1
## 2064    Suc. Belenes    11      17    23    NA   38    NA
## 2065    Suc. Belenes    40      61    63    NA   66    18
## 2066    Suc. Belenes    NA      NA    NA    NA   NA    51
## 2067    Suc. Belenes    10       3     6     6    6    13
## 2068    Suc. Belenes    27      20    30    15   27    27
## 2069    Suc. Belenes     2      18    18    NA    3     6
## 2070    Suc. Belenes    42      59    34    42   28    62
## 2071    Suc. Belenes    14      17    14     8   17    20
## 2072    Suc. Belenes    63     194    85    42   92   120
## 2073    Suc. Belenes    32      56    63    42   56    88
## 2074    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2075    Suc. Belenes    46      95    51    25   78    32
## 2076    Suc. Belenes    53      91    59   114   95    61
## 2077    Suc. Belenes    14      24    12     8   17    21
## 2078    Suc. Belenes     3       5    14     2    8    15
## 2079    Suc. Belenes    NA       6    12     2    6    18
## 2080    Suc. Belenes     4       4    11     4    7    17
## 2081    Suc. Belenes    NA       3     2     3    3     3
## 2082    Suc. Belenes     4       3     2     3    8     2
## 2083    Suc. Belenes     8       6     5     6    7     6
## 2084    Suc. Belenes     8       8     8    10   11    11
## 2085    Suc. Belenes     6       2     2    NA    4    NA
## 2086    Suc. Belenes     1       1     0     1    2     2
## 2087    Suc. Belenes     5       1     1     2    0    NA
## 2088    Suc. Belenes     7       6    NA     2    5     2
## 2089    Suc. Belenes    14      19    10    13   19    32
## 2090    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2091    Suc. Belenes     2      NA     4     2    2     2
## 2092    Suc. Belenes     2       3     0     1    2     3
## 2093    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2094    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2095    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2096    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2097    Suc. Belenes    NA      NA    NA     0    0    NA
## 2098    Suc. Belenes     2       2    NA     3    1     3
## 2099    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2100    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2101    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2102    Suc. Belenes    NA      NA    NA    NA    1     3
## 2103    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2104    Suc. Belenes    NA       6     3     6    1    NA
## 2105    Suc. Belenes     4       4    NA    NA   14    11
## 2106    Suc. Belenes     0       0    NA    NA   NA    NA
## 2107    Suc. Belenes     0       0     1     1    1     1
## 2108    Suc. Belenes     1       1     6     1    2    NA
## 2109    Suc. Belenes     3       2     4     4    3     6
## 2110    Suc. Belenes    NA      NA     0     0   NA    NA
## 2111    Suc. Belenes    NA       1     0    NA   NA     0
## 2112    Suc. Belenes    NA      NA    NA    NA    1     2
## 2113    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2114    Suc. Belenes     3      NA     6     3    1     6
## 2115    Suc. Belenes    NA       4    NA     4   18    NA
## 2116    Suc. Belenes     0       0    NA    NA   NA    NA
## 2117    Suc. Belenes     0       0     0     1   NA     1
## 2118    Suc. Belenes     1       1     2     5   NA     6
## 2119    Suc. Belenes     4       4     6     4    5     3
## 2120    Suc. Belenes    NA      NA     0     0   NA    NA
## 2121    Suc. Belenes    NA       1     0    NA   NA     0
## 2122    Suc. Belenes    NA      NA    NA    NA    1     2
## 2123    Suc. Belenes    NA       3    NA    NA   NA    NA
## 2124    Suc. Belenes    NA       4    NA    NA   NA    NA
## 2125    Suc. Belenes     0       0    NA    NA   NA    NA
## 2126    Suc. Belenes     0      NA     0     1   NA     1
## 2127    Suc. Belenes     1       1    NA     1   NA    NA
## 2128    Suc. Belenes     1       3     1     2    1     2
## 2129    Suc. Belenes    NA      NA     0     0   NA    NA
## 2130    Suc. Belenes     3       3     4     4    3     5
## 2131    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2132    Suc. Belenes    NA      11     8    NA    1    NA
## 2133    Suc. Belenes     7       4    NA    NA   21     4
## 2134    Suc. Belenes    NA      NA    NA    NA    1    NA
## 2135    Suc. Belenes    NA      NA     4    NA    2     2
## 2136    Suc. Belenes     4       5     3     5    4     3
## 2137    Suc. Belenes    NA       1     0    NA   NA     0
## 2138    Suc. Belenes    NA      NA    NA    NA    1     2
## 2139    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2140    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2141    Suc. Belenes    NA      11     6    NA    1     3
## 2142    Suc. Belenes     7      11    NA     4   28    14
## 2143    Suc. Belenes     0       0    NA    NA    3    NA
## 2144    Suc. Belenes     1      NA     1     1   NA     4
## 2145    Suc. Belenes     1       1    NA     3    6     2
## 2146    Suc. Belenes     4       8     6     5    8     8
## 2147    Suc. Belenes    NA      NA     0     0   NA    NA
## 2148    Suc. Belenes    NA       1     0    NA   NA     0
## 2149    Suc. Belenes    NA       1     1    NA   NA    NA
## 2150    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2151    Suc. Belenes    30      50    25    37   36    43
## 2152    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2153    Suc. Belenes    NA       1     1     3    7     7
## 2154    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2155    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2156    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2157    Suc. Belenes    NA      NA    NA     2    2     2
## 2158    Suc. Belenes    NA      NA    NA     3    3     3
## 2159    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2160    Suc. Belenes    NA      NA    NA     3   NA     3
## 2161    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2162    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2163    Suc. Belenes     1      NA     1     1   NA     1
## 2164    Suc. Belenes    NA       1    NA     1   NA     1
## 2165    Suc. Belenes    NA       1     1     1   NA     1
## 2166    Suc. Belenes    NA      NA    NA     3   NA    NA
## 2167    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2168    Suc. Belenes     2      NA    NA     4    2     4
## 2169    Suc. Belenes     3      NA    NA    NA   NA    NA
## 2170    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2171    Suc. Belenes   142      25    NA     6   66    32
## 2172    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2173    Suc. Belenes   124      85    NA    26   95    26
## 2174    Suc. Belenes    NA      NA    NA    NA   NA    60
## 2175    Suc. Belenes   206     117    25    63   86    63
## 2176    Suc. Belenes    11       8     2    23   15    29
## 2177    Suc. Belenes    15      NA    NA    NA   32    NA
## 2178    Suc. Belenes    NA      NA    NA     6   17     3
## 2179    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2180    Suc. Belenes   310     113    NA    14   46    99
## 2181    Suc. Belenes   778     419    67   335  257   278
## 2182    Suc. Belenes    NA      NA    NA    NA   NA     7
## 2183    Suc. Belenes    NA      NA    NA    NA    2    NA
## 2184    Suc. Belenes   152      38    NA    70   82   101
## 2185    Suc. Belenes   934     579   254   311  353   486
## 2186    Suc. Belenes     8       6     2    17    5    43
## 2187    Suc. Belenes     2       2     2    NA    2     2
## 2188    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2189    Suc. Belenes    NA       1    NA    NA    3     4
## 2190    Suc. Belenes    NA      NA    NA     1   NA     1
## 2191    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2192    Suc. Belenes    NA      NA    NA     3   NA    NA
## 2193    Suc. Belenes     0       0    NA     0   NA     0
## 2194    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2195    Suc. Belenes     1      NA    NA     5   NA     3
## 2196    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2197    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2198    Suc. Belenes    NA       0    NA     0   NA     0
## 2199    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2200    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2201    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2202    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2203    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2204    Suc. Belenes    NA       6     1     3   20     6
## 2205    Suc. Belenes    NA      NA    NA    NA    1    NA
## 2206    Suc. Belenes    NA      NA    NA    NA    1     3
## 2207    Suc. Belenes    10       7     2     3   16     3
## 2208    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2209    Suc. Belenes    NA      NA    NA     0    1     1
## 2210    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2211    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2212    Suc. Belenes    NA      NA     1    NA    3     8
## 2213    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2214    Suc. Belenes    NA      NA    NA    NA    0     1
## 2215    Suc. Belenes   223      64    32    73   29   126
## 2216    Suc. Belenes    NA      NA    NA     0    1     1
## 2217    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2218    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2219    Suc. Belenes    NA      NA     1    NA   NA    NA
## 2220    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2221    Suc. Belenes    NA      NA    NA     0    1     2
## 2222    Suc. Belenes   244       1    21    39   45   128
## 2223    Suc. Belenes    NA      NA    NA    NA   11     3
## 2224    Suc. Belenes     4      NA     4     4   NA    NA
## 2225    Suc. Belenes    NA      NA    NA     0    1     1
## 2226    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2227    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2228    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2229    Suc. Belenes     3      NA     4    NA    8     3
## 2230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2231    Suc. Belenes    NA      NA    NA     0    1     3
## 2232    Suc. Belenes     1       5     4    22   20     7
## 2233    Suc. Belenes    NA      NA    NA     0    1     1
## 2234    Suc. Belenes    NA      NA    NA    NA    3    NA
## 2235    Suc. Belenes    NA      NA     4    NA   NA    NA
## 2236    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2237    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2238    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2239    Suc. Belenes     2       4     4    NA    2     4
## 2240    Suc. Belenes     3      19     3    NA    3    10
## 2241    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2242    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2243    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2244    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2245    Suc. Belenes     2       3     1     4    3     3
## 2246    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2247    Suc. Belenes    NA       3     1    NA    1     1
## 2248    Suc. Belenes    NA       3     1    NA    1     2
## 2249    Suc. Belenes     3      NA    NA    NA   NA    NA
## 2250    Suc. Belenes     8       2     2     6    2     4
## 2251    Suc. Belenes     4       2     4     8    6     4
## 2252    Suc. Belenes    NA       1    NA     1    1     1
## 2253    Suc. Belenes    13       4     6     4    8     6
## 2254    Suc. Belenes     3       3    NA     3   NA    NA
## 2255    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2256    Suc. Belenes    22       3     6    48    3    NA
## 2257    Suc. Belenes     5       5     5    12    2     5
## 2258    Suc. Belenes    NA      NA     7    35   28    21
## 2259    Suc. Belenes    74      81    74    85   21    42
## 2260    Suc. Belenes     3       3     2     2   NA    NA
## 2261    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2262    Suc. Belenes     6       4     6    11   13    11
## 2263    Suc. Belenes   116      93   118   123  110   106
## 2264    Suc. Belenes     2       3     2     4    4     3
## 2265    Suc. Belenes     2       2    NA     4   NA     2
## 2266    Suc. Belenes     2       2     2     1   NA     1
## 2267    Suc. Belenes    NA       1     1    NA    1     1
## 2268    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2269    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2270    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2271    Suc. Belenes     0       4     0    NA    0     2
## 2272    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2273    Suc. Belenes     5       5     5     4    7     3
## 2274    Suc. Belenes    NA      NA    NA     0    1    NA
## 2275    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2276    Suc. Belenes     0       0     0    NA    0     0
## 2277    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2278    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2279    Suc. Belenes     0       0     0     0    0     0
## 2280    Suc. Belenes    NA       2     2    NA   NA     2
## 2281    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2282    Suc. Belenes    NA       0    NA     0   NA    NA
## 2283    Suc. Belenes    NA       1    NA     3   NA    NA
## 2284    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2285    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2286    Suc. Belenes    NA       0    NA     0   NA    NA
## 2287    Suc. Belenes     3       6    NA    11    3     8
## 2288    Suc. Belenes     0      NA     0     0   NA    NA
## 2289    Suc. Belenes     2       2     2     6    6     8
## 2290    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2291    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2292    Suc. Belenes    NA       3     3     3   NA    NA
## 2293    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2294    Suc. Belenes    NA       2    NA    NA   NA    NA
## 2295    Suc. Belenes    NA       0    NA     0   NA    NA
## 2296    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2297    Suc. Belenes     6       1     3     8   NA    NA
## 2298    Suc. Belenes     0       0     0     0   NA    NA
## 2299    Suc. Belenes     4       4     2     6    8     8
## 2300    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2301    Suc. Belenes    NA       0    NA     0   NA    NA
## 2302    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2303    Suc. Belenes     1       3     3    NA    1     1
## 2304    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2306    Suc. Belenes    17       8    NA     2    2    23
## 2307    Suc. Belenes    22       3    NA     3    3     3
## 2308    Suc. Belenes     3       3    NA    NA   NA    NA
## 2309    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2310    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2311    Suc. Belenes    NA      NA    NA    NA    1    NA
## 2312    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2313    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2314    Suc. Belenes     3       4     1     2    3     3
## 2315    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2316    Suc. Belenes    NA       1    NA     1   NA    NA
## 2317    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2318    Suc. Belenes    NA       1     1     1   NA     1
## 2319    Suc. Belenes    NA      NA    NA    NA   NA    11
## 2320    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2321    Suc. Belenes     2      NA     4    NA    2     2
## 2322    Suc. Belenes    13      38    19    25   19    36
## 2323    Suc. Belenes     3      NA     3     2    3     3
## 2324    Suc. Belenes    48      39    76     3   51    76
## 2325    Suc. Belenes     8       4    32    NA   11    23
## 2326    Suc. Belenes     2       1     2     2    3     2
## 2327    Suc. Belenes     2       3    NA     5    2     5
## 2328    Suc. Belenes     6       4     6     2    8     6
## 2329    Suc. Belenes     2       4     4    NA    6     6
## 2330    Suc. Belenes    NA      NA    NA     3   NA    NA
## 2331    Suc. Belenes     2      NA     2     1   NA     2
## 2332    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2333    Suc. Belenes    58      69    53    71   50    NA
## 2334    Suc. Belenes    NA      NA    NA    NA   NA    38
## 2335    Suc. Belenes     3       3     6     3    3     3
## 2336    Suc. Belenes    NA      NA    NA     5   NA    NA
## 2337    Suc. Belenes     9      23     5    23    5    18
## 2338    Suc. Belenes    NA      NA    34    34    6     6
## 2339    Suc. Belenes    NA     201   187    42  180   137
## 2340    Suc. Belenes    67      95   148   130   46   123
## 2341    Suc. Belenes    36      25    27    NA   49    36
## 2342    Suc. Belenes    53      59    34   125   34    70
## 2343    Suc. Belenes     6       6     5     7   10    16
## 2344    Suc. Belenes     3      24    NA     4    5    26
## 2345    Suc. Belenes     2      NA    NA    NA   NA    NA
## 2346    Suc. Belenes    NA       1     1    NA   NA     2
## 2347    Suc. Belenes    NA      NA     1     1   NA    NA
## 2348    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2349    Suc. Belenes     2       0     0     0   NA     0
## 2350    Suc. Belenes     2       1     1    NA    2    NA
## 2351    Suc. Belenes     6       5    18     4   11    NA
## 2352    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2353    Suc. Belenes     4       4     4     4    6     6
## 2354    Suc. Belenes    NA       2    NA     1    1     1
## 2355    Suc. Belenes    NA       0     0    NA    0     0
## 2356    Suc. Belenes     3      NA    NA    NA    1     3
## 2357    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2358    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2359    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2360    Suc. Belenes     6       8     6    17   NA     8
## 2361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2362    Suc. Belenes     0      NA     2     0    0    NA
## 2363    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2364    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2365    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2366    Suc. Belenes    NA      NA     6    NA    8     6
## 2367    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2368    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2369    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2370    Suc. Belenes    NA      NA     3     6   NA     3
## 2371    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2372    Suc. Belenes     0      NA     2    NA   NA     2
## 2373    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2374    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2375    Suc. Belenes    NA       8    11     8    6     6
## 2376    Suc. Belenes     6       2    13     6    8    23
## 2377    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2378    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2379    Suc. Belenes    NA      NA    NA     5   NA    NA
## 2380    Suc. Belenes     3      14    14    14   31    17
## 2381    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2382    Suc. Belenes     0       0     2    NA   NA     2
## 2383    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2384    Suc. Belenes     3       1     1     1    1     3
## 2385    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2386    Suc. Belenes     2      16    NA    NA    9     9
## 2387    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2388    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2389    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2390    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2391    Suc. Belenes     2       4     6    19    6    11
## 2392    Suc. Belenes     3      16    35    25   32    25
## 2393    Suc. Belenes    NA      NA     3    NA    3     3
## 2394    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2395    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2396    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2397    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2398    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2399    Suc. Belenes     1      NA    NA     1    1     3
## 2400    Suc. Belenes    11       1     8     6   16    12
## 2401    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2402    Suc. Belenes     1       1     3     2    2     3
## 2403    Suc. Belenes     2      NA    NA    NA   NA    NA
## 2404    Suc. Belenes    NA       1     2     1    1     1
## 2405    Suc. Belenes    23      14     8    17   11    23
## 2406    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2407    Suc. Belenes     0       0     0     0    0    NA
## 2408    Suc. Belenes    NA       1     1     2    1    NA
## 2409    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2410    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2411    Suc. Belenes    NA      NA    NA     4    4    NA
## 2412    Suc. Belenes     1      NA    NA    NA    1    NA
## 2413    Suc. Belenes    21       2    23    13   32    11
## 2414    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2415    Suc. Belenes    32      25    53     7   92    14
## 2416    Suc. Belenes    17      21    13    13   32    17
## 2417    Suc. Belenes     4       2    NA    NA    3     1
## 2418    Suc. Belenes     2       2    NA    NA   NA    NA
## 2419    Suc. Belenes     6       2     2     8    8    11
## 2420    Suc. Belenes    11      23     3    14   NA     6
## 2421    Suc. Belenes    13      15    13     4    8    13
## 2422    Suc. Belenes     2      NA    NA    NA    4    NA
## 2423    Suc. Belenes     2      NA    11     2   NA    NA
## 2424    Suc. Belenes    NA     161   172    11  198    45
## 2425    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2426    Suc. Belenes    54      48    54   105   73    29
## 2427    Suc. Belenes    12       5     2     5    2     2
## 2428    Suc. Belenes    NA      NA    NA     6   NA    NA
## 2429    Suc. Belenes   190     229   204    NA  324    88
## 2430    Suc. Belenes   151     229   215   148  204    99
## 2431    Suc. Belenes    NA      NA    NA    NA    2    NA
## 2432    Suc. Belenes    40      51    38    27   91    13
## 2433    Suc. Belenes    34     116     2    87  144    27
## 2434    Suc. Belenes    21       9    10    11   22     8
## 2435    Suc. Belenes     6      12    NA     9   12     9
## 2436    Suc. Belenes     6      12     6    NA   24     6
## 2437    Suc. Belenes     2       5    NA    NA    3     5
## 2438    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2439    Suc. Belenes    NA       1     1     5    1     3
## 2440    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2441    Suc. Belenes     3       1    NA     3    4     3
## 2442    Suc. Belenes     0       0     0     1    1     0
## 2443    Suc. Belenes    NA       1    NA    NA    0    NA
## 2444    Suc. Belenes     4       4     5     3    8     2
## 2445    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2446    Suc. Belenes     2       2     2     4   NA     2
## 2447    Suc. Belenes     1       1     0     1    1     0
## 2448    Suc. Belenes     2       1     3     3    2     4
## 2449    Suc. Belenes     2       1     2     3    2     1
## 2450    Suc. Belenes     2       1     5     3    6     5
## 2451    Suc. Belenes     2       1     3     3    2     4
## 2452    Suc. Belenes     0       2     2     2    3     2
## 2453    Suc. Belenes     1       3     3     3    1     1
## 2454    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2455    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2456    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2457    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2458    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2459    Suc. Belenes    NA      17    NA     3    1     4
## 2460    Suc. Belenes    NA      NA     4     3    5     9
## 2461    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2462    Suc. Belenes     2       2     1     5    2     1
## 2463    Suc. Belenes     3       2     3     3    3     4
## 2464    Suc. Belenes    NA       1    NA     0    0    NA
## 2465    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2466    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2467    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2468    Suc. Belenes    NA      11    11     3    1     4
## 2469    Suc. Belenes    NA      NA     4     3    5     5
## 2470    Suc. Belenes     0      NA    NA     0   NA    NA
## 2471    Suc. Belenes     2       2     3     5    4     1
## 2472    Suc. Belenes     4       2    NA    NA    4     4
## 2473    Suc. Belenes    NA       1    NA     0    0    NA
## 2474    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2475    Suc. Belenes    NA      11    11    NA    1     1
## 2476    Suc. Belenes    NA      NA     4     3    9     9
## 2477    Suc. Belenes    NA       0    NA    NA   NA    NA
## 2478    Suc. Belenes     2      NA     1     5    2     3
## 2479    Suc. Belenes     1       2    NA     2    3     3
## 2480    Suc. Belenes     3       2     3     1    1    NA
## 2481    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2482    Suc. Belenes    NA      17    NA     3    3     6
## 2483    Suc. Belenes     4      NA    NA    NA    4    NA
## 2484    Suc. Belenes    NA       4     2    NA   NA    NA
## 2485    Suc. Belenes     3      NA    NA     1   NA     3
## 2486    Suc. Belenes    NA       1    NA     0    0    NA
## 2487    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2488    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2489    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2490    Suc. Belenes     3      17    25    20    1     1
## 2491    Suc. Belenes    NA      NA     4     3    5     9
## 2492    Suc. Belenes    NA      NA    NA    NA    0     0
## 2493    Suc. Belenes    NA      NA    NA     4   NA    NA
## 2494    Suc. Belenes     2      NA     1     5    2     3
## 2495    Suc. Belenes     2      NA    NA     2    3     4
## 2496    Suc. Belenes    NA       1    NA     0    0    NA
## 2497    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2498    Suc. Belenes    13      12    12     7   11    12
## 2499    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2500    Suc. Belenes    NA      NA     3     3    3    NA
## 2501    Suc. Belenes     5       5     5     8    5     5
## 2502    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2503    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2504    Suc. Belenes    17      21    40    15   59    27
## 2505    Suc. Belenes     3      19    38    44   76    44
## 2506    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2507    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2508    Suc. Belenes    11      NA     4    14   21    NA
## 2509    Suc. Belenes    20      23    23    15   20    20
## 2510    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2511    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2512    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2513    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2514    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2515    Suc. Belenes     2       2     2     2    2     1
## 2516    Suc. Belenes    NA      NA     2     2   NA    NA
## 2517    Suc. Belenes     5       3     3     3    5     3
## 2518    Suc. Belenes     4       1     0     8    5     3
## 2519    Suc. Belenes     2       2    NA     3   NA     2
## 2520    Suc. Belenes     1       1     1     1   NA     1
## 2521    Suc. Belenes    NA       2     2     4    2    NA
## 2522    Suc. Belenes    NA       2     2     2    1     1
## 2523    Suc. Belenes     8       8     8     8    8     8
## 2524    Suc. Belenes     8       8     3     8    3    10
## 2525    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2526    Suc. Belenes    NA      NA    NA     1    1    NA
## 2527    Suc. Belenes     2      NA    NA    NA   NA     1
## 2528    Suc. Belenes    NA       2    NA     2    2     2
## 2529    Suc. Belenes     2       2     2     3    2     2
## 2530    Suc. Belenes     2       2     4     2    6     2
## 2531    Suc. Belenes    11       6    14    NA    8    14
## 2532    Suc. Belenes    11       4    19    11   21    21
## 2533    Suc. Belenes     3      NA    NA    NA   NA    NA
## 2534    Suc. Belenes     3      NA     1     3    2     2
## 2535    Suc. Belenes    NA      NA    NA     2   NA    NA
## 2536    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2537    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2538    Suc. Belenes    NA      NA     3    NA   NA    NA
## 2539    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2540    Suc. Belenes    NA      NA     2     2    2     4
## 2541    Suc. Belenes    80      87    85    80  156    95
## 2542    Suc. Belenes     5       8    26     8   11    29
## 2543    Suc. Belenes     3       3    22     6   16    10
## 2544    Suc. Belenes    22      22    22    22   32    41
## 2545    Suc. Belenes    33      20    24    14   41    60
## 2546    Suc. Belenes     3      NA     2     3    3    NA
## 2547    Suc. Belenes    31      14    17    14   25    25
## 2548    Suc. Belenes     8       6    20     3   23    20
## 2549    Suc. Belenes   183     240   137   275  303   229
## 2550    Suc. Belenes    21      32    63    39   42    70
## 2551    Suc. Belenes    49      44    51    55   53    66
## 2552    Suc. Belenes    78      51   131    78  125   112
## 2553    Suc. Belenes   129      74    89   120  201   239
## 2554    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2555    Suc. Belenes     3       6     9    NA    3     3
## 2556    Suc. Belenes    14      15    17    12   16    14
## 2557    Suc. Belenes    20      11    18    11   24    21
## 2558    Suc. Belenes     8      10    10     8   18    18
## 2559    Suc. Belenes     6       6     4     5    7     6
## 2560    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2561    Suc. Belenes     1       2     1     3    1     1
## 2562    Suc. Belenes    NA       1     2     2   NA    NA
## 2563    Suc. Belenes     4       4     3     4    7     7
## 2564    Suc. Belenes     1       0     0     0    0     0
## 2565    Suc. Belenes     1      NA    NA     1    1     1
## 2566    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2567    Suc. Belenes     8       3     2     3    6     9
## 2568    Suc. Belenes    NA      NA     2     2   NA     2
## 2569    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2570    Suc. Belenes     2       2     2    NA    1    NA
## 2571    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2572    Suc. Belenes     2       6    NA     6    2     4
## 2573    Suc. Belenes     1       1     1     1    1     3
## 2574    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2575    Suc. Belenes     0       0     0     0    0     0
## 2576    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2577    Suc. Belenes     3      NA     5     8   10    10
## 2578    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2579    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2580    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2581    Suc. Belenes     2      NA    NA    NA    4    NA
## 2582    Suc. Belenes     2       2     4     6    4     2
## 2583    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2584    Suc. Belenes     3       6     7     4   NA     3
## 2585    Suc. Belenes    11      NA    11     4    4     7
## 2586    Suc. Belenes     5       2     3     2    2     2
## 2587    Suc. Belenes     3       8     4     9    6     6
## 2588    Suc. Belenes     4       2     5     5   10    11
## 2589    Suc. Belenes    11       3    18    13   18    16
## 2590    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2591    Suc. Belenes    NA       0     0     0    1    NA
## 2592    Suc. Belenes     2      NA    NA    NA   NA    NA
## 2593    Suc. Belenes     2       2     4     6    4     5
## 2594    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2595    Suc. Belenes    NA       6    15     4    3     3
## 2596    Suc. Belenes     4       4    14     7   14     7
## 2597    Suc. Belenes     1       1     1     1    2     1
## 2598    Suc. Belenes     2       1     2     4    7     6
## 2599    Suc. Belenes     2       2     9     5   12    13
## 2600    Suc. Belenes     4      NA    13    10   13     8
## 2601    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2602    Suc. Belenes    NA       0     0     0    1    NA
## 2603    Suc. Belenes     2      NA    NA    NA   NA    NA
## 2604    Suc. Belenes     2       2     4     6    4     2
## 2605    Suc. Belenes     3       3     7     6   NA    NA
## 2606    Suc. Belenes     4      NA    11     7   NA    NA
## 2607    Suc. Belenes     3       2     2     2    2     1
## 2608    Suc. Belenes     2       1     2     3    7     5
## 2609    Suc. Belenes     4       2     7     5   10     5
## 2610    Suc. Belenes     8      NA     8     8    8     6
## 2611    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2612    Suc. Belenes    NA      NA     8     5   NA     5
## 2613    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2614    Suc. Belenes    NA       3    NA     6    6    NA
## 2615    Suc. Belenes    NA      NA    NA    NA    4     4
## 2616    Suc. Belenes     2       1    NA     2   NA    NA
## 2617    Suc. Belenes    NA      NA     2    NA    2    NA
## 2618    Suc. Belenes    NA      NA    NA     4   NA     5
## 2619    Suc. Belenes    NA       0     0     0    1    NA
## 2620    Suc. Belenes     2      NA    NA     2    2     2
## 2621    Suc. Belenes     2       2     4     6    4     2
## 2622    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2623    Suc. Belenes    NA       6     7     6    6     3
## 2624    Suc. Belenes     4       4    14     7    7    11
## 2625    Suc. Belenes     3       2     4     2    3     3
## 2626    Suc. Belenes     2       3     3     6    5     8
## 2627    Suc. Belenes     4       2     9     7   12    15
## 2628    Suc. Belenes     9      NA    15    10   20    15
## 2629    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2630    Suc. Belenes    NA       0     0     0    1    NA
## 2631    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2632    Suc. Belenes     3      NA    NA    NA    3     6
## 2633    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2634    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2635    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2636    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2637    Suc. Belenes     2       4     8     6    2     8
## 2638    Suc. Belenes     3       6    13    10   NA    13
## 2639    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2640    Suc. Belenes     3       8     5     3    3     5
## 2641    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2642    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2643    Suc. Belenes    NA       1    NA    NA    1    NA
## 2644    Suc. Belenes     0       0     1     0    0     1
## 2645    Suc. Belenes     1       1     1     3    3     2
## 2646    Suc. Belenes     3       4     1     0    3     2
## 2647    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2648    Suc. Belenes     1       2     3    NA   NA    NA
## 2649    Suc. Belenes     2      NA     2     4    2     6
## 2650    Suc. Belenes     2       2     2     1   NA    NA
## 2651    Suc. Belenes     3       8    11    20   14    17
## 2652    Suc. Belenes     3      NA    NA     4    3     3
## 2653    Suc. Belenes    NA      NA     1    NA    1     1
## 2654    Suc. Belenes     4       4     2    NA   NA    NA
## 2655    Suc. Belenes     1      NA    NA     1   NA     1
## 2656    Suc. Belenes     2      NA     6    NA   NA     2
## 2657    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2658    Suc. Belenes    NA      NA     1    NA   NA    NA
## 2659    Suc. Belenes    17      23    30    30   21    21
## 2660    Suc. Belenes    20      31    31    25   23    28
## 2661    Suc. Belenes    NA       3     3     3    3    11
## 2662    Suc. Belenes    13      17    17    17   19    21
## 2663    Suc. Belenes     4       3     2     4    5     5
## 2664    Suc. Belenes    NA       3     2     2   NA     3
## 2665    Suc. Belenes     4       6     8     2    6     6
## 2666    Suc. Belenes    11       8     6     6    8     6
## 2667    Suc. Belenes     2       4     4     2    2     4
## 2668    Suc. Belenes    NA       1     1     1    2     1
## 2669    Suc. Belenes    82      78    68    74   95    59
## 2670    Suc. Belenes    34      26    24    29   26    18
## 2671    Suc. Belenes    16      16    25    25   19    25
## 2672    Suc. Belenes    38      35    44    44   32    29
## 2673    Suc. Belenes    26      20    20    27   24    15
## 2674    Suc. Belenes    45      54    54    37   68    23
## 2675    Suc. Belenes    25      25    25    17   17    17
## 2676    Suc. Belenes    NA      NA    NA    NA   11    NA
## 2677    Suc. Belenes   261     208   151   208  271   141
## 2678    Suc. Belenes    17      17     8    11    6    11
## 2679    Suc. Belenes    NA       2    NA    NA   30    NA
## 2680    Suc. Belenes   129      91    76    89  101    70
## 2681    Suc. Belenes    12       6    12     6   12     9
## 2682    Suc. Belenes    12      12     9    14   11    14
## 2683    Suc. Belenes    11       9     8     9   11    11
## 2684    Suc. Belenes     8      10     8     8    8    10
## 2685    Suc. Belenes     7       8     6     5    8     6
## 2686    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2687    Suc. Belenes     1       1     1     1    1     3
## 2688    Suc. Belenes     1       4     2     3    2     1
## 2689    Suc. Belenes    NA       3     4     6    8     7
## 2690    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2691    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2692    Suc. Belenes     3      NA     4     7    4     6
## 2693    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2694    Suc. Belenes     2      NA     2     4    2    NA
## 2695    Suc. Belenes     0       1    NA     0    0     1
## 2696    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2697    Suc. Belenes     0      NA    NA    NA   NA    NA
## 2698    Suc. Belenes     3       3     4     2    2     3
## 2699    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2700    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2701    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2702    Suc. Belenes     4       2     4     2    2    NA
## 2703    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2704    Suc. Belenes     1      NA     4     4    3     1
## 2705    Suc. Belenes     4       6     6     1    7     8
## 2706    Suc. Belenes     0       0     1     0    0     1
## 2707    Suc. Belenes     0      NA     1    NA   NA    NA
## 2708    Suc. Belenes     2       3     2     3    2     2
## 2709    Suc. Belenes     3       4     3     4    4     3
## 2710    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2711    Suc. Belenes    NA       0     0    NA    0     1
## 2712    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2713    Suc. Belenes     1      NA     1     4    3     1
## 2714    Suc. Belenes     1       3     3     1   NA     1
## 2715    Suc. Belenes     0       0     0     0    0     0
## 2716    Suc. Belenes     2       3     2     3    2     2
## 2717    Suc. Belenes     1       3     1     1    3     3
## 2718    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2719    Suc. Belenes    NA       0     0    NA    0     1
## 2720    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2721    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2722    Suc. Belenes     1      NA     1     1   NA     1
## 2723    Suc. Belenes     4       3     3     1   NA     1
## 2724    Suc. Belenes     0       0     1     0    0     1
## 2725    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2726    Suc. Belenes     2       3     2     3    2     2
## 2727    Suc. Belenes     3       3     1     1    1     3
## 2728    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2729    Suc. Belenes     1       2     3     1    2     2
## 2730    Suc. Belenes    NA      NA     3     3   NA     3
## 2731    Suc. Belenes     4       4     4    NA    4    NA
## 2732    Suc. Belenes    NA      NA    NA    NA    0    NA
## 2733    Suc. Belenes    NA      NA    NA    NA   NA     2
## 2734    Suc. Belenes    NA       3    NA     3    3     1
## 2735    Suc. Belenes    NA       0     0    NA    0     1
## 2736    Suc. Belenes     6       2     6     4    2     4
## 2737    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2738    Suc. Belenes     1      NA     4     6    3     4
## 2739    Suc. Belenes     8       8    10     3    7     8
## 2740    Suc. Belenes     0       0     1     0    0     1
## 2741    Suc. Belenes     0      NA    NA    NA    3     0
## 2742    Suc. Belenes     2       3     2     3    2     2
## 2743    Suc. Belenes     4       4     4     6    4     4
## 2744    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2745    Suc. Belenes    NA       0     0    NA    0     1
## 2746    Suc. Belenes     6      10     4    10   10    10
## 2747    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2748    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2749    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2750    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2751    Suc. Belenes     4       6     8     2    6     6
## 2752    Suc. Belenes     3       6    10    10    3     3
## 2753    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2754    Suc. Belenes     4       7     4     4   NA    NA
## 2755    Suc. Belenes     3       5     5    NA    3     3
## 2756    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2757    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2758    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2759    Suc. Belenes     1       1     1     1    1     1
## 2760    Suc. Belenes     2       4     3     3    4     2
## 2761    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2762    Suc. Belenes    NA      NA     1     1    1     1
## 2763    Suc. Belenes    NA       3     1     1    1     1
## 2764    Suc. Belenes     6       3     3    NA    3     3
## 2765    Suc. Belenes    NA      NA    NA     0    0    NA
## 2766    Suc. Belenes     1      NA    NA     1   NA    NA
## 2767    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2768    Suc. Belenes    NA       2     2     2   NA     2
## 2769    Suc. Belenes    NA       2    NA     2    2     4
## 2770    Suc. Belenes    11       6    13     8   13    15
## 2771    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2772    Suc. Belenes     3       3     3     3    3     3
## 2773    Suc. Belenes     8       5     5     6    6     8
## 2774    Suc. Belenes     3       3     3     5    5     5
## 2775    Suc. Belenes    11       8    11    14    8     8
## 2776    Suc. Belenes    28      35    46    49   39    35
## 2777    Suc. Belenes    21      18    18    11   14    11
## 2778    Suc. Belenes    23      15    23    23   21    21
## 2779    Suc. Belenes    23      21    32    42   42    76
## 2780    Suc. Belenes     1       2     2     3    3     3
## 2781    Suc. Belenes     2       2     3     3    2     2
## 2782    Suc. Belenes     2       1     2     2    2     1
## 2783    Suc. Belenes    NA      NA     1     1    1     1
## 2784    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2785    Suc. Belenes     1       1     1    NA    1    NA
## 2786    Suc. Belenes    NA      NA     0     0    0     0
## 2787    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2788    Suc. Belenes     1       1     1     3    3     4
## 2789    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2790    Suc. Belenes    NA      NA     0    NA   NA     0
## 2791    Suc. Belenes    NA      NA     0     0    0     0
## 2792    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2793    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2794    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2795    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2796    Suc. Belenes     3       3    NA     3   NA     6
## 2797    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2798    Suc. Belenes     1       0     0     0    3     1
## 2799    Suc. Belenes     1       1     1     2   NA     1
## 2800    Suc. Belenes     4       2     3     3    4     4
## 2801    Suc. Belenes    NA       0     0    NA    0    NA
## 2802    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2803    Suc. Belenes     6       6    NA     3    3     3
## 2804    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2805    Suc. Belenes     1       0     0     1    1     1
## 2806    Suc. Belenes     1       1     3     2    2     3
## 2807    Suc. Belenes     3       1     2     2    2     2
## 2808    Suc. Belenes    NA       0     0    NA    0    NA
## 2809    Suc. Belenes    NA       3    NA    NA   NA    NA
## 2810    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2811    Suc. Belenes     0      NA     0     0    1    NA
## 2812    Suc. Belenes     1       1     1     2   NA     1
## 2813    Suc. Belenes    NA      NA     1    NA   NA    NA
## 2814    Suc. Belenes    NA      NA     1    NA    1     1
## 2815    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2816    Suc. Belenes    NA      NA     3     3   NA     3
## 2817    Suc. Belenes     0      NA    NA    NA   NA    NA
## 2818    Suc. Belenes    NA       0     0    NA    0    NA
## 2819    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2820    Suc. Belenes    NA       3    NA    NA   NA     3
## 2821    Suc. Belenes    NA      NA     0    NA   NA    NA
## 2822    Suc. Belenes     1       1    NA     1    1     1
## 2823    Suc. Belenes     3       1     1     2   NA     1
## 2824    Suc. Belenes     3       1     3     1    3     3
## 2825    Suc. Belenes    NA       0     0    NA    0    NA
## 2826    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2827    Suc. Belenes     2       1     1     3    3     2
## 2828    Suc. Belenes    NA      NA    NA    NA   NA     0
## 2829    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2830    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2831    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2832    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2833    Suc. Belenes    NA       8     2     2   55    19
## 2834    Suc. Belenes    NA       3     3     3    3    16
## 2835    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2836    Suc. Belenes    10      20    NA    10   15    18
## 2837    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2838    Suc. Belenes    NA       1     1     1    2     1
## 2839    Suc. Belenes    NA       3    NA     3    3     3
## 2840    Suc. Belenes     4       6     2     3   10     5
## 2841    Suc. Belenes    NA       0     0     1    0     3
## 2842    Suc. Belenes     2       1     1    NA    2     1
## 2843    Suc. Belenes    NA      NA    NA     2   NA    NA
## 2844    Suc. Belenes    NA       2     1     2    1     1
## 2845    Suc. Belenes     8      14    NA     6   11    28
## 2846    Suc. Belenes     0       0     1     1    1     2
## 2847    Suc. Belenes    NA      NA     1     3    2     1
## 2848    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2849    Suc. Belenes     4       2    NA     4    2     2
## 2850    Suc. Belenes     6       4     2     6    6    11
## 2851    Suc. Belenes    11      14     8     8   17     6
## 2852    Suc. Belenes     2       2    NA     2    2     2
## 2853    Suc. Belenes     8      21     4     8    6     8
## 2854    Suc. Belenes     1      NA    NA     1    1    NA
## 2855    Suc. Belenes    NA      NA     2    NA   NA    NA
## 2856    Suc. Belenes     2       2     6    NA    2     2
## 2857    Suc. Belenes     4       2     6     2    2     4
## 2858    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2859    Suc. Belenes    NA       2    NA    NA   NA    NA
## 2860    Suc. Belenes     1       3    NA    NA   NA     1
## 2861    Suc. Belenes    NA      25    42    42   70    NA
## 2862    Suc. Belenes    NA      NA    11     8   40    NA
## 2863    Suc. Belenes    NA      NA    13    16   51     3
## 2864    Suc. Belenes    98      48    41   288    3     3
## 2865    Suc. Belenes     5      18     6    36    5     2
## 2866    Suc. Belenes    NA      NA    NA     8    3    NA
## 2867    Suc. Belenes     6       3     3     8    8    NA
## 2868    Suc. Belenes    NA     144   120    NA  190    42
## 2869    Suc. Belenes   130     338   247   416   77     4
## 2870    Suc. Belenes     2       8     8    19   34    NA
## 2871    Suc. Belenes     6     167    NA    NA   97    25
## 2872    Suc. Belenes   101     251   222   839   44    15
## 2873    Suc. Belenes    NA       2     4     4    7     8
## 2874    Suc. Belenes    NA      NA     8    21   18    NA
## 2875    Suc. Belenes    NA      NA     6    14   28    NA
## 2876    Suc. Belenes     9       4     7     8    3     5
## 2877    Suc. Belenes    NA       1    NA    NA   NA    NA
## 2878    Suc. Belenes     1       1     1     1    5     1
## 2879    Suc. Belenes    NA      NA    NA     1   NA    NA
## 2880    Suc. Belenes     1       3     2    NA    3    NA
## 2881    Suc. Belenes     1      NA    NA    NA   NA    NA
## 2882    Suc. Belenes     2       0     0     0    0     0
## 2883    Suc. Belenes     2       2     1    NA    1     2
## 2884    Suc. Belenes    10      21    NA     2   18     3
## 2885    Suc. Belenes     2       2     2     2   NA     2
## 2886    Suc. Belenes     0       1     1     1    1     1
## 2887    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2888    Suc. Belenes     0       1     2     0    1     2
## 2889    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2890    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2891    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2892    Suc. Belenes    NA       2     2     2    2    NA
## 2893    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2894    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2895    Suc. Belenes     3      14     6    14    6     6
## 2896    Suc. Belenes     3       1     1     1    1     1
## 2897    Suc. Belenes    NA      NA     2    NA    2     0
## 2898    Suc. Belenes     8       3    15    35   NA     3
## 2899    Suc. Belenes     5       3     3     3    5     8
## 2900    Suc. Belenes    NA       1    NA     1    1     0
## 2901    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2902    Suc. Belenes    NA       3    NA    NA   NA    NA
## 2903    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2904    Suc. Belenes    NA       6     6     8    3     3
## 2905    Suc. Belenes     1       1     0     0    1     0
## 2906    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2907    Suc. Belenes     4       5    13    31   NA     3
## 2908    Suc. Belenes     3       3    NA     3    3     3
## 2909    Suc. Belenes    NA       1    NA     1    1     0
## 2910    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2911    Suc. Belenes     3      NA    NA     3    3     3
## 2912    Suc. Belenes     1       1     1     1    1     1
## 2913    Suc. Belenes    NA      NA    NA    NA    2    NA
## 2914    Suc. Belenes     2       3     6    35   NA     1
## 2915    Suc. Belenes     3       3    NA    NA   NA     5
## 2916    Suc. Belenes    NA      NA    NA    NA   NA     1
## 2917    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2918    Suc. Belenes     6       3     3    NA   NA    NA
## 2919    Suc. Belenes    NA      NA     2    NA   NA    NA
## 2920    Suc. Belenes     8       4     4    11   NA    NA
## 2921    Suc. Belenes    NA       1    NA     1    1     0
## 2922    Suc. Belenes     6       4    NA     2    4     4
## 2923    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2924    Suc. Belenes    NA      NA    NA    NA   NA     3
## 2925    Suc. Belenes    NA      14     8    20   20    14
## 2926    Suc. Belenes     3       1     1     1    2     1
## 2927    Suc. Belenes     0       2     3     2    2     2
## 2928    Suc. Belenes     4       9    15    45    2     7
## 2929    Suc. Belenes     8       3     3     5    8     8
## 2930    Suc. Belenes    NA       1    NA     1    1     0
## 2931    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2932    Suc. Belenes    NA       3    NA    NA    6     1
## 2933    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2934    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2935    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2936    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2937    Suc. Belenes     6      11    15    11   13    13
## 2938    Suc. Belenes     6      13    25    22   19    22
## 2939    Suc. Belenes    NA      NA    NA     0    0    NA
## 2940    Suc. Belenes     5       3     3     8    5     3
## 2941    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2942    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2943    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2944    Suc. Belenes     1       1     2     1    1     0
## 2945    Suc. Belenes    NA      NA     1     1    1     1
## 2946    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2947    Suc. Belenes     0       0     0     0    0     0
## 2948    Suc. Belenes     1      NA    NA    NA    1     1
## 2949    Suc. Belenes     5       5     1     5    3     6
## 2950    Suc. Belenes     0      NA    NA    NA    1     1
## 2951    Suc. Belenes    NA       3     1     2    5     2
## 2952    Suc. Belenes     2      NA    NA    NA   NA    NA
## 2953    Suc. Belenes    NA       1     1     2    2     1
## 2954    Suc. Belenes    NA      11    NA     8    6     3
## 2955    Suc. Belenes     3      NA    NA    NA   NA    NA
## 2956    Suc. Belenes    NA       0     0     0   NA     0
## 2957    Suc. Belenes     1       1    NA     1    1     1
## 2958    Suc. Belenes     1      NA     1     1    2     1
## 2959    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2960    Suc. Belenes    19      15    19    17   21    17
## 2961    Suc. Belenes     6      NA     3     6    3     8
## 2962    Suc. Belenes     6      NA    NA    NA   NA    NA
## 2963    Suc. Belenes    25      21    21    28   28    14
## 2964    Suc. Belenes     3       3     3     2    2    NA
## 2965    Suc. Belenes    21      13    13    13   11    13
## 2966    Suc. Belenes    NA      NA     1     1   NA     1
## 2967    Suc. Belenes     2      NA    NA    NA    2     2
## 2968    Suc. Belenes     1       1    NA    NA   NA    NA
## 2969    Suc. Belenes    11       6     6     4    6     8
## 2970    Suc. Belenes     3       6     6     6    6     6
## 2971    Suc. Belenes     8       4     6     6    6     4
## 2972    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2973    Suc. Belenes    NA      NA    NA     2    2    NA
## 2974    Suc. Belenes    71      69    77    87   61    50
## 2975    Suc. Belenes    NA      NA    NA    NA   NA    19
## 2976    Suc. Belenes    44      38    29    25   29    48
## 2977    Suc. Belenes     3       5     6     9    9     9
## 2978    Suc. Belenes    31      23    31    46   31    39
## 2979    Suc. Belenes     6      NA    NA     8    3     3
## 2980    Suc. Belenes    63     130    85   162  116   141
## 2981    Suc. Belenes    56     162    70   197  169   113
## 2982    Suc. Belenes     5      NA    NA    NA   NA    NA
## 2983    Suc. Belenes     2       2     6    11    8    11
## 2984    Suc. Belenes    25      53    61    59   49    61
## 2985    Suc. Belenes   144     137   139   273   91   148
## 2986    Suc. Belenes     9       4     7     7    6     6
## 2987    Suc. Belenes     3       5     2     5    3     6
## 2988    Suc. Belenes     2      NA     4     4    6     6
## 2989    Suc. Belenes     3       5     5     6    4     4
## 2990    Suc. Belenes    NA       1    NA     1   NA    NA
## 2991    Suc. Belenes    NA       1     1     1    4     3
## 2992    Suc. Belenes     1      NA     1     2    1     1
## 2993    Suc. Belenes     1      NA    NA     2    1     1
## 2994    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 2995    Suc. Belenes     3       0     0     1    1     1
## 2996    Suc. Belenes     1       1     0     1    2    NA
## 2997    Suc. Belenes     5       5     7     5    9     6
## 2998    Suc. Belenes     0      NA    NA    NA   NA     1
## 2999    Suc. Belenes    NA       2     2     2    2     2
## 3000    Suc. Belenes     1       1     1     1    0     2
## 3001    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3002    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3003    Suc. Belenes     0       0     1     1    2     1
## 3004    Suc. Belenes     4       4     5     3    3     3
## 3005    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3006    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3007    Suc. Belenes     3      NA    NA    NA   NA    NA
## 3008    Suc. Belenes    11       4    11    14    7    14
## 3009    Suc. Belenes     0       0     0     0    0     0
## 3010    Suc. Belenes    NA       0     0     1    1     1
## 3011    Suc. Belenes    13       8    13    13   17    13
## 3012    Suc. Belenes     1       2     3     3    2     3
## 3013    Suc. Belenes    NA       0     0     0    0     0
## 3014    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3015    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3016    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3017    Suc. Belenes     7       4     7    11    7     7
## 3018    Suc. Belenes     0       0     0     0    0     0
## 3019    Suc. Belenes    NA      NA    NA     2    1     1
## 3020    Suc. Belenes     1       6     2     8    4    NA
## 3021    Suc. Belenes     1       1     3     1    3     2
## 3022    Suc. Belenes    NA       0     0     0    0     0
## 3023    Suc. Belenes    NA       7     4    11    4    11
## 3024    Suc. Belenes     0       0     0     0    0     0
## 3025    Suc. Belenes     2      NA    NA     1    1     1
## 3026    Suc. Belenes     9       8     8     6    2     2
## 3027    Suc. Belenes     1       2     2     1    1     3
## 3028    Suc. Belenes     1       3    NA     2    3     2
## 3029    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3030    Suc. Belenes    NA      NA    NA    NA    3    NA
## 3031    Suc. Belenes    11      11     7     7   14    11
## 3032    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3033    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3034    Suc. Belenes     8       4     4     8   13    17
## 3035    Suc. Belenes     3       4     3     4    3     3
## 3036    Suc. Belenes    NA       0     0     0    0     0
## 3037    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3038    Suc. Belenes    NA      NA     3     6   NA     3
## 3039    Suc. Belenes    11      11     7    18   14    21
## 3040    Suc. Belenes     0       0     0     0    0     0
## 3041    Suc. Belenes     2       0     1     2    2     0
## 3042    Suc. Belenes    17      13    13    23   15    23
## 3043    Suc. Belenes     4       5     4     3    4     4
## 3044    Suc. Belenes    NA       0     0     0    0     0
## 3045    Suc. Belenes    NA      NA    NA     1   NA    NA
## 3046    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3047    Suc. Belenes     3       6     1     3    8    10
## 3048    Suc. Belenes    NA      NA     0    NA   NA     1
## 3049    Suc. Belenes    NA      NA    NA    NA    1     0
## 3050    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3051    Suc. Belenes     8      19    13     2   15    19
## 3052    Suc. Belenes     3       3    13     6    3     3
## 3053    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3054    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3055    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3056    Suc. Belenes     2       3    NA     1    2     3
## 3057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3058    Suc. Belenes     1       1     1     1    1     1
## 3059    Suc. Belenes     2       1     2     1    1     1
## 3060    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3061    Suc. Belenes    NA      NA     2     2   NA    NA
## 3062    Suc. Belenes     1       1     1     1   NA    NA
## 3063    Suc. Belenes    17      19    15     8   17    13
## 3064    Suc. Belenes     6       8     3    NA    6     8
## 3065    Suc. Belenes     6       6     3     8   11    11
## 3066    Suc. Belenes    23      NA    23    13   11    23
## 3067    Suc. Belenes     1      NA    NA     1    2     1
## 3068    Suc. Belenes     4      NA     4     2    2     2
## 3069    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3070    Suc. Belenes    48      42    32    32   32    26
## 3071    Suc. Belenes    NA      NA    NA    NA   NA    38
## 3072    Suc. Belenes    22      32    22    38   19    22
## 3073    Suc. Belenes     5       6     6     6    5     6
## 3074    Suc. Belenes     6       3     6     6    5     3
## 3075    Suc. Belenes    17      17     8    11   NA     8
## 3076    Suc. Belenes     6       8     8    23   NA     8
## 3077    Suc. Belenes    NA      28    70    NA   70    42
## 3078    Suc. Belenes    92      88    63    42  176    99
## 3079    Suc. Belenes    17      15    11    15   19    19
## 3080    Suc. Belenes    36      13    19    NA   32    13
## 3081    Suc. Belenes    46      36    21    49   17    32
## 3082    Suc. Belenes    11       5     6     6   10     6
## 3083    Suc. Belenes    NA      NA     3     3    3     3
## 3084    Suc. Belenes     4       1     2     2    2     2
## 3085    Suc. Belenes     1       1     1     1    1     1
## 3086    Suc. Belenes    NA      NA    NA    NA    1    NA
## 3087    Suc. Belenes     8      12    NA    NA    2     4
## 3088    Suc. Belenes     1       0     0     0    0     0
## 3089    Suc. Belenes    NA       1     4    NA    3    NA
## 3090    Suc. Belenes     7      21    NA    NA   NA     5
## 3091    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3092    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3093    Suc. Belenes     0       0     0     0    0     0
## 3094    Suc. Belenes     1       1     1     1   NA     3
## 3095    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3096    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3097    Suc. Belenes     8       3     8    11    6     8
## 3098    Suc. Belenes     3      NA     1    NA    1     3
## 3099    Suc. Belenes    NA       2    NA     0    0    NA
## 3100    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3101    Suc. Belenes     3      NA     1     1    3     3
## 3102    Suc. Belenes    NA       0     0     0   NA    NA
## 3103    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3104    Suc. Belenes    NA      NA    NA     0   NA    NA
## 3105    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3106    Suc. Belenes    NA       0     0     0   NA    NA
## 3107    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3108    Suc. Belenes     1      NA     1    NA   NA     1
## 3109    Suc. Belenes    NA      NA     0     0   NA    NA
## 3110    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3111    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3112    Suc. Belenes    14       6    14     3    6     3
## 3113    Suc. Belenes     2       2     2    NA    2    NA
## 3114    Suc. Belenes     1       1     1     1    1     3
## 3115    Suc. Belenes    NA       0     0     0   NA    NA
## 3116    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3117    Suc. Belenes    NA       6     6     6    6     6
## 3118    Suc. Belenes     1      NA    NA     1    1     1
## 3119    Suc. Belenes     0      NA    NA     0   NA     0
## 3120    Suc. Belenes    NA      NA     3    NA   NA     2
## 3121    Suc. Belenes     3       8    NA     1    1     3
## 3122    Suc. Belenes    NA       0     0     0   NA    NA
## 3123    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3124    Suc. Belenes    NA      NA     4    NA    3     3
## 3125    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3126    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3127    Suc. Belenes     2       2     2     2    2     2
## 3128    Suc. Belenes     3      NA     3     3    3     3
## 3129    Suc. Belenes    NA      NA     0    NA   NA    NA
## 3130    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3131    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3132    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3133    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3134    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3135    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3136    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3137    Suc. Belenes    NA       0     1    NA    1     1
## 3138    Suc. Belenes     0      NA     0    NA    0    NA
## 3139    Suc. Belenes     1      NA     1     1    3     1
## 3140    Suc. Belenes     2      NA    NA    NA   NA    NA
## 3141    Suc. Belenes     2      NA     2     1    1     1
## 3142    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3143    Suc. Belenes    NA       3    NA    NA   NA    NA
## 3144    Suc. Belenes    NA      NA    NA     2    2     2
## 3145    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3146    Suc. Belenes     2       2     4     6    2     2
## 3147    Suc. Belenes     8       6     3     8    3     3
## 3148    Suc. Belenes     6       6     6     6    4     6
## 3149    Suc. Belenes     1       2     1     1    2     1
## 3150    Suc. Belenes     2      NA    NA     2   NA    NA
## 3151    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3152    Suc. Belenes    NA      NA     2    NA    2    NA
## 3153    Suc. Belenes     4       4     2     2    2     2
## 3154    Suc. Belenes     1      NA    NA    NA    1    NA
## 3155    Suc. Belenes    NA       1    NA     1   NA    NA
## 3156    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3157    Suc. Belenes    18      21    29    29   29    18
## 3158    Suc. Belenes    NA      NA    NA    NA   NA    13
## 3159    Suc. Belenes    13       6    16    25   10    19
## 3160    Suc. Belenes     9      12     6    18    6     6
## 3161    Suc. Belenes    23      17    11    14   20    17
## 3162    Suc. Belenes    11       6    11     8   11     3
## 3163    Suc. Belenes    21      32     7    25   28    25
## 3164    Suc. Belenes    35      11     7    35   28    35
## 3165    Suc. Belenes    NA      38    NA     6   42     6
## 3166    Suc. Belenes    46      34    44    44   51    59
## 3167    Suc. Belenes    NA      13     3     8    8     3
## 3168    Suc. Belenes    NA       6     3     3   NA     3
## 3169    Suc. Belenes    NA       7     4     5    5     4
## 3170    Suc. Belenes     2       2     6     3   NA     2
## 3171    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3172    Suc. Belenes     4       2     2     2    2     5
## 3173    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3174    Suc. Belenes    NA       1     1     1    1     2
## 3175    Suc. Belenes    NA      NA    NA     1   NA    NA
## 3176    Suc. Belenes    NA       3    NA    NA    1    NA
## 3177    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3178    Suc. Belenes     1      NA     0     0    0     0
## 3179    Suc. Belenes    NA       2     1    NA    2     1
## 3180    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3181    Suc. Belenes    NA      NA     2    NA   NA     4
## 3182    Suc. Belenes     1      NA     0    NA    1     0
## 3183    Suc. Belenes     0       0     0     0    0     0
## 3184    Suc. Belenes    NA       3     3    NA    2     1
## 3185    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3186    Suc. Belenes    NA       2    NA    NA   NA    NA
## 3187    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3188    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3189    Suc. Belenes     3       3     6    NA    3    NA
## 3190    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3191    Suc. Belenes    NA       0     1     0    0     0
## 3192    Suc. Belenes    NA      NA     1     1   NA    NA
## 3193    Suc. Belenes    NA       1     1     1    1     1
## 3194    Suc. Belenes    NA       0     0     0    0     0
## 3195    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3196    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3197    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3198    Suc. Belenes    NA      NA     0    NA    1    NA
## 3199    Suc. Belenes    NA      NA     1     1   NA    NA
## 3200    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3201    Suc. Belenes    NA       0     0     0    0     0
## 3202    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3203    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3204    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3205    Suc. Belenes    NA      NA     0     0   NA    NA
## 3206    Suc. Belenes    NA      NA     1     1   NA    NA
## 3207    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3208    Suc. Belenes    NA      NA    NA    NA    1     1
## 3209    Suc. Belenes    NA      NA     3    NA    3     3
## 3210    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3211    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3212    Suc. Belenes    NA       0     0     0    0     0
## 3213    Suc. Belenes    NA       2    NA     2   NA    NA
## 3214    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3215    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3216    Suc. Belenes     6       3    NA     6   NA     6
## 3217    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3218    Suc. Belenes     0       0     0     1    0     1
## 3219    Suc. Belenes    NA      NA     1     1    4     2
## 3220    Suc. Belenes    NA       3     1     1    2     2
## 3221    Suc. Belenes    NA       0     0     0    0     0
## 3222    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3223    Suc. Belenes     4       4    NA     1    3     1
## 3224    Suc. Belenes    NA      NA    NA     2   NA    NA
## 3225    Suc. Belenes    NA       3     3     3   NA    NA
## 3226    Suc. Belenes     8       8     6    10   10     8
## 3227    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3228    Suc. Belenes    13      17     2     6   19    44
## 3229    Suc. Belenes     3      44     3    10   22    19
## 3230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3231    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3232    Suc. Belenes    NA      10    10    NA    5     5
## 3233    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3234    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3235    Suc. Belenes    NA       3    NA     1    4     3
## 3236    Suc. Belenes     2       2     2     6    8     6
## 3237    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3238    Suc. Belenes    NA      NA     0    NA   NA     0
## 3239    Suc. Belenes     1       3     1     1    1     1
## 3240    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3241    Suc. Belenes     6       0     1     2    4     1
## 3242    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3243    Suc. Belenes    NA      NA     1     1    1     1
## 3244    Suc. Belenes     2       2    NA    NA   NA    NA
## 3245    Suc. Belenes     2       1     1     1    1     1
## 3246    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3247    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3248    Suc. Belenes    NA       1     1     1   NA     1
## 3249    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3250    Suc. Belenes    NA      NA     2     2   NA    NA
## 3251    Suc. Belenes    NA      NA     1     1   NA    NA
## 3252    Suc. Belenes    NA       4     4     4    2     4
## 3253    Suc. Belenes     3       2     3     8    6     6
## 3254    Suc. Belenes    NA       3     3     6   NA    NA
## 3255    Suc. Belenes     3       8     6     8   11     8
## 3256    Suc. Belenes    17      15    15    17   34    21
## 3257    Suc. Belenes     2       1     2    NA    1     1
## 3258    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3259    Suc. Belenes     2       3     2     2    1     1
## 3260    Suc. Belenes     2       2     2     2   11     2
## 3261    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3262    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3263    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3264    Suc. Belenes    50      61     3    55   87    61
## 3265    Suc. Belenes    NA      NA    NA    NA   NA    60
## 3266    Suc. Belenes    98      79    44   124  181   111
## 3267    Suc. Belenes    20      23    23    44   32    44
## 3268    Suc. Belenes    41      38    60    38   99   114
## 3269    Suc. Belenes    11      NA    NA     3   NA    NA
## 3270    Suc. Belenes     3      11    NA     6    6     8
## 3271    Suc. Belenes    70      53    42    42   81    81
## 3272    Suc. Belenes   423     366   447   683  866   359
## 3273    Suc. Belenes    46      34    21    27   38    11
## 3274    Suc. Belenes    55      42    34    57   82    80
## 3275    Suc. Belenes   306     203   334   505  611   249
## 3276    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3277    Suc. Belenes    17      13    13    22   16    13
## 3278    Suc. Belenes     6       6    12     9   15    17
## 3279    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3280    Suc. Belenes     3       1     2     3    2    NA
## 3281    Suc. Belenes     1       1     1     1    1     1
## 3282    Suc. Belenes    NA      NA    NA     1   NA    NA
## 3283    Suc. Belenes     6       4    NA     6    4     3
## 3284    Suc. Belenes     3       2     0     0    1     0
## 3285    Suc. Belenes    NA       0    NA    NA    1    NA
## 3286    Suc. Belenes     3       6     2     2    4     3
## 3287    Suc. Belenes    NA       1    NA    NA   NA     1
## 3288    Suc. Belenes    NA       2     2     2    2     2
## 3289    Suc. Belenes     1       1     1     1    1     1
## 3290    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3291    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3292    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3293    Suc. Belenes     0       0     0     0    0     0
## 3294    Suc. Belenes     3      NA     3     3   NA     5
## 3295    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3296    Suc. Belenes     3       3    NA     3   NA     3
## 3297    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3298    Suc. Belenes     3       2     6     5   11     9
## 3299    Suc. Belenes    NA       8     8     8    3     6
## 3300    Suc. Belenes    NA      NA    NA    NA   11    NA
## 3301    Suc. Belenes     1      NA     0     3   NA     2
## 3302    Suc. Belenes     3       2    NA     3    3     2
## 3303    Suc. Belenes    NA       2     2     2    2     2
## 3304    Suc. Belenes     6       7     7     8    8    11
## 3305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3306    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3307    Suc. Belenes    NA       0     0     0   NA    NA
## 3308    Suc. Belenes     3      NA     3    NA    3     6
## 3309    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3310    Suc. Belenes    NA      NA    NA     3   NA     6
## 3311    Suc. Belenes    NA      NA    NA    NA    4    NA
## 3312    Suc. Belenes    NA      NA     0    NA   NA     0
## 3313    Suc. Belenes    NA      NA     0    NA   NA    NA
## 3314    Suc. Belenes     2       2    NA     2    4     4
## 3315    Suc. Belenes    NA       1     1    NA   13     2
## 3316    Suc. Belenes    NA       0    NA     0   NA    NA
## 3317    Suc. Belenes     6       3     6     3    6     3
## 3318    Suc. Belenes     3       3     2     3    6     3
## 3319    Suc. Belenes    NA       6     3    NA   NA    NA
## 3320    Suc. Belenes     1      NA     0     1   NA     2
## 3321    Suc. Belenes     2       2    NA     2    2     2
## 3322    Suc. Belenes    NA       2    NA     2   NA    NA
## 3323    Suc. Belenes    NA       1     1     2   NA     2
## 3324    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3325    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3326    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3327    Suc. Belenes     3       8    11    11   11    11
## 3328    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3329    Suc. Belenes     6       6     4    11    6     6
## 3330    Suc. Belenes    NA       0     0     0   NA    NA
## 3331    Suc. Belenes     3       6     6     3    6    10
## 3332    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3333    Suc. Belenes     5       3     5     6   11     8
## 3334    Suc. Belenes     3      14    17    17   11    23
## 3335    Suc. Belenes    NA      NA    NA    NA   11    NA
## 3336    Suc. Belenes     3      NA     0     1    1     2
## 3337    Suc. Belenes     3       2    NA     3    3     2
## 3338    Suc. Belenes     2       2     4     4    4     6
## 3339    Suc. Belenes    11       9    12     6   13    15
## 3340    Suc. Belenes    NA       0     0     0   NA    NA
## 3341    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3342    Suc. Belenes     6       4     5     6    4     3
## 3343    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3344    Suc. Belenes    NA      NA    NA     2    2    NA
## 3345    Suc. Belenes    NA      NA    NA     3    3    NA
## 3346    Suc. Belenes    NA      NA    NA     3   NA    NA
## 3347    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3348    Suc. Belenes    NA      NA    NA    NA    1     3
## 3349    Suc. Belenes     0       0    NA     0    0    NA
## 3350    Suc. Belenes    NA      NA    NA    NA    1    NA
## 3351    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3352    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3353    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3354    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3355    Suc. Belenes     6       6    NA     3   NA     8
## 3356    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3357    Suc. Belenes    NA      NA     1     1    1    NA
## 3358    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3359    Suc. Belenes     2       2     2    NA    2     2
## 3360    Suc. Belenes     2       4     4     2    4     4
## 3361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3362    Suc. Belenes    NA      NA    NA    11   16    16
## 3363    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3364    Suc. Belenes    10      13    16    22   16    22
## 3365    Suc. Belenes     5       3     2     3    3     3
## 3366    Suc. Belenes    67      49    56    70   70    56
## 3367    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3368    Suc. Belenes    19      11    21    32   25    27
## 3369    Suc. Belenes    NA       2     1     1    1     1
## 3370    Suc. Belenes     1      NA    NA     1    1     1
## 3371    Suc. Belenes    NA       1    NA    NA   NA    NA
## 3372    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3373    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3374    Suc. Belenes    NA       3    NA    NA   NA     3
## 3375    Suc. Belenes    NA       1     2    NA    2     2
## 3376    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3377    Suc. Belenes     4       2     4    NA    3     2
## 3378    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3379    Suc. Belenes    NA       2    NA     2   NA     4
## 3380    Suc. Belenes    NA      NA     0     0    1     0
## 3381    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3382    Suc. Belenes     3       5     3     3    2     2
## 3383    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3384    Suc. Belenes    NA      NA     3    NA   NA    NA
## 3385    Suc. Belenes     0       0    NA     0    0    NA
## 3386    Suc. Belenes     0       0     0    NA    0     0
## 3387    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3388    Suc. Belenes    NA      NA     2    NA   NA     2
## 3389    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3390    Suc. Belenes     0       0    NA     0    0    NA
## 3391    Suc. Belenes    NA       0    NA     0   NA     0
## 3392    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3393    Suc. Belenes     3       3     5     2    2     2
## 3394    Suc. Belenes     0       0    NA     0    0    NA
## 3395    Suc. Belenes     0       0    NA     0    1     0
## 3396    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3397    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3398    Suc. Belenes    NA      NA     3    NA   NA    NA
## 3399    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3400    Suc. Belenes     3       5     5     3    3     2
## 3401    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3402    Suc. Belenes     3       6     3     3    3     3
## 3403    Suc. Belenes     0       0    NA     0    0    NA
## 3404    Suc. Belenes     0       0     0     0    0     1
## 3405    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3406    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3407    Suc. Belenes     1       1     1     3    2     1
## 3408    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3409    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3410    Suc. Belenes     4       2     6     2    6     6
## 3411    Suc. Belenes     3       3    16     3   10     6
## 3412    Suc. Belenes    NA      NA    NA     0    1     0
## 3413    Suc. Belenes    NA       3    NA    NA    3     5
## 3414    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3415    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3416    Suc. Belenes     1      NA     1     1    2    NA
## 3417    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3418    Suc. Belenes     0      NA    NA    NA    0    NA
## 3419    Suc. Belenes     1      NA     1     2    1    NA
## 3420    Suc. Belenes     6       3     3     4    5     5
## 3421    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3422    Suc. Belenes     1       1     2     5    5     2
## 3423    Suc. Belenes    NA       2    NA    NA   NA    NA
## 3424    Suc. Belenes     0      NA    NA    NA   NA    NA
## 3425    Suc. Belenes     2       2     2     2    2     1
## 3426    Suc. Belenes     3       6     6    14    6    14
## 3427    Suc. Belenes     3       1    NA     1   NA     1
## 3428    Suc. Belenes    NA      NA    NA    NA    0     0
## 3429    Suc. Belenes    NA       1    NA    NA   NA    NA
## 3430    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3431    Suc. Belenes     2       2    NA    NA   NA    NA
## 3432    Suc. Belenes     1       1    NA    NA    1     1
## 3433    Suc. Belenes     2      NA    NA     2    4     2
## 3434    Suc. Belenes    NA       1    NA    NA   NA    NA
## 3435    Suc. Belenes    32      32    30    32   44    17
## 3436    Suc. Belenes    37      39    59    48   65    54
## 3437    Suc. Belenes    17      19    17    25   40     2
## 3438    Suc. Belenes     4       6     3     2    4     3
## 3439    Suc. Belenes     3       2    NA     3    3     3
## 3440    Suc. Belenes     4       6     8     6   11     8
## 3441    Suc. Belenes     8      17    11    14   14    17
## 3442    Suc. Belenes     4       6     2     6    6     6
## 3443    Suc. Belenes     1       1     1     1    1     1
## 3444    Suc. Belenes    38      34    34    40   57    23
## 3445    Suc. Belenes    32      26    55    48   58     5
## 3446    Suc. Belenes    NA      NA    NA    NA   NA    29
## 3447    Suc. Belenes     6      13    10    16   16    10
## 3448    Suc. Belenes     5       3     8     6   11     5
## 3449    Suc. Belenes     8       6     5     6    2     6
## 3450    Suc. Belenes    56      65    93    93  110    99
## 3451    Suc. Belenes     6      11     8     3   14     6
## 3452    Suc. Belenes    88      67   144    81  123   109
## 3453    Suc. Belenes    60      67   127    67   85    60
## 3454    Suc. Belenes    NA       2    NA     4    2     4
## 3455    Suc. Belenes    25      21    27    32   46    49
## 3456    Suc. Belenes    23      27    42    66   42    59
## 3457    Suc. Belenes     9       6     3     3   12     6
## 3458    Suc. Belenes     7       8    11     9   12     9
## 3459    Suc. Belenes     6       5     5     6    8     9
## 3460    Suc. Belenes     2       2     4     4    8     2
## 3461    Suc. Belenes     1       1     3     4    2     5
## 3462    Suc. Belenes    NA      NA    NA    NA    1    NA
## 3463    Suc. Belenes     1       2     1     2    2     2
## 3464    Suc. Belenes     1      NA    NA     1    3     3
## 3465    Suc. Belenes     3       1     1     3    8     4
## 3466    Suc. Belenes     2       1     1     1    1     0
## 3467    Suc. Belenes     1       1     1    NA    1    NA
## 3468    Suc. Belenes     5       3     3     4    7     8
## 3469    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3470    Suc. Belenes    NA       4    NA    NA    4     2
## 3471    Suc. Belenes     1       1    NA    NA    1     0
## 3472    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3473    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3474    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3475    Suc. Belenes     0       0     0     1    0     0
## 3476    Suc. Belenes     1       2     2    10    2     6
## 3477    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3478    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3479    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3480    Suc. Belenes     2       2    NA     4    2     4
## 3481    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3482    Suc. Belenes     1       2     0    NA   NA     0
## 3483    Suc. Belenes     3       3     8    14   11     8
## 3484    Suc. Belenes     0      NA    NA    NA    0    NA
## 3485    Suc. Belenes    NA       0    NA    NA    0     1
## 3486    Suc. Belenes     1       1     1     3    4     2
## 3487    Suc. Belenes     1       2     1     1    1     2
## 3488    Suc. Belenes    NA       0     0     0    0    NA
## 3489    Suc. Belenes     4       2    NA    NA   NA    NA
## 3490    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3491    Suc. Belenes     1       2     0    NA   NA     0
## 3492    Suc. Belenes     3       3     8    NA    6     6
## 3493    Suc. Belenes     0      NA    NA    NA    0    NA
## 3494    Suc. Belenes     0       0    NA    NA    0    NA
## 3495    Suc. Belenes     1       1     1     3    2     2
## 3496    Suc. Belenes    NA       1    NA    NA    1     1
## 3497    Suc. Belenes    NA       0     0     0    0    NA
## 3498    Suc. Belenes     4       2     2    NA    4     4
## 3499    Suc. Belenes     1       2     0    NA   NA     0
## 3500    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3501    Suc. Belenes     0      NA    NA    NA    0    NA
## 3502    Suc. Belenes    NA      NA    NA    NA    0    NA
## 3503    Suc. Belenes     1       1     1     3    4     2
## 3504    Suc. Belenes    NA       2    NA    NA    2     1
## 3505    Suc. Belenes     1       2     1     1    1     1
## 3506    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3507    Suc. Belenes    14       6    14    11   11    20
## 3508    Suc. Belenes    NA       0     0    NA    0    NA
## 3509    Suc. Belenes     1      NA    NA    NA    1    NA
## 3510    Suc. Belenes    NA       0     0     0    0    NA
## 3511    Suc. Belenes     6       2     2     6    2     4
## 3512    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3513    Suc. Belenes     1       2     0    NA   NA     0
## 3514    Suc. Belenes     6      NA     6    14   11    11
## 3515    Suc. Belenes     0      NA    NA    NA    0    NA
## 3516    Suc. Belenes    NA       1    NA     0    0     1
## 3517    Suc. Belenes     1       1     1     3    6     2
## 3518    Suc. Belenes     2       1     3     1    4     3
## 3519    Suc. Belenes    NA       0     0     0    0    NA
## 3520    Suc. Belenes    NA      NA    NA     1    1    NA
## 3521    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3522    Suc. Belenes    12       7     4     6   10     8
## 3523    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3524    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3525    Suc. Belenes    NA      NA     1     1   NA    NA
## 3526    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3527    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3528    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3529    Suc. Belenes     2       2    NA     2    2     4
## 3530    Suc. Belenes     3       6    NA     3    3     6
## 3531    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3532    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3533    Suc. Belenes     2       2     3     2    3     4
## 3534    Suc. Belenes     1       1    NA     1    1     2
## 3535    Suc. Belenes     2       1     1     1    1     2
## 3536    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3537    Suc. Belenes     2      NA    NA    NA   NA    NA
## 3538    Suc. Belenes    11      11     8    11    8     6
## 3539    Suc. Belenes    NA      NA     3    NA   NA     8
## 3540    Suc. Belenes     8       8     8    11    6    11
## 3541    Suc. Belenes     2       3    NA     2   NA    NA
## 3542    Suc. Belenes     6       8     8    11    6     8
## 3543    Suc. Belenes     2      NA     1     1   NA     2
## 3544    Suc. Belenes     2      NA     2     1   NA     2
## 3545    Suc. Belenes    NA      NA    NA    NA    4     2
## 3546    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3547    Suc. Belenes    50      42    45    45   32    32
## 3548    Suc. Belenes    NA      NA    NA    NA   NA    19
## 3549    Suc. Belenes    19      22    25    32   22    35
## 3550    Suc. Belenes     2       2     2     2    2     3
## 3551    Suc. Belenes    NA      NA    NA    NA    2    NA
## 3552    Suc. Belenes    17      11    11    11   14    11
## 3553    Suc. Belenes    63      49    56    63   63    63
## 3554    Suc. Belenes   183     151   134   215  155   201
## 3555    Suc. Belenes     8       8     8     8   10     3
## 3556    Suc. Belenes    13      13    13    19   17    17
## 3557    Suc. Belenes    40      44    34    46   53    44
## 3558    Suc. Belenes     3       3     2     2    3     3
## 3559    Suc. Belenes     5       3     3     3    5     3
## 3560    Suc. Belenes    NA      NA     1    NA    1    NA
## 3561    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3562    Suc. Belenes     1       1    NA     1    1     1
## 3563    Suc. Belenes    NA       1    NA    NA    1    NA
## 3564    Suc. Belenes     1       1     1    NA    1    NA
## 3565    Suc. Belenes     3       0     0     0    0     0
## 3566    Suc. Belenes     5       4     3     5    3     6
## 3567    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3568    Suc. Belenes    NA      NA     2    NA   NA    NA
## 3569    Suc. Belenes     0       0    NA     0    0    NA
## 3570    Suc. Belenes     0       0     0     0    0     0
## 3571    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3572    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3573    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3574    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3575    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3576    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3577    Suc. Belenes     1       1     1     2    1     1
## 3578    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3579    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3580    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3581    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3582    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3583    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3584    Suc. Belenes     1       1     1     2    1     1
## 3585    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3586    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3587    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3588    Suc. Belenes    NA      NA    NA    NA    0    NA
## 3589    Suc. Belenes     1       1     1     2    1     1
## 3590    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3591    Suc. Belenes    NA      NA    NA    NA    3     3
## 3592    Suc. Belenes    NA      NA     0    NA   NA     0
## 3593    Suc. Belenes    NA      NA     2    NA   NA    NA
## 3594    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3595    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3596    Suc. Belenes     3       3     3     6   NA     4
## 3597    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3598    Suc. Belenes     0      NA    NA     0    2    NA
## 3599    Suc. Belenes     1       1     1     2    1     1
## 3600    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3601    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3602    Suc. Belenes     3       1     1     3    5     6
## 3603    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3604    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3605    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3606    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3607    Suc. Belenes     8       8    15     4    8     8
## 3608    Suc. Belenes    13       3    16     3   16    13
## 3609    Suc. Belenes    10      NA     3     5    8     3
## 3610    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3611    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3612    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3613    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3614    Suc. Belenes     3       3     4     2    3     2
## 3615    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3616    Suc. Belenes    NA       1     1     1    1     1
## 3617    Suc. Belenes    NA       2    NA    NA   NA    NA
## 3618    Suc. Belenes    NA       2     1     1    1     1
## 3619    Suc. Belenes    NA      NA     3    NA    3    NA
## 3620    Suc. Belenes    NA       0    NA    NA    0    NA
## 3621    Suc. Belenes    NA      NA     1    NA   NA    NA
## 3622    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3623    Suc. Belenes     2      NA     2    NA   NA     2
## 3624    Suc. Belenes    NA       1     1    NA   NA    NA
## 3625    Suc. Belenes    11       6     8    11   17     8
## 3626    Suc. Belenes     6       8     6     3    8     8
## 3627    Suc. Belenes     5       3     3     2    2     3
## 3628    Suc. Belenes    13       4    11    11    8    13
## 3629    Suc. Belenes     1       2     1     2    2     2
## 3630    Suc. Belenes     2       2    NA     2    4     2
## 3631    Suc. Belenes    NA       3     6     6    3     3
## 3632    Suc. Belenes     2       2     4     2    4     6
## 3633    Suc. Belenes    42      25    25    42   30    25
## 3634    Suc. Belenes    NA      NA    NA     3   NA    NA
## 3635    Suc. Belenes    10       6    19    13   19    16
## 3636    Suc. Belenes    16      13    22    22   19    16
## 3637    Suc. Belenes     5       6     6     6    8     5
## 3638    Suc. Belenes    25      20    11    17   25    23
## 3639    Suc. Belenes    35      32    42    56   63    46
## 3640    Suc. Belenes    92     116   162   148  232     4
## 3641    Suc. Belenes     2      NA    NA    NA   NA    NA
## 3642    Suc. Belenes     8       8     8     8   11     8
## 3643    Suc. Belenes    25      15    19    23   32    13
## 3644    Suc. Belenes    36      40    57    17   34    15
## 3645    Suc. Belenes     8       6     8     7    8     8
## 3646    Suc. Belenes     2       3     3     5    3     2
## 3647    Suc. Belenes     2      NA     4     2    4     2
## 3648    Suc. Belenes     2       2     2     2    2     2
## 3649    Suc. Belenes    NA       1    NA    NA    1    NA
## 3650    Suc. Belenes    NA      NA     1     1    1     2
## 3651    Suc. Belenes    NA      NA    NA     1   NA     1
## 3652    Suc. Belenes     3       2    NA    NA    3    NA
## 3653    Suc. Belenes    NA       1    NA    NA   NA    NA
## 3654    Suc. Belenes     2       0     0     0    0     0
## 3655    Suc. Belenes    NA       0    NA    NA    1    NA
## 3656    Suc. Belenes     5       3     7     3    8     2
## 3657    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3658    Suc. Belenes    NA       0     0     0    0     0
## 3659    Suc. Belenes     1       1     1     2    2     1
## 3660    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3661    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3662    Suc. Belenes     5       3     2     3    3    NA
## 3663    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3664    Suc. Belenes     6      NA     6     3   NA     3
## 3665    Suc. Belenes    NA       0     0     0    1     1
## 3666    Suc. Belenes     1      NA     1     1    3    NA
## 3667    Suc. Belenes     1       1     2     1    1     1
## 3668    Suc. Belenes    NA       0     0     0    0     0
## 3669    Suc. Belenes     5       2     2     2    2    NA
## 3670    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3671    Suc. Belenes     4      NA     4    NA    6    NA
## 3672    Suc. Belenes    NA      NA    NA     0    0     1
## 3673    Suc. Belenes     1      NA     1     1    1    NA
## 3674    Suc. Belenes     1       1     1     1    1    NA
## 3675    Suc. Belenes    NA       0     0     0    0     0
## 3676    Suc. Belenes     3       5     2     3    2    NA
## 3677    Suc. Belenes     1      NA     1    NA    6    NA
## 3678    Suc. Belenes    NA      NA    NA     1    1     1
## 3679    Suc. Belenes     1      NA     1     1    1    NA
## 3680    Suc. Belenes    NA       1    NA     2    1     1
## 3681    Suc. Belenes     1       1     1    NA   NA     1
## 3682    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3683    Suc. Belenes     6      NA     6    NA    3    NA
## 3684    Suc. Belenes    NA       0     0     0    0    NA
## 3685    Suc. Belenes    NA       2    NA    NA    2    NA
## 3686    Suc. Belenes    NA       0     0     0    0     0
## 3687    Suc. Belenes     8       2     5     2    3    NA
## 3688    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3689    Suc. Belenes     6       6     6     3    6     6
## 3690    Suc. Belenes     0       0     0     1    1     1
## 3691    Suc. Belenes     1      NA     3     1    5     2
## 3692    Suc. Belenes     2       1     1     2    3     1
## 3693    Suc. Belenes    NA       0     0     0    0     0
## 3694    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3695    Suc. Belenes    NA      NA     3     3    4     4
## 3696    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3697    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3698    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3699    Suc. Belenes     2       8    15    11   13    13
## 3700    Suc. Belenes    10      16    19    10   13    16
## 3701    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3702    Suc. Belenes    10      15    13    15   15    15
## 3703    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3704    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3705    Suc. Belenes    NA      NA    NA    NA    1    NA
## 3706    Suc. Belenes     3      NA     4    NA   NA    NA
## 3707    Suc. Belenes     5       4     6     4    3     3
## 3708    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3709    Suc. Belenes    NA       1     1     3    4     1
## 3710    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3711    Suc. Belenes    NA       1     1     2    1     2
## 3712    Suc. Belenes     3       3     6    NA    3     6
## 3713    Suc. Belenes    NA       3    NA     1    1     1
## 3714    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3715    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3716    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3717    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3718    Suc. Belenes     2      NA     2    NA   NA    NA
## 3719    Suc. Belenes     2       3     1     1   NA    NA
## 3720    Suc. Belenes    NA       2     4     2    4     2
## 3721    Suc. Belenes     4       6     2     6    4     4
## 3722    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3723    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3724    Suc. Belenes     2       2    NA     2   NA    NA
## 3725    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3726    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3727    Suc. Belenes    61      37    79    29   55     8
## 3728    Suc. Belenes    NA      NA    NA    NA   NA    10
## 3729    Suc. Belenes   130     101   149   133  193   171
## 3730    Suc. Belenes     6      11    14    11   12    11
## 3731    Suc. Belenes     6      NA    NA     1   NA    NA
## 3732    Suc. Belenes    NA       3     3     6    3     3
## 3733    Suc. Belenes    NA      32    32    35   46     7
## 3734    Suc. Belenes   243     159   211   215  208   229
## 3735    Suc. Belenes    15       4    19    13   13    17
## 3736    Suc. Belenes     8      17    17    13   23    19
## 3737    Suc. Belenes   186     125   146   175  188   186
## 3738    Suc. Belenes     4       4     4     7    6    12
## 3739    Suc. Belenes     5       2     5     3    3     3
## 3740    Suc. Belenes    NA      NA     4     6    4     4
## 3741    Suc. Belenes     9       7     7     3    4     4
## 3742    Suc. Belenes    NA       1     1     1    1     1
## 3743    Suc. Belenes     1       1     3     1    2     1
## 3744    Suc. Belenes     2       0     0     0    1     0
## 3745    Suc. Belenes    NA       0    NA    NA   NA    NA
## 3746    Suc. Belenes     6       7     8     3    5     7
## 3747    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3748    Suc. Belenes    NA       2    NA    NA    2     2
## 3749    Suc. Belenes     1      NA     1    NA    1     1
## 3750    Suc. Belenes     0       0     0     0    0     0
## 3751    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3752    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3753    Suc. Belenes    10       3    11    10    4    10
## 3754    Suc. Belenes    NA      NA    NA    NA   NA     5
## 3755    Suc. Belenes     1      NA     1    12   NA     1
## 3756    Suc. Belenes     1       4     2     0    2     0
## 3757    Suc. Belenes     7       2     6     2    6     4
## 3758    Suc. Belenes     3       3     3    NA    3     5
## 3759    Suc. Belenes    NA      NA    NA     0   NA    NA
## 3760    Suc. Belenes    NA       0     0     0    1    NA
## 3761    Suc. Belenes     3      NA     5     3    4     3
## 3762    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3763    Suc. Belenes     1      NA     1     6   NA     1
## 3764    Suc. Belenes     1       1     2    NA    1     2
## 3765    Suc. Belenes     5       4     6     2    2     4
## 3766    Suc. Belenes    NA       3     3    NA    3     3
## 3767    Suc. Belenes    NA      NA    NA     0   NA    NA
## 3768    Suc. Belenes    NA       0     0     0    1    NA
## 3769    Suc. Belenes     3       3     6     6    7     3
## 3770    Suc. Belenes     1      NA     1     4   NA     1
## 3771    Suc. Belenes     1       2    NA    NA   NA    NA
## 3772    Suc. Belenes     3       4    NA    NA    2    NA
## 3773    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3774    Suc. Belenes    NA      NA    NA     0   NA    NA
## 3775    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3776    Suc. Belenes    NA      NA     3     8   NA    NA
## 3777    Suc. Belenes    NA      NA     2    NA   NA     2
## 3778    Suc. Belenes     4      NA     4     2    4     2
## 3779    Suc. Belenes    NA       1     3    NA    3     3
## 3780    Suc. Belenes    NA       0     0     0    1    NA
## 3781    Suc. Belenes    10       3    10    10    7    10
## 3782    Suc. Belenes    NA      NA    NA    NA   NA     2
## 3783    Suc. Belenes     1       3     1     9    6     4
## 3784    Suc. Belenes     3       3     2     0    5     3
## 3785    Suc. Belenes     7       8     8     6    8     8
## 3786    Suc. Belenes     3       4     5     3    5     5
## 3787    Suc. Belenes    NA      NA    NA     0   NA    NA
## 3788    Suc. Belenes    NA       0     0     0    1    NA
## 3789    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3790    Suc. Belenes     1      NA     1     3    6     1
## 3791    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3792    Suc. Belenes    NA      NA    NA     8   NA    NA
## 3793    Suc. Belenes     5      NA     5     3    5     8
## 3794    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3795    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3796    Suc. Belenes     6      51     4     2    2     6
## 3797    Suc. Belenes     6      10    10    16   19    13
## 3798    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3799    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3800    Suc. Belenes     5       3     3     5    3     8
## 3801    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3802    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3803    Suc. Belenes    NA       2    NA    NA   NA    NA
## 3804    Suc. Belenes    NA       3    NA     2   NA    NA
## 3805    Suc. Belenes    NA      NA    NA    NA    4    NA
## 3806    Suc. Belenes     1      NA    NA    NA    1     2
## 3807    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3808    Suc. Belenes     9       8    11    10    7    15
## 3809    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3810    Suc. Belenes    NA       1     1     1    1     1
## 3811    Suc. Belenes     0       0    NA    NA   NA    NA
## 3812    Suc. Belenes    NA       1     1     1    1     1
## 3813    Suc. Belenes    NA      NA    NA    NA   NA     3
## 3814    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3815    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3816    Suc. Belenes     1      NA     1     1   NA     1
## 3817    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3818    Suc. Belenes     1       1    NA    NA   NA    NA
## 3819    Suc. Belenes     2       4     4     2    6     6
## 3820    Suc. Belenes     6       2    11    13    6     8
## 3821    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3822    Suc. Belenes     8       8    40    NA   42    30
## 3823    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3824    Suc. Belenes    35     127    86   206   44   136
## 3825    Suc. Belenes    21      26     9    11   44     2
## 3826    Suc. Belenes    NA      NA    NA     3   NA    NA
## 3827    Suc. Belenes     6       3    NA    NA   NA    NA
## 3828    Suc. Belenes    18      25    32    18   63    42
## 3829    Suc. Belenes   173     271   243   328  370   250
## 3830    Suc. Belenes    25      13    23    15   72    NA
## 3831    Suc. Belenes   112     154   192   165  159   467
## 3832    Suc. Belenes     5       4     4     5    5     4
## 3833    Suc. Belenes     2       3     6     6    3    12
## 3834    Suc. Belenes    12       8    14    10   16    20
## 3835    Suc. Belenes     4       3     5     4    8    NA
## 3836    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3837    Suc. Belenes    NA       2     3     1    1     1
## 3838    Suc. Belenes    NA      NA    NA     1   NA    NA
## 3839    Suc. Belenes     3       1    NA     3    1    NA
## 3840    Suc. Belenes     2       0     0     0    0     0
## 3841    Suc. Belenes    NA       1    NA    NA    1    NA
## 3842    Suc. Belenes    10       5     8    NA    7     3
## 3843    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3844    Suc. Belenes     2      NA     2     2   NA     2
## 3845    Suc. Belenes    NA       1     1     2    1    NA
## 3846    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3847    Suc. Belenes     0       0     0     0    0     0
## 3848    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3849    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3850    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3851    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3852    Suc. Belenes     3       6     3     6    6    NA
## 3853    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3854    Suc. Belenes    NA      NA     4    NA   NA    NA
## 3855    Suc. Belenes     1      NA    NA    NA    1     2
## 3856    Suc. Belenes     1       1     3     1    3     2
## 3857    Suc. Belenes    NA      NA     7     6   12    NA
## 3858    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3859    Suc. Belenes    NA       0    NA     0    0    NA
## 3860    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3861    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3862    Suc. Belenes    NA       6     8     3    6    NA
## 3863    Suc. Belenes    NA      NA     4    NA    4    NA
## 3864    Suc. Belenes     0      NA    NA    NA    1     1
## 3865    Suc. Belenes    NA      NA     3     1    2     4
## 3866    Suc. Belenes     2       2     5     2    7     2
## 3867    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3868    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3869    Suc. Belenes    NA       0    NA     0    0    NA
## 3870    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3871    Suc. Belenes    NA       6    NA     3   NA    NA
## 3872    Suc. Belenes    NA      NA     4    NA   NA    NA
## 3873    Suc. Belenes     1      NA    NA    NA    1     2
## 3874    Suc. Belenes     2      NA    NA     1    1     2
## 3875    Suc. Belenes    NA      NA     7     2   14    NA
## 3876    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3877    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3878    Suc. Belenes    NA       8     3     6   14    NA
## 3879    Suc. Belenes    NA      NA     4    NA    7    NA
## 3880    Suc. Belenes    NA      NA     0    NA    0     0
## 3881    Suc. Belenes     6       4     4    NA    8    NA
## 3882    Suc. Belenes    NA       0    NA     0    0    NA
## 3883    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3884    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3885    Suc. Belenes    NA       6    17    20    8     3
## 3886    Suc. Belenes    NA      NA    NA    NA    7    NA
## 3887    Suc. Belenes     1      NA    NA    NA    1     3
## 3888    Suc. Belenes    NA       1     3     1    2     3
## 3889    Suc. Belenes    15       6    14    15    7    11
## 3890    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3891    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3892    Suc. Belenes    NA       0    NA     0    0    NA
## 3893    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3894    Suc. Belenes    NA      NA     3    NA    3    NA
## 3895    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3896    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3897    Suc. Belenes     2       6     2     2    2     2
## 3898    Suc. Belenes     3       3     3     3    6     3
## 3899    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3900    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3901    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3902    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3903    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3904    Suc. Belenes     6       5     3    NA    6     3
## 3905    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3906    Suc. Belenes     1       1    NA     1   NA    NA
## 3907    Suc. Belenes    NA       2     2    NA    2     2
## 3908    Suc. Belenes     3      NA    NA    NA   NA     0
## 3909    Suc. Belenes     2       2     4     1    2     2
## 3910    Suc. Belenes    NA       6     8     8   11     6
## 3911    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3912    Suc. Belenes    NA       0     0    NA   NA    NA
## 3913    Suc. Belenes    NA       1    NA    NA   NA    NA
## 3914    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3915    Suc. Belenes    NA      NA     4    NA   NA    NA
## 3916    Suc. Belenes     1       1    NA    NA   NA    NA
## 3917    Suc. Belenes     4       8     6     6    8     4
## 3918    Suc. Belenes    NA      NA    NA    NA    3    NA
## 3919    Suc. Belenes    NA      NA    NA    NA    6     6
## 3920    Suc. Belenes     3      NA    NA    NA    3    NA
## 3921    Suc. Belenes     1      NA    NA    NA    1    NA
## 3922    Suc. Belenes     2       6     4     2    8     6
## 3923    Suc. Belenes     4       8    30    NA   34    NA
## 3924    Suc. Belenes    16       5    18     8    8    NA
## 3925    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3926    Suc. Belenes    54      32    32    51   32    44
## 3927    Suc. Belenes     6       6     2    23    2     2
## 3928    Suc. Belenes    NA      NA    NA    17   NA    NA
## 3929    Suc. Belenes    NA      NA     4    53   95    NA
## 3930    Suc. Belenes   123     159   211   162  144    95
## 3931    Suc. Belenes     6      21    NA    30   NA    NA
## 3932    Suc. Belenes     2       6     6    44   25    17
## 3933    Suc. Belenes   110     118   120    76  142    63
## 3934    Suc. Belenes     3       6     3    NA    3    NA
## 3935    Suc. Belenes     2       3     3     1   NA    NA
## 3936    Suc. Belenes     1       3     3     6   NA    NA
## 3937    Suc. Belenes     1       1     1     2    1     1
## 3938    Suc. Belenes    NA      NA    NA    NA    1    NA
## 3939    Suc. Belenes     1      NA     1     3    1     3
## 3940    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3941    Suc. Belenes    NA       2    NA    NA    1     3
## 3942    Suc. Belenes     6       0     7     0    4     4
## 3943    Suc. Belenes    NA       0    NA     1    2    NA
## 3944    Suc. Belenes     2       2    NA     2    9     4
## 3945    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3946    Suc. Belenes     2       2    NA     2    2     2
## 3947    Suc. Belenes     0       0    NA     0    1     1
## 3948    Suc. Belenes     0       0     0     0    0     1
## 3949    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3950    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3951    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3952    Suc. Belenes    NA       4     1     3   NA     3
## 3953    Suc. Belenes    NA      NA     4    11   NA     4
## 3954    Suc. Belenes     0       0     1     0    0     2
## 3955    Suc. Belenes     1      NA    NA    NA   10     2
## 3956    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3957    Suc. Belenes    NA       0     0     2   NA    NA
## 3958    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3959    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3960    Suc. Belenes    NA       1     1     3   NA    NA
## 3961    Suc. Belenes    NA       4     7     7    7    NA
## 3962    Suc. Belenes     0       0     1    NA    0     2
## 3963    Suc. Belenes     1      NA    NA    NA    3     2
## 3964    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3965    Suc. Belenes    NA       0     0     2   NA    NA
## 3966    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3967    Suc. Belenes    NA       1     1     3   NA    NA
## 3968    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3969    Suc. Belenes    NA       0    NA    NA   NA     0
## 3970    Suc. Belenes     1      NA    NA    NA    1     2
## 3971    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3972    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3973    Suc. Belenes    NA      NA    NA     3   NA    NA
## 3974    Suc. Belenes    NA      NA    11    18   11     4
## 3975    Suc. Belenes     0       0     1    NA    0     0
## 3976    Suc. Belenes    NA       2    NA     2    2    NA
## 3977    Suc. Belenes    NA       0     0     2   NA    NA
## 3978    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3979    Suc. Belenes    NA      NA    NA    NA   NA     1
## 3980    Suc. Belenes     3       6     1     8    3    NA
## 3981    Suc. Belenes    NA       4     4    11    4     4
## 3982    Suc. Belenes     0       0     1    NA    0     3
## 3983    Suc. Belenes     1      NA     2    NA    3     2
## 3984    Suc. Belenes     1      NA    NA    NA   NA    NA
## 3985    Suc. Belenes    NA       0     0     2   NA    NA
## 3986    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3987    Suc. Belenes     2      NA    NA     3    8     4
## 3988    Suc. Belenes    NA      NA    NA    NA   NA     0
## 3989    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3990    Suc. Belenes     6       6     6     8   14     8
## 3991    Suc. Belenes     3       3     3     3    9     5
## 3992    Suc. Belenes     2       2    NA     2    3    NA
## 3993    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3994    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3995    Suc. Belenes    15       8    13    11   19    11
## 3996    Suc. Belenes     6       3    13    29   25    16
## 3997    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 3998    Suc. Belenes    11      11    11    11   18    25
## 3999    Suc. Belenes     8      13     8    10   13    18
## 4000    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4001    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4002    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4003    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4004    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4005    Suc. Belenes     4       3     6     1    6     4
## 4006    Suc. Belenes     3       1     1     2    2     2
## 4007    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4008    Suc. Belenes    NA      NA     1     1   NA    NA
## 4009    Suc. Belenes     6      NA     2     4    2     2
## 4010    Suc. Belenes    NA      NA     1     1   NA    NA
## 4011    Suc. Belenes    NA       6    NA     3    6     3
## 4012    Suc. Belenes    NA       3    NA     1    4     3
## 4013    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4014    Suc. Belenes     2       2     1     2    2     3
## 4015    Suc. Belenes    NA      NA     1    NA   NA     4
## 4016    Suc. Belenes    NA      NA    NA     2    4    NA
## 4017    Suc. Belenes     1      NA     1     1    1     1
## 4018    Suc. Belenes    19      19    17    25   19    21
## 4019    Suc. Belenes    31      28    39    48   54    42
## 4020    Suc. Belenes    13      11    15    17   25    13
## 4021    Suc. Belenes     3       2     3     4    5     5
## 4022    Suc. Belenes     8       5    12    12    8    17
## 4023    Suc. Belenes     1      NA     1    NA   NA    NA
## 4024    Suc. Belenes     6       6     8     6    4     6
## 4025    Suc. Belenes     8       3     3    11    6     3
## 4026    Suc. Belenes     6       4     6     6    6     4
## 4027    Suc. Belenes     2       1     1     2    1     1
## 4028    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4029    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4030    Suc. Belenes    66      36    44    61   57    46
## 4031    Suc. Belenes     8       3    NA    NA   NA    NA
## 4032    Suc. Belenes     6      NA     3     6   13    10
## 4033    Suc. Belenes     3       3    16    29    3    13
## 4034    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4035    Suc. Belenes     6      NA     2     3    2    NA
## 4036    Suc. Belenes    90      62    73    93   99    73
## 4037    Suc. Belenes     6      NA     3    NA   NA    NA
## 4038    Suc. Belenes    42      95    74    92  187    88
## 4039    Suc. Belenes    18      60    35    32   28    28
## 4040    Suc. Belenes    NA      NA    NA    NA   NA    11
## 4041    Suc. Belenes    74      55    51    66   53    44
## 4042    Suc. Belenes   123     154   123   161  222   186
## 4043    Suc. Belenes     7       5     6     7   10     9
## 4044    Suc. Belenes    21      20    21    24   27    30
## 4045    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4046    Suc. Belenes     1       1     4     2    1     2
## 4047    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4048    Suc. Belenes     2       2     4     3    2     3
## 4049    Suc. Belenes    NA       1    NA    NA    1    NA
## 4050    Suc. Belenes     6       6     7     7    7     9
## 4051    Suc. Belenes    17       7    10    10    4     8
## 4052    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4053    Suc. Belenes     2      NA    NA     1   NA    NA
## 4054    Suc. Belenes     1       2     2     1    2     3
## 4055    Suc. Belenes     4       4     4     4    5     3
## 4056    Suc. Belenes     2       1     2     1    1     2
## 4057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4058    Suc. Belenes     2      NA     2    NA    2     2
## 4059    Suc. Belenes    NA      NA    NA     1    1     0
## 4060    Suc. Belenes    NA       1    NA    NA    1     1
## 4061    Suc. Belenes     1       1     2     1    2     1
## 4062    Suc. Belenes     1       1     1     1   NA     1
## 4063    Suc. Belenes     1      NA     1     1    1     1
## 4064    Suc. Belenes     0      NA     0     0    0    NA
## 4065    Suc. Belenes     3      NA    NA    NA   NA     3
## 4066    Suc. Belenes     3       3    NA    NA   NA     3
## 4067    Suc. Belenes     3       3     3    NA    5     3
## 4068    Suc. Belenes     3       3    14     3   10    NA
## 4069    Suc. Belenes     2      NA     2     2   NA     2
## 4070    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4071    Suc. Belenes     2       2     8     2    8     6
## 4072    Suc. Belenes    10       3    10     8   13    13
## 4073    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4074    Suc. Belenes     3      NA     4     6   NA    NA
## 4075    Suc. Belenes    NA       7     7    15   11    11
## 4076    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4077    Suc. Belenes     1      NA     0     1   NA     2
## 4078    Suc. Belenes     1       2     2     7    4     4
## 4079    Suc. Belenes     6       5     9     2   10     4
## 4080    Suc. Belenes     2      NA     1    NA    2    NA
## 4081    Suc. Belenes    NA      NA     0     0   NA    NA
## 4082    Suc. Belenes     4       4     8     4    8     4
## 4083    Suc. Belenes    10       3    13    11   16    10
## 4084    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4085    Suc. Belenes    NA      NA     1     4   NA    NA
## 4086    Suc. Belenes     4       7     7    15   18    18
## 4087    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4088    Suc. Belenes     1      NA     0     1    0     2
## 4089    Suc. Belenes     1       2     2     3   NA    NA
## 4090    Suc. Belenes     4       5     8     6    9     6
## 4091    Suc. Belenes     0       2     1    NA    3     2
## 4092    Suc. Belenes    NA      NA     0     0   NA    NA
## 4093    Suc. Belenes     8       2     6     6    8     8
## 4094    Suc. Belenes    10       6    13    11   13    13
## 4095    Suc. Belenes    NA      NA     1     1   NA    NA
## 4096    Suc. Belenes     4       4    11    11   18    14
## 4097    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4098    Suc. Belenes     1      NA     0     0    0     2
## 4099    Suc. Belenes     1       2     2     3    4     2
## 4100    Suc. Belenes     3       4     4     4    6     6
## 4101    Suc. Belenes     2      NA     1     2    0     2
## 4102    Suc. Belenes     1       5     4     3    1     5
## 4103    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4104    Suc. Belenes    NA       3     3     6   NA    NA
## 4105    Suc. Belenes    NA      NA    NA    NA   11    11
## 4106    Suc. Belenes    NA      NA     6     4    4     2
## 4107    Suc. Belenes    NA       3    NA    NA    1    NA
## 4108    Suc. Belenes    NA      NA     0     0   NA    NA
## 4109    Suc. Belenes     8       4    11     8   11     8
## 4110    Suc. Belenes    16      10    13    14   16    10
## 4111    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4112    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4113    Suc. Belenes     8       3     6     4   NA    NA
## 4114    Suc. Belenes     7      11    11    22   25    11
## 4115    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4116    Suc. Belenes     1      NA     1     0    0     2
## 4117    Suc. Belenes     1       2     2     5    6     4
## 4118    Suc. Belenes     6       8     7     4   11     8
## 4119    Suc. Belenes     2      NA     2     2    3     2
## 4120    Suc. Belenes    NA      NA     0     0   NA    NA
## 4121    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4122    Suc. Belenes     7       3     6     8    6     6
## 4123    Suc. Belenes    NA      NA    NA    NA    0    NA
## 4124    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4125    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4126    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4127    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4128    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4129    Suc. Belenes    NA       3    NA    NA   NA    NA
## 4130    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4131    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4132    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4133    Suc. Belenes    NA      NA     3    NA   NA    NA
## 4134    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4135    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4136    Suc. Belenes     6       1     3     3    6     5
## 4137    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4138    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4139    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4140    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4141    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4142    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4143    Suc. Belenes    NA       2     2     2    6     2
## 4144    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4145    Suc. Belenes     3       8     5     8   16     3
## 4146    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4147    Suc. Belenes     3      NA    16    29   41    48
## 4148    Suc. Belenes    NA       5     8     3    9     2
## 4149    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4150    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4151    Suc. Belenes    NA      21    60    53   39    60
## 4152    Suc. Belenes    11      35    63    74   70    92
## 4153    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4154    Suc. Belenes     4       4    17    13   17    13
## 4155    Suc. Belenes     8      17    27    44   42    53
## 4156    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4157    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4158    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4159    Suc. Belenes    NA      NA    NA    NA    3     2
## 4160    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4161    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4162    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4163    Suc. Belenes     1      NA    NA    NA    1     1
## 4164    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4165    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4166    Suc. Belenes     5      NA    NA    NA   NA    NA
## 4167    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4168    Suc. Belenes     3      NA    NA    NA    1     5
## 4169    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4170    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4171    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4172    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4173    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4174    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4175    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4176    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4177    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4178    Suc. Belenes    NA      NA    NA     1    1     1
## 4179    Suc. Belenes    NA      NA    NA    NA   NA     4
## 4180    Suc. Belenes     1       1     1     1    1    NA
## 4181    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4182    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4183    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4184    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4185    Suc. Belenes    NA      NA    NA     1    1     0
## 4186    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4187    Suc. Belenes    NA      NA    NA     1    2    NA
## 4188    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4189    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4190    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4191    Suc. Belenes    NA      NA    NA     1    0     1
## 4192    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4193    Suc. Belenes    NA      NA     1     1    2    NA
## 4194    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4195    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4196    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4197    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4198    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4199    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4200    Suc. Belenes    NA      NA    NA    NA   NA     4
## 4201    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4202    Suc. Belenes    NA      NA    NA     1    1     2
## 4203    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4204    Suc. Belenes     1       1     1     1    1    NA
## 4205    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4206    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4207    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4208    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4209    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4210    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4211    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4212    Suc. Belenes    11      11     8     2   13     4
## 4213    Suc. Belenes    10      13    16     6    6     6
## 4214    Suc. Belenes     5       3     3    NA   NA    NA
## 4215    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4216    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4217    Suc. Belenes     0       0    NA     0   NA     1
## 4218    Suc. Belenes     1       1     1     1    1     1
## 4219    Suc. Belenes     2       1     2     1    1     3
## 4220    Suc. Belenes     0       0     1     0    2    NA
## 4221    Suc. Belenes     1      NA     1     1    1     1
## 4222    Suc. Belenes    NA      NA     1     1    1     1
## 4223    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4224    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4225    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4226    Suc. Belenes    NA       2    NA     2    2     2
## 4227    Suc. Belenes     4       4     4     4    6     2
## 4228    Suc. Belenes     6       6     6     3    6     8
## 4229    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4230    Suc. Belenes     2       4     6     6    8     8
## 4231    Suc. Belenes    NA       2     2     3    2    NA
## 4232    Suc. Belenes    NA      NA    NA    NA    2     1
## 4233    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4234    Suc. Belenes    19      17    19    17   19    19
## 4235    Suc. Belenes     3      NA    NA     3   NA    NA
## 4236    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4237    Suc. Belenes    32      25    25    16   32    32
## 4238    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4239    Suc. Belenes     6       6     6     8    5     5
## 4240    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4241    Suc. Belenes    11       8    11    17   23    23
## 4242    Suc. Belenes    11       8     8    11    6     8
## 4243    Suc. Belenes    49      53    70    77   70    81
## 4244    Suc. Belenes    88      74    74    92   92    70
## 4245    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4246    Suc. Belenes    15      17    25    21   19    25
## 4247    Suc. Belenes    78      59    61    78   72    49
## 4248    Suc. Belenes     3       3     6     9    3     9
## 4249    Suc. Belenes     4       2     5     5    4     4
## 4250    Suc. Belenes     6       8     6     6    6     6
## 4251    Suc. Belenes     2       2     2     2    2     4
## 4252    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4253    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4254    Suc. Belenes    NA      NA     1     1    1     1
## 4255    Suc. Belenes     1      NA    NA     2    4     1
## 4256    Suc. Belenes    NA      NA     0     0    0     0
## 4257    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4258    Suc. Belenes     0       1     1    NA    1     2
## 4259    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4260    Suc. Belenes    NA      NA     0     0    0     0
## 4261    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4262    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4263    Suc. Belenes    NA       2    NA     2    2    NA
## 4264    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4265    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4266    Suc. Belenes     6       3     3     6    6     6
## 4267    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4268    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4269    Suc. Belenes     0       0    NA     0   NA     1
## 4270    Suc. Belenes    NA      NA     0    NA    0    NA
## 4271    Suc. Belenes     1       1     1     1    6     2
## 4272    Suc. Belenes     1       2     1     2    2     2
## 4273    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4274    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4275    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4276    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4277    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4278    Suc. Belenes     0       0    NA     0   NA     0
## 4279    Suc. Belenes     1       1     1     1    2     2
## 4280    Suc. Belenes     1       1     1     1    1     2
## 4281    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4282    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4283    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4284    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4285    Suc. Belenes     0       0    NA     0   NA     1
## 4286    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4287    Suc. Belenes     1       1     1     1    2     2
## 4288    Suc. Belenes     1       1     1     1    1     1
## 4289    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4290    Suc. Belenes    NA      NA     3    NA   NA    NA
## 4291    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4292    Suc. Belenes    NA      NA    NA    NA    2    NA
## 4293    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4294    Suc. Belenes     2       2     4    NA    2     4
## 4295    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4296    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4297    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4298    Suc. Belenes     6       3     3     8    8     8
## 4299    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4300    Suc. Belenes     0       0    NA     0   NA     1
## 4301    Suc. Belenes     0      NA    NA     0   NA     0
## 4302    Suc. Belenes     1       1     1     1    4     2
## 4303    Suc. Belenes     3       1     1     2    2     5
## 4304    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4305    Suc. Belenes    NA      NA    NA    NA    5     3
## 4306    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4307    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4308    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4309    Suc. Belenes     6       8    NA     2    8     8
## 4310    Suc. Belenes     6      NA     6     3   13     6
## 4311    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4312    Suc. Belenes    NA      NA     4     4    4     7
## 4313    Suc. Belenes     3      NA    NA     3    3     3
## 4314    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4315    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4316    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4317    Suc. Belenes    NA      NA    NA    NA    2    NA
## 4318    Suc. Belenes     1      NA     1     1    2     2
## 4319    Suc. Belenes    NA      NA    NA     1    1     1
## 4320    Suc. Belenes     1       1     4     2   NA    NA
## 4321    Suc. Belenes     1       0    NA     0    1     1
## 4322    Suc. Belenes     1      NA    NA     2    1     2
## 4323    Suc. Belenes    NA       2     1     2    1     2
## 4324    Suc. Belenes     6       6     6     8    6     8
## 4325    Suc. Belenes    NA      NA     3     1    2     1
## 4326    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4327    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4328    Suc. Belenes    NA       4    NA    NA   NA     4
## 4329    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4330    Suc. Belenes     6      13    13    15    6     8
## 4331    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4332    Suc. Belenes    13      10    13    19   13    19
## 4333    Suc. Belenes    29      35    57    38   48    67
## 4334    Suc. Belenes     3       5     6     3    5     6
## 4335    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4336    Suc. Belenes     7       7    21    11   25    18
## 4337    Suc. Belenes    46      60   141    77  109   155
## 4338    Suc. Belenes    NA       8    NA    NA    6     2
## 4339    Suc. Belenes    21      40    63    44   49    72
## 4340    Suc. Belenes     1       1     3     3    2     3
## 4341    Suc. Belenes    NA      NA     2     3    3     2
## 4342    Suc. Belenes    NA      NA     1     2    3     2
## 4343    Suc. Belenes     1       3    NA     1    2     1
## 4344    Suc. Belenes     1       1    NA     1   NA    NA
## 4345    Suc. Belenes     1       1    NA     6    2     3
## 4346    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4347    Suc. Belenes     0      NA    NA     0    0     0
## 4348    Suc. Belenes     1       1     1     2    2     2
## 4349    Suc. Belenes     1       2     3     2    5     3
## 4350    Suc. Belenes     2       2    NA    NA    2     4
## 4351    Suc. Belenes    NA       0     0     0    0     0
## 4352    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4353    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4354    Suc. Belenes     2       2     1     2    4     3
## 4355    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4356    Suc. Belenes     3      NA     6     3    3     6
## 4357    Suc. Belenes    NA       0     2     0    1     1
## 4358    Suc. Belenes    NA       1     3     2    5     4
## 4359    Suc. Belenes    NA       1     2     1    1     1
## 4360    Suc. Belenes     2       2     1     2    4     3
## 4361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4362    Suc. Belenes    NA       0     0    NA   NA     0
## 4363    Suc. Belenes    NA       1     1    NA    1    NA
## 4364    Suc. Belenes    NA      NA     1     1    1     1
## 4365    Suc. Belenes     2       2     1     2    4     3
## 4366    Suc. Belenes    NA      NA    NA     3    6    NA
## 4367    Suc. Belenes     0      NA     1     0    1    NA
## 4368    Suc. Belenes     2       1     1     2    3    NA
## 4369    Suc. Belenes     1      NA     1     1    1     1
## 4370    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4371    Suc. Belenes     3       3     6    NA    6     6
## 4372    Suc. Belenes    NA       0    NA    NA   NA     0
## 4373    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4374    Suc. Belenes     2       2     1     2    4     3
## 4375    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4376    Suc. Belenes    NA       3     8     6    6     6
## 4377    Suc. Belenes     0      NA     2     0    2     1
## 4378    Suc. Belenes    NA       1     1    NA    3     4
## 4379    Suc. Belenes     1       2     3     1    2     2
## 4380    Suc. Belenes     1      NA    NA     5    4     3
## 4381    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4382    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4383    Suc. Belenes     2       2     2     4    2     4
## 4384    Suc. Belenes     6      NA     3    16    3     3
## 4385    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4386    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4387    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4388    Suc. Belenes    NA       2     1     2   NA    NA
## 4389    Suc. Belenes    NA       5    NA    NA   NA    NA
## 4390    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4391    Suc. Belenes    NA      NA     1     1   NA     3
## 4392    Suc. Belenes     1       3     1     1   NA     2
## 4393    Suc. Belenes    NA      NA     0    NA   NA    NA
## 4394    Suc. Belenes    NA      NA     1     1    1     4
## 4395    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4396    Suc. Belenes    NA      NA     0     0   NA    NA
## 4397    Suc. Belenes    NA      NA     2     1    1     1
## 4398    Suc. Belenes     6      NA    NA     3   NA     6
## 4399    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4400    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4401    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4402    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4403    Suc. Belenes     2       2     4    NA   NA     2
## 4404    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4405    Suc. Belenes     2       2     6     2   NA     2
## 4406    Suc. Belenes    21      15    42    11    4    19
## 4407    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4408    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4409    Suc. Belenes    63      44   108    19   16    76
## 4410    Suc. Belenes     8       3     9     3    2     9
## 4411    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4412    Suc. Belenes    18      11    28    35    7    28
## 4413    Suc. Belenes    88      60   148    32   28   106
## 4414    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4415    Suc. Belenes    17       2    23    13    4    19
## 4416    Suc. Belenes    49      34    78   283   15    66
## 4417    Suc. Belenes     3      NA     1    NA   NA     3
## 4418    Suc. Belenes     3       2     3    NA    2     3
## 4419    Suc. Belenes    NA       2     4    NA   NA    NA
## 4420    Suc. Belenes     4       1     5    NA   NA    NA
## 4421    Suc. Belenes    NA      NA     1     1    1     1
## 4422    Suc. Belenes    NA       1     1     1   NA    NA
## 4423    Suc. Belenes    NA       1    NA     1   NA     2
## 4424    Suc. Belenes     1       0     1     2    0     0
## 4425    Suc. Belenes    NA       0     1    NA   NA    NA
## 4426    Suc. Belenes     2       2     5     5   NA    NA
## 4427    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4428    Suc. Belenes     0      NA     1    NA   NA    NA
## 4429    Suc. Belenes    NA      NA     0     0    0     0
## 4430    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4431    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4432    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4433    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4434    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4435    Suc. Belenes     3      NA     3    NA   NA     3
## 4436    Suc. Belenes     4       4    15    NA   NA    NA
## 4437    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4438    Suc. Belenes     0      NA    NA    NA    0    NA
## 4439    Suc. Belenes     3       1    NA    NA    1     2
## 4440    Suc. Belenes     1       1     1     1   NA     1
## 4441    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4442    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4443    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4444    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4445    Suc. Belenes    NA      NA     3    NA    3     3
## 4446    Suc. Belenes     4       4    11    NA   NA    NA
## 4447    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4448    Suc. Belenes    NA       0     1     0   NA    NA
## 4449    Suc. Belenes     3       1    NA    NA    1     2
## 4450    Suc. Belenes     1       1    NA     1   NA    NA
## 4451    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4452    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4453    Suc. Belenes     3      NA     6     6   NA    NA
## 4454    Suc. Belenes     1       1    11    NA   NA    NA
## 4455    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4456    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4457    Suc. Belenes     3       1    NA    NA    1     2
## 4458    Suc. Belenes     1      NA    NA     1   NA    NA
## 4459    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4460    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4461    Suc. Belenes     6       3    NA     3   NA     3
## 4462    Suc. Belenes    NA      NA     2     2   NA    NA
## 4463    Suc. Belenes     1      NA    NA     3   NA    NA
## 4464    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4465    Suc. Belenes     2       2    NA    NA   NA    NA
## 4466    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4467    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4468    Suc. Belenes     6      NA     8     3   NA     3
## 4469    Suc. Belenes     4       1    11    NA   NA    NA
## 4470    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4471    Suc. Belenes     0       0     1    NA   NA     0
## 4472    Suc. Belenes     5       1    NA    NA    1     2
## 4473    Suc. Belenes     1       1    NA     3   NA    NA
## 4474    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4475    Suc. Belenes     1       4     1     3    3     3
## 4476    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4477    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4478    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4479    Suc. Belenes    NA      55    NA    NA   NA     4
## 4480    Suc. Belenes    NA     136    NA    NA   NA    NA
## 4481    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4482    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4483    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4484    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4485    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4486    Suc. Belenes    NA      NA     1    NA   11    12
## 4487    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4488    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4489    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4490    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4491    Suc. Belenes    NA      NA     0    NA   NA    NA
## 4492    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4493    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4494    Suc. Belenes    NA      NA    NA     4   NA     6
## 4495    Suc. Belenes    25      42    17    30   32    11
## 4496    Suc. Belenes     3       2    NA     3    2     1
## 4497    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4498    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4499    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4500    Suc. Belenes    NA     127   119   185  227    40
## 4501    Suc. Belenes    NA      NA    NA    NA   NA    76
## 4502    Suc. Belenes   162     479   485   336  707   466
## 4503    Suc. Belenes    35      62    90   102  111    71
## 4504    Suc. Belenes    NA      26    12    27   53    26
## 4505    Suc. Belenes    NA      NA    NA     3   NA    NA
## 4506    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4507    Suc. Belenes    NA     211    70   271  331   257
## 4508    Suc. Belenes   486      NA   750    NA   NA    NA
## 4509    Suc. Belenes    13      42    11    53   53    32
## 4510    Suc. Belenes    53     114    21   114  114   129
## 4511    Suc. Belenes   199     820   691   824   NA   888
## 4512    Suc. Belenes     6       8     4    17   19    32
## 4513    Suc. Belenes    NA      11    11    15   11     9
## 4514    Suc. Belenes    NA      30    20    40   36    12
## 4515    Suc. Belenes    NA      10    20    16   23    15
## 4516    Suc. Belenes    NA      NA     2    NA   NA    NA
## 4517    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4518    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4519    Suc. Belenes    NA      NA    18    NA   NA     1
## 4520    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4521    Suc. Belenes    NA      NA    54    NA   NA    NA
## 4522    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4523    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4524    Suc. Belenes    NA      NA     0    NA   NA    NA
## 4525    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4526    Suc. Belenes    NA      27    11    20   37    17
## 4527    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4528    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4529    Suc. Belenes     5       6    15    16   24    17
## 4530    Suc. Belenes    NA       4    30    11   27    23
## 4531    Suc. Belenes    10       3    NA    NA   NA    NA
## 4532    Suc. Belenes    NA       1     2     1    2    NA
## 4533    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4534    Suc. Belenes    NA      21     3    11   29     6
## 4535    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4536    Suc. Belenes     2       6     7    15   12    16
## 4537    Suc. Belenes    NA      11    NA     1   13    14
## 4538    Suc. Belenes     4      NA    NA    NA   NA    NA
## 4539    Suc. Belenes    NA       1     2     1    2    NA
## 4540    Suc. Belenes    NA      24    17    NA   32     3
## 4541    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4542    Suc. Belenes     5      10    12    15   15    18
## 4543    Suc. Belenes    NA      25    13     1   19    16
## 4544    Suc. Belenes    11       8    NA    NA   NA    NA
## 4545    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4546    Suc. Belenes    NA      NA    NA     3   NA    14
## 4547    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4548    Suc. Belenes    NA      NA     2    NA   11    13
## 4549    Suc. Belenes    NA       1     2     1    2    NA
## 4550    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4551    Suc. Belenes    NA      30    23    23   57    37
## 4552    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4553    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4554    Suc. Belenes     5      15    15    14   37    22
## 4555    Suc. Belenes    NA      13    11    30   23    27
## 4556    Suc. Belenes     8       5    NA    NA   NA    NA
## 4557    Suc. Belenes    NA       1     2     1    2    NA
## 4558    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4559    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4560    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4561    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4562    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4563    Suc. Belenes     8      11    11    17   30    21
## 4564    Suc. Belenes    19      16    10    29   60    29
## 4565    Suc. Belenes    NA      13     5    13   30    10
## 4566    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4567    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4568    Suc. Belenes     3       2     1     1    1     2
## 4569    Suc. Belenes    10       5     6     6   17     6
## 4570    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4571    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4572    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4573    Suc. Belenes     3       3     3     3    5     5
## 4574    Suc. Belenes     7      11     6    14    6     3
## 4575    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4576    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4577    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4578    Suc. Belenes    NA       6     6    14    6    NA
## 4579    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4580    Suc. Belenes     0       0    NA    NA    1    NA
## 4581    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4582    Suc. Belenes     2       1    NA    NA    1    NA
## 4583    Suc. Belenes     2      NA    NA    NA   NA    NA
## 4584    Suc. Belenes     3      NA    NA    NA   NA    NA
## 4585    Suc. Belenes     2       2    NA    NA   NA    NA
## 4586    Suc. Belenes     6      11     2     6    6     4
## 4587    Suc. Belenes    NA       3    NA     3   NA     3
## 4588    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4589    Suc. Belenes     6      13     4    19   15    11
## 4590    Suc. Belenes     2       4    NA     1    2     1
## 4591    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4592    Suc. Belenes    66      66    53    79  119   106
## 4593    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4594    Suc. Belenes   333     523   412   682  644   476
## 4595    Suc. Belenes    30      38    15    53   60    75
## 4596    Suc. Belenes    44      30    45    78   84    98
## 4597    Suc. Belenes    NA      14    14    23   14    42
## 4598    Suc. Belenes     6       8     8    NA   14    NA
## 4599    Suc. Belenes    70     141    70   176  282   141
## 4600    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4601    Suc. Belenes    21      NA    11    27   38    32
## 4602    Suc. Belenes    NA      95    27   106  169   169
## 4603    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4604    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4605    Suc. Belenes    11      11     5    20   10    12
## 4606    Suc. Belenes     8      12    NA    12   14    11
## 4607    Suc. Belenes    10       6    NA    10   18    14
## 4608    Suc. Belenes     7       6     5    12    9     7
## 4609    Suc. Belenes     2       2     3    NA    2    NA
## 4610    Suc. Belenes     3      NA    NA     2   NA    NA
## 4611    Suc. Belenes     3      NA     3    NA   NA    NA
## 4612    Suc. Belenes    16      NA    NA    NA    3    NA
## 4613    Suc. Belenes    NA       2     2     2    4    NA
## 4614    Suc. Belenes    NA       0     0     1   NA    NA
## 4615    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4616    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4617    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4618    Suc. Belenes    NA       3     3     3   NA     6
## 4619    Suc. Belenes     8       2     6    11   14     5
## 4620    Suc. Belenes     6      11     8    14   23    11
## 4621    Suc. Belenes     6      NA    NA    NA   NA    NA
## 4622    Suc. Belenes    NA      18    NA     7   NA     7
## 4623    Suc. Belenes     1      NA    NA    NA    1    NA
## 4624    Suc. Belenes     7       3     2     5   10    12
## 4625    Suc. Belenes     2       2    NA    NA   NA    NA
## 4626    Suc. Belenes    42      55    27    59   66    44
## 4627    Suc. Belenes    25       3    20     5    5     8
## 4628    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4629    Suc. Belenes    NA       2    NA    NA    0    NA
## 4630    Suc. Belenes    NA       3    NA     6   NA     6
## 4631    Suc. Belenes     3      11     6    14   17    11
## 4632    Suc. Belenes     3      NA    NA    NA   NA    NA
## 4633    Suc. Belenes    NA      21    NA     7    4     7
## 4634    Suc. Belenes     5       3    NA     5    7     7
## 4635    Suc. Belenes     2       2    NA    NA   NA    NA
## 4636    Suc. Belenes    21      21    13    30   30    32
## 4637    Suc. Belenes    28       3    28     5    5     5
## 4638    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4639    Suc. Belenes    NA       2    NA    NA    0    NA
## 4640    Suc. Belenes    NA       3     3     6   NA     6
## 4641    Suc. Belenes     8      NA     6     6   12     5
## 4642    Suc. Belenes     3      NA     6    14   17    11
## 4643    Suc. Belenes     6      NA    NA    NA   NA    NA
## 4644    Suc. Belenes    NA      14    NA     4   NA     7
## 4645    Suc. Belenes     1      NA    NA    NA    1    NA
## 4646    Suc. Belenes     5       3     2     5    7    10
## 4647    Suc. Belenes     2       2    NA    NA   NA    NA
## 4648    Suc. Belenes    36      32    17    53   27    44
## 4649    Suc. Belenes    NA       3    53     5    5     8
## 4650    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4651    Suc. Belenes     3       3    NA    NA    3     3
## 4652    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4653    Suc. Belenes    36      15    11    11   32    17
## 4654    Suc. Belenes    NA      NA    25    NA   NA    NA
## 4655    Suc. Belenes    NA       2    NA    NA    0    NA
## 4656    Suc. Belenes    NA       3     3     6   NA     6
## 4657    Suc. Belenes     8       2     6    11   15     5
## 4658    Suc. Belenes     6      14    17    14   23    11
## 4659    Suc. Belenes     6      NA    NA    NA   NA    NA
## 4660    Suc. Belenes    NA      21    NA     7    7     7
## 4661    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4662    Suc. Belenes     5       3     2     8   10    12
## 4663    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4664    Suc. Belenes    57      44    38    80   72    78
## 4665    Suc. Belenes    30       3    28    13   10     8
## 4666    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4667    Suc. Belenes    NA       2    NA    NA    0    NA
## 4668    Suc. Belenes     3       2     2     1    2    NA
## 4669    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4670    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4671    Suc. Belenes     4      15     8     6    6     6
## 4672    Suc. Belenes     6       3     6    10    6     6
## 4673    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4674    Suc. Belenes     3      NA    NA    NA    3    NA
## 4675    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4676    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4677    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4678    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4679    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4680    Suc. Belenes     1       1     1     1    1     1
## 4681    Suc. Belenes     6       7     4     5    4     4
## 4682    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4683    Suc. Belenes     1       1     1    NA    1    NA
## 4684    Suc. Belenes    NA      NA     2     4    2     2
## 4685    Suc. Belenes    NA      NA     1     1    1     1
## 4686    Suc. Belenes     6       6     8    17   11    14
## 4687    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4688    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4689    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4690    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4691    Suc. Belenes    NA      NA     2     2   NA    NA
## 4692    Suc. Belenes     4       2     2    NA    4     4
## 4693    Suc. Belenes     6      11    11    11   11    11
## 4694    Suc. Belenes     8       6     6     2    6     2
## 4695    Suc. Belenes     2       2     1     1    3     2
## 4696    Suc. Belenes     2      NA    NA     2   NA     4
## 4697    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4698    Suc. Belenes    NA      NA    NA    NA    2    NA
## 4699    Suc. Belenes     8       6     4     6    6    13
## 4700    Suc. Belenes    16      13    13    18   18    11
## 4701    Suc. Belenes    NA      NA    NA    NA   NA     6
## 4702    Suc. Belenes    16      10    16    10   29    19
## 4703    Suc. Belenes     2       2     2     2    2     2
## 4704    Suc. Belenes    14      17    14    20   17    14
## 4705    Suc. Belenes    25      18    18    28   25    28
## 4706    Suc. Belenes   123     109   106   120  116   144
## 4707    Suc. Belenes    13       6    11     8    6    11
## 4708    Suc. Belenes    19       6    11    17   11    17
## 4709    Suc. Belenes    36      34    42    46   42    61
## 4710    Suc. Belenes     5       3     4     3    3     4
## 4711    Suc. Belenes     5       4     3     5    3     6
## 4712    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4713    Suc. Belenes     3       2     2     4    4     4
## 4714    Suc. Belenes    NA       1     1    NA   NA    NA
## 4715    Suc. Belenes    NA       1     1     2    2     2
## 4716    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4717    Suc. Belenes     2       1     1     5   NA     4
## 4718    Suc. Belenes     1      NA     0     0    0     0
## 4719    Suc. Belenes     1       1     1     1    1     1
## 4720    Suc. Belenes     2       3     3     3    5     1
## 4721    Suc. Belenes    NA       2    NA     2    2     2
## 4722    Suc. Belenes     1       1    NA     1    0     1
## 4723    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4724    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4725    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4726    Suc. Belenes     0       0     0     0    0     0
## 4727    Suc. Belenes     1      NA     1     1    1     2
## 4728    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4729    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4730    Suc. Belenes    NA      NA    NA    NA    2     1
## 4731    Suc. Belenes     1       2     1     1    1     1
## 4732    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4733    Suc. Belenes    NA       0     0    NA    1     1
## 4734    Suc. Belenes    NA      NA    NA    NA    2     1
## 4735    Suc. Belenes     1       1     1     1    1     1
## 4736    Suc. Belenes    NA       0     0    NA   NA    NA
## 4737    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4738    Suc. Belenes     1       2     1     1    1     1
## 4739    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4740    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4741    Suc. Belenes    NA      NA     1     1    1     1
## 4742    Suc. Belenes    NA       0     0    NA   NA    NA
## 4743    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4744    Suc. Belenes     1       2     1     1    1     1
## 4745    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4746    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4747    Suc. Belenes     2      NA    NA    NA   NA     1
## 4748    Suc. Belenes     1       1     1     1    1     1
## 4749    Suc. Belenes     1       2     2     1    1     1
## 4750    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4751    Suc. Belenes    NA      NA    NA     0   NA    NA
## 4752    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4753    Suc. Belenes    NA       0     0    NA   NA    NA
## 4754    Suc. Belenes    NA      NA    NA    NA    2     1
## 4755    Suc. Belenes     1       2     1     1    1     1
## 4756    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4757    Suc. Belenes     0       0    NA    NA    2     1
## 4758    Suc. Belenes    NA      NA     2     2   NA     1
## 4759    Suc. Belenes     1       1     1     1    1     2
## 4760    Suc. Belenes    NA       0     0    NA   NA    NA
## 4761    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4762    Suc. Belenes     4       6     4     6    4     4
## 4763    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4764    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4765    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4766    Suc. Belenes    NA      NA     4     2    2     4
## 4767    Suc. Belenes    NA       3     3     3    3     6
## 4768    Suc. Belenes     7       4    11    NA   NA     4
## 4769    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4770    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4771    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4772    Suc. Belenes    NA      NA    NA     3   NA    NA
## 4773    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4774    Suc. Belenes    NA       0    NA     0    0     0
## 4775    Suc. Belenes     1      NA     1    NA   NA     1
## 4776    Suc. Belenes     1      NA    NA    NA   NA     1
## 4777    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4778    Suc. Belenes    NA       2     1     3    1     1
## 4779    Suc. Belenes     2       1     1     2    1     1
## 4780    Suc. Belenes     3       3     6     3    3     3
## 4781    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4782    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4783    Suc. Belenes    NA      NA    NA     2   NA     2
## 4784    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4785    Suc. Belenes     6       2     4     4    2     6
## 4786    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4787    Suc. Belenes    NA       4    NA    NA    4    NA
## 4788    Suc. Belenes     2       2     4     2    4     6
## 4789    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4790    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4791    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4792    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4793    Suc. Belenes    24      50    NA    34   34    21
## 4794    Suc. Belenes    NA      NA    NA    NA   NA    25
## 4795    Suc. Belenes    44      73    25    44   79    76
## 4796    Suc. Belenes     2       8     3     5    6     8
## 4797    Suc. Belenes     2       2     2    NA   NA    NA
## 4798    Suc. Belenes    NA      NA    NA    NA    6    17
## 4799    Suc. Belenes    11      63    NA    14   35    21
## 4800    Suc. Belenes   106     130    74   120  109   123
## 4801    Suc. Belenes     4       6     8     4    4    11
## 4802    Suc. Belenes    11       8     2    11   11     6
## 4803    Suc. Belenes    21      55    13    38   30    49
## 4804    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4805    Suc. Belenes     6       9    NA     9    3     3
## 4806    Suc. Belenes    NA       1     1    NA    1     3
## 4807    Suc. Belenes    NA      NA    NA     2    2    NA
## 4808    Suc. Belenes    NA      NA    NA     2    2    NA
## 4809    Suc. Belenes     2       1     2    NA    1     1
## 4810    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4811    Suc. Belenes    NA       1     1     1    1     1
## 4812    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4813    Suc. Belenes     1      NA    NA     1   NA     1
## 4814    Suc. Belenes     1       0     0     0    0     0
## 4815    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4816    Suc. Belenes     4      NA    NA    NA   NA     2
## 4817    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4818    Suc. Belenes    NA      NA    NA    NA    2    NA
## 4819    Suc. Belenes    NA      NA    NA    NA    0     0
## 4820    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4821    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4822    Suc. Belenes     1      NA    NA     1    1    NA
## 4823    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4824    Suc. Belenes     0       0     0     0    0     1
## 4825    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4826    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4827    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4828    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4829    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4830    Suc. Belenes    NA       0     0    NA   NA    NA
## 4831    Suc. Belenes    NA       3    NA     3   NA     4
## 4832    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4833    Suc. Belenes    NA       0    NA     0    0     0
## 4834    Suc. Belenes     1       0    NA    NA    0     0
## 4835    Suc. Belenes    NA       1     1    NA    1     3
## 4836    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4837    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4838    Suc. Belenes    NA       0     0    NA    0     0
## 4839    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4840    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4841    Suc. Belenes    NA       0     0    NA   NA    NA
## 4842    Suc. Belenes    NA       3    NA    NA   NA     4
## 4843    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4844    Suc. Belenes    NA       0    NA     0    0     0
## 4845    Suc. Belenes     0       0    NA     0   NA     0
## 4846    Suc. Belenes    NA       1     1    NA    1     1
## 4847    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4848    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4849    Suc. Belenes    NA       0     0    NA    0     0
## 4850    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4851    Suc. Belenes    NA       0     0    NA   NA    NA
## 4852    Suc. Belenes    NA       3    NA    NA   NA     1
## 4853    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4854    Suc. Belenes    NA       0    NA     0    0     0
## 4855    Suc. Belenes     0       0    NA     0    0     0
## 4856    Suc. Belenes    NA       1     3    NA    1     1
## 4857    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4858    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4859    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4860    Suc. Belenes    NA      NA    NA    NA    6     3
## 4861    Suc. Belenes    NA      NA    NA    NA    0     0
## 4862    Suc. Belenes    NA       0     0    NA    0     0
## 4863    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4864    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4865    Suc. Belenes    NA       0     0    NA   NA    NA
## 4866    Suc. Belenes     3       3     3    NA   NA     4
## 4867    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4868    Suc. Belenes    NA       0    NA     0    0     0
## 4869    Suc. Belenes     1       0     0    NA    0     1
## 4870    Suc. Belenes    NA       1     1     2    1     1
## 4871    Suc. Belenes    NA      NA    NA    NA   NA     1
## 4872    Suc. Belenes     0      NA    NA    NA   NA    NA
## 4873    Suc. Belenes    NA       0     0    NA    0     0
## 4874    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4875    Suc. Belenes    NA       1     1     1   NA     2
## 4876    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4877    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4878    Suc. Belenes     2       4     2     2    2     2
## 4879    Suc. Belenes     3       3     3     3    3     3
## 4880    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4881    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4882    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4883    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4884    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4885    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4886    Suc. Belenes     3       1    NA    NA    1    NA
## 4887    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4888    Suc. Belenes    NA       1    NA     1    1     1
## 4889    Suc. Belenes     2      NA     2    NA   NA    NA
## 4890    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4891    Suc. Belenes     2       1     1     1    1     1
## 4892    Suc. Belenes     6      NA    NA    NA    3    NA
## 4893    Suc. Belenes    NA       0    NA     0    0    NA
## 4894    Suc. Belenes    NA      NA    NA     1   NA    NA
## 4895    Suc. Belenes    NA      NA    NA     2   NA    NA
## 4896    Suc. Belenes    NA      NA     1    NA   NA    NA
## 4897    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4898    Suc. Belenes     2       2     2     2    2     4
## 4899    Suc. Belenes    NA       2    NA    NA   NA    NA
## 4900    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4901    Suc. Belenes    24       5    11    16   13     5
## 4902    Suc. Belenes    NA      NA    NA    NA   NA     3
## 4903    Suc. Belenes    22      16    16    32   41    51
## 4904    Suc. Belenes     2       2     3     3    2     6
## 4905    Suc. Belenes    25      11     7    18   14    14
## 4906    Suc. Belenes    67      46    35    67   70    70
## 4907    Suc. Belenes     6       8     6     4    6     8
## 4908    Suc. Belenes    19      21    21    23   30    30
## 4909    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4910    Suc. Belenes    NA      NA    NA     2   NA     2
## 4911    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4912    Suc. Belenes     1       1     1     1    1     1
## 4913    Suc. Belenes    NA       1    NA    NA   NA    NA
## 4914    Suc. Belenes    NA       1     1     1    2     1
## 4915    Suc. Belenes     2      NA    NA     1    1    NA
## 4916    Suc. Belenes     0       0     0     0    0     0
## 4917    Suc. Belenes    NA       0    NA    NA   NA    NA
## 4918    Suc. Belenes     1       2    NA    NA    0    NA
## 4919    Suc. Belenes    NA      NA    NA    NA   NA     0
## 4920    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4921    Suc. Belenes     0       0     0     0    0     0
## 4922    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4923    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4924    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4925    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4926    Suc. Belenes     0      NA    NA    NA    0    NA
## 4927    Suc. Belenes     1       1     1     2    2     1
## 4928    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4929    Suc. Belenes    NA       0     0    NA   NA    NA
## 4930    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4931    Suc. Belenes     1       3    NA    NA   NA     3
## 4932    Suc. Belenes    NA      NA    NA    NA    0    NA
## 4933    Suc. Belenes     1       1     1     2    2     1
## 4934    Suc. Belenes    NA       0     0    NA   NA    NA
## 4935    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4936    Suc. Belenes    NA      NA    NA     0   NA     0
## 4937    Suc. Belenes     1       1     1     2    2     1
## 4938    Suc. Belenes     1       3    NA    NA   NA    NA
## 4939    Suc. Belenes    NA      NA    NA    NA   NA     2
## 4940    Suc. Belenes    NA       0     0    NA   NA    NA
## 4941    Suc. Belenes     1       3     3     3    3    NA
## 4942    Suc. Belenes    NA       0     0    NA    0    NA
## 4943    Suc. Belenes     1       1     1     2    2     1
## 4944    Suc. Belenes     1      NA    NA    NA   NA    NA
## 4945    Suc. Belenes    NA       0     0    NA   NA    NA
## 4946    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4947    Suc. Belenes     2       3    NA    NA   NA    NA
## 4948    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4949    Suc. Belenes    53      80    15    78    8    34
## 4950    Suc. Belenes    54      38    10    79   13    38
## 4951    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4952    Suc. Belenes     4       7     7     7   NA    NA
## 4953    Suc. Belenes    13      25     5    23    5    15
## 4954    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4955    Suc. Belenes    12      11     8    16   15    14
## 4956    Suc. Belenes    NA      NA    NA    NA    5     5
## 4957    Suc. Belenes     5       5     5     4    7     6
## 4958    Suc. Belenes     1       0    NA    NA   NA    NA
## 4959    Suc. Belenes     3       3     1     3    3     3
## 4960    Suc. Belenes     2       3     2     1   NA     4
## 4961    Suc. Belenes    NA      NA    NA     0   NA     0
## 4962    Suc. Belenes    NA       1    NA     4    2     2
## 4963    Suc. Belenes     2       2    NA    NA   NA    NA
## 4964    Suc. Belenes     2       2     2     1    1     2
## 4965    Suc. Belenes    NA       3     6     8    3     3
## 4966    Suc. Belenes     1       3     1     3    3    NA
## 4967    Suc. Belenes    NA      NA    NA    NA    1     0
## 4968    Suc. Belenes    NA      NA     1     1    1    NA
## 4969    Suc. Belenes    NA      NA     2     1    2     4
## 4970    Suc. Belenes    NA       1     1     1   NA    NA
## 4971    Suc. Belenes     6       4     4     4    4     6
## 4972    Suc. Belenes     6       6     6     4    6     6
## 4973    Suc. Belenes     3       3    NA     3   NA     6
## 4974    Suc. Belenes    23      25    21    21   25    25
## 4975    Suc. Belenes     3       4     3     2    4     4
## 4976    Suc. Belenes     3       5     5     5    5     5
## 4977    Suc. Belenes     2       3     2     3    1     4
## 4978    Suc. Belenes     4      NA     2    NA    4    NA
## 4979    Suc. Belenes     6       4     6     8   11     8
## 4980    Suc. Belenes    NA      NA    NA    NA    1    NA
## 4981    Suc. Belenes     8       6     8    11   13    13
## 4982    Suc. Belenes     5       8     5     3    8     3
## 4983    Suc. Belenes    NA      NA    NA    NA    3     6
## 4984    Suc. Belenes     3       3     3     3    3     3
## 4985    Suc. Belenes    29      23    27    30   20    23
## 4986    Suc. Belenes    11       8     6     6   14    14
## 4987    Suc. Belenes    NA      NA     6    NA   NA    NA
## 4988    Suc. Belenes    21      28    14    21   21    35
## 4989    Suc. Belenes     4       4     7     4    4     4
## 4990    Suc. Belenes    11      15     6     8   23    19
## 4991    Suc. Belenes    97      82    78    89   91   116
## 4992    Suc. Belenes    93      78    82    91   72    87
## 4993    Suc. Belenes    NA      NA     3    NA   NA    NA
## 4994    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 4995    Suc. Belenes    12      11    11    12   13    15
## 4996    Suc. Belenes    12       9     9    11   12    14
## 4997    Suc. Belenes     8       2     6     6    8     8
## 4998    Suc. Belenes    11       9     9     9   10     9
## 4999    Suc. Belenes    NA      NA    NA    NA    2     1
## 5000    Suc. Belenes     2       1     8     7   13     1
## 5001    Suc. Belenes    NA      NA    NA     3    1    NA
## 5002    Suc. Belenes     8       3     5     8    9     7
## 5003    Suc. Belenes     2       0     1     0    1     0
## 5004    Suc. Belenes    NA       1    NA    NA    2     1
## 5005    Suc. Belenes    14       9    20     2   16     7
## 5006    Suc. Belenes     2       3     3     1    2    NA
## 5007    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5008    Suc. Belenes     4      NA     4     4    2     4
## 5009    Suc. Belenes     1       1     1     1    1     0
## 5010    Suc. Belenes     1      NA     1    NA   NA    NA
## 5011    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5012    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5013    Suc. Belenes    NA      NA     1    NA    1     1
## 5014    Suc. Belenes    NA       1     1     2    2     1
## 5015    Suc. Belenes     3      NA     3     5    4     6
## 5016    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5017    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5018    Suc. Belenes     6       3     4    NA   NA    NA
## 5019    Suc. Belenes    NA      NA     2     2   NA    NA
## 5020    Suc. Belenes     1       0    NA    NA   NA    NA
## 5021    Suc. Belenes     5       5     3     2    4     3
## 5022    Suc. Belenes    NA      NA     1    NA    2     2
## 5023    Suc. Belenes     6       4     3     6    4     9
## 5024    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5025    Suc. Belenes    NA       0     0     0   NA    NA
## 5026    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5027    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5028    Suc. Belenes     0       0    NA    NA   NA    NA
## 5029    Suc. Belenes     2       1     1     0    1     2
## 5030    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5031    Suc. Belenes    NA       1     1     3    3     1
## 5032    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5033    Suc. Belenes    NA       0     0     0   NA    NA
## 5034    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5035    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5036    Suc. Belenes     1       0    NA    NA   NA    NA
## 5037    Suc. Belenes     2       0    NA     1    0     2
## 5038    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5039    Suc. Belenes    NA      NA     2    NA    1     1
## 5040    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5041    Suc. Belenes     6       4     3     4   NA     4
## 5042    Suc. Belenes     3       6     3    NA   NA     6
## 5043    Suc. Belenes    NA       4     4     4   NA    NA
## 5044    Suc. Belenes     3       1     1     3    3     2
## 5045    Suc. Belenes     4       2     2     4    2     4
## 5046    Suc. Belenes     5       4     3     6    5     5
## 5047    Suc. Belenes    NA       0     0     0   NA    NA
## 5048    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5049    Suc. Belenes     3       8     1     3    6     6
## 5050    Suc. Belenes     2       4     2     4    4    NA
## 5051    Suc. Belenes     1       0    NA    NA   NA    NA
## 5052    Suc. Belenes     4       3     3     3    5     4
## 5053    Suc. Belenes     4       4     7     6    8     6
## 5054    Suc. Belenes     6       4     3     9    6     9
## 5055    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5056    Suc. Belenes    NA       0     0     0   NA    NA
## 5057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5058    Suc. Belenes     4       6     4     9    6     9
## 5059    Suc. Belenes    NA      NA     0    NA   NA     0
## 5060    Suc. Belenes    NA      NA    NA    NA    5     1
## 5061    Suc. Belenes     2       3     4    NA   NA    NA
## 5062    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5063    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5064    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5065    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5066    Suc. Belenes     2       2     2     2   11     6
## 5067    Suc. Belenes     3       3     3     3   13    13
## 5068    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5069    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5070    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5071    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5072    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5073    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5074    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5075    Suc. Belenes     1      NA    NA     2   NA     1
## 5076    Suc. Belenes     1      NA    NA     2    4     5
## 5077    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5078    Suc. Belenes     2       1     2     2    3     2
## 5079    Suc. Belenes    11      NA    NA    NA   NA    NA
## 5080    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5081    Suc. Belenes     2       1     2     1    1     2
## 5082    Suc. Belenes     6       3     8     6    6     6
## 5083    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5084    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5085    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5086    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5087    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5088    Suc. Belenes     6       2     4     4   NA     8
## 5089    Suc. Belenes     3      NA     6     3    3     3
## 5090    Suc. Belenes     2       6     8     6    6    13
## 5091    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5092    Suc. Belenes    NA      NA    NA     2   NA    NA
## 5093    Suc. Belenes    NA      NA    NA    NA   NA     4
## 5094    Suc. Belenes    48      53    82    69   69    53
## 5095    Suc. Belenes    NA      NA    NA    NA   NA    41
## 5096    Suc. Belenes    60      19    32    29   19    41
## 5097    Suc. Belenes     2       2     3     3    5     3
## 5098    Suc. Belenes    NA      NA    NA     3   NA     3
## 5099    Suc. Belenes    81      85    74    85   81   102
## 5100    Suc. Belenes    85      85    56    70  130    70
## 5101    Suc. Belenes    53      44    93    91  101   101
## 5102    Suc. Belenes    95     123   163   165  169   142
## 5103    Suc. Belenes     4       1     3     3    5     5
## 5104    Suc. Belenes    NA       3     5     3    6     6
## 5105    Suc. Belenes     4       2    NA    NA    2    NA
## 5106    Suc. Belenes     2       1    NA     1    1     2
## 5107    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5108    Suc. Belenes    NA       2     1     1    1     1
## 5109    Suc. Belenes     1       1     1     2   NA    NA
## 5110    Suc. Belenes     2       1     1     2    2     1
## 5111    Suc. Belenes     0       1     0     0    1     1
## 5112    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5113    Suc. Belenes     5       4     2     3    3     4
## 5114    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5115    Suc. Belenes     3      NA     4    NA   NA    NA
## 5116    Suc. Belenes     1      NA    NA    NA   NA     1
## 5117    Suc. Belenes     0       0     1     0    0     0
## 5118    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5119    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5120    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5121    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5122    Suc. Belenes    14       3    NA     3   NA    NA
## 5123    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5124    Suc. Belenes     0      NA    NA    NA    0     0
## 5125    Suc. Belenes     2      NA     2     2    1     1
## 5126    Suc. Belenes     1       4     3     3    2     4
## 5127    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5128    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5129    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5130    Suc. Belenes     3      NA    NA     3   NA    NA
## 5131    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5132    Suc. Belenes    NA       0    NA     0    0    NA
## 5133    Suc. Belenes    NA      NA    NA    NA    1     1
## 5134    Suc. Belenes     1       3     3     3    3     4
## 5135    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5136    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5137    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5138    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5139    Suc. Belenes    NA      NA    NA    NA    1    NA
## 5140    Suc. Belenes    NA      NA    NA    NA    1     1
## 5141    Suc. Belenes     1       3     3     3    2     3
## 5142    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5143    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5144    Suc. Belenes     8      NA    NA     3   NA    NA
## 5145    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5146    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5147    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5148    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5149    Suc. Belenes     3      NA     8     8    3     6
## 5150    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5151    Suc. Belenes    NA      NA     0    NA    0    NA
## 5152    Suc. Belenes     2       2    NA    NA    3     1
## 5153    Suc. Belenes     1       4     3     3    3     5
## 5154    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5155    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5156    Suc. Belenes     4       4     1     3    6     3
## 5157    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5158    Suc. Belenes    NA      11     2     6    8     8
## 5159    Suc. Belenes    NA      10     3     6   10     6
## 5160    Suc. Belenes     3       3     3     3    3     3
## 5161    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5162    Suc. Belenes    NA       0     0    NA    0     0
## 5163    Suc. Belenes    NA       1    NA    NA   NA     1
## 5164    Suc. Belenes     4       3     1     3    4     4
## 5165    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5166    Suc. Belenes    NA       3     3     4    3     4
## 5167    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5168    Suc. Belenes    NA       2     1    NA   NA    NA
## 5169    Suc. Belenes     3       3     3     8    8    NA
## 5170    Suc. Belenes     1       1     1     1    1     1
## 5171    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5172    Suc. Belenes    NA      NA    NA     1    1    NA
## 5173    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5174    Suc. Belenes    NA      NA     2    NA    2     4
## 5175    Suc. Belenes    NA       6    NA     2   NA     2
## 5176    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5177    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5178    Suc. Belenes    11      37    26    34   32    24
## 5179    Suc. Belenes    NA      NA    NA    NA   NA    16
## 5180    Suc. Belenes    10       3     3    13   13    19
## 5181    Suc. Belenes    NA       3     2     2    3     3
## 5182    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5183    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5184    Suc. Belenes    NA      NA    NA     3   NA     6
## 5185    Suc. Belenes     7      18     4    14    4    11
## 5186    Suc. Belenes    35      74    99    28   70   120
## 5187    Suc. Belenes    NA       2     2     4   NA     2
## 5188    Suc. Belenes     4      13     2     2    4     6
## 5189    Suc. Belenes    15      40    57    25   40    74
## 5190    Suc. Belenes    NA      NA     1     1    1     2
## 5191    Suc. Belenes    NA       2     3    NA    3    NA
## 5192    Suc. Belenes     2       2    NA     2    2     2
## 5193    Suc. Belenes    NA      NA     1    NA    1    NA
## 5194    Suc. Belenes    NA       1     1    NA   NA    NA
## 5195    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5196    Suc. Belenes     1      NA     1     1   NA     1
## 5197    Suc. Belenes    NA      NA     0    NA   NA    NA
## 5198    Suc. Belenes     2       3     2     2    1     4
## 5199    Suc. Belenes     0      NA    NA    NA   NA    NA
## 5200    Suc. Belenes    NA      NA     0    NA   NA    NA
## 5201    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5202    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5203    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5204    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5205    Suc. Belenes    NA       4     1     1    1     6
## 5206    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5207    Suc. Belenes    NA       0     0    NA    0     0
## 5208    Suc. Belenes     0      NA    NA    NA    1     0
## 5209    Suc. Belenes     2      NA     2     2    3     3
## 5210    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5211    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5212    Suc. Belenes    NA      NA    NA     0    0    NA
## 5213    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5214    Suc. Belenes    NA       4     1     1    1     3
## 5215    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5216    Suc. Belenes    NA       0     0    NA    0     0
## 5217    Suc. Belenes    NA      NA    NA    NA    1     0
## 5218    Suc. Belenes    NA      NA    NA     2    1     1
## 5219    Suc. Belenes     5      NA    NA     1   NA    NA
## 5220    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5221    Suc. Belenes    NA      NA    NA     0    0    NA
## 5222    Suc. Belenes    NA       1     1     1    1    NA
## 5223    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5224    Suc. Belenes    NA       0     0    NA    0     0
## 5225    Suc. Belenes    NA      NA    NA    NA    1     0
## 5226    Suc. Belenes    NA      NA    NA    NA    1     1
## 5227    Suc. Belenes     5      NA    NA    NA   NA    NA
## 5228    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5229    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5230    Suc. Belenes    NA       3    NA    NA    3     3
## 5231    Suc. Belenes     2       2    NA     2    2    NA
## 5232    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5233    Suc. Belenes    NA      NA    NA     0    0    NA
## 5234    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5235    Suc. Belenes    NA       1     9     1    1     3
## 5236    Suc. Belenes    NA      NA    NA    NA   NA     4
## 5237    Suc. Belenes    NA       0     0    NA    0     0
## 5238    Suc. Belenes    NA      NA    NA    NA    1     0
## 5239    Suc. Belenes    NA       4     2     2    5     3
## 5240    Suc. Belenes    NA      NA    NA     1   NA     1
## 5241    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5242    Suc. Belenes    NA      NA    NA     0    0    NA
## 5243    Suc. Belenes     4       5     6     5    8    11
## 5244    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5245    Suc. Belenes     3       3     3     3    1     3
## 5246    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5247    Suc. Belenes    13      34     2    NA   NA     2
## 5248    Suc. Belenes    13       6     3    NA   10    10
## 5249    Suc. Belenes     4       4    NA    NA    4     7
## 5250    Suc. Belenes     8       8    NA    NA    3     5
## 5251    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5252    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5253    Suc. Belenes     1       1     0     1   NA     1
## 5254    Suc. Belenes    NA      NA     2    NA    1    NA
## 5255    Suc. Belenes    NA       1    NA     1   NA    NA
## 5256    Suc. Belenes    NA       2     2     1   NA    NA
## 5257    Suc. Belenes    NA      NA    11    NA   NA    NA
## 5258    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5259    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5260    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5261    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5262    Suc. Belenes     2       6    NA     2   NA     2
## 5263    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5264    Suc. Belenes     6       2    NA    NA    2     2
## 5265    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5266    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5267    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5268    Suc. Belenes    18      13    13    13   13    13
## 5269    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5270    Suc. Belenes    54      70    29    41  190    48
## 5271    Suc. Belenes    12      17     9    11    9    14
## 5272    Suc. Belenes    NA      11    NA    NA   NA    NA
## 5273    Suc. Belenes    18      18    18    14   11    18
## 5274    Suc. Belenes    77     218    11    67  310   532
## 5275    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5276    Suc. Belenes    17      17    19    13   15    17
## 5277    Suc. Belenes    57      99    36    53   85    66
## 5278    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5279    Suc. Belenes     7       4     1     2    4     7
## 5280    Suc. Belenes     5       6     2     5    5     8
## 5281    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5282    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5283    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5284    Suc. Belenes     1       1    NA     1   NA    NA
## 5285    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5286    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5287    Suc. Belenes     0       0    NA     0   NA    NA
## 5288    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5289    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5290    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5291    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5292    Suc. Belenes    NA       0    NA     0   NA    NA
## 5293    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5294    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5295    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5296    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5297    Suc. Belenes     5       6    NA     6    6    NA
## 5298    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5299    Suc. Belenes     1       1     0     1   NA     1
## 5300    Suc. Belenes     0      NA    NA    NA    1    NA
## 5301    Suc. Belenes     1       1    NA    NA    1     1
## 5302    Suc. Belenes     4      NA     2     2    3     3
## 5303    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5304    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5305    Suc. Belenes     5       4    NA     3   14    NA
## 5306    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5307    Suc. Belenes     1       1     0     0   NA     0
## 5308    Suc. Belenes    NA      NA    NA    NA    1    NA
## 5309    Suc. Belenes     1       1    NA    NA    1     1
## 5310    Suc. Belenes     2       1     3     3    1     3
## 5311    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5312    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5313    Suc. Belenes     2       1    NA    NA    3    NA
## 5314    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5315    Suc. Belenes     1       1     0     1   NA     1
## 5316    Suc. Belenes     1       1    NA    NA    1     1
## 5317    Suc. Belenes     1       1     3     3    2     1
## 5318    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5319    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5320    Suc. Belenes     3       3     3    NA   11    NA
## 5321    Suc. Belenes    NA      NA    NA    NA    4    NA
## 5322    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5323    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5324    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5325    Suc. Belenes     8       9     8     8    6    NA
## 5326    Suc. Belenes    NA      NA    NA    NA    7    NA
## 5327    Suc. Belenes     1       1     0     1   NA     1
## 5328    Suc. Belenes    NA       0    NA    NA    1    NA
## 5329    Suc. Belenes     1       1    NA     4    5     3
## 5330    Suc. Belenes     8       4     3     4    5     3
## 5331    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5332    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5333    Suc. Belenes    NA      NA    NA    NA    4    NA
## 5334    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5335    Suc. Belenes    NA      NA     1     1   NA    NA
## 5336    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5337    Suc. Belenes    15      68     2     4   34    27
## 5338    Suc. Belenes    19      86     3     3   48    38
## 5339    Suc. Belenes    NA      NA     0    NA   NA    NA
## 5340    Suc. Belenes     4      NA    NA    NA    4    NA
## 5341    Suc. Belenes    13      18    NA    13   20    NA
## 5342    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5343    Suc. Belenes    NA      NA     1    NA    1     1
## 5344    Suc. Belenes    NA      NA    NA    NA    1     1
## 5345    Suc. Belenes     2       2     1     2    2     3
## 5346    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5347    Suc. Belenes     4       7     4     3    4     4
## 5348    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5349    Suc. Belenes    NA       2     3     3    6     4
## 5350    Suc. Belenes     4      NA    NA    NA   NA    NA
## 5351    Suc. Belenes    NA       2     1     3    2     2
## 5352    Suc. Belenes    14       8     8    14   14    14
## 5353    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5354    Suc. Belenes    NA      NA     0    NA   NA    NA
## 5355    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5356    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5357    Suc. Belenes     4       4     2     2    2    NA
## 5358    Suc. Belenes    13      13    13    13    6    11
## 5359    Suc. Belenes    NA      NA    NA    NA    2    NA
## 5360    Suc. Belenes    25       8    20     8   25     8
## 5361    Suc. Belenes    14       8    17     6   23    17
## 5362    Suc. Belenes    NA       4     7    NA   14    NA
## 5363    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5364    Suc. Belenes    11      11     8     4   11     8
## 5365    Suc. Belenes     1       2     1     1    1     2
## 5366    Suc. Belenes     2       2     3    NA    2     3
## 5367    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5368    Suc. Belenes     4       2     2    NA    4     4
## 5369    Suc. Belenes     3      NA    NA     3   NA    NA
## 5370    Suc. Belenes    NA      NA     2    NA    4    NA
## 5371    Suc. Belenes    57      51    53    46   42    51
## 5372    Suc. Belenes    32      32    29    18   32    11
## 5373    Suc. Belenes    29      29    29    19   25    38
## 5374    Suc. Belenes    25      19    29    19   32    32
## 5375    Suc. Belenes    NA      NA    NA     2   NA    NA
## 5376    Suc. Belenes     9      18     9     8    8    11
## 5377    Suc. Belenes     3       2    NA     2   NA     3
## 5378    Suc. Belenes    31      34    42    31   51    34
## 5379    Suc. Belenes     6       6    11     6   17    11
## 5380    Suc. Belenes    81      95    88    70   95    70
## 5381    Suc. Belenes   222     194   229   173  229   194
## 5382    Suc. Belenes     3      NA     3     3    2     2
## 5383    Suc. Belenes     2       4     2     4   NA     4
## 5384    Suc. Belenes    40      36    42    25   38    30
## 5385    Suc. Belenes    87      80    76    70  104    97
## 5386    Suc. Belenes     4       3     3     2    4     4
## 5387    Suc. Belenes     6       5    11    NA    5     3
## 5388    Suc. Belenes     2       2     6    NA    6     4
## 5389    Suc. Belenes     4       3     3     1    4     3
## 5390    Suc. Belenes    NA       1     1    NA   NA    NA
## 5391    Suc. Belenes     1       1     1     1    1     1
## 5392    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5393    Suc. Belenes    NA       1     1     1    1     1
## 5394    Suc. Belenes     2       1     1     1    1     1
## 5395    Suc. Belenes     4       1     1     3    2     2
## 5396    Suc. Belenes     1       2     2     1    1     3
## 5397    Suc. Belenes     3       3     4     6    2     4
## 5398    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5399    Suc. Belenes     4       2    NA    NA    2    NA
## 5400    Suc. Belenes     0       1     0     0    0     0
## 5401    Suc. Belenes    NA      NA    NA    NA    2    NA
## 5402    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5403    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5404    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5405    Suc. Belenes     4       0     1     1    1     0
## 5406    Suc. Belenes    NA      NA    NA    NA    3    NA
## 5407    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5408    Suc. Belenes     4      NA     2    NA   11    NA
## 5409    Suc. Belenes     2       1     4     2    3     2
## 5410    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5411    Suc. Belenes    NA      NA     3    NA    3     3
## 5412    Suc. Belenes     1       4     4    NA    7     4
## 5413    Suc. Belenes     0       1     0     1    1     1
## 5414    Suc. Belenes     0       2     0     1    1     0
## 5415    Suc. Belenes     1       3     1     2    4     5
## 5416    Suc. Belenes     1       2    NA    NA    1     1
## 5417    Suc. Belenes    NA       0     1     0   NA    NA
## 5418    Suc. Belenes    NA      NA    NA    NA    8     2
## 5419    Suc. Belenes     2       1     4     2    3     2
## 5420    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5421    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5422    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5423    Suc. Belenes     0       1     0     0    0     1
## 5424    Suc. Belenes     0       1    NA     0    1    NA
## 5425    Suc. Belenes     1       3     1     2    2     3
## 5426    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5427    Suc. Belenes    NA       0     1     0   NA    NA
## 5428    Suc. Belenes     2      NA     4     2   NA     2
## 5429    Suc. Belenes     2       4     4     2    3     2
## 5430    Suc. Belenes    NA      NA    NA    NA    3     3
## 5431    Suc. Belenes     1       4     4    NA    4     4
## 5432    Suc. Belenes     0       1     0     1    1     1
## 5433    Suc. Belenes    NA       1    NA     0   NA    NA
## 5434    Suc. Belenes     3       1     1     2    2     5
## 5435    Suc. Belenes    NA       1    NA    NA    1    NA
## 5436    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5437    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5438    Suc. Belenes    NA       6    NA     3    3     3
## 5439    Suc. Belenes     7       4     4    11    4     4
## 5440    Suc. Belenes     0       0    NA    NA    1    NA
## 5441    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5442    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5443    Suc. Belenes    NA       0     1     0   NA    NA
## 5444    Suc. Belenes     2      NA     2     2    4     4
## 5445    Suc. Belenes     2       4     4     2    3     2
## 5446    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5447    Suc. Belenes    NA      NA    NA     2   NA    NA
## 5448    Suc. Belenes     3      NA     6    NA    8     8
## 5449    Suc. Belenes    11       7     7     7   11     4
## 5450    Suc. Belenes     2       1     2     1    1     2
## 5451    Suc. Belenes     0       2    NA     1    1     1
## 5452    Suc. Belenes     1       1     3     2    2     3
## 5453    Suc. Belenes     1       3    NA     1    1    NA
## 5454    Suc. Belenes    NA       0     1     0   NA    NA
## 5455    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5456    Suc. Belenes     3       4     9     3    8     3
## 5457    Suc. Belenes    NA      NA    NA     3   NA    NA
## 5458    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5459    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5460    Suc. Belenes     2      15     6     6    4     8
## 5461    Suc. Belenes     3      10     6    13    3    25
## 5462    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5463    Suc. Belenes    NA       3     3    NA    3     3
## 5464    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5465    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5466    Suc. Belenes    NA      11    NA    NA   NA    NA
## 5467    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5468    Suc. Belenes     2       3     2     2    1     2
## 5469    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5470    Suc. Belenes     1      NA     1     1    1     1
## 5471    Suc. Belenes    NA       2     1     1    1     1
## 5472    Suc. Belenes    NA       8    NA     3   NA    NA
## 5473    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5474    Suc. Belenes    NA      NA     2    NA   NA     2
## 5475    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5476    Suc. Belenes    NA      NA    NA     2   NA    NA
## 5477    Suc. Belenes     2       2     2     2    2     2
## 5478    Suc. Belenes    NA      NA    NA    NA    1    NA
## 5479    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5480    Suc. Belenes    NA      NA    NA    NA   NA     6
## 5481    Suc. Belenes    24      21    34    32   26    24
## 5482    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5483    Suc. Belenes    76      38    89   162   16   114
## 5484    Suc. Belenes     9       8    12    11    5     8
## 5485    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5486    Suc. Belenes    NA      18     7    21   14    14
## 5487    Suc. Belenes   208     166   183   208  180   201
## 5488    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5489    Suc. Belenes    13       2    15     8   11    17
## 5490    Suc. Belenes    85      80   120   161   44   120
## 5491    Suc. Belenes     1       2     1     2    2     3
## 5492    Suc. Belenes    NA      NA     2     3    3     2
## 5493    Suc. Belenes    NA       1     2     2    2     2
## 5494    Suc. Belenes     1       1     1     1    2     1
## 5495    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5496    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5497    Suc. Belenes     2       0     0     0    0     0
## 5498    Suc. Belenes     3       1    NA    NA    1    NA
## 5499    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5500    Suc. Belenes     0      NA    NA    NA   NA     0
## 5501    Suc. Belenes     0       0     0     0    0     0
## 5502    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5503    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5504    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5505    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5506    Suc. Belenes     3       6    NA     6    3     6
## 5507    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5508    Suc. Belenes     0       0     0     1    0     1
## 5509    Suc. Belenes     2       1     2     3    3     2
## 5510    Suc. Belenes    NA      NA     1     1   NA     1
## 5511    Suc. Belenes    NA      NA    NA     0    0     0
## 5512    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5513    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5514    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5515    Suc. Belenes    NA       4    NA     7    4     4
## 5516    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5517    Suc. Belenes     0       0     0     1    0     1
## 5518    Suc. Belenes     2       1     2     5    1     4
## 5519    Suc. Belenes    NA      NA     1     1   NA     1
## 5520    Suc. Belenes    NA      NA    NA     0    0     0
## 5521    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5522    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5523    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5524    Suc. Belenes     0       0     0     1    1     1
## 5525    Suc. Belenes     2       1     2     3    1     2
## 5526    Suc. Belenes    NA       3     1     1   NA     1
## 5527    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5528    Suc. Belenes    NA      NA     3    NA    6    NA
## 5529    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5530    Suc. Belenes    NA      NA    NA     0    0     0
## 5531    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5532    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5533    Suc. Belenes     3       6     3    NA   NA     3
## 5534    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5535    Suc. Belenes     1       1     0     1    0     1
## 5536    Suc. Belenes     2       1     2     7    1     2
## 5537    Suc. Belenes    NA      NA     1     1   NA     1
## 5538    Suc. Belenes    NA      NA    NA     0    0     0
## 5539    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5540    Suc. Belenes     1       1     1     1    2     3
## 5541    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5542    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5543    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5544    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5545    Suc. Belenes    11      13     8     2    4     8
## 5546    Suc. Belenes    13      13    13     3    6    13
## 5547    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5548    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5549    Suc. Belenes     5       8     5     3   NA     5
## 5550    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5551    Suc. Belenes     1       1     1    NA   NA     1
## 5552    Suc. Belenes     1       3     1    NA    1     1
## 5553    Suc. Belenes     3       3     3     1    2     3
## 5554    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5555    Suc. Belenes     4       2     2    NA    1    NA
## 5556    Suc. Belenes    NA      NA    NA     2   NA     2
## 5557    Suc. Belenes     2       2    NA     2    1     1
## 5558    Suc. Belenes     3       6     8     3    6    17
## 5559    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5560    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5561    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5562    Suc. Belenes    NA      NA    NA    NA    1     1
## 5563    Suc. Belenes     1       1    NA    NA   NA    NA
## 5564    Suc. Belenes     6       2     6    NA   NA     4
## 5565    Suc. Belenes    13      13    17    19   19    19
## 5566    Suc. Belenes     3       2     2     3    3     2
## 5567    Suc. Belenes    28      31    37    37   37    42
## 5568    Suc. Belenes     6      17    20    28   17    14
## 5569    Suc. Belenes    NA      NA    NA    NA    4    NA
## 5570    Suc. Belenes     5       3     2     3    5     2
## 5571    Suc. Belenes    13       8    11    21   15     6
## 5572    Suc. Belenes     1       4     7     4    6     5
## 5573    Suc. Belenes     3       2     3     3    3    NA
## 5574    Suc. Belenes     6       6     4     6    4     4
## 5575    Suc. Belenes    NA      NA     6    NA   NA    NA
## 5576    Suc. Belenes     4       4     4     6    2     4
## 5577    Suc. Belenes    NA      NA     1     1   NA    NA
## 5578    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5579    Suc. Belenes    37      58    74    69   61    18
## 5580    Suc. Belenes    NA      NA    NA    NA   NA    79
## 5581    Suc. Belenes    22      16    35    10   16    13
## 5582    Suc. Belenes     9      14     9    14   12    11
## 5583    Suc. Belenes     3       2     2     2    2     3
## 5584    Suc. Belenes    37      62    73    NA   99    37
## 5585    Suc. Belenes    14      14    17    37   54     6
## 5586    Suc. Belenes    21      49   120    42   63   109
## 5587    Suc. Belenes    60      77   106    42   42   113
## 5588    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5589    Suc. Belenes    38      36    66    11   44    30
## 5590    Suc. Belenes   110      99   169   216    2   104
## 5591    Suc. Belenes     5       5    21    NA    8     9
## 5592    Suc. Belenes     6       3     5     6    8     9
## 5593    Suc. Belenes     6       4     6     4    4     8
## 5594    Suc. Belenes     3       3     2     3    6     2
## 5595    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5596    Suc. Belenes     1      NA    NA     1    1     1
## 5597    Suc. Belenes     1       1     1     1   NA    NA
## 5598    Suc. Belenes     4      NA    NA     4   NA    NA
## 5599    Suc. Belenes    NA       1     1    NA    1     1
## 5600    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5601    Suc. Belenes     3       1     2     1    0     1
## 5602    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5603    Suc. Belenes     6       5     7     2    6     2
## 5604    Suc. Belenes     2       2     2     4    2     2
## 5605    Suc. Belenes     0       1     1     1    0     1
## 5606    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5607    Suc. Belenes     0       0    NA    NA    0     0
## 5608    Suc. Belenes     1      NA     1     2    2     1
## 5609    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5610    Suc. Belenes    NA       6    11     6    3     3
## 5611    Suc. Belenes     1       1     1     1   NA     1
## 5612    Suc. Belenes     0      NA    NA    NA    3    NA
## 5613    Suc. Belenes    NA       1     4     2    5     3
## 5614    Suc. Belenes     3       4     3     3    1     1
## 5615    Suc. Belenes    NA       0     0     0   NA    NA
## 5616    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5617    Suc. Belenes    NA      NA     3    NA   NA    NA
## 5618    Suc. Belenes     0       0     0    NA   NA     0
## 5619    Suc. Belenes    NA      NA    NA    NA    1    NA
## 5620    Suc. Belenes    NA       1    NA    NA    1     1
## 5621    Suc. Belenes    NA       0     0     0   NA    NA
## 5622    Suc. Belenes    NA      NA    NA     3   NA    NA
## 5623    Suc. Belenes     1       1     1    NA   NA     1
## 5624    Suc. Belenes    NA      NA    NA    NA    3    NA
## 5625    Suc. Belenes    NA       1    NA    NA    1     1
## 5626    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5627    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5628    Suc. Belenes    NA       3    14     8    6     6
## 5629    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5630    Suc. Belenes     2       2     2     6    8     4
## 5631    Suc. Belenes     1       3     5     4    1     4
## 5632    Suc. Belenes    NA       0     0     0   NA    NA
## 5633    Suc. Belenes     3       3    14    11    6     6
## 5634    Suc. Belenes     1       1     1    NA   NA     1
## 5635    Suc. Belenes    NA      NA     0    NA    3     0
## 5636    Suc. Belenes    NA       5     4    NA    9     5
## 5637    Suc. Belenes     4       5     2     1    1     3
## 5638    Suc. Belenes    NA       0     0     0   NA    NA
## 5639    Suc. Belenes    NA      NA    NA    NA    1    NA
## 5640    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5641    Suc. Belenes     1       6     5    NA    6    NA
## 5642    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5643    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5644    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5645    Suc. Belenes     4       4     2     2    2     2
## 5646    Suc. Belenes     3       6     3     3    3     3
## 5647    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5648    Suc. Belenes     4      NA    NA    NA   NA    NA
## 5649    Suc. Belenes    NA       3    NA    NA   NA    NA
## 5650    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5651    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5652    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5653    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5654    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5655    Suc. Belenes     2      NA     1     6    7     3
## 5656    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5657    Suc. Belenes     2       2    NA     4    6     1
## 5658    Suc. Belenes    NA      NA     2    NA   NA    NA
## 5659    Suc. Belenes     3       1     2     1    1     1
## 5660    Suc. Belenes     8       6     8     6    8    NA
## 5661    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5662    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5663    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5664    Suc. Belenes     8       8     2     6    4     8
## 5665    Suc. Belenes    NA      NA    NA     5    2    NA
## 5666    Suc. Belenes    14      11     6     8    8    11
## 5667    Suc. Belenes    13       8    11    15    6    11
## 5668    Suc. Belenes    NA       2     2     2    2     2
## 5669    Suc. Belenes     4       6     2     4    8    11
## 5670    Suc. Belenes    NA       4     2     4    6     2
## 5671    Suc. Belenes    NA      NA    NA    NA   NA    11
## 5672    Suc. Belenes    85      63    66    79   71    74
## 5673    Suc. Belenes    NA      NA    NA    NA   NA    13
## 5674    Suc. Belenes    76      32    79    79   38    60
## 5675    Suc. Belenes     5       2     5    12   11    14
## 5676    Suc. Belenes    11      25    23    23   23    28
## 5677    Suc. Belenes   155     180   173   162  236   247
## 5678    Suc. Belenes   148     159   169   204  144   204
## 5679    Suc. Belenes    25      55    38    57   66    82
## 5680    Suc. Belenes    82     118   139   319  239   251
## 5681    Suc. Belenes     5       5     4     8    7     7
## 5682    Suc. Belenes     3       5     8     8    8    12
## 5683    Suc. Belenes     4       8     2     6    6     6
## 5684    Suc. Belenes     9       8    10     7    9    11
## 5685    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5686    Suc. Belenes     1       1     2     1    1     1
## 5687    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5688    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5689    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5690    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5691    Suc. Belenes     1       0     0     0    0     0
## 5692    Suc. Belenes    NA      NA    NA    NA    2    NA
## 5693    Suc. Belenes     5       7    16     7   11    NA
## 5694    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5695    Suc. Belenes     4      NA     2    NA    4     2
## 5696    Suc. Belenes    NA       0     1    NA    1    NA
## 5697    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5698    Suc. Belenes     0       0     0     0    0     0
## 5699    Suc. Belenes     2      NA     1     3    1     1
## 5700    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5701    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5702    Suc. Belenes    NA       3    NA     3    8     3
## 5703    Suc. Belenes     0      NA    NA    NA   12     0
## 5704    Suc. Belenes    NA       2    NA    10   15     3
## 5705    Suc. Belenes    13      NA     3     3   18     4
## 5706    Suc. Belenes    NA       1     1     1    1     1
## 5707    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5708    Suc. Belenes     3      NA    NA    NA    8    NA
## 5709    Suc. Belenes    NA       0    NA    NA    0    NA
## 5710    Suc. Belenes     2      NA    NA    10   19     1
## 5711    Suc. Belenes     3      NA     1     4   14     4
## 5712    Suc. Belenes    NA       1     1     1    1     1
## 5713    Suc. Belenes    NA      NA    NA    NA    6    NA
## 5714    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5715    Suc. Belenes    NA      NA    NA    NA    8    NA
## 5716    Suc. Belenes     4       4    NA    NA   NA    NA
## 5717    Suc. Belenes    NA      NA    NA    NA   12    NA
## 5718    Suc. Belenes    NA      NA    NA    10   17     3
## 5719    Suc. Belenes     3      NA     3     1   11     4
## 5720    Suc. Belenes     1       3    NA    NA    1    NA
## 5721    Suc. Belenes    NA       3    NA     6   NA    NA
## 5722    Suc. Belenes    NA      NA    NA    NA    3    NA
## 5723    Suc. Belenes    NA      NA     2    NA   13     2
## 5724    Suc. Belenes     4       3     3     3    3     3
## 5725    Suc. Belenes    NA       1     1     1    1     1
## 5726    Suc. Belenes    NA      NA    NA    NA    6    NA
## 5727    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5728    Suc. Belenes    NA       3     3     3    8    NA
## 5729    Suc. Belenes     4       7    NA    NA   NA    NA
## 5730    Suc. Belenes    NA      NA     0     0   24    NA
## 5731    Suc. Belenes    NA      NA    NA    10   11     1
## 5732    Suc. Belenes    15      10     5     4   37     4
## 5733    Suc. Belenes    NA       1     1     1    1     1
## 5734    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5735    Suc. Belenes    NA       8    NA     2    5     6
## 5736    Suc. Belenes    NA      NA     2    NA   NA     1
## 5737    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5738    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5739    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5740    Suc. Belenes     2      59    NA    NA   NA    NA
## 5741    Suc. Belenes     3      NA    NA    NA   NA    NA
## 5742    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5743    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5744    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5745    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5746    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5747    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5748    Suc. Belenes    NA      NA    NA    NA    0    NA
## 5749    Suc. Belenes     2      NA    NA     4   NA    NA
## 5750    Suc. Belenes    NA       2    NA     2   NA    NA
## 5751    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5752    Suc. Belenes     2       4     2     6    4     2
## 5753    Suc. Belenes    NA      NA     2    NA   NA     1
## 5754    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5755    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5756    Suc. Belenes     2       2    NA     2    4    NA
## 5757    Suc. Belenes     6       6     4     8   NA     2
## 5758    Suc. Belenes    NA       5     8     5   NA     3
## 5759    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5760    Suc. Belenes    82     146   403   269  314   913
## 5761    Suc. Belenes     9      30     2    26   17    20
## 5762    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5763    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5764    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5765    Suc. Belenes    NA      21    11    14   77    35
## 5766    Suc. Belenes   176     384   613   574  659    NA
## 5767    Suc. Belenes     4       4     4     6   NA    NA
## 5768    Suc. Belenes    11       8    11    34   42    27
## 5769    Suc. Belenes   178     182   414   321  454   924
## 5770    Suc. Belenes     4       3     2     4   NA     1
## 5771    Suc. Belenes    NA       2     2     2   NA    NA
## 5772    Suc. Belenes    NA      NA     2     2   NA    NA
## 5773    Suc. Belenes     1      NA     2     2   NA     1
## 5774    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5775    Suc. Belenes    NA      NA    NA     4   NA    NA
## 5776    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5777    Suc. Belenes     0       0    NA    NA   NA    NA
## 5778    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5779    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5780    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5781    Suc. Belenes     0       0    NA    NA    0    NA
## 5782    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5783    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5784    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5785    Suc. Belenes    NA      NA     8     6   NA    14
## 5786    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5787    Suc. Belenes    NA      NA    NA    NA    0    NA
## 5788    Suc. Belenes    NA       2     2    NA   NA     4
## 5789    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5790    Suc. Belenes    NA      NA     1    NA   NA     0
## 5791    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5792    Suc. Belenes    NA       3    NA    NA   NA     3
## 5793    Suc. Belenes    NA      18    NA    NA   NA    NA
## 5794    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5795    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5796    Suc. Belenes    NA      NA    NA    NA   NA     4
## 5797    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5798    Suc. Belenes    NA      NA     1    NA   NA     0
## 5799    Suc. Belenes     3      NA    NA    NA   NA    NA
## 5800    Suc. Belenes    NA      18    NA    NA   NA    NA
## 5801    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5802    Suc. Belenes    NA       0    NA    NA   NA    NA
## 5803    Suc. Belenes    NA      NA    NA    NA   NA     4
## 5804    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5805    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5806    Suc. Belenes    NA      NA    NA    NA   NA    10
## 5807    Suc. Belenes    NA      NA    NA     3   NA     8
## 5808    Suc. Belenes    NA       2     4    NA   NA    NA
## 5809    Suc. Belenes    NA      NA     1    NA   NA     0
## 5810    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5811    Suc. Belenes    NA       3     6     6   NA    NA
## 5812    Suc. Belenes    NA      18    NA    NA   NA    NA
## 5813    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5814    Suc. Belenes     0      NA    NA    NA    0    NA
## 5815    Suc. Belenes     2       2     4    NA   NA     4
## 5816    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5817    Suc. Belenes    NA      NA     1    NA   NA     0
## 5818    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5819    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5820    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5821    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5822    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5823    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5824    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5825    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5826    Suc. Belenes     4      19     4     4    2     2
## 5827    Suc. Belenes     6       6    10     6    6     3
## 5828    Suc. Belenes    NA       3    NA     3    3     3
## 5829    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5830    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5831    Suc. Belenes    NA       1    NA    NA   NA    NA
## 5832    Suc. Belenes     3       1    NA    NA    5     3
## 5833    Suc. Belenes     2      NA    NA    NA    3    NA
## 5834    Suc. Belenes    NA      NA    NA    NA    3    NA
## 5835    Suc. Belenes    NA       0     0    NA   NA    NA
## 5836    Suc. Belenes     1      NA     1     2    1     2
## 5837    Suc. Belenes     4       7     1     5    5     7
## 5838    Suc. Belenes    NA       0    NA     0    1     0
## 5839    Suc. Belenes    NA       2     1     3    3     4
## 5840    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5841    Suc. Belenes     0      NA    NA    NA   NA    NA
## 5842    Suc. Belenes     2       1     2     1    2     1
## 5843    Suc. Belenes     3      NA     6     8   11     8
## 5844    Suc. Belenes     0       0     0     0    0    NA
## 5845    Suc. Belenes     1       1     1     1    1    NA
## 5846    Suc. Belenes     1      NA     2     1    1     3
## 5847    Suc. Belenes    NA       2    NA    NA   NA    NA
## 5848    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5849    Suc. Belenes    NA       2     2     4    2    NA
## 5850    Suc. Belenes     2      NA     1    NA   NA    NA
## 5851    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5852    Suc. Belenes    11      11     8    11   13    11
## 5853    Suc. Belenes     3       3     6     6    8    11
## 5854    Suc. Belenes     6       3     3     6    6     6
## 5855    Suc. Belenes    NA       2     2     2    3     2
## 5856    Suc. Belenes    15      11     8    17   15    13
## 5857    Suc. Belenes     2       2     3     3    2     2
## 5858    Suc. Belenes    NA       3     2     3    2     2
## 5859    Suc. Belenes    NA      NA     1     1    4    NA
## 5860    Suc. Belenes     8       4     6     4    6     4
## 5861    Suc. Belenes     2      NA    NA    NA   NA     2
## 5862    Suc. Belenes    NA      NA    NA     6    6     6
## 5863    Suc. Belenes    NA      NA     2    NA   NA    NA
## 5864    Suc. Belenes     2       2     2     4    2     2
## 5865    Suc. Belenes    NA       2     1    NA    2    NA
## 5866    Suc. Belenes    NA       2     2     3    2     2
## 5867    Suc. Belenes     1      NA     2     2    2    NA
## 5868    Suc. Belenes     2       2    NA     2    6    27
## 5869    Suc. Belenes    95      66   135    13   87    NA
## 5870    Suc. Belenes    NA      NA    NA    NA    6    38
## 5871    Suc. Belenes    54      44    67    51   41    44
## 5872    Suc. Belenes    12      18    32    11   14    33
## 5873    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5874    Suc. Belenes    23      31    48    11   48    34
## 5875    Suc. Belenes    31      31    28    45   39    31
## 5876    Suc. Belenes     4      35    56    18   67    42
## 5877    Suc. Belenes   225     194   257   321  391   461
## 5878    Suc. Belenes    NA      NA    NA    NA   NA     3
## 5879    Suc. Belenes     4       4     4     4    2     4
## 5880    Suc. Belenes    21      23    40    13   25    46
## 5881    Suc. Belenes    78      74    72   108   95   148
## 5882    Suc. Belenes     9       6     9     9    6     6
## 5883    Suc. Belenes     5       7     4     6    6     5
## 5884    Suc. Belenes     6       3     5     5    9     5
## 5885    Suc. Belenes     2       6     4     4    8     2
## 5886    Suc. Belenes     3       3     3     4    3     3
## 5887    Suc. Belenes    NA      NA     1    NA   NA    NA
## 5888    Suc. Belenes     1       1     1     2    3     3
## 5889    Suc. Belenes     2      NA     1     1    2     2
## 5890    Suc. Belenes     1      NA     1     3    3     3
## 5891    Suc. Belenes     1      NA    NA    NA   NA    NA
## 5892    Suc. Belenes     4       0     1     1    1     1
## 5893    Suc. Belenes    NA      NA    NA    NA    0    NA
## 5894    Suc. Belenes    10       4     5     6    7     6
## 5895    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5896    Suc. Belenes     4       2     2     6    4    NA
## 5897    Suc. Belenes     0       1    NA     1    0     2
## 5898    Suc. Belenes     3       3     1     4    4     3
## 5899    Suc. Belenes     1       4     1     3    1     2
## 5900    Suc. Belenes     2       1     1     1    1     1
## 5901    Suc. Belenes     2      NA    NA     2    1    NA
## 5902    Suc. Belenes     1       1     1     2    2     1
## 5903    Suc. Belenes     2       1     1     1    1     2
## 5904    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5905    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5906    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5907    Suc. Belenes     5       3     5     5    3     5
## 5908    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5909    Suc. Belenes     1       3     4     6   NA     9
## 5910    Suc. Belenes     7       4    NA     1   11     4
## 5911    Suc. Belenes    NA       0     0    NA   NA    NA
## 5912    Suc. Belenes    NA      NA    NA    NA    1     1
## 5913    Suc. Belenes     1      NA     3     1    3     2
## 5914    Suc. Belenes     1       2     2     1    3     1
## 5915    Suc. Belenes    NA       0     1    NA    0    NA
## 5916    Suc. Belenes     2       2     3     2    5     2
## 5917    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5918    Suc. Belenes     1      NA     4     4   NA     6
## 5919    Suc. Belenes     4      NA    NA     1    4     4
## 5920    Suc. Belenes    NA       0     0    NA   NA    NA
## 5921    Suc. Belenes    NA      NA    NA    NA    1     1
## 5922    Suc. Belenes     1      NA     1     1    3     2
## 5923    Suc. Belenes     1      NA     1     1    3     1
## 5924    Suc. Belenes    NA       0     1    NA    0    NA
## 5925    Suc. Belenes     5       2     3     2    5     2
## 5926    Suc. Belenes     1      NA     1     1   NA     1
## 5927    Suc. Belenes     4      NA    NA     1    4    NA
## 5928    Suc. Belenes    NA       0     0    NA   NA    NA
## 5929    Suc. Belenes    NA      NA    NA    NA    1     1
## 5930    Suc. Belenes     1       2     1     1    3     2
## 5931    Suc. Belenes     1       1     1     1    1     1
## 5932    Suc. Belenes     1       2     1     1    1     3
## 5933    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5934    Suc. Belenes    NA      NA     8     8    3    14
## 5935    Suc. Belenes     4       4     4    NA   11     4
## 5936    Suc. Belenes    NA      NA     0    NA    0    NA
## 5937    Suc. Belenes     2      NA     2    NA   NA    NA
## 5938    Suc. Belenes     1      NA     3     1    3    NA
## 5939    Suc. Belenes    NA       0     1    NA    0    NA
## 5940    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5941    Suc. Belenes     5       2     5     8   10     5
## 5942    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5943    Suc. Belenes     1       8    12     9    3    15
## 5944    Suc. Belenes    11       7    NA     1   11     4
## 5945    Suc. Belenes    NA       0     0    NA   NA    NA
## 5946    Suc. Belenes     0       0    NA     0    3     1
## 5947    Suc. Belenes     1      NA     3     1    3     2
## 5948    Suc. Belenes     3       3     2     3    3     2
## 5949    Suc. Belenes    NA       0     1    NA    0    NA
## 5950    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5951    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5952    Suc. Belenes     3       7     2     3   10     6
## 5953    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5954    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5955    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5956    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5957    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5958    Suc. Belenes     2       8     2    NA    2    NA
## 5959    Suc. Belenes     3       6     3    NA    3     3
## 5960    Suc. Belenes    NA       5    NA    NA   NA    NA
## 5961    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5962    Suc. Belenes     1      NA     1    NA   NA    NA
## 5963    Suc. Belenes    NA      NA    NA     1   NA    NA
## 5964    Suc. Belenes     1      NA     2    NA   NA    NA
## 5965    Suc. Belenes    NA      NA    NA    NA   NA     0
## 5966    Suc. Belenes    NA       1     1    NA    1     1
## 5967    Suc. Belenes    NA       2     1    NA    1     1
## 5968    Suc. Belenes     6       6     6     6    6     6
## 5969    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 5970    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5971    Suc. Belenes    NA      NA     1    NA    1    NA
## 5972    Suc. Belenes    NA      NA    NA    NA   NA     1
## 5973    Suc. Belenes    NA       6    NA    NA   NA    NA
## 5974    Suc. Belenes     6       4     2     4    4     2
## 5975    Suc. Belenes    23      23    27    25   25    32
## 5976    Suc. Belenes    NA      NA    NA    NA   NA     2
## 5977    Suc. Belenes    17      14    14    23   14    14
## 5978    Suc. Belenes    31      39    45    34   45    25
## 5979    Suc. Belenes    NA      NA    NA    NA   NA     4
## 5980    Suc. Belenes    21      15    21    21   25    21
## 5981    Suc. Belenes     4       4     3     3    2     2
## 5982    Suc. Belenes     3       2     3     2    2    NA
## 5983    Suc. Belenes     8      13    NA     6    8    11
## 5984    Suc. Belenes     8       3     8     8    6     3
## 5985    Suc. Belenes     2       2     2     6    4     4
## 5986    Suc. Belenes     1       1     3     1    1     1
## 5987    Suc. Belenes     0      NA    NA    NA   NA    NA
## 5988    Suc. Belenes    40      38    44    36   55    42
## 5989    Suc. Belenes    26      29    29    24   29    21
## 5990    Suc. Belenes    NA      NA    NA    NA   NA    13
## 5991    Suc. Belenes    54      44    67    51   51    44
## 5992    Suc. Belenes    17      15    12     9   14     9
## 5993    Suc. Belenes     2      NA    NA    NA   NA    NA
## 5994    Suc. Belenes    25      28    17    28   14    17
## 5995    Suc. Belenes     8       3    17    NA   NA     3
## 5996    Suc. Belenes   162     127   159   113  151   137
## 5997    Suc. Belenes   190     173   208   176  190   204
## 5998    Suc. Belenes     4       8    11    13   15     6
## 5999    Suc. Belenes    38      30    38    34   40    30
## 6000    Suc. Belenes    91      89   116    68   70    78
## 6001    Suc. Belenes     7       7    10     9    9     6
## 6002    Suc. Belenes     3       3     4     6    6     3
## 6003    Suc. Belenes     4       2     4     2    4     2
## 6004    Suc. Belenes    NA      NA     1    NA   NA     1
## 6005    Suc. Belenes    NA      NA     1     1    1    NA
## 6006    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6007    Suc. Belenes     1       2    NA     3    1    NA
## 6008    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6009    Suc. Belenes     1      NA     0     0   NA    NA
## 6010    Suc. Belenes     1       1     2     1    2     1
## 6011    Suc. Belenes     3       0     3     2    2     3
## 6012    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6013    Suc. Belenes    NA       2     4    NA    2     2
## 6014    Suc. Belenes     1       0     1     1    1     0
## 6015    Suc. Belenes    NA      NA     0    NA    0    NA
## 6016    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6017    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6018    Suc. Belenes     2       2     6     2   NA     4
## 6019    Suc. Belenes    NA      NA     3    NA   NA    NA
## 6020    Suc. Belenes     7       7     4    NA    1     3
## 6021    Suc. Belenes     0      NA     2    NA   NA    NA
## 6022    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6023    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6024    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6025    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6026    Suc. Belenes    NA      NA     4    NA    1     3
## 6027    Suc. Belenes    NA      NA    NA    NA    0    NA
## 6028    Suc. Belenes    NA       1     2    NA   NA    NA
## 6029    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6030    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6031    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6032    Suc. Belenes    NA      NA     4    NA    1     3
## 6033    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6034    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6035    Suc. Belenes    NA       3     6    NA   NA    NA
## 6036    Suc. Belenes     4       4    NA    NA   NA    NA
## 6037    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6038    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6039    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6040    Suc. Belenes     2       4     4    NA    4     4
## 6041    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6042    Suc. Belenes    NA      NA     8    NA   NA    NA
## 6043    Suc. Belenes    11       4     4    NA    4     3
## 6044    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6045    Suc. Belenes    NA       1    NA    NA    2    NA
## 6046    Suc. Belenes     2      NA    NA    NA   NA    NA
## 6047    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6048    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6049    Suc. Belenes     2       1     1     1    3     1
## 6050    Suc. Belenes     6       6     6     8    8     8
## 6051    Suc. Belenes     3      NA    NA     1   NA    NA
## 6052    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6053    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6054    Suc. Belenes     4      17     2     3    4     6
## 6055    Suc. Belenes     3      13     3     5    3     6
## 6056    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6057    Suc. Belenes    NA       5    NA     3    3     3
## 6058    Suc. Belenes     1       1    NA    NA   NA    NA
## 6059    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6060    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6061    Suc. Belenes    NA       1     1     1   NA    NA
## 6062    Suc. Belenes    NA       9    NA    NA    3     4
## 6063    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6064    Suc. Belenes    NA       2     2     2    2     2
## 6065    Suc. Belenes     2      NA     2    NA   NA    NA
## 6066    Suc. Belenes     2       2     2     1    2     1
## 6067    Suc. Belenes    11       8    14    14   14    11
## 6068    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6069    Suc. Belenes     2       2    NA     2   NA    NA
## 6070    Suc. Belenes     4       2    NA     2   NA     2
## 6071    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6072    Suc. Belenes    25      21    19    30   19    19
## 6073    Suc. Belenes    17      14    20    23   17    25
## 6074    Suc. Belenes    17      11    11    14   17    20
## 6075    Suc. Belenes    NA       3     2    NA    2     2
## 6076    Suc. Belenes    21      21    19    19   17    21
## 6077    Suc. Belenes     2       1     2     2    2     3
## 6078    Suc. Belenes     2       3     2     5   NA     3
## 6079    Suc. Belenes     2       1     1     1    1     2
## 6080    Suc. Belenes     4       2     4     2    4     6
## 6081    Suc. Belenes    14      11     8    11    8    11
## 6082    Suc. Belenes     4       4     6     6    6     8
## 6083    Suc. Belenes    46      38    42    44   40    46
## 6084    Suc. Belenes    51      51    51    60   41    51
## 6085    Suc. Belenes    29      41    38    44   35    35
## 6086    Suc. Belenes    12       9     6     6    6     8
## 6087    Suc. Belenes    65      79    65    85   82    93
## 6088    Suc. Belenes     6       8    11    14   20    14
## 6089    Suc. Belenes   123     109   127   127  127   144
## 6090    Suc. Belenes   102      92    95   106  123   130
## 6091    Suc. Belenes     6       6     4     2    6     4
## 6092    Suc. Belenes    44      40    49    57   57    46
## 6093    Suc. Belenes    32      30    42    51   32    44
## 6094    Suc. Belenes    10       9     9    10   10    10
## 6095    Suc. Belenes    17      12    11    11   12    12
## 6096    Suc. Belenes     5       3     4     3    5     5
## 6097    Suc. Belenes     1       1     1     1    2     1
## 6098    Suc. Belenes     1      NA    NA     1   NA    NA
## 6099    Suc. Belenes     1       3     1    NA    3     4
## 6100    Suc. Belenes     5       2    NA    NA   NA    NA
## 6101    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6102    Suc. Belenes     1       2     2     0    0     0
## 6103    Suc. Belenes    NA      NA    NA    NA    0    NA
## 6104    Suc. Belenes     3       3     5     4    4     6
## 6105    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6106    Suc. Belenes     2       4     6     8    4     8
## 6107    Suc. Belenes     1       1     1     1    1     0
## 6108    Suc. Belenes     1       1     2    NA    1    NA
## 6109    Suc. Belenes    NA       1     3    NA   NA    NA
## 6110    Suc. Belenes    NA       4     2     4    2     2
## 6111    Suc. Belenes    NA       1     1    NA    1    NA
## 6112    Suc. Belenes     0       0     0     1    0     0
## 6113    Suc. Belenes     5       3     4     3    3     5
## 6114    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6115    Suc. Belenes     4       1     2     3    2     2
## 6116    Suc. Belenes     3       3     3    NA    3    NA
## 6117    Suc. Belenes    NA       4     5     9    5    11
## 6118    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6119    Suc. Belenes    NA      NA     0     0   NA    NA
## 6120    Suc. Belenes     1       1     1     1    1     1
## 6121    Suc. Belenes     3       3     1     3    1     4
## 6122    Suc. Belenes    NA       0    NA     0   NA    NA
## 6123    Suc. Belenes     2       1     2     3    2     2
## 6124    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6125    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6126    Suc. Belenes     3       1     1     1    1     1
## 6127    Suc. Belenes    NA       0    NA     0   NA    NA
## 6128    Suc. Belenes     2       1     2     3    2     2
## 6129    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6130    Suc. Belenes     1       1     1     1    1     1
## 6131    Suc. Belenes    NA       6     3     1    4     2
## 6132    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6133    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6134    Suc. Belenes    NA       0    NA     0   NA    NA
## 6135    Suc. Belenes     4       4     2     3    2     2
## 6136    Suc. Belenes     3      NA    NA     3   NA     6
## 6137    Suc. Belenes     5       9     9    12    7    12
## 6138    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6139    Suc. Belenes     0       0    NA    NA    1     0
## 6140    Suc. Belenes     1       1     1     1    1     1
## 6141    Suc. Belenes     6       8     8     6    6     7
## 6142    Suc. Belenes    NA       0    NA     0   NA    NA
## 6143    Suc. Belenes     1       2     1    NA   NA    NA
## 6144    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6145    Suc. Belenes     4       6     8     7    6     9
## 6146    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6147    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6148    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6149    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6150    Suc. Belenes     6       8     2     2    2     4
## 6151    Suc. Belenes     6       3     3     3    3     6
## 6152    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6153    Suc. Belenes    NA      NA    NA    NA   NA     3
## 6154    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6155    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6156    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6157    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6158    Suc. Belenes     1      NA    NA    NA   NA     1
## 6159    Suc. Belenes     5       4     3     3    3     3
## 6160    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6161    Suc. Belenes     1       1     1     1    1     1
## 6162    Suc. Belenes     0      NA    NA    NA   NA    NA
## 6163    Suc. Belenes     2       1     1     1    1     1
## 6164    Suc. Belenes     3       3     6     6   NA     8
## 6165    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6166    Suc. Belenes    NA       4    NA    NA   NA    NA
## 6167    Suc. Belenes     2       4    NA    NA   NA    NA
## 6168    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6169    Suc. Belenes     2       8    NA     4    4     6
## 6170    Suc. Belenes     6       6     6     8    8     8
## 6171    Suc. Belenes     2      NA     1    NA    1     1
## 6172    Suc. Belenes    NA       4    NA     2    4     4
## 6173    Suc. Belenes    NA      NA     4    NA   NA     2
## 6174    Suc. Belenes    NA      NA    NA     2   NA    NA
## 6175    Suc. Belenes    55      53    48    48   53    34
## 6176    Suc. Belenes    NA      NA    NA     3   NA    29
## 6177    Suc. Belenes    48      48    54    57   35    54
## 6178    Suc. Belenes     6       9     3    12    2    11
## 6179    Suc. Belenes    20      11    15    15   18     8
## 6180    Suc. Belenes    NA       3    11    11   NA    NA
## 6181    Suc. Belenes    56      56    42    42   49    53
## 6182    Suc. Belenes   180     222   187   236  162   440
## 6183    Suc. Belenes    NA      NA    NA     2   NA    NA
## 6184    Suc. Belenes     2       4    NA     4    4     6
## 6185    Suc. Belenes    19      19    21    25   17    23
## 6186    Suc. Belenes    70      68    72   110   49    74
## 6187    Suc. Belenes     3       3     2     2    2     1
## 6188    Suc. Belenes     2       3     2     3    2     6
## 6189    Suc. Belenes    NA       2    NA     2    4     2
## 6190    Suc. Belenes     3       2     1     1    1    NA
## 6191    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6192    Suc. Belenes    NA       1     1     1    1     1
## 6193    Suc. Belenes    NA      NA    NA     1    1    NA
## 6194    Suc. Belenes     1      NA     1    NA   NA     1
## 6195    Suc. Belenes     2       0     0     0    1     0
## 6196    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6197    Suc. Belenes     3       2     1     3    2     1
## 6198    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6199    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6200    Suc. Belenes     0       0     0     0    0     0
## 6201    Suc. Belenes     1       1     1     1    3     1
## 6202    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6203    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6204    Suc. Belenes     2       2    NA    NA   NA    NA
## 6205    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6206    Suc. Belenes     0       2     0     2    1     1
## 6207    Suc. Belenes    NA       6     6    NA    8     3
## 6208    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6209    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6210    Suc. Belenes     1       1     2     1    2     2
## 6211    Suc. Belenes    NA      NA     1     3   NA    NA
## 6212    Suc. Belenes     1       1     1     1   NA     1
## 6213    Suc. Belenes    NA      NA    NA     0    0     0
## 6214    Suc. Belenes    NA       0     1     0    0     0
## 6215    Suc. Belenes     2       2    NA    NA   NA    NA
## 6216    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6217    Suc. Belenes     0       2     0     2    1     1
## 6218    Suc. Belenes    NA       3    NA     3   NA    NA
## 6219    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6220    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6221    Suc. Belenes     1       0     1     1    1     2
## 6222    Suc. Belenes    NA      NA     1     3   NA    NA
## 6223    Suc. Belenes     1       1     1     1    1     1
## 6224    Suc. Belenes    NA      NA    NA     0    0     0
## 6225    Suc. Belenes    NA       0     1     0    0     0
## 6226    Suc. Belenes     2       2    NA    NA   NA    NA
## 6227    Suc. Belenes     0       2     0     2    1     1
## 6228    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6229    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6231    Suc. Belenes     1       0     2     1    1     1
## 6232    Suc. Belenes    NA      NA     1     3    2     2
## 6233    Suc. Belenes     1       1     1     1    1     1
## 6234    Suc. Belenes    NA      NA    NA     0    0     0
## 6235    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6236    Suc. Belenes     3       3    NA    NA   NA    NA
## 6237    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6238    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6239    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6240    Suc. Belenes    NA       0     1     0    0     0
## 6241    Suc. Belenes     2       2    NA    NA   NA    NA
## 6242    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6243    Suc. Belenes     0       2     0     2    1     1
## 6244    Suc. Belenes    NA       3     6     3    8    NA
## 6245    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6246    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6247    Suc. Belenes     1      NA     2     1    2     1
## 6248    Suc. Belenes     2       2     1     5    2    NA
## 6249    Suc. Belenes     3       2     2     2    3     2
## 6250    Suc. Belenes    NA      NA    NA     0    0     0
## 6251    Suc. Belenes    NA       0     1     0    0     0
## 6252    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6253    Suc. Belenes     2       4     1     1    6     6
## 6254    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6255    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6256    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6257    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6258    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6259    Suc. Belenes     4      11     2     6    6     6
## 6260    Suc. Belenes     6       6     3    10   13     6
## 6261    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6262    Suc. Belenes    NA       3    NA    NA   NA    NA
## 6263    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6264    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6265    Suc. Belenes    NA      NA    NA     1    1     2
## 6266    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6267    Suc. Belenes    NA      NA    NA     1    1     1
## 6268    Suc. Belenes     3       2     3     6    4     4
## 6269    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6270    Suc. Belenes    NA       1    NA     1    1     2
## 6271    Suc. Belenes     2      NA     2     4   NA    NA
## 6272    Suc. Belenes     0      NA    NA    NA   NA    NA
## 6273    Suc. Belenes     2      NA     1     1    1     1
## 6274    Suc. Belenes     8       3     8    14    6     6
## 6275    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6276    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6277    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6278    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6279    Suc. Belenes    NA       2     2     6   NA     4
## 6280    Suc. Belenes    15       8     4    13    4    11
## 6281    Suc. Belenes    NA       2    NA     2    2     2
## 6282    Suc. Belenes     8       3     6     8    3     6
## 6283    Suc. Belenes     8       8     6     8    6     8
## 6284    Suc. Belenes    NA       1     1     1    2     1
## 6285    Suc. Belenes    NA      NA     2    NA   NA    NA
## 6286    Suc. Belenes     2      NA     2     4    2     6
## 6287    Suc. Belenes     2       2    NA    NA    2     2
## 6288    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6289    Suc. Belenes    71      74    66    95   71    50
## 6290    Suc. Belenes    16      10    10    10    6    35
## 6291    Suc. Belenes    54      54    54    73   38    63
## 6292    Suc. Belenes    24      15    14    18   20    17
## 6293    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6294    Suc. Belenes    20      17    11    17   11    17
## 6295    Suc. Belenes    34      20    31    42   31    39
## 6296    Suc. Belenes    92      74    70    88   81    95
## 6297    Suc. Belenes   222     176   169   225  240   324
## 6298    Suc. Belenes    NA      NA     2     2   NA     2
## 6299    Suc. Belenes    27      27    25    30   30    27
## 6300    Suc. Belenes    66      72    78    72   72    82
## 6301    Suc. Belenes    13      11    11    16   15    17
## 6302    Suc. Belenes     5       3     3     3    8     8
## 6303    Suc. Belenes     2       6     2     4    4     8
## 6304    Suc. Belenes     2       4     2     5    3     3
## 6305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6306    Suc. Belenes     1       1     1     1    3     1
## 6307    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6308    Suc. Belenes     1      NA    NA    NA   NA     1
## 6309    Suc. Belenes     1      NA     0     0    0     0
## 6310    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6311    Suc. Belenes     3       1     2     3    3     2
## 6312    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6313    Suc. Belenes    NA       2    NA    NA   NA    NA
## 6314    Suc. Belenes     0       0    NA    NA   NA    NA
## 6315    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6316    Suc. Belenes     0       0     0     0    0     0
## 6317    Suc. Belenes     1       1    NA    NA   NA    NA
## 6318    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6319    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6320    Suc. Belenes     5       2    NA    NA   NA    NA
## 6321    Suc. Belenes     1       8     3     6    6     6
## 6322    Suc. Belenes    NA      NA    NA     0    1     0
## 6323    Suc. Belenes     1      NA    NA    NA    2     1
## 6324    Suc. Belenes     2       1     2     5    1     3
## 6325    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6326    Suc. Belenes    NA       0     0    NA   NA    NA
## 6327    Suc. Belenes     2       2    NA    NA   NA    NA
## 6328    Suc. Belenes     1      NA    NA     3    6    NA
## 6329    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6330    Suc. Belenes     1      NA    NA    NA   NA     1
## 6331    Suc. Belenes     1       1     1     4   NA     1
## 6332    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6333    Suc. Belenes    NA       0     0    NA   NA    NA
## 6334    Suc. Belenes     2       2    NA    NA   NA    NA
## 6335    Suc. Belenes     1      NA    NA    NA    3    NA
## 6336    Suc. Belenes    NA      NA    NA    NA    1    NA
## 6337    Suc. Belenes     1      NA    NA    NA   NA     1
## 6338    Suc. Belenes     1       1     1     1   NA    NA
## 6339    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6340    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6341    Suc. Belenes    NA       3     8     3    3     3
## 6342    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6343    Suc. Belenes     3      NA    NA     4   NA     1
## 6344    Suc. Belenes    NA       0     0    NA   NA    NA
## 6345    Suc. Belenes     6       3    NA    NA   NA    NA
## 6346    Suc. Belenes     1       3     6     3    3     6
## 6347    Suc. Belenes     2      NA     2     0    1     1
## 6348    Suc. Belenes     1      NA     2     2    2     3
## 6349    Suc. Belenes     3       1     2     4   NA     4
## 6350    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6351    Suc. Belenes    NA       0     0    NA   NA    NA
## 6352    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6353    Suc. Belenes     4       3     1     4    9     3
## 6354    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6355    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6356    Suc. Belenes     2       4     6     2    2     2
## 6357    Suc. Belenes    NA      NA    10     3    3     3
## 6358    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6359    Suc. Belenes    NA      NA     3    NA   NA    NA
## 6360    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6362    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6363    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6364    Suc. Belenes     4       2     1     3    5     7
## 6365    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6366    Suc. Belenes     1       1    NA    NA   NA     1
## 6367    Suc. Belenes    NA      NA     2    NA   NA    NA
## 6368    Suc. Belenes    NA      NA     1    NA   NA     1
## 6369    Suc. Belenes    NA      NA    NA    NA    6     6
## 6370    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6371    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6372    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6373    Suc. Belenes     4       2     2     4    2     2
## 6374    Suc. Belenes    13       4     6    13   13     8
## 6375    Suc. Belenes    17      11    17    14   20    17
## 6376    Suc. Belenes    19      23    17    17   19    21
## 6377    Suc. Belenes     2       1    NA    NA    1     1
## 6378    Suc. Belenes    NA       2     2     3    3    NA
## 6379    Suc. Belenes     2       2     4     2    2     6
## 6380    Suc. Belenes    NA       8    11    NA    8     3
## 6381    Suc. Belenes     2       4     2     4    4     4
## 6382    Suc. Belenes    NA       2    NA    NA   NA    NA
## 6383    Suc. Belenes    61      50    42    71   50    66
## 6384    Suc. Belenes    NA      NA    NA    NA   NA     3
## 6385    Suc. Belenes    32      35    60    63   57    48
## 6386    Suc. Belenes    12      14    11    20   18    17
## 6387    Suc. Belenes    48      51    39    54   54    59
## 6388    Suc. Belenes    14      14     6    14   11    11
## 6389    Suc. Belenes    95      53    56    85  109    99
## 6390    Suc. Belenes   144     137   151   180  127   155
## 6391    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6392    Suc. Belenes    59      36    44    55   49    49
## 6393    Suc. Belenes    61      72    85    91   74    89
## 6394    Suc. Belenes     7       9     9     9   11    13
## 6395    Suc. Belenes     5       8     6     5    8    11
## 6396    Suc. Belenes     6       6     4     8    6     4
## 6397    Suc. Belenes     9       8     7     7    7     9
## 6398    Suc. Belenes    NA      NA     1    NA   NA     1
## 6399    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6400    Suc. Belenes     1      NA     1     1    3     3
## 6401    Suc. Belenes     2      NA     0     0    0     0
## 6402    Suc. Belenes    NA      NA    NA    NA    0    NA
## 6403    Suc. Belenes     7       3     2     5    5     7
## 6404    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6405    Suc. Belenes     4       4     4     4    6     2
## 6406    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6407    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6408    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6409    Suc. Belenes     0       0     0    NA   NA     0
## 6410    Suc. Belenes     1       1     3     3    1     3
## 6411    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6412    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6413    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6414    Suc. Belenes     8       8    NA     8    8    14
## 6415    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6416    Suc. Belenes     2       1     1     1    4     3
## 6417    Suc. Belenes     3       1     1     3    1     1
## 6418    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6419    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6420    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6421    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6422    Suc. Belenes     2       1     1     1   NA     1
## 6423    Suc. Belenes    NA      NA    NA    NA    1    NA
## 6424    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6425    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6426    Suc. Belenes     2       1     1     1   NA     1
## 6427    Suc. Belenes    NA      NA    NA    NA    1    NA
## 6428    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6429    Suc. Belenes     3      NA     6    NA   NA     3
## 6430    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6431    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6432    Suc. Belenes    NA      NA    NA    NA    0    NA
## 6433    Suc. Belenes    NA      NA    NA    NA    2    NA
## 6434    Suc. Belenes     3       1     1     3    1     1
## 6435    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6436    Suc. Belenes     6       2     4     4    6     2
## 6437    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6438    Suc. Belenes    14       8     8     8   20    11
## 6439    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6440    Suc. Belenes     0       0     1    NA   NA     1
## 6441    Suc. Belenes     2       1     1     1    4     5
## 6442    Suc. Belenes     3       2     3     3    1     3
## 6443    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6444    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6445    Suc. Belenes     1      10     5     6    8     6
## 6446    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6447    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6448    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6449    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6450    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6451    Suc. Belenes     2       2     6     2    2     8
## 6452    Suc. Belenes     3       3    16     3    3    10
## 6453    Suc. Belenes    NA      NA    NA    NA   NA     5
## 6454    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6455    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6456    Suc. Belenes    NA      NA    NA     1    1    NA
## 6457    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6458    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6459    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6460    Suc. Belenes     1      NA    NA     0   NA    NA
## 6461    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6462    Suc. Belenes     1       1     1    NA   NA     1
## 6463    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6464    Suc. Belenes    NA       1     1    NA   NA     1
## 6465    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6466    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6467    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6468    Suc. Belenes     3      NA    NA    NA   NA     1
## 6469    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6470    Suc. Belenes    11      11    17    19   11    11
## 6471    Suc. Belenes     2       3     3     2    3     2
## 6472    Suc. Belenes    17      17    17    20   11    14
## 6473    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6474    Suc. Belenes     3       2     3     2    3     5
## 6475    Suc. Belenes    13      15    17    17   15    17
## 6476    Suc. Belenes     2       2     3     3    1     4
## 6477    Suc. Belenes     2      NA    NA     3    2     2
## 6478    Suc. Belenes     2       4     2     6    2     4
## 6479    Suc. Belenes    NA       6     8    11    3     8
## 6480    Suc. Belenes     4       6     4     6    4     6
## 6481    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6482    Suc. Belenes    27      46    76    49   38    72
## 6483    Suc. Belenes    NA      NA    NA    NA   32    NA
## 6484    Suc. Belenes    NA      NA    NA    NA   NA     6
## 6485    Suc. Belenes    38      44    60    38   35    76
## 6486    Suc. Belenes     9      20     8    11   11    15
## 6487    Suc. Belenes     5      NA    NA    NA   NA    NA
## 6488    Suc. Belenes    37      65    25    68   59    48
## 6489    Suc. Belenes    23      14    17    23   14    42
## 6490    Suc. Belenes    99     102   144   141   70   130
## 6491    Suc. Belenes    95     257    46   166   74   137
## 6492    Suc. Belenes    NA      NA    NA     2   NA    NA
## 6493    Suc. Belenes    NA      NA     4    NA   NA    NA
## 6494    Suc. Belenes    42      51    63    55   61   139
## 6495    Suc. Belenes   108     135    95   133  101   159
## 6496    Suc. Belenes    12       9     9    21   12    18
## 6497    Suc. Belenes    11       9    14    13   16    15
## 6498    Suc. Belenes    14       8    12    15   15    20
## 6499    Suc. Belenes     4       4     4    10    4    12
## 6500    Suc. Belenes     7       7     6     9    6    10
## 6501    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6502    Suc. Belenes    NA       1     1    NA   NA     1
## 6503    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6504    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6505    Suc. Belenes     4       0     0     0    0     0
## 6506    Suc. Belenes    NA       1    NA    NA    1    NA
## 6507    Suc. Belenes     7      NA    NA     9    7     2
## 6508    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6509    Suc. Belenes     2      NA    NA    NA   NA    NA
## 6510    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6511    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6512    Suc. Belenes     0       0     0    NA   NA     0
## 6513    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6514    Suc. Belenes     4       2     6    NA    2     2
## 6515    Suc. Belenes     6      11     8     3    3    14
## 6516    Suc. Belenes     2       0     2     4    5     5
## 6517    Suc. Belenes     6       8    13    13    6     8
## 6518    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6519    Suc. Belenes    NA      NA    NA     2   NA     2
## 6520    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6521    Suc. Belenes    NA       3    NA    NA    3     3
## 6522    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6523    Suc. Belenes    NA      NA    NA    NA    2     2
## 6524    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6525    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6526    Suc. Belenes    NA      NA    NA    NA   NA     4
## 6527    Suc. Belenes    NA       3    NA    NA   NA     6
## 6528    Suc. Belenes     1       2    NA     1    2     2
## 6529    Suc. Belenes     6       4     8     2    4     6
## 6530    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6531    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6532    Suc. Belenes     3       8     6    NA   NA     3
## 6533    Suc. Belenes     1       1     1    NA    2     2
## 6534    Suc. Belenes     4       2     2    13   NA     8
## 6535    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6536    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6537    Suc. Belenes     4       6     4     4    4     2
## 6538    Suc. Belenes     8      11    14     6    3    17
## 6539    Suc. Belenes     2       2     1     5    5     8
## 6540    Suc. Belenes     6      13    11    17    4    13
## 6541    Suc. Belenes     2       1    NA    NA   NA    NA
## 6542    Suc. Belenes    NA      NA     2    NA    2     2
## 6543    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6544    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6545    Suc. Belenes    NA      11    NA    NA   NA     3
## 6546    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6547    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6548    Suc. Belenes    NA      NA    NA    NA    1    NA
## 6549    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6550    Suc. Belenes     2       4     2     2    4     4
## 6551    Suc. Belenes     3       6     3     3    6     6
## 6552    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6553    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6554    Suc. Belenes    NA      NA     1    NA   NA     0
## 6555    Suc. Belenes     1       1     1    NA   NA    NA
## 6556    Suc. Belenes    NA       1    NA     2    1     3
## 6557    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6558    Suc. Belenes     1       1     1     1    1     2
## 6559    Suc. Belenes     2       2     1     1    2     1
## 6560    Suc. Belenes    NA      NA    NA    NA    3     3
## 6561    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6562    Suc. Belenes     1       1     1    NA   NA    NA
## 6563    Suc. Belenes    NA       2    NA    NA   NA    NA
## 6564    Suc. Belenes     2       4    NA    NA   NA     2
## 6565    Suc. Belenes     4       2     6     4   NA    NA
## 6566    Suc. Belenes    NA      NA     3    NA    5     8
## 6567    Suc. Belenes    10       6     6    NA   NA    10
## 6568    Suc. Belenes    54      60    73    60   41   111
## 6569    Suc. Belenes     5       3     6     5    3     3
## 6570    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6571    Suc. Belenes     4       4    14     7    4    25
## 6572    Suc. Belenes    77      92    95    60   53   137
## 6573    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6574    Suc. Belenes     4       4    NA    NA   NA    NA
## 6575    Suc. Belenes     6       8     8     8    4     6
## 6576    Suc. Belenes    44      59    68    66   23    80
## 6577    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6578    Suc. Belenes     1       2    NA     1   NA     2
## 6579    Suc. Belenes     2       2     3    NA   NA     3
## 6580    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6581    Suc. Belenes     3       1     2     2    3     2
## 6582    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6583    Suc. Belenes     1       1     1     1    1     1
## 6584    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6585    Suc. Belenes     1       1    NA     2   NA    NA
## 6586    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6587    Suc. Belenes     0       0     0     0    0     0
## 6588    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6589    Suc. Belenes    NA      NA    NA     2    1     2
## 6590    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6591    Suc. Belenes    NA      NA    NA    NA    0     0
## 6592    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6593    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6594    Suc. Belenes     0       0     0     0    0     1
## 6595    Suc. Belenes    NA       1    NA    NA   NA    NA
## 6596    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6597    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6598    Suc. Belenes     2       2    NA    NA   NA    NA
## 6599    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6600    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6601    Suc. Belenes     3      NA     3    NA   NA     6
## 6602    Suc. Belenes    NA      NA     1    NA   NA     0
## 6603    Suc. Belenes     0       0    NA     0   NA     0
## 6604    Suc. Belenes    NA       1     2     2    2     3
## 6605    Suc. Belenes     1       1     1     1    1     1
## 6606    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6607    Suc. Belenes    NA       0     0    NA   NA    NA
## 6608    Suc. Belenes     2       2    NA    NA   NA    NA
## 6609    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6610    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6611    Suc. Belenes    NA       3    NA    NA   NA    NA
## 6612    Suc. Belenes    NA      NA     0    NA   NA     0
## 6613    Suc. Belenes    NA      NA    NA    NA    0     2
## 6614    Suc. Belenes    NA       1     2     2    2     3
## 6615    Suc. Belenes     1      NA     1     1    1     1
## 6616    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6617    Suc. Belenes    NA       0     0    NA   NA    NA
## 6618    Suc. Belenes     2       2    NA    NA   NA    NA
## 6619    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6620    Suc. Belenes    NA      NA    NA     3   NA    NA
## 6621    Suc. Belenes    NA      NA     1    NA   NA     0
## 6622    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6623    Suc. Belenes    NA       1     2     2    2     3
## 6624    Suc. Belenes     1      NA     1     1    1     1
## 6625    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6626    Suc. Belenes    NA       1     1    NA   NA    NA
## 6627    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6628    Suc. Belenes    NA      NA    NA    NA    3    11
## 6629    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6630    Suc. Belenes    NA      NA     0    NA   NA     0
## 6631    Suc. Belenes     2      NA     4    NA   NA    NA
## 6632    Suc. Belenes    NA       0     0    NA   NA    NA
## 6633    Suc. Belenes     2       2    NA    NA   NA    NA
## 6634    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6635    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6636    Suc. Belenes    NA      NA     3     3    6    11
## 6637    Suc. Belenes    NA      NA     1    NA   NA     0
## 6638    Suc. Belenes    NA      NA    NA    NA   NA     2
## 6639    Suc. Belenes    NA       1     2     2    2     3
## 6640    Suc. Belenes     1      NA     1     1    1     1
## 6641    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6642    Suc. Belenes    NA       0     0    NA   NA    NA
## 6643    Suc. Belenes     1       2    NA     2    1     3
## 6644    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6645    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6646    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6647    Suc. Belenes     2       6     2     2    6     2
## 6648    Suc. Belenes     3       3     3     3   10     3
## 6649    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6650    Suc. Belenes     3       5    10     3   10     8
## 6651    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6652    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6653    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6654    Suc. Belenes    NA      NA    NA     2   NA     2
## 6655    Suc. Belenes     0       1     1     1    1     1
## 6656    Suc. Belenes     2       2     4     7    4     6
## 6657    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6658    Suc. Belenes     1       1     1    NA    1     1
## 6659    Suc. Belenes    NA       6    NA    NA   NA    NA
## 6660    Suc. Belenes     2       2     1    NA    1     1
## 6661    Suc. Belenes    NA       3     3     3   NA    NA
## 6662    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6663    Suc. Belenes    NA       0     0    NA   NA    NA
## 6664    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6665    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6666    Suc. Belenes    NA      NA     2    NA    2     2
## 6667    Suc. Belenes     1       1    NA    NA    1    NA
## 6668    Suc. Belenes     4       6     6     4   11     4
## 6669    Suc. Belenes    14       6     8    11   11     8
## 6670    Suc. Belenes     4       4     4     4    4     6
## 6671    Suc. Belenes     1      NA    NA     1    1     1
## 6672    Suc. Belenes     6       8     8     4    6    NA
## 6673    Suc. Belenes     5      NA     5     3   16     3
## 6674    Suc. Belenes    NA      NA    NA    NA   NA     6
## 6675    Suc. Belenes    44      16    29    44   16    70
## 6676    Suc. Belenes     5       6     8     6    9    11
## 6677    Suc. Belenes    18      14    21    11    7    NA
## 6678    Suc. Belenes   173      74   141   106  102   137
## 6679    Suc. Belenes    13      15    17    11   23    15
## 6680    Suc. Belenes    85      44    70    57   74    74
## 6681    Suc. Belenes     3       1     2     2    3     2
## 6682    Suc. Belenes     6       8     9    11   12     9
## 6683    Suc. Belenes    NA      NA     2    NA    4    NA
## 6684    Suc. Belenes     2       2     2     2    1    NA
## 6685    Suc. Belenes    NA       2     1    NA    1     1
## 6686    Suc. Belenes    NA      NA    NA    NA    2    NA
## 6687    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6688    Suc. Belenes     3       0     0     0    0     0
## 6689    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6690    Suc. Belenes     4       1     3     2    2     3
## 6691    Suc. Belenes     4       1     2     2    1     1
## 6692    Suc. Belenes    NA       2     2    NA    2    NA
## 6693    Suc. Belenes    NA       0     1     1   NA    NA
## 6694    Suc. Belenes     0       0     0    NA    0     0
## 6695    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6696    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6697    Suc. Belenes     2      NA    NA    NA    2    NA
## 6698    Suc. Belenes    NA       1    NA    NA    1     1
## 6699    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6700    Suc. Belenes     1       4    NA     6    1    NA
## 6701    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6702    Suc. Belenes     0       1     1     1    1     1
## 6703    Suc. Belenes     0      NA     0     1    0     4
## 6704    Suc. Belenes     2       2     2     1    3     1
## 6705    Suc. Belenes     1      NA    NA     1   NA    NA
## 6706    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6707    Suc. Belenes    NA       1    NA    NA    1     1
## 6708    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6709    Suc. Belenes     1       1    NA     1    1    NA
## 6710    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6711    Suc. Belenes     0       0     0     0    1     1
## 6712    Suc. Belenes     0      NA     0    NA    0     1
## 6713    Suc. Belenes    NA      NA     2     1    3     1
## 6714    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6715    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6716    Suc. Belenes    NA       1    NA    NA    1     1
## 6717    Suc. Belenes     1       1    NA     1    1    NA
## 6718    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6719    Suc. Belenes     0       1     1     1    1     1
## 6720    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6721    Suc. Belenes    NA      NA     2     1    1     1
## 6722    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6723    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6724    Suc. Belenes     3      NA    NA     3   NA     3
## 6725    Suc. Belenes     0      NA     0    NA    0     0
## 6726    Suc. Belenes     2      NA    NA    NA    4    NA
## 6727    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6728    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6729    Suc. Belenes     2       2    NA     4   NA    NA
## 6730    Suc. Belenes    NA       1    NA    NA    1     1
## 6731    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6732    Suc. Belenes     1       4     3     6    1    NA
## 6733    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6734    Suc. Belenes     2       1     1     1    1     1
## 6735    Suc. Belenes     0       0     0    NA    0     5
## 6736    Suc. Belenes    NA       2     2     1    3     1
## 6737    Suc. Belenes     1      NA    NA     1   NA    NA
## 6738    Suc. Belenes    NA       0    NA    NA   NA    NA
## 6739    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6740    Suc. Belenes     4       3     6     3    5     3
## 6741    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6742    Suc. Belenes    11       8     8     4    6     8
## 6743    Suc. Belenes     6      NA     3     6    3     6
## 6744    Suc. Belenes     3       5     3    NA    3     8
## 6745    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6746    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6747    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6748    Suc. Belenes     1       1    NA     1    0     0
## 6749    Suc. Belenes     9       5     4     1    3    NA
## 6750    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6751    Suc. Belenes    NA      NA     1     1    1     1
## 6752    Suc. Belenes    NA      NA     1     1    1     1
## 6753    Suc. Belenes     3      NA    NA     3   NA    NA
## 6754    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6755    Suc. Belenes     8       4     4     4    6     6
## 6756    Suc. Belenes     8       8     6     5    5     6
## 6757    Suc. Belenes     4       4     2    NA    6     4
## 6758    Suc. Belenes     3       3     2     3    3     3
## 6759    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6760    Suc. Belenes    16      16    11    13   16    11
## 6761    Suc. Belenes    NA      NA    NA    NA   NA    10
## 6762    Suc. Belenes    35      38    54    35   57    63
## 6763    Suc. Belenes     9       8     6     8    9    14
## 6764    Suc. Belenes     4       4    18     7   11    11
## 6765    Suc. Belenes    63      46    49    53   67    53
## 6766    Suc. Belenes     2       2     4     4    4     4
## 6767    Suc. Belenes     6      13    11     8    4    11
## 6768    Suc. Belenes    87      78    99    66  112   123
## 6769    Suc. Belenes     3       3     4     2    4     5
## 6770    Suc. Belenes     2       2     2     2    2     2
## 6771    Suc. Belenes     2      NA    NA     2    2     2
## 6772    Suc. Belenes     3       4     2     3    3     3
## 6773    Suc. Belenes     1      NA     1     1    1     3
## 6774    Suc. Belenes     2      NA     1     1    1     1
## 6775    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6776    Suc. Belenes     0       1     0     0    0     0
## 6777    Suc. Belenes    NA      NA    NA    NA    0    NA
## 6778    Suc. Belenes     7       3     2     2    5     3
## 6779    Suc. Belenes     2      NA    NA    NA    2    NA
## 6780    Suc. Belenes     1       1    NA    NA    1    NA
## 6781    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6782    Suc. Belenes    NA      NA     0     0    0     0
## 6783    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6784    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6785    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6786    Suc. Belenes     3      NA     3     3   NA     3
## 6787    Suc. Belenes     1       1    NA     1    0     0
## 6788    Suc. Belenes     0       1     1     1    1     0
## 6789    Suc. Belenes     1      NA     1     1    2     2
## 6790    Suc. Belenes    NA       1    NA     0   NA    NA
## 6791    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6792    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6793    Suc. Belenes     0       0    NA     0    0     0
## 6794    Suc. Belenes     0       1     0     0    0     1
## 6795    Suc. Belenes    NA       1    NA     0   NA    NA
## 6796    Suc. Belenes     1       1    NA     1    0     0
## 6797    Suc. Belenes    NA       0    NA     0    1     0
## 6798    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6799    Suc. Belenes     6       3     3    NA    6     3
## 6800    Suc. Belenes     4       4     6     2    2     6
## 6801    Suc. Belenes     1      NA    NA    NA   NA    NA
## 6802    Suc. Belenes    NA       1    NA     0   NA    NA
## 6803    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6804    Suc. Belenes     3      NA     3     6    6    NA
## 6805    Suc. Belenes     1       1     1     1    0     0
## 6806    Suc. Belenes    NA       1    NA     1    0     1
## 6807    Suc. Belenes    NA      NA    NA     4    2     2
## 6808    Suc. Belenes    NA      NA     1     1    1     1
## 6809    Suc. Belenes    NA       1    NA     0   NA    NA
## 6810    Suc. Belenes     3       4    NA     1    2     3
## 6811    Suc. Belenes    NA      NA    NA    11   NA    NA
## 6812    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6813    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6814    Suc. Belenes     4       2     4     2    2    11
## 6815    Suc. Belenes    13      13    16    13   10    13
## 6816    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6817    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6818    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6819    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6820    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6821    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6822    Suc. Belenes     4       1     4     5    5     3
## 6823    Suc. Belenes     6       8     5     4   10     7
## 6824    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6825    Suc. Belenes    NA       2     1     1   NA     2
## 6826    Suc. Belenes     4       2     2    NA    6     2
## 6827    Suc. Belenes     3       2     4     1    2     1
## 6828    Suc. Belenes    17      14    20     3    8     8
## 6829    Suc. Belenes    NA      NA    NA     0    0     1
## 6830    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6831    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6832    Suc. Belenes    NA      NA     2    NA   NA    NA
## 6833    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6834    Suc. Belenes     4       4     2     4    4     2
## 6835    Suc. Belenes    NA       1     1     1    3    NA
## 6836    Suc. Belenes    19      15    17    15   17    19
## 6837    Suc. Belenes     2       2     2    NA    3     3
## 6838    Suc. Belenes    17      14     6    17   14    17
## 6839    Suc. Belenes    11       8    20    20   11    17
## 6840    Suc. Belenes     4      17    11    17   15    11
## 6841    Suc. Belenes     2       1     6    NA    3    NA
## 6842    Suc. Belenes     2       3    NA     5    2     3
## 6843    Suc. Belenes     4       6     4     6    2     6
## 6844    Suc. Belenes     3      NA     3     3    6     3
## 6845    Suc. Belenes     4      NA     4     2    2     6
## 6846    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6847    Suc. Belenes    NA       6    42    NA   19    21
## 6848    Suc. Belenes    50      50   106     5   98    NA
## 6849    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6850    Suc. Belenes    73      79   149    54  124    86
## 6851    Suc. Belenes    14       8    14     9   23     8
## 6852    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6853    Suc. Belenes    20      17    54     6   23    25
## 6854    Suc. Belenes    23      17    14    17   14    14
## 6855    Suc. Belenes    67      39   137    18   88   106
## 6856    Suc. Belenes   254     176   313   197  254   197
## 6857    Suc. Belenes    21      23    66     6   46    44
## 6858    Suc. Belenes   110     114   154   156  135   133
## 6859    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6860    Suc. Belenes     5       9    16    NA   21    NA
## 6861    Suc. Belenes    NA       2    24    NA   NA     6
## 6862    Suc. Belenes     6       2     4     4    4     4
## 6863    Suc. Belenes     6       3    16    NA    3    17
## 6864    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6865    Suc. Belenes     2       1     3     1    4     1
## 6866    Suc. Belenes    NA      NA     1     1   NA     1
## 6867    Suc. Belenes     1      NA    NA     4    1     1
## 6868    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6869    Suc. Belenes     1       0     0     0    0     0
## 6870    Suc. Belenes    NA       0    NA    NA    1    NA
## 6871    Suc. Belenes     9      10     8     5   14     7
## 6872    Suc. Belenes    NA      NA    NA    NA   NA     1
## 6873    Suc. Belenes     6       4     6    11    8     4
## 6874    Suc. Belenes     1      NA    NA     1    1     1
## 6875    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6876    Suc. Belenes     0       0     0     0    0     0
## 6877    Suc. Belenes     5       8     3     5    5     6
## 6878    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6879    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6880    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6881    Suc. Belenes     6       6    15     3   11     6
## 6882    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6883    Suc. Belenes    NA       0     0    NA    0    NA
## 6884    Suc. Belenes     2       3     7     1    1     1
## 6885    Suc. Belenes     3       3     1     1    1     5
## 6886    Suc. Belenes    NA       0     0     0   NA    NA
## 6887    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6888    Suc. Belenes    NA       3     4     6    8     3
## 6889    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6890    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6891    Suc. Belenes     2       3     5     1    1     3
## 6892    Suc. Belenes     1      NA     2     3    4    NA
## 6893    Suc. Belenes    NA       0     0     0   NA    NA
## 6894    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6895    Suc. Belenes     3       3     1    NA   NA    NA
## 6896    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6897    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6898    Suc. Belenes     2       3     7     3    1     3
## 6899    Suc. Belenes    NA      NA     1    NA    1    NA
## 6900    Suc. Belenes     3       5     3     4    3     3
## 6901    Suc. Belenes    NA      NA     8     3   14     6
## 6902    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6903    Suc. Belenes    NA      NA     4    NA   NA     4
## 6904    Suc. Belenes     1       5     4     4    4     4
## 6905    Suc. Belenes    NA       0     0     0   NA    NA
## 6906    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6907    Suc. Belenes     6      11    18    11   14    14
## 6908    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6909    Suc. Belenes     0      NA    NA     0   NA     0
## 6910    Suc. Belenes     2       3     7     5    3     1
## 6911    Suc. Belenes     6       3     3     5    8     4
## 6912    Suc. Belenes    NA       0     0     0   NA    NA
## 6913    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6914    Suc. Belenes     1       8    NA    NA    6     6
## 6915    Suc. Belenes    NA      NA    NA    NA   NA     0
## 6916    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6917    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6918    Suc. Belenes     2      66     2     2    2     2
## 6919    Suc. Belenes     3      95     3     3    3     3
## 6920    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6921    Suc. Belenes    NA      25    NA    NA   NA    NA
## 6922    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6923    Suc. Belenes    NA      NA    NA    NA    2     4
## 6924    Suc. Belenes     1       4     2     1    1     3
## 6925    Suc. Belenes     3       4     3     2    4     4
## 6926    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6927    Suc. Belenes     1      NA     1     1    1     1
## 6928    Suc. Belenes     2      NA     2     1    1     1
## 6929    Suc. Belenes    NA      NA     3     3    3     8
## 6930    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6931    Suc. Belenes    NA      NA     2    NA   NA    NA
## 6932    Suc. Belenes    NA      NA     1    NA    1    NA
## 6933    Suc. Belenes     2      NA     2     2   NA     2
## 6934    Suc. Belenes     1      NA     1    NA   NA    NA
## 6935    Suc. Belenes     6      11    NA     2    6     8
## 6936    Suc. Belenes     6       6     3     8   NA     3
## 6937    Suc. Belenes    14      14    20    20    6    17
## 6938    Suc. Belenes     4      15     8     6    4    15
## 6939    Suc. Belenes    NA       1     1     2    2     3
## 6940    Suc. Belenes    NA       2    NA    NA   NA     2
## 6941    Suc. Belenes     1       1     1    NA    1    NA
## 6942    Suc. Belenes     2      NA     2     2    2     4
## 6943    Suc. Belenes     2      NA     4    NA    2     2
## 6944    Suc. Belenes    NA      NA     2    NA   NA    NA
## 6945    Suc. Belenes    NA      NA     1    NA   NA    NA
## 6946    Suc. Belenes     6      21    13     8   17    15
## 6947    Suc. Belenes    24      29    40    45   34    21
## 6948    Suc. Belenes    NA      NA    NA    NA   NA    19
## 6949    Suc. Belenes     3       6     6    16   13    10
## 6950    Suc. Belenes    NA      NA    NA     2   NA    NA
## 6951    Suc. Belenes     8       3    11    17    5    12
## 6952    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6953    Suc. Belenes    17      11    25    23   20    20
## 6954    Suc. Belenes     6       8     6    NA    6     8
## 6955    Suc. Belenes    35      32    39    42   39    56
## 6956    Suc. Belenes    21      25    39    18   39    46
## 6957    Suc. Belenes     6      13     8     2   21     8
## 6958    Suc. Belenes    23      34    27    36   59    17
## 6959    Suc. Belenes    34      27    42    68   25    57
## 6960    Suc. Belenes    NA       6     6     6    9    NA
## 6961    Suc. Belenes     7       7     7     8    8    10
## 6962    Suc. Belenes     3       6    NA     5    5     6
## 6963    Suc. Belenes    NA       8     2     4    4     4
## 6964    Suc. Belenes     5       3     5     4    1     4
## 6965    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6966    Suc. Belenes     5       2     1     2    2     1
## 6967    Suc. Belenes    NA      NA    NA     1   NA    NA
## 6968    Suc. Belenes     1      NA     2     3    3     4
## 6969    Suc. Belenes     2      NA     0     0    0     0
## 6970    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6971    Suc. Belenes     3       2     5     7    3     5
## 6972    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6973    Suc. Belenes     4       2     2     2   NA     4
## 6974    Suc. Belenes     1       1     1     1    1     1
## 6975    Suc. Belenes     0      NA     0     0    0     0
## 6976    Suc. Belenes     1       4     3     1    4     1
## 6977    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6978    Suc. Belenes    NA      NA    NA    NA    4     2
## 6979    Suc. Belenes    NA      NA    NA    NA   NA     3
## 6980    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6981    Suc. Belenes     8      11     8     6    6     6
## 6982    Suc. Belenes    NA      NA    NA    NA   NA     4
## 6983    Suc. Belenes    NA      NA     0    NA   NA    NA
## 6984    Suc. Belenes    NA      NA    NA    NA    2    NA
## 6985    Suc. Belenes    NA      NA    NA     1    3    NA
## 6986    Suc. Belenes     4       4     4     1    3     1
## 6987    Suc. Belenes    NA       0     0     0   NA    NA
## 6988    Suc. Belenes    NA       6     3     6    3    NA
## 6989    Suc. Belenes    NA      NA    NA     1    1    NA
## 6990    Suc. Belenes     1       3     3     2    2    NA
## 6991    Suc. Belenes    NA       0     0     0   NA    NA
## 6992    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6993    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 6994    Suc. Belenes    NA      NA    NA    NA    2    NA
## 6995    Suc. Belenes     2      NA    NA     1    1    NA
## 6996    Suc. Belenes     2      NA    NA    NA   NA    NA
## 6997    Suc. Belenes     1       1     1     2    1     2
## 6998    Suc. Belenes     3       6     3     3    6     3
## 6999    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7000    Suc. Belenes     1       4     4     3    5     3
## 7001    Suc. Belenes    NA       0     0     0   NA    NA
## 7002    Suc. Belenes     2       4     2    NA    4     2
## 7003    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7004    Suc. Belenes    NA      NA    NA     2   NA    NA
## 7005    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7006    Suc. Belenes     6      NA     6     6    3     6
## 7007    Suc. Belenes     1       0    NA    NA    0     0
## 7008    Suc. Belenes    NA      NA    NA    NA    2    NA
## 7009    Suc. Belenes    NA      NA     2     1    3     2
## 7010    Suc. Belenes     5       5     6     4    4     3
## 7011    Suc. Belenes    NA       0     0     0   NA    NA
## 7012    Suc. Belenes    NA      NA     1    NA   NA    NA
## 7013    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7014    Suc. Belenes     4       3     8     6    7     5
## 7015    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7016    Suc. Belenes     6      NA    NA    NA   NA    NA
## 7017    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7018    Suc. Belenes   116     156   239   186  294   321
## 7019    Suc. Belenes   171     155   241   295  346   415
## 7020    Suc. Belenes   109     107   190   147  152   216
## 7021    Suc. Belenes    29      13    27    30   41    33
## 7022    Suc. Belenes    16      16    30    29   34    42
## 7023    Suc. Belenes    NA      NA     8     4    8     8
## 7024    Suc. Belenes   104      78   118    95   89   147
## 7025    Suc. Belenes     8       8    14    12    9    14
## 7026    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7027    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7028    Suc. Belenes     6      NA    NA    NA   NA    NA
## 7029    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7030    Suc. Belenes    57      19    32    57   38    74
## 7031    Suc. Belenes    12       4    15     6   11    20
## 7032    Suc. Belenes    20      NA    14     9    5    11
## 7033    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7034    Suc. Belenes    NA      NA    NA    NA    3    NA
## 7035    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7036    Suc. Belenes    NA      NA    NA     3    3     3
## 7037    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7038    Suc. Belenes     8      NA    NA    NA   NA    NA
## 7039    Suc. Belenes    NA      NA    NA    NA    4    NA
## 7040    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7041    Suc. Belenes    32       8    15    13    8    17
## 7042    Suc. Belenes   175     125   207   205  241   296
## 7043    Suc. Belenes    32      NA    NA    NA   25    NA
## 7044    Suc. Belenes    34      43    52    50   55    57
## 7045    Suc. Belenes    35      32    36    36   47    51
## 7046    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7047    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7048    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7049    Suc. Belenes     4      NA     5    32   41    40
## 7050    Suc. Belenes    34      25    29    NA   NA    NA
## 7051    Suc. Belenes    12       6    10     9    4    13
## 7052    Suc. Belenes    61      33    72    54   59    69
## 7053    Suc. Belenes    32      48    39    48   34    44
## 7054    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7055    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7056    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7058    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7059    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7060    Suc. Belenes    NA      NA    NA     4   11    18
## 7061    Suc. Belenes     5       6     6    NA    9     5
## 7062    Suc. Belenes     8      NA    NA    NA   NA    NA
## 7063    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7064    Suc. Belenes    NA      NA    NA     4   11    11
## 7065    Suc. Belenes     6       2     3     3    5     5
## 7066    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7067    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7068    Suc. Belenes    NA      NA    NA     4   11    15
## 7069    Suc. Belenes     5       3     5     3    3     5
## 7070    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7071    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7072    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7073    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7074    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7075    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7076    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7077    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7078    Suc. Belenes     1      NA    NA     4    8    15
## 7079    Suc. Belenes     5       5     6    11    5    11
## 7080    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7081    Suc. Belenes    37      30    47    30   34    42
## 7082    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7083    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7084    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7085    Suc. Belenes     2       2     2     2    6     6
## 7086    Suc. Belenes     6       6     3    19   16    13
## 7087    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7088    Suc. Belenes    NA       3     3     5    3     3
## 7089    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7090    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7091    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7092    Suc. Belenes    NA      NA     1     1    1     1
## 7093    Suc. Belenes     2       1     2     0    2     1
## 7094    Suc. Belenes     1      NA     1    NA    1    NA
## 7095    Suc. Belenes    NA      NA     1    NA   NA     1
## 7096    Suc. Belenes     1       1    NA     1    1     1
## 7097    Suc. Belenes     3       1     4     4    5     3
## 7098    Suc. Belenes     1       1     2     1    2     2
## 7099    Suc. Belenes     1       2     2     2    3     1
## 7100    Suc. Belenes    NA       3     1     1    2     1
## 7101    Suc. Belenes     3      NA     6    NA   NA    NA
## 7102    Suc. Belenes     0       0    NA    NA   NA    NA
## 7103    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7104    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7105    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7106    Suc. Belenes    NA       2    NA    NA    2    NA
## 7107    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7108    Suc. Belenes     8       8     8    11   11     8
## 7109    Suc. Belenes    10      13    10    10   10     3
## 7110    Suc. Belenes    48      44    38    38   38    44
## 7111    Suc. Belenes     5       5     5     8    5     3
## 7112    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7113    Suc. Belenes     6       3    NA     3   NA    NA
## 7114    Suc. Belenes    14      14    11    14   14    21
## 7115    Suc. Belenes    67      77    74    92   92    85
## 7116    Suc. Belenes    NA      NA    NA    NA   NA     2
## 7117    Suc. Belenes     4       6     6    NA    4     4
## 7118    Suc. Belenes     8      11    13     8    8     8
## 7119    Suc. Belenes    32      44    30    49   46    51
## 7120    Suc. Belenes     1       1     3     3    3     2
## 7121    Suc. Belenes    NA      NA     3    NA    2     2
## 7122    Suc. Belenes    NA       2     2    NA    2     2
## 7123    Suc. Belenes     1       2     1     1    2     1
## 7124    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7125    Suc. Belenes     2       2     2     2    3     1
## 7126    Suc. Belenes    NA       1    NA    NA    1    NA
## 7127    Suc. Belenes     1      NA    NA     3    2     1
## 7128    Suc. Belenes     1       0     0     0    0     0
## 7129    Suc. Belenes     1       1     2     0    3     0
## 7130    Suc. Belenes     2       2     4     2    2     3
## 7131    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7132    Suc. Belenes    NA      NA    NA    NA    2    NA
## 7133    Suc. Belenes     1       0     0    NA    0     1
## 7134    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7135    Suc. Belenes     0       0     0     0    0     0
## 7136    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7137    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7138    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7139    Suc. Belenes     1       2    NA     2   NA    NA
## 7140    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7141    Suc. Belenes    NA       1    NA    NA   NA     3
## 7142    Suc. Belenes    NA      NA     3    NA   NA    NA
## 7143    Suc. Belenes    NA      NA    NA     2    2     4
## 7144    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7145    Suc. Belenes    NA       1     1     2    2     1
## 7146    Suc. Belenes    NA       2     1     1    2    NA
## 7147    Suc. Belenes    NA      NA     1     2   NA     1
## 7148    Suc. Belenes    NA       0    NA     0   NA    NA
## 7149    Suc. Belenes     2       2     2     4   NA     2
## 7150    Suc. Belenes     1       2    NA     2   NA    NA
## 7151    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7152    Suc. Belenes    NA       1    NA     3    3    NA
## 7153    Suc. Belenes     6      NA    NA    NA   NA    NA
## 7154    Suc. Belenes    NA      NA    NA     4    4     2
## 7155    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7156    Suc. Belenes     0       1     1     2    1     0
## 7157    Suc. Belenes    NA      NA     1     1   NA    NA
## 7158    Suc. Belenes    NA      NA     1     1   NA     1
## 7159    Suc. Belenes    NA       0    NA     0   NA    NA
## 7160    Suc. Belenes    NA      NA    NA    NA    2    NA
## 7161    Suc. Belenes     1      NA    NA    NA    2    NA
## 7162    Suc. Belenes    NA       1     3    NA   NA    NA
## 7163    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7164    Suc. Belenes     4       4    NA     5   NA    NA
## 7165    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7166    Suc. Belenes     0       0     1     1    2     2
## 7167    Suc. Belenes    NA       2     1     1   NA     2
## 7168    Suc. Belenes    NA       1     1     2    3    NA
## 7169    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7170    Suc. Belenes     1       0     1    NA    0     0
## 7171    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7172    Suc. Belenes    NA       0    NA     0   NA    NA
## 7173    Suc. Belenes     2       2     2     2    2    NA
## 7174    Suc. Belenes     1      NA     2    NA    2    NA
## 7175    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7176    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7177    Suc. Belenes    NA      NA    NA    NA    3    NA
## 7178    Suc. Belenes    NA       4    NA     5    4     5
## 7179    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7180    Suc. Belenes     2       2     2     2    3     3
## 7181    Suc. Belenes     4       2     3     5    2     4
## 7182    Suc. Belenes     2       4     6     4    6     3
## 7183    Suc. Belenes    NA       0    NA     0   NA    NA
## 7184    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7185    Suc. Belenes     1       1     1     1    1     2
## 7186    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7187    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7188    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7189    Suc. Belenes     6       6     8    NA   NA    NA
## 7190    Suc. Belenes    10      10     3    NA    3    NA
## 7191    Suc. Belenes    NA       3    NA    NA   NA    NA
## 7192    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7193    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7194    Suc. Belenes    NA       2    NA    NA   NA    NA
## 7195    Suc. Belenes    NA      NA     1    NA   NA    NA
## 7196    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7197    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7198    Suc. Belenes     2       2     3     3    2     2
## 7199    Suc. Belenes    NA      NA     2    NA   NA     2
## 7200    Suc. Belenes     2       1     1     1   NA     1
## 7201    Suc. Belenes     0      NA    NA    NA   NA    NA
## 7202    Suc. Belenes     2       1     2     1   NA     2
## 7203    Suc. Belenes     6      11     3     8   NA     8
## 7204    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7205    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7206    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7207    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7208    Suc. Belenes     4      15    13     8    2     8
## 7209    Suc. Belenes     3      11    11    11   NA    11
## 7210    Suc. Belenes     6      11     6     6    6    14
## 7211    Suc. Belenes     6      15     8    13    4     2
## 7212    Suc. Belenes     1       3     2     2    1     1
## 7213    Suc. Belenes    NA       2     2    NA   NA    NA
## 7214    Suc. Belenes     4       8    NA    NA    2     4
## 7215    Suc. Belenes     4       6     2     4    4     4
## 7216    Suc. Belenes     2      NA    NA     2   NA    NA
## 7217    Suc. Belenes    11      42    53    48    5    NA
## 7218    Suc. Belenes     3      NA    NA    NA   NA     6
## 7219    Suc. Belenes    16      19    10    16    3     3
## 7220    Suc. Belenes    11      12    14    11    3    NA
## 7221    Suc. Belenes    NA       2    NA    NA   NA    NA
## 7222    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7223    Suc. Belenes     6       6    11     3   NA     3
## 7224    Suc. Belenes    25      49    74    77    7    NA
## 7225    Suc. Belenes    21     109   120   134   25     4
## 7226    Suc. Belenes    13      27    32    32    6    NA
## 7227    Suc. Belenes    40     123   197   190   21     2
## 7228    Suc. Belenes     2       7     7     5    2    NA
## 7229    Suc. Belenes     2      11     3     3   NA    NA
## 7230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7231    Suc. Belenes     2       4     4     3    2    NA
## 7232    Suc. Belenes     1       1     1     1   NA     1
## 7233    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7234    Suc. Belenes    NA      NA     4    NA    2     2
## 7235    Suc. Belenes     2       0     0     2   NA     0
## 7236    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7237    Suc. Belenes     2       5     6     5    3     4
## 7238    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7239    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7240    Suc. Belenes     2       2     4     2   NA     4
## 7241    Suc. Belenes    NA       0     0    NA   NA    NA
## 7242    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7243    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7244    Suc. Belenes    NA       1     1    NA   NA    NA
## 7245    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7246    Suc. Belenes     1       0     0     0    0     0
## 7247    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7248    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7249    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7250    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7251    Suc. Belenes    NA      NA     3    17   NA    NA
## 7252    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7253    Suc. Belenes    NA      NA     1    NA    0    NA
## 7254    Suc. Belenes     2       5    10    30    1    NA
## 7255    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7256    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7257    Suc. Belenes    NA       0     0     0   NA    NA
## 7258    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7259    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7260    Suc. Belenes    NA      NA     0     0    0    NA
## 7261    Suc. Belenes     2       5     8    15    1    NA
## 7262    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7263    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7264    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7265    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7266    Suc. Belenes    NA      NA     0    NA    2    NA
## 7267    Suc. Belenes     2       3     8    15    1    NA
## 7268    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7269    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7270    Suc. Belenes    NA       3    NA    11   NA     6
## 7271    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7272    Suc. Belenes    NA       2     4     4   NA    NA
## 7273    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7274    Suc. Belenes    NA       0     0     0   NA    NA
## 7275    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7276    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7277    Suc. Belenes     3      NA     3    20    3     3
## 7278    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7279    Suc. Belenes     1      NA     1    NA    0    NA
## 7280    Suc. Belenes     4      10    10    30    1    NA
## 7281    Suc. Belenes    NA      10    NA    NA   NA    NA
## 7282    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7283    Suc. Belenes    NA       0     0     0   NA    NA
## 7284    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7285    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7286    Suc. Belenes     9       9     6     4    6     1
## 7287    Suc. Belenes    NA      NA    NA    NA    2     6
## 7288    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7289    Suc. Belenes     4       2     2    NA    6     2
## 7290    Suc. Belenes     6       3     3    NA    3     3
## 7291    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7292    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7293    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7294    Suc. Belenes    NA       5    NA    NA   NA    NA
## 7295    Suc. Belenes    NA       2     0    NA    1     2
## 7296    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7297    Suc. Belenes    NA      NA     1    NA    1     2
## 7298    Suc. Belenes     2      NA    NA    NA   NA    NA
## 7299    Suc. Belenes     2      NA     2    NA    1     1
## 7300    Suc. Belenes     3       3    NA    NA    3     6
## 7301    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7302    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7303    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7304    Suc. Belenes     3      NA    NA    NA   NA     1
## 7305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7306    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7307    Suc. Belenes     4       2    NA     4    2     2
## 7308    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7309    Suc. Belenes     2      NA     2     2    2     4
## 7310    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7311    Suc. Belenes    17      13    17     8   19    13
## 7312    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7313    Suc. Belenes   136     146   120   168  152   178
## 7314    Suc. Belenes     8       9     9     9   11    11
## 7315    Suc. Belenes     7       7    11    14   11    18
## 7316    Suc. Belenes   183     232    99   236  222   215
## 7317    Suc. Belenes     6       8    11    11   13     8
## 7318    Suc. Belenes   101     152    55   127  112   131
## 7319    Suc. Belenes     4       4     5     5    6     6
## 7320    Suc. Belenes     3       3     3     2    5     3
## 7321    Suc. Belenes     4       6     4     7    5     5
## 7322    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7323    Suc. Belenes     1      NA     1     1    1     3
## 7324    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7325    Suc. Belenes     1      NA    NA    NA   NA     1
## 7326    Suc. Belenes     1       0     0    NA    0     0
## 7327    Suc. Belenes     1       1     0     1    1     2
## 7328    Suc. Belenes     3       3     1     2    1     3
## 7329    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7330    Suc. Belenes    NA      NA    NA    NA    1     1
## 7331    Suc. Belenes     0       0     0    NA    0     0
## 7332    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7333    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7334    Suc. Belenes     2      NA     2     2    2     4
## 7335    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7336    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7337    Suc. Belenes     4       4     7    11    5     3
## 7338    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7339    Suc. Belenes     0       0    NA    NA   NA    NA
## 7340    Suc. Belenes     1       1     4     3    2     2
## 7341    Suc. Belenes     1       3    NA     3    1     1
## 7342    Suc. Belenes    NA       0    NA     0   NA    NA
## 7343    Suc. Belenes     2       2     2    NA    4    NA
## 7344    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7345    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7346    Suc. Belenes     4       4     1     8    5     3
## 7347    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7348    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7349    Suc. Belenes     1       3     4     3    2     2
## 7350    Suc. Belenes     2      NA     1     1    1     1
## 7351    Suc. Belenes    NA       0    NA     0   NA    NA
## 7352    Suc. Belenes     2       2    NA     2   NA    NA
## 7353    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7354    Suc. Belenes     1       1     1     2    5     3
## 7355    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7356    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7357    Suc. Belenes     1       1     2     3    2     2
## 7358    Suc. Belenes     1      NA     1     1   NA     1
## 7359    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7360    Suc. Belenes    NA      NA     3    NA   NA    NA
## 7361    Suc. Belenes     0      NA    NA    NA   NA    NA
## 7362    Suc. Belenes    NA       0    NA     0   NA    NA
## 7363    Suc. Belenes     2       2     2     4   NA     2
## 7364    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7365    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7366    Suc. Belenes     4       4    10    11    5     6
## 7367    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7368    Suc. Belenes     0       0     0    NA    2     0
## 7369    Suc. Belenes     1       1     4     5    2     2
## 7370    Suc. Belenes     1      NA     1     1   NA     1
## 7371    Suc. Belenes    NA       0    NA     0   NA    NA
## 7372    Suc. Belenes    NA      NA    NA    NA    3     1
## 7373    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7374    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7375    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7376    Suc. Belenes     2       6     4     2    2    NA
## 7377    Suc. Belenes     3       3     3     3    6    NA
## 7378    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7379    Suc. Belenes     1      NA     0    NA   NA    NA
## 7380    Suc. Belenes     0       1    NA    NA   NA     1
## 7381    Suc. Belenes    NA       1    NA     1    1     1
## 7382    Suc. Belenes     5       1    14    NA   NA     2
## 7383    Suc. Belenes     0       0     0     0   NA     1
## 7384    Suc. Belenes     1       1     1     1    1    NA
## 7385    Suc. Belenes     2       2     2     1    1    NA
## 7386    Suc. Belenes     3       3     3    NA   NA    NA
## 7387    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7388    Suc. Belenes    NA      NA    NA    NA    0     0
## 7389    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7390    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7391    Suc. Belenes     2       4    NA    NA   NA    NA
## 7392    Suc. Belenes    NA       2    NA     2    2     4
## 7393    Suc. Belenes    NA       3    NA    NA   NA    NA
## 7394    Suc. Belenes     8       2     6    11    4     8
## 7395    Suc. Belenes    NA      NA    NA    NA    1     1
## 7396    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7397    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7398    Suc. Belenes    NA       4    13     6   32     2
## 7399    Suc. Belenes     5       5    13    13    5     5
## 7400    Suc. Belenes     3      NA     3     3   10    13
## 7401    Suc. Belenes    63      86    92    89   82    70
## 7402    Suc. Belenes    11       8     9    14   17     5
## 7403    Suc. Belenes    NA      NA    NA     6    8    NA
## 7404    Suc. Belenes    NA      NA    NA     7   46    NA
## 7405    Suc. Belenes   190     215   204   201  254   162
## 7406    Suc. Belenes    NA      NA     4     2   21    NA
## 7407    Suc. Belenes     6      NA    NA     6   NA    NA
## 7408    Suc. Belenes    99     101   190   220  235   144
## 7409    Suc. Belenes     3       6     3     3    9     3
## 7410    Suc. Belenes     3       2     2     3    3     1
## 7411    Suc. Belenes    NA       2    NA    NA    3     2
## 7412    Suc. Belenes    NA      NA     2     2    2     6
## 7413    Suc. Belenes     3       4     3     3    3     5
## 7414    Suc. Belenes     1       1     1     1    1    NA
## 7415    Suc. Belenes     1      NA    NA    NA    1    NA
## 7416    Suc. Belenes     1      NA    NA     1   NA    NA
## 7417    Suc. Belenes    NA      NA    NA    NA    0     0
## 7418    Suc. Belenes    NA       2    NA    NA   NA    NA
## 7419    Suc. Belenes     3       2     0    NA    0    NA
## 7420    Suc. Belenes    NA       0    NA    NA    1    NA
## 7421    Suc. Belenes     3       3     9    NA    6     2
## 7422    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7423    Suc. Belenes    NA      NA     2     2    6    NA
## 7424    Suc. Belenes     0      NA     0     1    1     1
## 7425    Suc. Belenes     0       0     1     0    0    NA
## 7426    Suc. Belenes    NA       1    NA     1    1     1
## 7427    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7428    Suc. Belenes     4       2     2     2   NA     2
## 7429    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7430    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7431    Suc. Belenes    NA      NA     6    NA    8    NA
## 7432    Suc. Belenes     0       1    NA    NA   NA     1
## 7433    Suc. Belenes     1       1     3     1    2     2
## 7434    Suc. Belenes     3       3     2     9    4     1
## 7435    Suc. Belenes     1       4     2     2    2     1
## 7436    Suc. Belenes    NA       1    NA     0    0     0
## 7437    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7438    Suc. Belenes    NA      NA    NA    NA    3     6
## 7439    Suc. Belenes     0       0    NA    NA   NA     0
## 7440    Suc. Belenes    NA       1     0    NA    1     2
## 7441    Suc. Belenes     1       1     2     9    4     1
## 7442    Suc. Belenes    NA      NA    NA    NA    1     1
## 7443    Suc. Belenes    NA       1    NA     0    0     0
## 7444    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7445    Suc. Belenes    NA      NA    NA    NA    8    NA
## 7446    Suc. Belenes     0       1    NA    NA   NA     1
## 7447    Suc. Belenes     1       1     1    NA    2     2
## 7448    Suc. Belenes     1       1     2     5   NA     1
## 7449    Suc. Belenes    NA      NA     1    NA    1    NA
## 7450    Suc. Belenes    NA      NA     1    NA    1     1
## 7451    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7452    Suc. Belenes     3       3     3     3    6    NA
## 7453    Suc. Belenes     0       1     2    NA   NA     0
## 7454    Suc. Belenes    NA       2     2     2   NA     2
## 7455    Suc. Belenes    NA       1    NA     0    0     0
## 7456    Suc. Belenes     4      NA     4    NA   NA     2
## 7457    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7458    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7459    Suc. Belenes    NA       6     6     3    8    NA
## 7460    Suc. Belenes     0       1    NA    NA   NA     1
## 7461    Suc. Belenes     2       2     3     1    3     2
## 7462    Suc. Belenes     3       1     8     7    2     1
## 7463    Suc. Belenes    NA      NA     2     2    1     1
## 7464    Suc. Belenes    NA       1    NA     0    0     0
## 7465    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7466    Suc. Belenes     2       1    10     5    6     9
## 7467    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7468    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7469    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7470    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7471    Suc. Belenes    NA      25    13     2   NA     2
## 7472    Suc. Belenes    NA     111    25     3   NA    16
## 7473    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7474    Suc. Belenes    NA      NA    11    NA   NA    NA
## 7475    Suc. Belenes    NA      10     3    NA   NA     3
## 7476    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7477    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7478    Suc. Belenes    NA      NA    NA     0    1     0
## 7479    Suc. Belenes     3      10     6     7    7     7
## 7480    Suc. Belenes     6       5     3     5    8     6
## 7481    Suc. Belenes     1       1     1     0    2     2
## 7482    Suc. Belenes     1       0     1     0    0     1
## 7483    Suc. Belenes     2       3     1     1    1     1
## 7484    Suc. Belenes     1       2     4     5    5     3
## 7485    Suc. Belenes     1       0     0     1    0    NA
## 7486    Suc. Belenes    NA       1     1     3    1     1
## 7487    Suc. Belenes     2      NA    NA    NA   NA    NA
## 7488    Suc. Belenes     2       2     2     1   NA     1
## 7489    Suc. Belenes     3       3    NA     6    3     3
## 7490    Suc. Belenes     0       0     0     1    1     0
## 7491    Suc. Belenes     1       1     1     2    1     3
## 7492    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7493    Suc. Belenes     2      NA    NA    NA    2     2
## 7494    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7495    Suc. Belenes    11       6     6     6    6    11
## 7496    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7497    Suc. Belenes    NA       2     2    NA   NA     2
## 7498    Suc. Belenes    NA      NA    NA    NA    2    NA
## 7499    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7500    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7501    Suc. Belenes    37      32    16    45   29    18
## 7502    Suc. Belenes    NA      NA    NA    NA   NA    13
## 7503    Suc. Belenes    19      10    13    10   16    16
## 7504    Suc. Belenes    14      14    14    12   11    18
## 7505    Suc. Belenes    NA      11    11    14    3    14
## 7506    Suc. Belenes    18      14    21    37   18    49
## 7507    Suc. Belenes    46      32    35    56   49    39
## 7508    Suc. Belenes    NA      NA    NA    NA    2     6
## 7509    Suc. Belenes    36      30    32    38   32    46
## 7510    Suc. Belenes    76      91    95    97   87    72
## 7511    Suc. Belenes     6       6     4     5    6     9
## 7512    Suc. Belenes     8       6     5     6    2    11
## 7513    Suc. Belenes     8       4    10    12   10    10
## 7514    Suc. Belenes     5       4     6     3    5     4
## 7515    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7516    Suc. Belenes     1       1     1     1    3     2
## 7517    Suc. Belenes    NA      NA    NA     1    1     1
## 7518    Suc. Belenes    NA      NA     1     1    3     4
## 7519    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7520    Suc. Belenes     2       0     0     1   NA     0
## 7521    Suc. Belenes    NA      NA    NA    NA    0    NA
## 7522    Suc. Belenes     2       3     4     4    4     5
## 7523    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7524    Suc. Belenes    NA      NA     4    NA    2    NA
## 7525    Suc. Belenes    NA      NA     0    NA   NA     0
## 7526    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7527    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7528    Suc. Belenes     0       0     0     0   NA     0
## 7529    Suc. Belenes     3       1     1     1   NA     1
## 7530    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7531    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7532    Suc. Belenes     4      NA    NA    NA    2     2
## 7533    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7534    Suc. Belenes    NA       3    NA     3    3    NA
## 7535    Suc. Belenes     1       0     1     0    0     1
## 7536    Suc. Belenes    NA       0    NA     0   NA     2
## 7537    Suc. Belenes     4       4     4     2    8     2
## 7538    Suc. Belenes     3       4     1    NA    4     4
## 7539    Suc. Belenes    NA       2     2    NA   NA     2
## 7540    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7541    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7542    Suc. Belenes     1       0     0     0    0     0
## 7543    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7544    Suc. Belenes    NA      NA    NA     2    2     2
## 7545    Suc. Belenes     1       3    NA     3    3    NA
## 7546    Suc. Belenes     2       2    NA    NA    2    NA
## 7547    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7548    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7549    Suc. Belenes     1       0     1     0    0     1
## 7550    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7551    Suc. Belenes    NA      NA    NA     2    2     2
## 7552    Suc. Belenes     3       1     3    NA    4     1
## 7553    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7554    Suc. Belenes    NA      NA     3    NA   NA     3
## 7555    Suc. Belenes     4       2     2    NA   NA     2
## 7556    Suc. Belenes     3       1    NA     3    3     4
## 7557    Suc. Belenes     6       2     4    NA    4     4
## 7558    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7559    Suc. Belenes    NA      NA     3     6    6     3
## 7560    Suc. Belenes     1       0     1     0    0     1
## 7561    Suc. Belenes     0      NA     0     0    2    NA
## 7562    Suc. Belenes     2       4     2     4    6     4
## 7563    Suc. Belenes     6       4     4     4    6     4
## 7564    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7565    Suc. Belenes     2      NA     4     4    4     5
## 7566    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7567    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7568    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7569    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7570    Suc. Belenes     2       6     4    11   15    15
## 7571    Suc. Belenes    16       6     6    19   22    22
## 7572    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7573    Suc. Belenes     5       3     5     5    8     8
## 7574    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7575    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7576    Suc. Belenes    NA      NA    NA     2    2    NA
## 7577    Suc. Belenes     1       1     0     0    0     0
## 7578    Suc. Belenes     1      NA    NA    NA   NA     1
## 7579    Suc. Belenes     4       5     5     6    4     3
## 7580    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7581    Suc. Belenes    NA       1     1     2    3     4
## 7582    Suc. Belenes    NA       2     2     1    1     2
## 7583    Suc. Belenes     8       3     8    11   11     8
## 7584    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7585    Suc. Belenes     0       0     0     0    0     0
## 7586    Suc. Belenes     1       1     1     1    1    NA
## 7587    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7588    Suc. Belenes    NA       4    NA    NA    2    NA
## 7589    Suc. Belenes     1       1    NA     1    1     1
## 7590    Suc. Belenes     8      13     6     6    8     8
## 7591    Suc. Belenes    NA      NA    NA    NA   NA     8
## 7592    Suc. Belenes    14      18    11    21   21    14
## 7593    Suc. Belenes    19       4     8     6    8     6
## 7594    Suc. Belenes    NA       2    NA     1    1     2
## 7595    Suc. Belenes     2       2     3     2    2     2
## 7596    Suc. Belenes    NA       2     6    NA   NA     2
## 7597    Suc. Belenes    NA       2     2    NA    2     2
## 7598    Suc. Belenes     2      NA    NA    NA   NA    NA
## 7599    Suc. Belenes    95      48    61    66   50    29
## 7600    Suc. Belenes    NA      NA    NA    NA   NA    29
## 7601    Suc. Belenes    13      10    16    29   29    22
## 7602    Suc. Belenes    12       9     9    12    9    12
## 7603    Suc. Belenes    NA      11    NA     6   NA    NA
## 7604    Suc. Belenes   120     120    81   120  109   141
## 7605    Suc. Belenes    99     134    60    81   92    88
## 7606    Suc. Belenes    NA      NA     2    NA   NA    NA
## 7607    Suc. Belenes    21      15    17     8   11    11
## 7608    Suc. Belenes    42      36    36    40   44    46
## 7609    Suc. Belenes    99      95    85    99   78    74
## 7610    Suc. Belenes     5       3     4     5    4     4
## 7611    Suc. Belenes     8       6     3     5    6     3
## 7612    Suc. Belenes     4       4     6     4    6     4
## 7613    Suc. Belenes     4       3     2     3    4     1
## 7614    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7615    Suc. Belenes     1       2     2     1    1     1
## 7616    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7617    Suc. Belenes     3       1     4     1    5     4
## 7618    Suc. Belenes     1       0     1     1    1     0
## 7619    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7620    Suc. Belenes     6       5     8     7    5     4
## 7621    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7622    Suc. Belenes    NA       2     4    NA    4    NA
## 7623    Suc. Belenes     1       1     0     1    0     1
## 7624    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7625    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7626    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7627    Suc. Belenes     3       3     2     2    1     2
## 7628    Suc. Belenes    NA      NA     1     1    1     2
## 7629    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7630    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7631    Suc. Belenes     2       2     1     2    2     2
## 7632    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7633    Suc. Belenes     4       1     1     3    1     1
## 7634    Suc. Belenes     1       1     0     0    0     0
## 7635    Suc. Belenes     1       0     0     1    3     2
## 7636    Suc. Belenes     2       2     3     2    3     2
## 7637    Suc. Belenes     3       3     1     2    2     3
## 7638    Suc. Belenes     0      NA    NA     0    0     1
## 7639    Suc. Belenes    NA       0     0    NA   NA     0
## 7640    Suc. Belenes     2       2     1     2    2     2
## 7641    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7642    Suc. Belenes     4       1     1     3    1     1
## 7643    Suc. Belenes     0       0     0     0    0     0
## 7644    Suc. Belenes     2      NA     0     1    1     0
## 7645    Suc. Belenes     2       2     3     2    3     2
## 7646    Suc. Belenes     3       2     1     2    2     2
## 7647    Suc. Belenes     0      NA    NA     0    0     1
## 7648    Suc. Belenes    NA       0     0    NA   NA     0
## 7649    Suc. Belenes     2       2     1     2    2     2
## 7650    Suc. Belenes     4       1     1     3    1     1
## 7651    Suc. Belenes     1       1     0     0    0     0
## 7652    Suc. Belenes     2       0     1     1    1     1
## 7653    Suc. Belenes     2       2     3     2    3     2
## 7654    Suc. Belenes     3       2     1     2    1     3
## 7655    Suc. Belenes     0      NA    NA     0    0     1
## 7656    Suc. Belenes    NA      NA     1     1   NA     1
## 7657    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7658    Suc. Belenes    NA      NA     3    NA   NA    NA
## 7659    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7660    Suc. Belenes    NA       0     0    NA   NA     0
## 7661    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7662    Suc. Belenes     2       2     1     2    2     2
## 7663    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7664    Suc. Belenes     4       4     9     3    4     1
## 7665    Suc. Belenes     1       1     0     0    0     0
## 7666    Suc. Belenes     1       0     1     1    1     2
## 7667    Suc. Belenes     2       2     3     2    3     2
## 7668    Suc. Belenes     3       4     1     1    3     3
## 7669    Suc. Belenes     0      NA    NA     0    0     1
## 7670    Suc. Belenes    NA       0     0    NA   NA     0
## 7671    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7672    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7673    Suc. Belenes     6       6     5     7    4     5
## 7674    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7675    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7676    Suc. Belenes     8       4     6    17   17    11
## 7677    Suc. Belenes    10      10    10    29   44    29
## 7678    Suc. Belenes    NA      NA    NA     0    0     1
## 7679    Suc. Belenes     3       5     5     8   10     5
## 7680    Suc. Belenes     1       3     3     1    5     8
## 7681    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7682    Suc. Belenes     3       1     3     3    2     5
## 7683    Suc. Belenes     1       1    NA     1    1    NA
## 7684    Suc. Belenes    NA      NA     4    NA   NA     6
## 7685    Suc. Belenes     2       1     2     1    1     1
## 7686    Suc. Belenes    NA      NA    NA    NA    1     1
## 7687    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7688    Suc. Belenes    NA      NA     2    NA   NA    NA
## 7689    Suc. Belenes     1       1    NA     1    1     1
## 7690    Suc. Belenes     2       2     2    NA    2     4
## 7691    Suc. Belenes    NA      NA     1     1   NA    NA
## 7692    Suc. Belenes     6       8     8    13   11    13
## 7693    Suc. Belenes    20      14    25    37   23    25
## 7694    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7695    Suc. Belenes     4       6     6    13    6     4
## 7696    Suc. Belenes     1       1    NA     1    1     1
## 7697    Suc. Belenes     2       4     2     4    4     4
## 7698    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7699    Suc. Belenes    69      34    42    58   55    34
## 7700    Suc. Belenes    NA      NA    NA    NA   NA    25
## 7701    Suc. Belenes    25      32    38    44   51    48
## 7702    Suc. Belenes     2       2     2     2    2     2
## 7703    Suc. Belenes     6       6    11     6   11     8
## 7704    Suc. Belenes    17       8     6     6    6     6
## 7705    Suc. Belenes   109      39    85    99   95    67
## 7706    Suc. Belenes   201     159   201   204  218   187
## 7707    Suc. Belenes     7       7     7    10    7     3
## 7708    Suc. Belenes    15      11    21    19   17    23
## 7709    Suc. Belenes    30      17    27    34   32    30
## 7710    Suc. Belenes    82      87   110   142  110   101
## 7711    Suc. Belenes     5       4     6    10    9     8
## 7712    Suc. Belenes     2       3     3     5    3     3
## 7713    Suc. Belenes     6       6     6     8    8     8
## 7714    Suc. Belenes     6       3     5     5    6     3
## 7715    Suc. Belenes     1       1     2     1    1     4
## 7716    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7717    Suc. Belenes    NA       1     1     1    2     6
## 7718    Suc. Belenes     1       0     0     0    0     0
## 7719    Suc. Belenes     2       1     1     1    2     3
## 7720    Suc. Belenes     3       3     6     1    2     7
## 7721    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7722    Suc. Belenes     2       2     6     2    2     6
## 7723    Suc. Belenes     1       1     3     1    0     1
## 7724    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7725    Suc. Belenes     0       0     0     0    0     0
## 7726    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7727    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7728    Suc. Belenes     4       2     4     4    6     4
## 7729    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7730    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7731    Suc. Belenes    NA       3     6     3   NA    NA
## 7732    Suc. Belenes    NA       0     1     0    2    NA
## 7733    Suc. Belenes    NA       1    NA     1    1    NA
## 7734    Suc. Belenes     2       2     3     6    4     2
## 7735    Suc. Belenes    NA       0     0    NA   NA    NA
## 7736    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7737    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7738    Suc. Belenes    NA       1    NA     1    1    NA
## 7739    Suc. Belenes    NA       0     0    NA   NA    NA
## 7740    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7741    Suc. Belenes    NA      NA    NA     0   NA    NA
## 7742    Suc. Belenes    NA       1    NA     1    3    NA
## 7743    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7744    Suc. Belenes    NA       3     3     6    3     3
## 7745    Suc. Belenes    NA      NA    NA     2    2    NA
## 7746    Suc. Belenes    NA       0     0    NA   NA    NA
## 7747    Suc. Belenes     4      NA     2     2    4     2
## 7748    Suc. Belenes     6       3     6    10   10     6
## 7749    Suc. Belenes    NA      NA    NA    NA   NA     3
## 7750    Suc. Belenes     6      NA    NA    NA    3     3
## 7751    Suc. Belenes     0      NA    NA     0   NA     2
## 7752    Suc. Belenes     2       1     2     3    3     4
## 7753    Suc. Belenes     2      10     4     5    3     4
## 7754    Suc. Belenes    NA       0     0    NA   NA    NA
## 7755    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7756    Suc. Belenes     2       6     6     4    8     7
## 7757    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7758    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7759    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7760    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7761    Suc. Belenes     4      11     2     2    8     2
## 7762    Suc. Belenes     3      NA     3     3    3     3
## 7763    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7764    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7765    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7766    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7767    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7768    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7769    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7770    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7771    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7772    Suc. Belenes     3       3     2    10    2     4
## 7773    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7774    Suc. Belenes    NA       1     1     2   NA     1
## 7775    Suc. Belenes     2       2     2    NA    4    NA
## 7776    Suc. Belenes     2       3     1     3    2     1
## 7777    Suc. Belenes     3       6     6    14    6    NA
## 7778    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7779    Suc. Belenes     6       2     4     4    4     8
## 7780    Suc. Belenes     6       2     8     8    4     8
## 7781    Suc. Belenes    NA      NA     2     1    3     2
## 7782    Suc. Belenes     1       1     1     2    1     1
## 7783    Suc. Belenes    NA      NA     2     2    2    NA
## 7784    Suc. Belenes     3      NA    NA    NA    3    NA
## 7785    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7786    Suc. Belenes     8      16    37    21   24    18
## 7787    Suc. Belenes    NA      NA    NA    NA   NA    10
## 7788    Suc. Belenes     3       3     3     6    3     3
## 7789    Suc. Belenes     3       3     8     8    3     5
## 7790    Suc. Belenes    18      35    81    28   53    53
## 7791    Suc. Belenes    46      56    53    32   28    39
## 7792    Suc. Belenes     6       4    17     6   13     6
## 7793    Suc. Belenes    11      15    25    17   17    17
## 7794    Suc. Belenes    44      36    46    57   40    40
## 7795    Suc. Belenes     2       5     6     5    7     8
## 7796    Suc. Belenes    NA       2     5     3    3     3
## 7797    Suc. Belenes     2       6     2     2    2     2
## 7798    Suc. Belenes     4       2     2    NA    3     2
## 7799    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7800    Suc. Belenes    NA       1     1     2    2     1
## 7801    Suc. Belenes    NA       1    NA     1   NA    NA
## 7802    Suc. Belenes     3       3     3     8    3     8
## 7803    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7804    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7805    Suc. Belenes     2       0     0     0    0     0
## 7806    Suc. Belenes    NA       1    NA    NA    1    NA
## 7807    Suc. Belenes     4       9     7     9    7     9
## 7808    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7809    Suc. Belenes    NA       2     2    NA    2    NA
## 7810    Suc. Belenes     0       0     1    NA    0    NA
## 7811    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7812    Suc. Belenes     1      NA    NA    NA   NA    NA
## 7813    Suc. Belenes     1       3     1     1    1     1
## 7814    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7815    Suc. Belenes     3      NA    NA     3   NA    NA
## 7816    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7817    Suc. Belenes     0       2     2     1   NA     2
## 7818    Suc. Belenes     1       3     3     3    1     4
## 7819    Suc. Belenes    NA       0     0     0    0     0
## 7820    Suc. Belenes    NA      NA     3    NA   NA    NA
## 7821    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7822    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7823    Suc. Belenes     1       1     1     1    1     2
## 7824    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7825    Suc. Belenes    NA       0     0     0    0     0
## 7826    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7827    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7828    Suc. Belenes     1       1     1     1    1     2
## 7829    Suc. Belenes    NA      NA     1    NA   NA    NA
## 7830    Suc. Belenes     3       6     3    NA    6     3
## 7831    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7832    Suc. Belenes     4       1     3     1    4    NA
## 7833    Suc. Belenes    NA       0     0     0    0     0
## 7834    Suc. Belenes    NA       3     3     8   NA     6
## 7835    Suc. Belenes    NA      NA     0    NA   NA    NA
## 7836    Suc. Belenes    NA       2     3     2    1     2
## 7837    Suc. Belenes     1       1     1     1    3     2
## 7838    Suc. Belenes     4       1     3     4    4     3
## 7839    Suc. Belenes    NA       0     0     0    0     0
## 7840    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7841    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7842    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7843    Suc. Belenes     6      10     3     6    4     7
## 7844    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7845    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7846    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7847    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7848    Suc. Belenes    13      27     4     2    6    19
## 7849    Suc. Belenes    10      16    19     6    6    22
## 7850    Suc. Belenes     5       3    NA     3    3     8
## 7851    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7852    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7853    Suc. Belenes    NA       1     1    NA   NA    NA
## 7854    Suc. Belenes     1      NA    NA    NA   NA     1
## 7855    Suc. Belenes     8      NA    NA    NA    7     8
## 7856    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7857    Suc. Belenes     1       1     1     2    2     2
## 7858    Suc. Belenes     2       1     2     2    2     1
## 7859    Suc. Belenes     3       3     3     6    6     3
## 7860    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7861    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7862    Suc. Belenes    NA      NA     1    NA   NA     1
## 7863    Suc. Belenes    NA       2    NA    NA   NA    NA
## 7864    Suc. Belenes     2       2     2     2    2     2
## 7865    Suc. Belenes     4       8     4     8    8     8
## 7866    Suc. Belenes     8       4     4     6    6     6
## 7867    Suc. Belenes     2       4     2     4    5     2
## 7868    Suc. Belenes    NA      NA    NA     3    3     2
## 7869    Suc. Belenes     4       4     2     2    2     4
## 7870    Suc. Belenes     2      NA     2     2    2     2
## 7871    Suc. Belenes    36      25    51    11   49     8
## 7872    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7873    Suc. Belenes     3      NA    NA    NA   NA    NA
## 7874    Suc. Belenes    22      29    32    63  105    48
## 7875    Suc. Belenes     6      14     8    14   15     9
## 7876    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7877    Suc. Belenes     3      NA    NA     1   NA    NA
## 7878    Suc. Belenes    35      67    60    70   95    18
## 7879    Suc. Belenes   254     303   359   504  313   349
## 7880    Suc. Belenes    15      25    25    32   30    25
## 7881    Suc. Belenes    61      78   101   125  144    74
## 7882    Suc. Belenes     5       5     6     7    7     4
## 7883    Suc. Belenes     3       2     6     5    8     5
## 7884    Suc. Belenes     4       2     4     2    6     2
## 7885    Suc. Belenes     1       1     1     1   NA     1
## 7886    Suc. Belenes    NA       1     1    NA   NA     1
## 7887    Suc. Belenes     1       1     1     2    2     1
## 7888    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7889    Suc. Belenes    NA       1     3     6    6    10
## 7890    Suc. Belenes     2      NA     1     0    2     0
## 7891    Suc. Belenes    NA       1    NA    NA   NA    NA
## 7892    Suc. Belenes     3       5     8     9    2    12
## 7893    Suc. Belenes    NA      NA    NA    NA   NA     1
## 7894    Suc. Belenes    NA      NA    NA    NA   NA     2
## 7895    Suc. Belenes    NA       0    NA    NA    0    NA
## 7896    Suc. Belenes     0      NA     0     0    0     0
## 7897    Suc. Belenes    NA      NA    NA     1    1    NA
## 7898    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7899    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7900    Suc. Belenes     2       2     2    NA   NA    NA
## 7901    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7902    Suc. Belenes     1      NA     3     8    1     3
## 7903    Suc. Belenes    NA       4    NA    NA    4    NA
## 7904    Suc. Belenes    NA      NA    NA    NA    1     0
## 7905    Suc. Belenes     1      NA     4     5    1     5
## 7906    Suc. Belenes     1       1     1     1    1     1
## 7907    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7908    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7909    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7910    Suc. Belenes     1      NA    NA     6    1    NA
## 7911    Suc. Belenes    NA      NA    NA    NA    4    NA
## 7912    Suc. Belenes    NA      NA    NA    NA    0     1
## 7913    Suc. Belenes     1      NA     2     1    1     1
## 7914    Suc. Belenes    NA       1     1    NA    1     1
## 7915    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7916    Suc. Belenes     1      NA    NA    NA    1    NA
## 7917    Suc. Belenes    NA      NA    NA    NA    1     1
## 7918    Suc. Belenes     1      NA     2     1    1     1
## 7919    Suc. Belenes    NA      NA     1    NA    1     1
## 7920    Suc. Belenes    NA       1     1     1    1     1
## 7921    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7922    Suc. Belenes    NA      NA     6     6   NA    NA
## 7923    Suc. Belenes    NA       4    NA     4    4    NA
## 7924    Suc. Belenes     4       4    11    15    2     8
## 7925    Suc. Belenes    NA       3    NA     3    1     1
## 7926    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7927    Suc. Belenes     2      NA     2    NA   NA    NA
## 7928    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7929    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7930    Suc. Belenes     1       8     3    11    4     3
## 7931    Suc. Belenes    NA       4    NA    NA   NA    NA
## 7932    Suc. Belenes     0      NA     0     0    1     1
## 7933    Suc. Belenes     1      NA     8     5    5     7
## 7934    Suc. Belenes     2       2     1     1    2     2
## 7935    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7936    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7937    Suc. Belenes     2      10    14     5    7     8
## 7938    Suc. Belenes    NA      NA    NA    NA   NA     0
## 7939    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7940    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7941    Suc. Belenes     1       2     1     1    3     1
## 7942    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7943    Suc. Belenes    13      17    19    19   17    23
## 7944    Suc. Belenes    13      16    19    29   19    22
## 7945    Suc. Belenes    NA      NA    NA     1   NA     1
## 7946    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7947    Suc. Belenes     4       7     4     4    7     7
## 7948    Suc. Belenes     5      10     5     8    8     8
## 7949    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7950    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7951    Suc. Belenes    NA      NA    NA     2   NA    NA
## 7952    Suc. Belenes    NA      NA    NA     4    3     1
## 7953    Suc. Belenes    NA      NA     2     2    3     2
## 7954    Suc. Belenes    NA      NA    NA     1    1    NA
## 7955    Suc. Belenes     0       0     1    NA    0     1
## 7956    Suc. Belenes     1       2     1    NA    1     2
## 7957    Suc. Belenes     5       2     3     5    2     8
## 7958    Suc. Belenes     1      NA     1     0    1     2
## 7959    Suc. Belenes     1       2     2    NA    4    NA
## 7960    Suc. Belenes    NA      NA    NA     2   NA     2
## 7961    Suc. Belenes    NA       3     5     2    1     2
## 7962    Suc. Belenes     3       6     8     8   NA     8
## 7963    Suc. Belenes     1       3     1     3    1     1
## 7964    Suc. Belenes    NA       0    NA    NA   NA    NA
## 7965    Suc. Belenes    NA      NA    NA    NA    1    NA
## 7966    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7967    Suc. Belenes     2       2    NA    NA   NA    NA
## 7968    Suc. Belenes    NA      NA    NA     1   NA    NA
## 7969    Suc. Belenes     4       2    NA     4    2    NA
## 7970    Suc. Belenes    13      13    13    17   17    15
## 7971    Suc. Belenes    NA       6     3    NA   NA    NA
## 7972    Suc. Belenes    14       8    11    17   17    17
## 7973    Suc. Belenes    11       4     4     7   11    11
## 7974    Suc. Belenes    13       8    11    15    8     8
## 7975    Suc. Belenes    NA       2     2     1    1     2
## 7976    Suc. Belenes    NA       2    NA    NA   NA     2
## 7977    Suc. Belenes    NA      NA     1    NA   NA    NA
## 7978    Suc. Belenes     4       4     2     4    2     4
## 7979    Suc. Belenes     2       2     2     2    2    NA
## 7980    Suc. Belenes     1       1     1     1   NA    NA
## 7981    Suc. Belenes    23      19    23    21   19    17
## 7982    Suc. Belenes    11      13     8    21   11     5
## 7983    Suc. Belenes    NA      NA    NA    NA   10    10
## 7984    Suc. Belenes    35      38    35    35   29    35
## 7985    Suc. Belenes    15      12    15    20   11     9
## 7986    Suc. Belenes     8      14    11    17   20     3
## 7987    Suc. Belenes    17      17    17    25   20    17
## 7988    Suc. Belenes    77      56    70    95   85    35
## 7989    Suc. Belenes   151     113   159   162  155   155
## 7990    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 7991    Suc. Belenes    38      34    36    53   42    38
## 7992    Suc. Belenes    55      63    89    72   74    63
## 7993    Suc. Belenes     7       5     6    11    9    10
## 7994    Suc. Belenes     2       3     3     5    3     2
## 7995    Suc. Belenes     4       2     6     6    6     6
## 7996    Suc. Belenes     3       2     4     5    3     3
## 7997    Suc. Belenes     1       1     1     1    2     1
## 7998    Suc. Belenes     2      NA    NA     2    1    NA
## 7999    Suc. Belenes     2       3    NA     3    4     1
## 8000    Suc. Belenes     1      NA     1     1   NA     1
## 8001    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8002    Suc. Belenes     2       2     0     2    1     0
## 8003    Suc. Belenes     2       1     1    NA    0     1
## 8004    Suc. Belenes     2       3     8     7    2     5
## 8005    Suc. Belenes    NA      NA     1     1   NA     1
## 8006    Suc. Belenes     2       2     6     4   NA    NA
## 8007    Suc. Belenes     0       1     1     2   NA    NA
## 8008    Suc. Belenes    NA      NA    NA    NA    1     1
## 8009    Suc. Belenes     1       1     1     1   NA     2
## 8010    Suc. Belenes     1      NA     2     1    1     1
## 8011    Suc. Belenes    NA       1     1     1    1     1
## 8012    Suc. Belenes     0       0     1     1    1     0
## 8013    Suc. Belenes     2       4     3     5    4     5
## 8014    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8015    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8016    Suc. Belenes     4       2     2     4    2     2
## 8017    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8018    Suc. Belenes    NA       3    NA    NA   NA    NA
## 8019    Suc. Belenes     7       7     4     7    7     4
## 8020    Suc. Belenes     0       2     1    NA    0     1
## 8021    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8022    Suc. Belenes     2      NA    NA     2    1     1
## 8023    Suc. Belenes     3       3     3     6    4     5
## 8024    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8025    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8026    Suc. Belenes     4       4     7     4    7     7
## 8027    Suc. Belenes     0       0     0    NA    0     2
## 8028    Suc. Belenes    NA      NA    NA    NA    1     1
## 8029    Suc. Belenes     3       2     2     3    1     1
## 8030    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8031    Suc. Belenes     0       0     1    NA    0     1
## 8032    Suc. Belenes    NA      NA    NA    NA    1     1
## 8033    Suc. Belenes     1       3     2     2    3     2
## 8034    Suc. Belenes     3       2     2     3    1     3
## 8035    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8036    Suc. Belenes    NA      NA     3    NA   NA    NA
## 8037    Suc. Belenes     7       4     4     7   11     7
## 8038    Suc. Belenes    NA      NA     2    NA   NA    NA
## 8039    Suc. Belenes    NA       1     1     1    3     3
## 8040    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8041    Suc. Belenes     4       4     4     4    6     8
## 8042    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8043    Suc. Belenes    NA      NA    NA     3    3     3
## 8044    Suc. Belenes     7       7     7     4   14     4
## 8045    Suc. Belenes     0       0     1    NA    0     1
## 8046    Suc. Belenes    NA       0     0     0    0     0
## 8047    Suc. Belenes    NA       2    NA    NA    1     1
## 8048    Suc. Belenes     4       4     4     7    4     7
## 8049    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8050    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8051    Suc. Belenes     3       4    NA     3    5     4
## 8052    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8053    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8054    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8055    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8056    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8058    Suc. Belenes     2       6    74     2    2     2
## 8059    Suc. Belenes     6      10   105     3    3     3
## 8060    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8061    Suc. Belenes    NA       3    28    NA   NA    NA
## 8062    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8063    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8064    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8065    Suc. Belenes    NA      NA     2     5    5    10
## 8066    Suc. Belenes    NA      NA     3     5    5     2
## 8067    Suc. Belenes    NA      NA     3     4   NA     1
## 8068    Suc. Belenes     1       1     0     0    2     1
## 8069    Suc. Belenes     0       1     0     1    1     1
## 8070    Suc. Belenes     1      NA     2    NA    1     1
## 8071    Suc. Belenes     2       1     2    NA    1     2
## 8072    Suc. Belenes    NA       1     1     1    1     1
## 8073    Suc. Belenes     2       1     1     1    1    NA
## 8074    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8075    Suc. Belenes    NA       2     1     1    1     1
## 8076    Suc. Belenes    NA       3     3     3    3    NA
## 8077    Suc. Belenes    NA       0    NA    NA   NA     0
## 8078    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8079    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8080    Suc. Belenes     2       2    NA    NA   NA    NA
## 8081    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8082    Suc. Belenes     2       2    NA     6    2    NA
## 8083    Suc. Belenes    NA      NA     2     1    1     2
## 8084    Suc. Belenes     6       6     2     8    6     2
## 8085    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8086    Suc. Belenes    11      11     4    11    7     4
## 8087    Suc. Belenes    19      13    11    19   17    19
## 8088    Suc. Belenes     1      NA     1    NA    2     3
## 8089    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8090    Suc. Belenes     2      NA    NA    NA   NA    NA
## 8091    Suc. Belenes     4      NA     2     2    2     2
## 8092    Suc. Belenes     2       1     1     1    2    NA
## 8093    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8094    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8095    Suc. Belenes    NA      NA    NA    NA   25    NA
## 8096    Suc. Belenes    32      32    45    48   18    16
## 8097    Suc. Belenes    NA      NA    NA    NA   NA    79
## 8098    Suc. Belenes    25      25    57    41   41    41
## 8099    Suc. Belenes    12      17    11    17   14    12
## 8100    Suc. Belenes     2       5    NA    NA    2    NA
## 8101    Suc. Belenes    NA      NA    NA     6   NA    NA
## 8102    Suc. Belenes     8       8     6     8   11    11
## 8103    Suc. Belenes    42      85    81    49   74    70
## 8104    Suc. Belenes    77     102   169    95  113   141
## 8105    Suc. Belenes    NA       4     2     8    6     4
## 8106    Suc. Belenes    11      46    36    61   59    61
## 8107    Suc. Belenes   116     101   112   190  213   133
## 8108    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8109    Suc. Belenes     9       3     9     6    6     6
## 8110    Suc. Belenes     9       8     6    12   10    12
## 8111    Suc. Belenes     8       5     8     8    8     9
## 8112    Suc. Belenes     8       2     8     6    6    10
## 8113    Suc. Belenes     8       4     7     7    4     4
## 8114    Suc. Belenes     1       1     1     1    1     2
## 8115    Suc. Belenes     1      NA    NA     1    2    NA
## 8116    Suc. Belenes     1      NA    NA     1    1     3
## 8117    Suc. Belenes     2       0     1     0    0     0
## 8118    Suc. Belenes     1       1     1     1    1     1
## 8119    Suc. Belenes     1       0     4    NA    1     3
## 8120    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8121    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8122    Suc. Belenes     2      NA     6     6    2     4
## 8123    Suc. Belenes     0       0     0     1    1     0
## 8124    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8125    Suc. Belenes     0       0     1     0    2     1
## 8126    Suc. Belenes     1       3     3     3    1     2
## 8127    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8128    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8129    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8130    Suc. Belenes     2       2    NA     2    2     4
## 8131    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8132    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8133    Suc. Belenes     3       8     3     8    6     3
## 8134    Suc. Belenes     0       1     0     1    1     1
## 8135    Suc. Belenes     0       2     2     1    2     2
## 8136    Suc. Belenes     4       2     5     2    7     1
## 8137    Suc. Belenes     2       2     1     2    3     3
## 8138    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8139    Suc. Belenes    NA       0     0    NA   NA    NA
## 8140    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8141    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8142    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8143    Suc. Belenes    NA      NA    NA     3    6    NA
## 8144    Suc. Belenes     0       0     0     0    0     0
## 8145    Suc. Belenes    NA       1    NA     1    1     1
## 8146    Suc. Belenes     4      NA     1     4    1     3
## 8147    Suc. Belenes     1      NA     1     1    1     1
## 8148    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8149    Suc. Belenes    NA       0     0    NA   NA    NA
## 8150    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8151    Suc. Belenes     2      NA     2    NA   NA     2
## 8152    Suc. Belenes    NA      NA    NA    NA   NA     3
## 8153    Suc. Belenes     0       1     0     1    1     1
## 8154    Suc. Belenes    NA       1    NA     0    1    NA
## 8155    Suc. Belenes     6      NA     3     2    1     3
## 8156    Suc. Belenes     1       1     1     1    1     1
## 8157    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8158    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8159    Suc. Belenes     1       1     1     1   NA     2
## 8160    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8161    Suc. Belenes    NA       6     6     3    3     8
## 8162    Suc. Belenes    NA      NA    NA     0    0     1
## 8163    Suc. Belenes     2       2     2    NA    2     4
## 8164    Suc. Belenes     1       3    NA     1    1     1
## 8165    Suc. Belenes    NA       0     0    NA   NA    NA
## 8166    Suc. Belenes     2       2    NA     2    4     2
## 8167    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8168    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8169    Suc. Belenes    NA       8    NA     6   NA     3
## 8170    Suc. Belenes     0       1     0     1    1     1
## 8171    Suc. Belenes    NA       3     2     2    1     2
## 8172    Suc. Belenes     8      NA     3     2    5     3
## 8173    Suc. Belenes     2       5     2     3    3     3
## 8174    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8175    Suc. Belenes    NA       0     0    NA   NA    NA
## 8176    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8177    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8178    Suc. Belenes     3       4     3     5    3     4
## 8179    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8180    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8181    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8182    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8183    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8184    Suc. Belenes     6      15     2    19    8    17
## 8185    Suc. Belenes    10      10    10    22   10    13
## 8186    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8187    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8188    Suc. Belenes     8      13     8    13   13    15
## 8189    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8190    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8191    Suc. Belenes     0      NA     0     0    1     1
## 8192    Suc. Belenes     1       1    NA     1   NA    NA
## 8193    Suc. Belenes     5       3     2     7    4     6
## 8194    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8195    Suc. Belenes    NA       1     1     1    1     2
## 8196    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8197    Suc. Belenes    NA       1     1     1    2     2
## 8198    Suc. Belenes    NA       3    NA     3   NA     3
## 8199    Suc. Belenes     1      NA    NA     2    2     1
## 8200    Suc. Belenes    NA      NA    NA     1   NA     1
## 8201    Suc. Belenes    NA       2    NA     2   NA     2
## 8202    Suc. Belenes     2       2     2     4    6     4
## 8203    Suc. Belenes     4       4    NA     4   NA    NA
## 8204    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8205    Suc. Belenes    11       8     6    15    4    13
## 8206    Suc. Belenes     1       1    NA     2    1     1
## 8207    Suc. Belenes     4       2     4     4    8     8
## 8208    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8209    Suc. Belenes    NA       2    NA     4    4     4
## 8210    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8211    Suc. Belenes     1       1     1     1    1     1
## 8212    Suc. Belenes    NA      NA    NA    NA    6    NA
## 8213    Suc. Belenes    21      16    16    24    5    13
## 8214    Suc. Belenes    NA      NA    NA    NA   NA    13
## 8215    Suc. Belenes    19      19    22    38   29    32
## 8216    Suc. Belenes    11       9     8     8    6     8
## 8217    Suc. Belenes    NA      NA    18    32   18    28
## 8218    Suc. Belenes   102      81    85   151  106   137
## 8219    Suc. Belenes     6       6     6     4    8     4
## 8220    Suc. Belenes    13      13    13    27   19    25
## 8221    Suc. Belenes    55      57    53    78   66    66
## 8222    Suc. Belenes     5       8     7    11    8     8
## 8223    Suc. Belenes     2       2     2     3    2     3
## 8224    Suc. Belenes     4       4     4     4    6     6
## 8225    Suc. Belenes     2       3     2     2    3     2
## 8226    Suc. Belenes    NA       1     1     2    1     3
## 8227    Suc. Belenes    NA      NA    NA     1    1    NA
## 8228    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8229    Suc. Belenes    NA       0     0     0    0     0
## 8230    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8231    Suc. Belenes     2       2     2     2    1     2
## 8232    Suc. Belenes    NA       2    NA     2   NA     2
## 8233    Suc. Belenes     0      NA    NA     0   NA     0
## 8234    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8235    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8236    Suc. Belenes    NA       2     2     4    1     2
## 8237    Suc. Belenes    NA       1     1     1   NA     1
## 8238    Suc. Belenes    NA       0     0     0    0     0
## 8239    Suc. Belenes    NA      NA    NA     1   NA     1
## 8240    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8241    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8242    Suc. Belenes    NA       3    NA     3    6     6
## 8243    Suc. Belenes     2      NA     2     0    1     1
## 8244    Suc. Belenes    NA       0    NA    NA    0    NA
## 8245    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8246    Suc. Belenes     2       1     3     3    1     1
## 8247    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8248    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8249    Suc. Belenes    NA      NA    NA     6    3     6
## 8250    Suc. Belenes     0      NA     0     0    0     1
## 8251    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8252    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8253    Suc. Belenes     1       1     1     1    1     1
## 8254    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8255    Suc. Belenes    NA      NA     2    NA   NA    NA
## 8256    Suc. Belenes    NA      NA    NA     3    3    NA
## 8257    Suc. Belenes     0      NA     0     0    1     1
## 8258    Suc. Belenes    NA      NA    NA     0   NA    NA
## 8259    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8260    Suc. Belenes     2      NA     2     1    1     1
## 8261    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8262    Suc. Belenes    NA       3     6     6    3     3
## 8263    Suc. Belenes    NA       2     2    NA    2     2
## 8264    Suc. Belenes     1       1    NA     1   NA     1
## 8265    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8266    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8267    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8268    Suc. Belenes     2      NA     0     2    1     1
## 8269    Suc. Belenes    NA      NA     0    NA   NA     0
## 8270    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8271    Suc. Belenes     3       3     3     6    4     6
## 8272    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8273    Suc. Belenes     1       3     1     4    1     4
## 8274    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8275    Suc. Belenes    NA       0    NA    NA   NA     0
## 8276    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8277    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8278    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8279    Suc. Belenes    NA      NA    NA     3   NA    NA
## 8280    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8281    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8282    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8283    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8284    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8285    Suc. Belenes    NA      NA    NA     1   NA    NA
## 8286    Suc. Belenes    11      11    11    15   15     8
## 8287    Suc. Belenes     6       8     8    11   11     6
## 8288    Suc. Belenes     2       3     3     2    1     2
## 8289    Suc. Belenes    15      21    23    30   25    19
## 8290    Suc. Belenes    NA      NA    NA     3   NA    NA
## 8291    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8292    Suc. Belenes    NA      NA     3     3    3     3
## 8293    Suc. Belenes    NA      NA     2    NA   NA    NA
## 8294    Suc. Belenes    42     175   147    99  161   161
## 8295    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8296    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8297    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8298    Suc. Belenes    27      30    30    38   32    32
## 8299    Suc. Belenes    34      23    34    57   40    36
## 8300    Suc. Belenes     3       4     4     7    6     4
## 8301    Suc. Belenes     3       3     5     8   NA     5
## 8302    Suc. Belenes     3       2     3     4    1     2
## 8303    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8304    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8306    Suc. Belenes     5       6     4    10    5     4
## 8307    Suc. Belenes    NA       2     2    NA    2     3
## 8308    Suc. Belenes     2       1     1     2    0     1
## 8309    Suc. Belenes    NA       1     1    NA   NA     1
## 8310    Suc. Belenes     4       4     6     2    4     4
## 8311    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8312    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8313    Suc. Belenes     1       3     1     2    1     1
## 8314    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8315    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8316    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8317    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8318    Suc. Belenes     2       4     3     6    3     3
## 8319    Suc. Belenes     1       0     0     1    0     0
## 8320    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8321    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8322    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8323    Suc. Belenes     1       0     0     1    0     0
## 8324    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8325    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8326    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8327    Suc. Belenes     2       1     2     3    2     1
## 8328    Suc. Belenes     1       0     0     1    0     0
## 8329    Suc. Belenes     1       3     1     2    1     3
## 8330    Suc. Belenes     3       1     3     1    4     3
## 8331    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8332    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8333    Suc. Belenes    NA      NA    NA    NA    2    NA
## 8334    Suc. Belenes    NA      NA    NA    NA   NA     3
## 8335    Suc. Belenes     3       3     5     8    4     8
## 8336    Suc. Belenes     1       0     0     1    0     0
## 8337    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8338    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8339    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8340    Suc. Belenes     4      19    NA    21   25    34
## 8341    Suc. Belenes    13      NA     3    25   38    29
## 8342    Suc. Belenes     3      NA    NA    NA   NA    NA
## 8343    Suc. Belenes    NA      NA    NA    NA    4    NA
## 8344    Suc. Belenes     8      NA    NA     8   18     5
## 8345    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8346    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8347    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8348    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8349    Suc. Belenes    NA      NA     1    NA    1     3
## 8350    Suc. Belenes     6       2     3     4    3     5
## 8351    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8352    Suc. Belenes     2      NA    NA     1   NA     1
## 8353    Suc. Belenes     2      NA     1     1    2    NA
## 8354    Suc. Belenes    NA      NA    NA     3   NA     6
## 8355    Suc. Belenes    NA       0    NA    NA   NA     0
## 8356    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8357    Suc. Belenes    NA      NA    NA    NA   NA     3
## 8358    Suc. Belenes    NA      NA     4     4    4     6
## 8359    Suc. Belenes    15      13    21    21   32    25
## 8360    Suc. Belenes    NA       2     6     3    5     2
## 8361    Suc. Belenes    17      25    17    25   20    25
## 8362    Suc. Belenes    NA      NA    14    25   34    31
## 8363    Suc. Belenes     4      NA    NA    NA   NA    NA
## 8364    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8365    Suc. Belenes    32      21    23    36   25    27
## 8366    Suc. Belenes     4       2     6     4    4     4
## 8367    Suc. Belenes     2      NA    NA    NA   NA     1
## 8368    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8369    Suc. Belenes     2       6    NA    NA   NA    NA
## 8370    Suc. Belenes     8       8     3    NA   NA    NA
## 8371    Suc. Belenes    NA      NA     2     2    4     6
## 8372    Suc. Belenes    NA      NA    23    27   42    32
## 8373    Suc. Belenes    29      26    18    24   16     5
## 8374    Suc. Belenes    NA      NA    NA    NA   NA     3
## 8375    Suc. Belenes    19      25    16    63   48    41
## 8376    Suc. Belenes    11      14    14    12   12    14
## 8377    Suc. Belenes    NA      NA    NA    NA    2     2
## 8378    Suc. Belenes    NA      NA     8    14   11    20
## 8379    Suc. Belenes    11       6     3    NA   NA    NA
## 8380    Suc. Belenes    35      63    53    99   77    77
## 8381    Suc. Belenes   102     120   109   148  144   109
## 8382    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8383    Suc. Belenes    32      25    23    30   34    34
## 8384    Suc. Belenes    49      40    46    61   49    25
## 8385    Suc. Belenes    NA      NA     8    15   NA    NA
## 8386    Suc. Belenes     9      15    NA    NA   NA    NA
## 8387    Suc. Belenes     5       5     8    12    7     8
## 8388    Suc. Belenes     3       3     3     3    8     9
## 8389    Suc. Belenes     2      NA    NA     2   NA    NA
## 8390    Suc. Belenes     3       2     4     5    4     6
## 8391    Suc. Belenes    NA       1     1    NA   NA    NA
## 8392    Suc. Belenes    NA       1    NA     1    2     1
## 8393    Suc. Belenes    NA       1    NA     1    1    NA
## 8394    Suc. Belenes     1      NA     1     5   NA     5
## 8395    Suc. Belenes     2      NA     0     1    0    NA
## 8396    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8397    Suc. Belenes     0       4    10    NA    3     8
## 8398    Suc. Belenes    NA       1    NA    NA   NA     1
## 8399    Suc. Belenes    NA       2    NA    NA   NA     2
## 8400    Suc. Belenes    NA      NA    NA    NA    0    NA
## 8401    Suc. Belenes     2      NA    NA     1    2     1
## 8402    Suc. Belenes     3       1     1     3    4     4
## 8403    Suc. Belenes     3       1     1     1   NA     1
## 8404    Suc. Belenes     2      NA    NA    NA   NA     1
## 8405    Suc. Belenes     1       0     1     0    1     0
## 8406    Suc. Belenes     3      NA     1     1    3     3
## 8407    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8408    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8409    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8410    Suc. Belenes     1      NA     4     6    6    NA
## 8411    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8412    Suc. Belenes    NA      NA     1     1    2     0
## 8413    Suc. Belenes     1      NA     1     1    2    NA
## 8414    Suc. Belenes     3      NA     1     2    3     1
## 8415    Suc. Belenes    NA       0     0    NA   NA    NA
## 8416    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8417    Suc. Belenes     1      NA     1     3    1     3
## 8418    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8419    Suc. Belenes    NA      NA     1     1    1     0
## 8420    Suc. Belenes     1      NA     1     1   NA    NA
## 8421    Suc. Belenes    NA      NA     1     1    3     1
## 8422    Suc. Belenes    NA       0     0    NA   NA    NA
## 8423    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8424    Suc. Belenes     1      NA     1     3    1     3
## 8425    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8426    Suc. Belenes    NA      NA     1     1    2     0
## 8427    Suc. Belenes     1      NA     1     1   NA    NA
## 8428    Suc. Belenes     3      NA     1     2    4     2
## 8429    Suc. Belenes    NA      NA     1    NA   NA     1
## 8430    Suc. Belenes    NA      NA    NA     6   NA    NA
## 8431    Suc. Belenes     0      NA    NA    NA   NA    NA
## 8432    Suc. Belenes    NA      NA    NA    NA    2    NA
## 8433    Suc. Belenes     3      NA    NA    NA   NA    NA
## 8434    Suc. Belenes    NA       0     0    NA   NA    NA
## 8435    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8436    Suc. Belenes     1       6     1    14    9     3
## 8437    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8438    Suc. Belenes     1       0     1     1    0     1
## 8439    Suc. Belenes     1      NA     1     1    2     2
## 8440    Suc. Belenes     3       1     2     2    4     2
## 8441    Suc. Belenes    NA       0     0    NA   NA    NA
## 8442    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8443    Suc. Belenes     3       3     3     6    3     7
## 8444    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8445    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8446    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8447    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8448    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8449    Suc. Belenes    17      36     6    19   27    34
## 8450    Suc. Belenes    48      16    29    44   44    48
## 8451    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8452    Suc. Belenes     8       5     8     8   13     3
## 8453    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8454    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8455    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8456    Suc. Belenes     2       3    NA     2    4    NA
## 8457    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8458    Suc. Belenes     1       1     1     1    1     4
## 8459    Suc. Belenes     8       6    14     8   13    12
## 8460    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8461    Suc. Belenes     1       4     1     3    4     1
## 8462    Suc. Belenes     2      NA     2    NA   NA    NA
## 8463    Suc. Belenes     2       1     2     1    2     2
## 8464    Suc. Belenes     3       6     3     8    6     6
## 8465    Suc. Belenes     3      NA    NA    NA   NA    NA
## 8466    Suc. Belenes    NA      NA     1     1    1     1
## 8467    Suc. Belenes     1       1     2     1    2     1
## 8468    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8469    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8470    Suc. Belenes     2      NA    NA     4   NA     2
## 8471    Suc. Belenes    11       6     8     6   11     6
## 8472    Suc. Belenes     3       2     5     2    3     9
## 8473    Suc. Belenes     6       3     8     8    6    11
## 8474    Suc. Belenes    21      11    NA    11   13    19
## 8475    Suc. Belenes     3       1     2     1    2     4
## 8476    Suc. Belenes     2      NA     2     2    3     6
## 8477    Suc. Belenes     2       4     2    NA    2     4
## 8478    Suc. Belenes     4       4    NA     4    2     2
## 8479    Suc. Belenes    17       8     8    13   11    15
## 8480    Suc. Belenes    55      45    13    50   74    21
## 8481    Suc. Belenes    NA      NA    NA    NA   NA   105
## 8482    Suc. Belenes    76      73   143    19  155    79
## 8483    Suc. Belenes    17      17    23    48   20     2
## 8484    Suc. Belenes     6       9    24     9   20    33
## 8485    Suc. Belenes    14       6    23    12   25    31
## 8486    Suc. Belenes    14      23    14    17   23    31
## 8487    Suc. Belenes    18      70    81    53  155    92
## 8488    Suc. Belenes   278     243   243   261  328   370
## 8489    Suc. Belenes    15      13    49    13   42    25
## 8490    Suc. Belenes    42      27    30    55   74    76
## 8491    Suc. Belenes   334     391   429   520  399   613
## 8492    Suc. Belenes    10       8    14     9   14    25
## 8493    Suc. Belenes     6       6     6     8    8     8
## 8494    Suc. Belenes     4       2     2    10    4     4
## 8495    Suc. Belenes     7       5     5     6    4     5
## 8496    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8497    Suc. Belenes     1       1     3     3    1     2
## 8498    Suc. Belenes    NA      NA    NA     2    1    NA
## 8499    Suc. Belenes     1       3     7     3    6     5
## 8500    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8501    Suc. Belenes     4       3     7     7    7     5
## 8502    Suc. Belenes     1       1     3     2    2     1
## 8503    Suc. Belenes     9       9    28     5   19     7
## 8504    Suc. Belenes     1       1     1     1    2     1
## 8505    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8506    Suc. Belenes    NA      NA     2     2    2     2
## 8507    Suc. Belenes    NA       1     1     0    1     0
## 8508    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8509    Suc. Belenes     0       1     0     0    0     0
## 8510    Suc. Belenes     5      NA    NA    NA    3     3
## 8511    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8512    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8513    Suc. Belenes     2       2     2    NA   NA     6
## 8514    Suc. Belenes    NA       6     8     8   11     3
## 8515    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8516    Suc. Belenes     0      NA     3     3    7     3
## 8517    Suc. Belenes     9       7    17    17   15    15
## 8518    Suc. Belenes     5       3    NA     8   NA     4
## 8519    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8520    Suc. Belenes    NA       2    NA    NA    2     2
## 8521    Suc. Belenes    NA       6     6     6    3    NA
## 8522    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8523    Suc. Belenes    NA      NA    NA    NA    4     2
## 8524    Suc. Belenes     1       7    NA     6    4     1
## 8525    Suc. Belenes     3       3    NA    NA   NA    NA
## 8526    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8527    Suc. Belenes    NA       2     2    NA    2     6
## 8528    Suc. Belenes    NA      NA     8    NA   20    NA
## 8529    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8530    Suc. Belenes     0      NA    NA     5    8     5
## 8531    Suc. Belenes     3       3    11     6   NA    11
## 8532    Suc. Belenes     5       3    NA    NA    3     1
## 8533    Suc. Belenes     1       1     1    NA    2     1
## 8534    Suc. Belenes    NA      11    11     8   20    NA
## 8535    Suc. Belenes     8      13     6    17   25    15
## 8536    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8537    Suc. Belenes     4       4     4     2    4    21
## 8538    Suc. Belenes     8      23    11     8   34     8
## 8539    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8540    Suc. Belenes     0       1    NA     2    9     5
## 8541    Suc. Belenes    20      15    27    30   42    15
## 8542    Suc. Belenes     3      13     3     5   10    NA
## 8543    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8544    Suc. Belenes    NA      NA     1     1    1    NA
## 8545    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8546    Suc. Belenes     4       6     6    14    8     9
## 8547    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8548    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8549    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8550    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8551    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8552    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8553    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8554    Suc. Belenes     2       6     2     2    8     2
## 8555    Suc. Belenes     3      13     6     3   10     3
## 8556    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8557    Suc. Belenes    NA       5     5    NA    8    NA
## 8558    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8559    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8560    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8561    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8562    Suc. Belenes    NA      NA    NA     1    1    NA
## 8563    Suc. Belenes     1       1    NA     1    1     1
## 8564    Suc. Belenes    NA      NA     1    NA   NA     1
## 8565    Suc. Belenes     6       4     4     5    1     4
## 8566    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8567    Suc. Belenes    NA       1     1     1   NA    NA
## 8568    Suc. Belenes     2      NA     2     2    2     4
## 8569    Suc. Belenes     2       2     2     1    2     2
## 8570    Suc. Belenes    NA       3     8     6    6    11
## 8571    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8572    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8573    Suc. Belenes    NA      NA     1    NA    1    NA
## 8574    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8575    Suc. Belenes    NA      NA    NA    NA    2    NA
## 8576    Suc. Belenes    NA       2     2     2    6     2
## 8577    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8578    Suc. Belenes     2      NA     4     8    4     2
## 8579    Suc. Belenes    NA      NA    NA    NA    8     3
## 8580    Suc. Belenes     6      11     6    11    4     8
## 8581    Suc. Belenes     6       6     7     6    4     5
## 8582    Suc. Belenes    NA      NA    NA     2    3    NA
## 8583    Suc. Belenes    NA      NA    NA     2    2     2
## 8584    Suc. Belenes     2       2     4     6    6     4
## 8585    Suc. Belenes     3       3     3     2    3     2
## 8586    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8587    Suc. Belenes    NA      NA    NA    NA    2    NA
## 8588    Suc. Belenes    16      13    24    24   29    16
## 8589    Suc. Belenes    NA      NA    NA    NA   NA    19
## 8590    Suc. Belenes    25      41    79    63   57   108
## 8591    Suc. Belenes     8      11     6    20   20    23
## 8592    Suc. Belenes    NA      NA    NA    NA    6     3
## 8593    Suc. Belenes    11      18    18    28   14    70
## 8594    Suc. Belenes   134     187   208   187  317   289
## 8595    Suc. Belenes    NA       2     2    NA   NA    NA
## 8596    Suc. Belenes    25      13    17     2    4    15
## 8597    Suc. Belenes   139     120   199   129  218   194
## 8598    Suc. Belenes    NA       3    NA    NA   NA    NA
## 8599    Suc. Belenes     6       9     8     9    9    19
## 8600    Suc. Belenes     5       5     5     6    8     5
## 8601    Suc. Belenes     2       4     2     2    6     4
## 8602    Suc. Belenes     5       4     5     7    5     5
## 8603    Suc. Belenes    NA       1     1     1    2     1
## 8604    Suc. Belenes    NA       1    NA     1   NA    NA
## 8605    Suc. Belenes     1       1     1    NA    3     3
## 8606    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8607    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8608    Suc. Belenes     2       0     0     0    0     0
## 8609    Suc. Belenes    NA       0    NA    NA    1    NA
## 8610    Suc. Belenes     3       5     9     1    5    10
## 8611    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8612    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8613    Suc. Belenes    NA      NA     2     2    2     4
## 8614    Suc. Belenes     1       0     0     1    1     1
## 8615    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8616    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8617    Suc. Belenes     0       1     0     0    0     1
## 8618    Suc. Belenes    NA      NA    NA     1    3     1
## 8619    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8620    Suc. Belenes    NA      NA    NA    17    8     3
## 8621    Suc. Belenes     1       1     1     1    1     1
## 8622    Suc. Belenes     0       0    NA     3    4     3
## 8623    Suc. Belenes     2       3     1     2   12     4
## 8624    Suc. Belenes     1       1     1     3    2     1
## 8625    Suc. Belenes    NA       0     0    NA   NA    NA
## 8626    Suc. Belenes    NA      NA     3    NA    8    11
## 8627    Suc. Belenes     0       0    NA     1    0     0
## 8628    Suc. Belenes    NA      NA    NA     2    3     1
## 8629    Suc. Belenes    NA       1     1     2    3     4
## 8630    Suc. Belenes     1       1     2     3    3     1
## 8631    Suc. Belenes    NA       0     0    NA   NA    NA
## 8632    Suc. Belenes    NA      NA    NA     3    6    NA
## 8633    Suc. Belenes     1       1    NA     1    1     1
## 8634    Suc. Belenes    NA      NA     0     2    3     3
## 8635    Suc. Belenes    NA       1     1     2    3     4
## 8636    Suc. Belenes     1       1     1     1    3     1
## 8637    Suc. Belenes    NA      NA     1     1   NA     1
## 8638    Suc. Belenes    NA      NA    NA    NA    6     3
## 8639    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8640    Suc. Belenes    NA      NA    NA     1    2    NA
## 8641    Suc. Belenes     2       2    NA     2   NA     2
## 8642    Suc. Belenes    NA      NA     1     3    3     1
## 8643    Suc. Belenes    NA       0     0    NA   NA    NA
## 8644    Suc. Belenes    NA       3    NA     3   28    11
## 8645    Suc. Belenes     1       1     3     1    1     1
## 8646    Suc. Belenes    NA      NA    NA     2    5     3
## 8647    Suc. Belenes     6       5     3     4   14    15
## 8648    Suc. Belenes     1      NA     3     2    4     1
## 8649    Suc. Belenes    NA       0     0    NA   NA    NA
## 8650    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8651    Suc. Belenes     1       3     4     1    4    12
## 8652    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8653    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8654    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8655    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8656    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8657    Suc. Belenes     2       2     2     2    6     2
## 8658    Suc. Belenes     3       3     3     3   13     6
## 8659    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8660    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8661    Suc. Belenes    NA      NA    NA     3    8     3
## 8662    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8663    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8664    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8665    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8666    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8667    Suc. Belenes    NA      NA     1    NA    1    NA
## 8668    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8669    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8670    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8671    Suc. Belenes     2       2     4     1    5     5
## 8672    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8673    Suc. Belenes     1       1     2     1    2     1
## 8674    Suc. Belenes     2       1     1     1    1     1
## 8675    Suc. Belenes     6      NA     3    NA    3     6
## 8676    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8677    Suc. Belenes    NA       1    NA    NA    1    NA
## 8678    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8679    Suc. Belenes     6       6     2     4    4     4
## 8680    Suc. Belenes    NA      NA    NA    NA    2    NA
## 8681    Suc. Belenes    23      31    11    31   28    11
## 8682    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8683    Suc. Belenes     6       2     4     6    4     6
## 8684    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8685    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8686    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8687    Suc. Belenes    NA      NA     2     4    4    NA
## 8688    Suc. Belenes     5      21     8    11   13     8
## 8689    Suc. Belenes    NA      NA    NA    NA   NA     6
## 8690    Suc. Belenes    22      22    25    22   19    13
## 8691    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8692    Suc. Belenes     3       5     3     5    3     5
## 8693    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8694    Suc. Belenes    17      45    20    31   31    25
## 8695    Suc. Belenes    23      17    23    20   20     6
## 8696    Suc. Belenes    85      70    67    88   92    95
## 8697    Suc. Belenes    70      95    67    95   81    77
## 8698    Suc. Belenes     2       4     2     6    6     4
## 8699    Suc. Belenes     8      17    13    15   19    17
## 8700    Suc. Belenes    70      70    72    70   70    66
## 8701    Suc. Belenes     4       2     2     2    3     1
## 8702    Suc. Belenes     3       2    NA     3    3     3
## 8703    Suc. Belenes    NA       2    NA     2    2     2
## 8704    Suc. Belenes    NA      NA    NA     1    1     1
## 8705    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8706    Suc. Belenes     1       1     1     1    3     3
## 8707    Suc. Belenes    NA      NA    NA     1    1    NA
## 8708    Suc. Belenes    NA      NA    NA    NA    4    NA
## 8709    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8710    Suc. Belenes     1       4     2     0    4     0
## 8711    Suc. Belenes     1       1     1     1    1    NA
## 8712    Suc. Belenes     4       2     2     1    4     3
## 8713    Suc. Belenes     2       2    NA     2    1    NA
## 8714    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8715    Suc. Belenes     2       2     2     2    2     2
## 8716    Suc. Belenes     1      NA     1     0    1     0
## 8717    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8718    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8719    Suc. Belenes     0       0     0     0    0     0
## 8720    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8721    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8722    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8723    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8724    Suc. Belenes    NA      NA     3    NA    6     3
## 8725    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8726    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8727    Suc. Belenes    NA      NA     0    NA    0     0
## 8728    Suc. Belenes     2       2     4     6    4     3
## 8729    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8730    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8731    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8732    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8733    Suc. Belenes    NA      NA    NA    NA   NA     3
## 8734    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8735    Suc. Belenes     0      NA    NA    NA    0    NA
## 8736    Suc. Belenes    NA      NA    NA     2   NA     1
## 8737    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8738    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8739    Suc. Belenes    NA      NA    NA     3   NA    NA
## 8740    Suc. Belenes    NA      NA     3    NA    3     3
## 8741    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8742    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8743    Suc. Belenes    NA       2     2     6    4     5
## 8744    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8745    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8746    Suc. Belenes    NA      NA     3    NA   NA    NA
## 8747    Suc. Belenes     4      NA    NA    NA   NA    NA
## 8748    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8749    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8750    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8751    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8752    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8753    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8754    Suc. Belenes     3      NA    NA     3   NA     3
## 8755    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8756    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8757    Suc. Belenes    NA      NA    NA     0    0    NA
## 8758    Suc. Belenes    NA       2     2     6    4     5
## 8759    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8760    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8761    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8762    Suc. Belenes     3      NA     4    NA    4     4
## 8763    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8764    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8765    Suc. Belenes    NA      NA    NA     1    5     1
## 8766    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8767    Suc. Belenes     8      23     2     6    8    15
## 8768    Suc. Belenes    13       3     6    10   13    19
## 8769    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8770    Suc. Belenes     5       5     3     8    5     8
## 8771    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8772    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8773    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8774    Suc. Belenes    NA      NA     1    NA    1    NA
## 8775    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8776    Suc. Belenes     2       1     1     1    2     2
## 8777    Suc. Belenes    12       6     8     8    8    10
## 8778    Suc. Belenes    NA       0     1    NA    1     1
## 8779    Suc. Belenes     2       2     4    NA    1     1
## 8780    Suc. Belenes    NA      NA    NA     4    4     2
## 8781    Suc. Belenes     2       2     2     1    5     5
## 8782    Suc. Belenes     6       8     8     6    6    11
## 8783    Suc. Belenes    NA       1    NA    NA    4     1
## 8784    Suc. Belenes     0       1     0     0    0     0
## 8785    Suc. Belenes     1       1     1     1    1     1
## 8786    Suc. Belenes     1      NA    NA     1   NA     1
## 8787    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8788    Suc. Belenes     2       2     2     2    2     4
## 8789    Suc. Belenes     1       2     1    NA    1    NA
## 8790    Suc. Belenes     6       8     4     4    4     4
## 8791    Suc. Belenes    11       8    17    17   11    11
## 8792    Suc. Belenes    13      13     4     8    4     6
## 8793    Suc. Belenes     3       3     5     3    3     5
## 8794    Suc. Belenes    NA       2     1    NA    1    NA
## 8795    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8796    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8797    Suc. Belenes     4       2     2    NA   NA    NA
## 8798    Suc. Belenes     8       6    NA     6    6     3
## 8799    Suc. Belenes     2       2    NA     4   NA    NA
## 8800    Suc. Belenes    NA      NA    NA    NA    1    NA
## 8801    Suc. Belenes    NA       6     4     6    8     4
## 8802    Suc. Belenes     5      37    34    NA   45    NA
## 8803    Suc. Belenes    10       6     3    10    3    10
## 8804    Suc. Belenes    38      70    98    41   54   105
## 8805    Suc. Belenes    11      14    11    48    2     8
## 8806    Suc. Belenes     2       3     5     5    5     6
## 8807    Suc. Belenes    11      11     8    17   17     8
## 8808    Suc. Belenes     3       8     6     6    3     3
## 8809    Suc. Belenes     7      25    67     4   25    25
## 8810    Suc. Belenes   173     232   120    88  250   148
## 8811    Suc. Belenes     8      11     8    13    8    19
## 8812    Suc. Belenes    23      19    11    19   27    49
## 8813    Suc. Belenes    97     131   186   137  108   125
## 8814    Suc. Belenes     3       3     3     9   NA    NA
## 8815    Suc. Belenes     7       3     5     5    4     4
## 8816    Suc. Belenes     2       2     5     3    5     3
## 8817    Suc. Belenes     2       4     2     6    4     4
## 8818    Suc. Belenes     6       6     4     5    4     3
## 8819    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8820    Suc. Belenes     1       1     2     1    3     2
## 8821    Suc. Belenes     1       1    NA     2    1     1
## 8822    Suc. Belenes     4       1     2    NA   NA     3
## 8823    Suc. Belenes     1      NA    NA    NA   NA    NA
## 8824    Suc. Belenes     3       0     1     0    2     0
## 8825    Suc. Belenes     2       1    NA     2    2     1
## 8826    Suc. Belenes     8      29     3     9   11    15
## 8827    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8828    Suc. Belenes    NA      NA    NA    NA   NA     0
## 8829    Suc. Belenes     6       2     2     4    2     4
## 8830    Suc. Belenes     1       1     1     0    1     0
## 8831    Suc. Belenes     1       1     1     0    0     1
## 8832    Suc. Belenes    NA      NA    NA    NA    3     3
## 8833    Suc. Belenes     4       3    NA    NA    5     1
## 8834    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8835    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8836    Suc. Belenes    NA       2     2     2    4     2
## 8837    Suc. Belenes     3      NA     3    NA   NA     3
## 8838    Suc. Belenes    NA      NA    NA    NA   NA     6
## 8839    Suc. Belenes     3      11     6     9    6     3
## 8840    Suc. Belenes    NA       4    NA     7    4    NA
## 8841    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8842    Suc. Belenes    NA      NA    NA    NA    0    NA
## 8843    Suc. Belenes     6       1    13     3    4     2
## 8844    Suc. Belenes     4      NA    NA     4    3     2
## 8845    Suc. Belenes     0       1    NA    NA    0     0
## 8846    Suc. Belenes    NA       0    NA     0    0    NA
## 8847    Suc. Belenes     4      NA    NA     2    6     2
## 8848    Suc. Belenes     3      NA     3    NA   NA     3
## 8849    Suc. Belenes    NA       8     6     9    3     3
## 8850    Suc. Belenes    NA       4    NA     7    4    NA
## 8851    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8852    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8853    Suc. Belenes     6       1     3     1   NA     2
## 8854    Suc. Belenes     4      NA    NA    NA    3    NA
## 8855    Suc. Belenes     0       1    NA    NA    0     0
## 8856    Suc. Belenes    NA       0    NA     0    0    NA
## 8857    Suc. Belenes     2      NA     2    NA   NA     4
## 8858    Suc. Belenes     6      NA     3    NA   NA     3
## 8859    Suc. Belenes     3       3     8     9    6     8
## 8860    Suc. Belenes    NA       4    NA     4    4    NA
## 8861    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8862    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8863    Suc. Belenes     6       1     1     1   NA     2
## 8864    Suc. Belenes     4      NA    NA     1   NA     1
## 8865    Suc. Belenes     0       1    NA    NA    0     0
## 8866    Suc. Belenes     2       3    NA     1    1     1
## 8867    Suc. Belenes     3       8     8     6    8     6
## 8868    Suc. Belenes    NA      NA    NA     4    4    NA
## 8869    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8870    Suc. Belenes    11      NA     4    NA   NA    NA
## 8871    Suc. Belenes     3       3    NA    NA    4     3
## 8872    Suc. Belenes    NA       0    NA     0    0    NA
## 8873    Suc. Belenes     6       4     4     2    2     2
## 8874    Suc. Belenes     3       3     3     3    3     3
## 8875    Suc. Belenes    NA      NA    NA    NA   NA     6
## 8876    Suc. Belenes     6       3    23     6   17     6
## 8877    Suc. Belenes    NA       4    NA     7    7    NA
## 8878    Suc. Belenes    NA       0    NA    NA   NA    NA
## 8879    Suc. Belenes     0       0     0     0   NA     1
## 8880    Suc. Belenes     6       1     9     1   NA     4
## 8881    Suc. Belenes     4       3     3     4    4     5
## 8882    Suc. Belenes     0       1    NA    NA    0     0
## 8883    Suc. Belenes    NA       0    NA     0    0    NA
## 8884    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8885    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8886    Suc. Belenes     6       8     5     4    2     8
## 8887    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8888    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8889    Suc. Belenes     3      NA     6     8    3     6
## 8890    Suc. Belenes     3      NA     8    NA    3     3
## 8891    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8892    Suc. Belenes    42      44     4     2   38    21
## 8893    Suc. Belenes    32      35    13    44   51    25
## 8894    Suc. Belenes   123     141    NA    NA   NA    42
## 8895    Suc. Belenes    13      NA    NA    NA    5     3
## 8896    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8897    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8898    Suc. Belenes     2       4     5     7    7     4
## 8899    Suc. Belenes     2       3     3     5    6     3
## 8900    Suc. Belenes     0      NA    NA    NA   NA    NA
## 8901    Suc. Belenes    NA      NA    NA     0    0    NA
## 8902    Suc. Belenes    NA      NA     2    NA   NA    NA
## 8903    Suc. Belenes     1      NA    NA     1    1     1
## 8904    Suc. Belenes     1       1     2     3    1     1
## 8905    Suc. Belenes    NA      NA    NA    NA   NA     1
## 8906    Suc. Belenes     4       2     2     3    2    NA
## 8907    Suc. Belenes    NA      NA    NA    NA    6     2
## 8908    Suc. Belenes     2       1     1     1    1     1
## 8909    Suc. Belenes     3       3    NA     6    6     3
## 8910    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8911    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8912    Suc. Belenes    NA       0    NA     0    0    NA
## 8913    Suc. Belenes     1      NA     1     1    1     1
## 8914    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8915    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8916    Suc. Belenes     2       2     2     2    6     2
## 8917    Suc. Belenes     6       3     6     6   11     3
## 8918    Suc. Belenes     4       6     2     8    8     8
## 8919    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8920    Suc. Belenes    NA      NA    NA     1   NA    NA
## 8921    Suc. Belenes    NA       2    NA     2   NA     2
## 8922    Suc. Belenes     2      NA    NA     2   NA    NA
## 8923    Suc. Belenes    21      25    19    40   42    17
## 8924    Suc. Belenes    24      48    32    NA   26    24
## 8925    Suc. Belenes    16      19     6    16   32    57
## 8926    Suc. Belenes     3       3    10     6    6     6
## 8927    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8928    Suc. Belenes     8       3    12    20    2     5
## 8929    Suc. Belenes     2      NA    NA     2   NA    NA
## 8930    Suc. Belenes    20      20    17    37   20    11
## 8931    Suc. Belenes    21     159    85    85  254    63
## 8932    Suc. Belenes     4       4    53     7   81     4
## 8933    Suc. Belenes    32      32    38    16    6    25
## 8934    Suc. Belenes    25      15     4     4   NA     6
## 8935    Suc. Belenes    51      76    91    76  114    78
## 8936    Suc. Belenes    76      87    59   171   87    95
## 8937    Suc. Belenes     8      10     5     5    3     3
## 8938    Suc. Belenes     6       6     6     3    3    NA
## 8939    Suc. Belenes     2       2    NA     1    3     1
## 8940    Suc. Belenes    NA       2     5     3    8     3
## 8941    Suc. Belenes     2       4     6     6   10     4
## 8942    Suc. Belenes     2       2     2     3    3     3
## 8943    Suc. Belenes    NA      NA     1    NA   NA    NA
## 8944    Suc. Belenes     1       1     1     2    2     1
## 8945    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8946    Suc. Belenes    NA       1     3     3    3     1
## 8947    Suc. Belenes     5       0     0     0    0     0
## 8948    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8949    Suc. Belenes     3       7     7     8   12     3
## 8950    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8951    Suc. Belenes    NA       2     2    NA    2    NA
## 8952    Suc. Belenes     0      NA    NA     0   NA    NA
## 8953    Suc. Belenes     1       2     3     3    4     5
## 8954    Suc. Belenes     0       0     0     0    0     0
## 8955    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8956    Suc. Belenes     6      NA    NA     2   NA     2
## 8957    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8958    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8959    Suc. Belenes    NA       1    NA    NA   NA    NA
## 8960    Suc. Belenes     4      18    11    11   15     4
## 8961    Suc. Belenes    NA      NA    NA     0    0    NA
## 8962    Suc. Belenes    NA      NA    NA     1    1     0
## 8963    Suc. Belenes     2       1     1     1    2     2
## 8964    Suc. Belenes     3       3     3     3    3     3
## 8965    Suc. Belenes    NA      NA    NA     0    0     0
## 8966    Suc. Belenes    NA       0    NA    NA    0    NA
## 8967    Suc. Belenes     2       2    NA     2    4     4
## 8968    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8969    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8970    Suc. Belenes     3       1    NA    NA   NA     3
## 8971    Suc. Belenes     4       7    11     7    8    12
## 8972    Suc. Belenes    NA      NA    NA     0    0    NA
## 8973    Suc. Belenes    NA       0     0     0   NA     1
## 8974    Suc. Belenes     2       1     1     1    2     2
## 8975    Suc. Belenes     3       5     3     3    3    NA
## 8976    Suc. Belenes    NA      NA    NA     0    0     0
## 8977    Suc. Belenes    NA       0    NA    NA    0    NA
## 8978    Suc. Belenes     2      NA    NA    NA   NA     2
## 8979    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8980    Suc. Belenes    NA       1    NA    NA    3    NA
## 8981    Suc. Belenes     4      NA     4     7    8     4
## 8982    Suc. Belenes    NA      NA    NA     0    0    NA
## 8983    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8984    Suc. Belenes     2       1     1     1    2     2
## 8985    Suc. Belenes    NA      NA    NA     0    0     0
## 8986    Suc. Belenes     3      NA    NA     3    1     2
## 8987    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8988    Suc. Belenes    NA      NA    NA    NA    3    NA
## 8989    Suc. Belenes     4       4     4    NA    4    NA
## 8990    Suc. Belenes    NA       0     0     0    0     0
## 8991    Suc. Belenes     3       1     4     3    3     4
## 8992    Suc. Belenes    NA       0    NA    NA    0    NA
## 8993    Suc. Belenes     4       6     4     6    2     2
## 8994    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 8995    Suc. Belenes    NA      NA    NA    NA   NA     2
## 8996    Suc. Belenes    NA      NA    NA     2   NA    NA
## 8997    Suc. Belenes    NA       1     3     3   NA    NA
## 8998    Suc. Belenes     4       7     4    14   18     4
## 8999    Suc. Belenes    NA      NA    NA     0    0    NA
## 9000    Suc. Belenes     0       1     1     0   NA     0
## 9001    Suc. Belenes     2       1     1     1    2     2
## 9002    Suc. Belenes     5       8     3     8    5     5
## 9003    Suc. Belenes    NA      NA    NA     0    0     0
## 9004    Suc. Belenes    NA       0    NA    NA    0    NA
## 9005    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9006    Suc. Belenes    NA      NA     3     1    4     1
## 9007    Suc. Belenes    NA      NA    NA     0   NA    NA
## 9008    Suc. Belenes    14      11    14     8   17     8
## 9009    Suc. Belenes    76     152   110    NA  116    59
## 9010    Suc. Belenes    48      82    89    35   79    57
## 9011    Suc. Belenes     8      30    NA    NA    5    13
## 9012    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9013    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9014    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9015    Suc. Belenes     3       1     2     3    3     2
## 9016    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9017    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9018    Suc. Belenes     2      NA    NA    NA   NA    NA
## 9019    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9020    Suc. Belenes    NA       5     3    NA    2     8
## 9021    Suc. Belenes     6       4     6     8    6     4
## 9022    Suc. Belenes     3       8     8    14   11    11
## 9023    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9024    Suc. Belenes     2       2    NA     3   NA     2
## 9025    Suc. Belenes    15       8    19    21   17    19
## 9026    Suc. Belenes    NA       2     3     2    4     3
## 9027    Suc. Belenes     2       2     3     3    3     3
## 9028    Suc. Belenes     2      NA     2     4    4     2
## 9029    Suc. Belenes     2      NA     4     4    4     4
## 9030    Suc. Belenes    44      30    27    36   32    36
## 9031    Suc. Belenes     3      NA    NA    NA   NA    NA
## 9032    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9033    Suc. Belenes    NA      10    NA     3    3    NA
## 9034    Suc. Belenes     3      NA    NA    NA   NA    NA
## 9035    Suc. Belenes    51      20    45    39   37    37
## 9036    Suc. Belenes    67      53    60    85   81    70
## 9037    Suc. Belenes    14      14    NA    NA   NA    NA
## 9038    Suc. Belenes    22      22    20    25   20    17
## 9039    Suc. Belenes   154     125   135   144  139   137
## 9040    Suc. Belenes    30      34    36    34   36    42
## 9041    Suc. Belenes    13      10    14    15   11    12
## 9042    Suc. Belenes    23      18    15    27   20    21
## 9043    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9044    Suc. Belenes    10      NA     5     7   15    10
## 9045    Suc. Belenes    23      12     5    16   12     8
## 9046    Suc. Belenes     6      NA    NA    NA   NA    NA
## 9047    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9048    Suc. Belenes    NA       2    NA    NA    2    NA
## 9049    Suc. Belenes    17      12    20    17   20    11
## 9050    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9051    Suc. Belenes     8       8     6    15    8     6
## 9052    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9053    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9054    Suc. Belenes    NA      NA     2     2    2     4
## 9055    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9056    Suc. Belenes    NA       4     4     4    4     4
## 9057    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9058    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9059    Suc. Belenes     5       2     4     6    6     5
## 9060    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9061    Suc. Belenes     4       7     7     4    7     7
## 9062    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9063    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9064    Suc. Belenes     5       2     3     5    4     4
## 9065    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9066    Suc. Belenes    NA      NA     4     4    4    NA
## 9067    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9068    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9069    Suc. Belenes     4       3     3     4    6     6
## 9070    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9071    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9072    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9073    Suc. Belenes     2       2     4     4    6     8
## 9074    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9075    Suc. Belenes     4       4    11     7    7    11
## 9076    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9077    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9078    Suc. Belenes     7       4     6     8    6     8
## 9079    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9080    Suc. Belenes    NA       6     3     9   10     5
## 9081    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9082    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9083    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9084    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9085    Suc. Belenes    15       8    15    17   15    19
## 9086    Suc. Belenes    13      29    19    41   35    29
## 9087    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9088    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9089    Suc. Belenes    NA       8     8     8    5     8
## 9090    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9091    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9092    Suc. Belenes     1       2     0     1    2    NA
## 9093    Suc. Belenes    21      NA     4    NA    2     2
## 9094    Suc. Belenes    NA       3     3     2   NA    NA
## 9095    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9096    Suc. Belenes    NA      NA     1     1    1     1
## 9097    Suc. Belenes     0       0     1    NA    1     0
## 9098    Suc. Belenes     2       1     1     3    1     1
## 9099    Suc. Belenes     6       5     5    10   12     6
## 9100    Suc. Belenes    NA      NA     1     0    0     0
## 9101    Suc. Belenes     2       1     1     2    3     1
## 9102    Suc. Belenes     0       2    NA    NA   NA    NA
## 9103    Suc. Belenes     2       1     2     1    1     1
## 9104    Suc. Belenes     3       6     8     6   11    NA
## 9105    Suc. Belenes     0       0     0     0   NA    NA
## 9106    Suc. Belenes     1      NA     1    NA    2     2
## 9107    Suc. Belenes     2      NA     1     1    1     1
## 9108    Suc. Belenes    NA       2     2     2    2    NA
## 9109    Suc. Belenes     2       2     2     4    2     2
## 9110    Suc. Belenes    NA      NA    NA     3   NA    NA
## 9111    Suc. Belenes    14      NA    NA     7    7     7
## 9112    Suc. Belenes    NA      NA     2    NA   NA    NA
## 9113    Suc. Belenes    11      11     4     8    6    11
## 9114    Suc. Belenes    NA       1     1     2    1     1
## 9115    Suc. Belenes     2       2     4     2    2     2
## 9116    Suc. Belenes     4       2     2     4    2     2
## 9117    Suc. Belenes    NA      NA    NA     1   NA     1
## 9118    Suc. Belenes     2      27    27    25    4    30
## 9119    Suc. Belenes    NA      29    26     3   18    37
## 9120    Suc. Belenes    NA      NA     3    NA   NA    10
## 9121    Suc. Belenes     3       3     6    19    3     3
## 9122    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9123    Suc. Belenes     8      47    18    20   23    24
## 9124    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9125    Suc. Belenes    NA      NA    NA    NA    6    NA
## 9126    Suc. Belenes    63     155    70   176  123   102
## 9127    Suc. Belenes     4      46    28    42    4    85
## 9128    Suc. Belenes    13      59    23    25   30    36
## 9129    Suc. Belenes     8     139    80    76   59    70
## 9130    Suc. Belenes   108      89    57    61  323    93
## 9131    Suc. Belenes     6       4     6     7    6     4
## 9132    Suc. Belenes     9       6    11     9   11     5
## 9133    Suc. Belenes     6       8    12     8    8    12
## 9134    Suc. Belenes     6       6     8     4    6     7
## 9135    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9136    Suc. Belenes     5       1     3     2    6     8
## 9137    Suc. Belenes     3      NA    NA     1    1    NA
## 9138    Suc. Belenes    15      NA     1     4    8     6
## 9139    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9140    Suc. Belenes     2       1     4     2    0     1
## 9141    Suc. Belenes     2       3     2     2    3     3
## 9142    Suc. Belenes     3       5    10     4    8    11
## 9143    Suc. Belenes     1       1     2     1    1    NA
## 9144    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9145    Suc. Belenes    NA      NA     2     2    4    NA
## 9146    Suc. Belenes     0       3     1     0    1     1
## 9147    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9148    Suc. Belenes     0       1     1     1    1     1
## 9149    Suc. Belenes     1       1    NA    NA   NA     1
## 9150    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9151    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9152    Suc. Belenes     2       4     4     6    2     4
## 9153    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9154    Suc. Belenes    NA       3    NA     8    6    NA
## 9155    Suc. Belenes     7      11     4     7    4     9
## 9156    Suc. Belenes     0       0     1    NA    1     0
## 9157    Suc. Belenes     3       4     7     3    3     2
## 9158    Suc. Belenes     3       2     8     5    5     1
## 9159    Suc. Belenes     4       4     8     5    4     3
## 9160    Suc. Belenes     0      NA    NA     0    1     0
## 9161    Suc. Belenes    NA       0    NA     0    1     0
## 9162    Suc. Belenes     6       4     6     6    4     6
## 9163    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9164    Suc. Belenes    NA      NA     3     8    3     3
## 9165    Suc. Belenes     4      11     4     4    4     5
## 9166    Suc. Belenes     0       0     0    NA    1     0
## 9167    Suc. Belenes     2       3     4     2    2     2
## 9168    Suc. Belenes     3       2     2     5    5     1
## 9169    Suc. Belenes     1       4     7     5    6     4
## 9170    Suc. Belenes     0      NA    NA     0    1     0
## 9171    Suc. Belenes    NA       0    NA     0    1     0
## 9172    Suc. Belenes     2       2     4     4    2     2
## 9173    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9174    Suc. Belenes    NA      NA    NA    NA    3    NA
## 9175    Suc. Belenes    NA       4    NA    NA   NA     5
## 9176    Suc. Belenes     0       0     1    NA    1     0
## 9177    Suc. Belenes     2       3     4     1    1     1
## 9178    Suc. Belenes     3       2     2     5    5     1
## 9179    Suc. Belenes     1       3     6     2    4     2
## 9180    Suc. Belenes     0      NA    NA     0    1     0
## 9181    Suc. Belenes     2       2     4     1   NA     1
## 9182    Suc. Belenes     3       6    NA     3    6    NA
## 9183    Suc. Belenes     4      11    NA    NA    4    NA
## 9184    Suc. Belenes    NA       2     1    NA    0    NA
## 9185    Suc. Belenes    NA      NA     6    NA   NA    NA
## 9186    Suc. Belenes     1       1    NA     4    3     1
## 9187    Suc. Belenes    NA       0    NA     0    1     0
## 9188    Suc. Belenes     4       8     4     6    6     8
## 9189    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9190    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9191    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9192    Suc. Belenes    NA       3    NA     6   11    NA
## 9193    Suc. Belenes     7      11    11     4    4     9
## 9194    Suc. Belenes     0       0     1    NA    1     0
## 9195    Suc. Belenes     3       2     4     4   NA     2
## 9196    Suc. Belenes     3       2    18     7    5     1
## 9197    Suc. Belenes     4       9    13     6   10     5
## 9198    Suc. Belenes     0      NA    NA     0    1     0
## 9199    Suc. Belenes    NA       0    NA     0    1     0
## 9200    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9201    Suc. Belenes     1       7     3     4    3     5
## 9202    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9203    Suc. Belenes    NA      NA    NA     0    0    NA
## 9204    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9205    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9206    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9207    Suc. Belenes     2      NA    NA    NA   NA     4
## 9208    Suc. Belenes    NA      NA    NA    NA   NA    13
## 9209    Suc. Belenes     4      NA    NA    NA   NA    NA
## 9210    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9211    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9212    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9213    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9214    Suc. Belenes    NA      NA    NA    NA   NA    10
## 9215    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9216    Suc. Belenes     0      NA    NA    NA    0     1
## 9217    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9218    Suc. Belenes     2      NA    NA    NA   NA    NA
## 9219    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9220    Suc. Belenes     2      NA    NA    NA   NA     4
## 9221    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9222    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9223    Suc. Belenes     3      NA    NA    NA   NA    NA
## 9224    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9225    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9226    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9227    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9228    Suc. Belenes     6      NA    NA    NA   NA    19
## 9229    Suc. Belenes    NA      NA    NA    NA   NA    20
## 9230    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9231    Suc. Belenes    NA      NA    NA    NA   NA    19
## 9232    Suc. Belenes    NA      NA    NA    NA    1     2
## 9233    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9234    Suc. Belenes     2      NA    NA    NA   NA     2
## 9235    Suc. Belenes    NA      NA    NA    NA   NA     6
## 9236    Suc. Belenes    NA      NA    NA    NA   NA     8
## 9237    Suc. Belenes     6      NA    NA    NA    6    59
## 9238    Suc. Belenes    NA      NA    NA    NA    5    11
## 9239    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9240    Suc. Belenes     3       3    10     3    3     3
## 9241    Suc. Belenes     2       2    NA    NA    2     2
## 9242    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9243    Suc. Belenes     6      NA    NA    NA   NA    82
## 9244    Suc. Belenes     7      NA    NA    NA   NA    99
## 9245    Suc. Belenes     4       4    14    NA   NA    46
## 9246    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9247    Suc. Belenes    NA       2     2    NA   NA    46
## 9248    Suc. Belenes     4       6     4    NA   NA    49
## 9249    Suc. Belenes    NA      NA    NA    NA    1     2
## 9250    Suc. Belenes     2      NA    NA    NA   NA     9
## 9251    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9252    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9253    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9254    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9255    Suc. Belenes     4      NA    NA    NA   NA     0
## 9256    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9257    Suc. Belenes     2      NA    NA    NA   NA    NA
## 9258    Suc. Belenes     2      NA    NA    NA   NA    NA
## 9259    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9260    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9261    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9262    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9263    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9264    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9265    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9266    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9267    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9268    Suc. Belenes    11      NA    NA    NA   NA    NA
## 9269    Suc. Belenes     0      NA    NA    NA    0     1
## 9270    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9271    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9272    Suc. Belenes     3      NA    NA    NA   NA     2
## 9273    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9274    Suc. Belenes     4      NA    NA    NA   NA    NA
## 9275    Suc. Belenes     0      NA    NA    NA    0     1
## 9276    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9277    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9278    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9279    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9280    Suc. Belenes    11      NA    NA    NA   NA    NA
## 9281    Suc. Belenes     0      NA    NA    NA    0     1
## 9282    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9283    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9284    Suc. Belenes     3      NA    NA    NA   NA     1
## 9285    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9286    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9287    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9288    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9289    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9290    Suc. Belenes     3      NA    NA    NA   NA     3
## 9291    Suc. Belenes    11      NA    NA    NA   NA    NA
## 9292    Suc. Belenes     0      NA    NA    NA    0     1
## 9293    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9294    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9295    Suc. Belenes     3      NA    NA    NA   NA     3
## 9296    Suc. Belenes     3      NA    NA    NA   NA    NA
## 9297    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9298    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9299    Suc. Belenes    15       6    13    15   13    11
## 9300    Suc. Belenes    16       3    19    13   13    13
## 9301    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9302    Suc. Belenes    15       5    15    13   13    10
## 9303    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9304    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9305    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9306    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9307    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9308    Suc. Belenes     1       3     6     5    4     6
## 9309    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9310    Suc. Belenes     1       1     1     1    1     1
## 9311    Suc. Belenes    NA      NA    NA    NA    2    NA
## 9312    Suc. Belenes     2       1     2     1    1     1
## 9313    Suc. Belenes     3       6    11     6   11     8
## 9314    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9315    Suc. Belenes    NA       0     0    NA   NA     0
## 9316    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9317    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9318    Suc. Belenes    NA       1    NA     1    1     1
## 9319    Suc. Belenes     4       2     2     2   NA     2
## 9320    Suc. Belenes     6       4    11    11    8    15
## 9321    Suc. Belenes    11      14    14    20   17    17
## 9322    Suc. Belenes    NA      NA     4    NA   NA    NA
## 9323    Suc. Belenes     8      13    15     8   11    11
## 9324    Suc. Belenes     4       1     4     5    4     3
## 9325    Suc. Belenes     6       4     6     2    6     6
## 9326    Suc. Belenes     4       6     6     4    6     6
## 9327    Suc. Belenes     1       2     2     1    1    NA
## 9328    Suc. Belenes    34      32    38    38   40    40
## 9329    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9330    Suc. Belenes     3       3     6     3    3     3
## 9331    Suc. Belenes    17      15    11    21   17    12
## 9332    Suc. Belenes    NA      NA    NA     4   NA    NA
## 9333    Suc. Belenes    42      28    35    49   49    60
## 9334    Suc. Belenes   130     116   141   176  148   151
## 9335    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9336    Suc. Belenes    27      19    17    30   25    32
## 9337    Suc. Belenes    61      44    51    57   51    61
## 9338    Suc. Belenes     9      11     8     9   13    10
## 9339    Suc. Belenes     3       2     2    NA   NA     3
## 9340    Suc. Belenes    NA      NA    NA     4    4    NA
## 9341    Suc. Belenes    NA      NA     1     2   NA    NA
## 9342    Suc. Belenes     1       1     1     1    1     1
## 9343    Suc. Belenes    NA      NA    NA     1    1    NA
## 9344    Suc. Belenes    NA      NA    NA     1   NA     1
## 9345    Suc. Belenes     1      NA     4    NA   NA    NA
## 9346    Suc. Belenes     2       0     0     0    0     0
## 9347    Suc. Belenes    NA      NA    NA    NA    0    NA
## 9348    Suc. Belenes     4       6     4     5    6     9
## 9349    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9350    Suc. Belenes    NA      NA    NA     1   NA    NA
## 9351    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9352    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9353    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9354    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9355    Suc. Belenes     0       0     0     1    0     1
## 9356    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9357    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9358    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9359    Suc. Belenes     4      NA     1     2    2     1
## 9360    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9361    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9362    Suc. Belenes     1       1     1     2    1     1
## 9363    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9364    Suc. Belenes    NA       0    NA     1    0     0
## 9365    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9366    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9367    Suc. Belenes     1      NA     1     2    2     1
## 9368    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9369    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9370    Suc. Belenes     1       1     1     2    1     1
## 9371    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9372    Suc. Belenes    NA       0    NA     1    0     0
## 9373    Suc. Belenes     1      NA     1     5    2     1
## 9374    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9375    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9376    Suc. Belenes     1       1     1     2    1     1
## 9377    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9378    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9379    Suc. Belenes    11       8    11     8    6    14
## 9380    Suc. Belenes     2       2    NA    NA    2    NA
## 9381    Suc. Belenes    NA       0    NA     1    0     0
## 9382    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9383    Suc. Belenes     1       3     4     2    2     4
## 9384    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9385    Suc. Belenes     1       0     0     0    0     0
## 9386    Suc. Belenes     1       1     1     2    3     1
## 9387    Suc. Belenes     1      10    NA    NA   NA    NA
## 9388    Suc. Belenes    NA       0    NA     1    0     0
## 9389    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9390    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9391    Suc. Belenes     6       5    11     7    9    11
## 9392    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9393    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9394    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9395    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9396    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9397    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9398    Suc. Belenes    11       4     2     2   NA     4
## 9399    Suc. Belenes    13       6     3     3   NA     6
## 9400    Suc. Belenes    NA      NA    NA     1   NA    NA
## 9401    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9402    Suc. Belenes    NA       2    NA    NA   NA    NA
## 9403    Suc. Belenes     3       3    NA    NA   NA     3
## 9404    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9405    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9406    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9407    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9408    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9409    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9410    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9411    Suc. Belenes     1       3     1     1    3     3
## 9412    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9413    Suc. Belenes     1       2     1    NA   NA     1
## 9414    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9415    Suc. Belenes    NA       2     2     1   NA     1
## 9416    Suc. Belenes     3      NA     3    NA   NA    NA
## 9417    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9418    Suc. Belenes    NA       0    NA    NA   NA     0
## 9419    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9420    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9421    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9422    Suc. Belenes    NA      NA     4     2    2    NA
## 9423    Suc. Belenes    NA      NA     1     1   NA    NA
## 9424    Suc. Belenes     8       4    11    13   11    11
## 9425    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9426    Suc. Belenes    NA       3    NA    NA   NA    NA
## 9427    Suc. Belenes     6       8    11    17   11    11
## 9428    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9429    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9430    Suc. Belenes     6       6     8    13   13    21
## 9431    Suc. Belenes     1      NA     1     2   NA    NA
## 9432    Suc. Belenes    NA       2    NA    NA   NA    NA
## 9433    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9434    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9435    Suc. Belenes     1      NA    NA     1    2    NA
## 9436    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9437    Suc. Belenes    34      34    40    79   55    34
## 9438    Suc. Belenes    NA      NA    NA    NA   NA    54
## 9439    Suc. Belenes    57      48    48    60   48   114
## 9440    Suc. Belenes     5       5    11     9   12     6
## 9441    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9442    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9443    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9444    Suc. Belenes    74      53    49   159  180   183
## 9445    Suc. Belenes   106      92    67   194  247   377
## 9446    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9447    Suc. Belenes    15      11    11    36   30    34
## 9448    Suc. Belenes    76      72    72   150  165   203
## 9449    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9450    Suc. Belenes     2       3     5     8    9     4
## 9451    Suc. Belenes     2       2     5    12    9     5
## 9452    Suc. Belenes    NA       4     4    14   16     8
## 9453    Suc. Belenes     3       3     5     3    7     5
## 9454    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9455    Suc. Belenes    NA       1     1     1   NA     1
## 9456    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9457    Suc. Belenes     1       1    NA    NA   NA    NA
## 9458    Suc. Belenes     0       0     1    NA   NA     0
## 9459    Suc. Belenes     2       2     1     1    1     3
## 9460    Suc. Belenes     2       3     4     3    3     8
## 9461    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9462    Suc. Belenes     4      NA    NA     2   NA     4
## 9463    Suc. Belenes     1       0    NA     1   NA     1
## 9464    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9465    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9466    Suc. Belenes     1       1     0    NA   NA     1
## 9467    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9468    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9469    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9470    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9471    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9472    Suc. Belenes    NA      NA     3    NA    5    12
## 9473    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9474    Suc. Belenes    NA      NA    NA    NA   NA     4
## 9475    Suc. Belenes    NA      NA    NA     2   NA     4
## 9476    Suc. Belenes    NA       1    NA     0   NA    NA
## 9477    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9478    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9479    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9480    Suc. Belenes    NA      NA    NA    NA    2    12
## 9481    Suc. Belenes    NA      NA    NA     4   NA    NA
## 9482    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9483    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9484    Suc. Belenes    NA      NA    NA     2   NA     6
## 9485    Suc. Belenes    NA       1    NA     0   NA    NA
## 9486    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9487    Suc. Belenes    NA      NA    NA    NA    2     9
## 9488    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9489    Suc. Belenes    NA      NA     0    NA   NA     2
## 9490    Suc. Belenes    NA      NA    NA    NA   NA     4
## 9491    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9492    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9493    Suc. Belenes    NA      NA     3    NA    3     3
## 9494    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9495    Suc. Belenes    NA      NA    NA     2    4    NA
## 9496    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9497    Suc. Belenes    NA       1    NA     0   NA    NA
## 9498    Suc. Belenes    NA       2    NA    NA   NA    NA
## 9499    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9500    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9501    Suc. Belenes    NA      NA     3     3   11    15
## 9502    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9503    Suc. Belenes    NA      NA    NA     0   NA     3
## 9504    Suc. Belenes    NA      NA     2     2   NA     8
## 9505    Suc. Belenes    NA       1    NA     0   NA    NA
## 9506    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9507    Suc. Belenes     2       1     2     1    1     1
## 9508    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9509    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9510    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9511    Suc. Belenes     4       6     6     8    4     6
## 9512    Suc. Belenes     6       6     3    13    6    10
## 9513    Suc. Belenes     3      NA    NA     3    3     3
## 9514    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9515    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9516    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9517    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9518    Suc. Belenes     2       2     7     4    3     4
## 9519    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9520    Suc. Belenes     1       2     1     2    1     1
## 9521    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9522    Suc. Belenes    NA       1     2     1    1     1
## 9523    Suc. Belenes    NA      NA     3     6   NA     3
## 9524    Suc. Belenes    NA      NA    NA     1   NA    NA
## 9525    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9526    Suc. Belenes    NA       1    NA     1   NA    NA
## 9527    Suc. Belenes     2       2     2     2    2    NA
## 9528    Suc. Belenes    11      19    19    21   17    17
## 9529    Suc. Belenes    14       8     6     6    8     6
## 9530    Suc. Belenes    NA       2     2    NA    2    NA
## 9531    Suc. Belenes    17       8    17    13   13    15
## 9532    Suc. Belenes     1      NA     3     3    1     2
## 9533    Suc. Belenes    NA       2     2    NA    2     2
## 9534    Suc. Belenes    NA      NA    NA     4    2    NA
## 9535    Suc. Belenes     3      NA     3    NA    6     3
## 9536    Suc. Belenes    NA      NA    NA    NA    2    NA
## 9537    Suc. Belenes    11      13     6    13   13    15
## 9538    Suc. Belenes    NA      NA     3    NA   NA    NA
## 9539    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9540    Suc. Belenes    16      29    22    19   22    25
## 9541    Suc. Belenes     6       8     8    11    8     6
## 9542    Suc. Belenes     6       8     3     8    6     6
## 9543    Suc. Belenes     6       3    NA     6    6     8
## 9544    Suc. Belenes    11      14    18    11   14    14
## 9545    Suc. Belenes   113      92   109   113   88    92
## 9546    Suc. Belenes     4       4     4     4    8     8
## 9547    Suc. Belenes    13       6     8    13   13    11
## 9548    Suc. Belenes    61      68    74    72   74    57
## 9549    Suc. Belenes     2       2     2     4    2     2
## 9550    Suc. Belenes     2       3     5     5    5     2
## 9551    Suc. Belenes     1       3     3     2    2     2
## 9552    Suc. Belenes    NA       1     1     1    1     1
## 9553    Suc. Belenes    NA      NA    NA     1    1     1
## 9554    Suc. Belenes    NA       1    NA     1   NA    NA
## 9555    Suc. Belenes     1       1    NA     2   NA     1
## 9556    Suc. Belenes     1      NA    NA     1    0     0
## 9557    Suc. Belenes     2      NA     1     1    1     1
## 9558    Suc. Belenes     2       0     2     0    1     0
## 9559    Suc. Belenes     1       0     1     1    2    NA
## 9560    Suc. Belenes     3       2    12     5    4     3
## 9561    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9562    Suc. Belenes    NA      NA    NA     2   NA     2
## 9563    Suc. Belenes     0       0    NA     1    0    NA
## 9564    Suc. Belenes     1       1     1     1    1     1
## 9565    Suc. Belenes     1       1     1     2    1     2
## 9566    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9567    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9568    Suc. Belenes     2       3    NA     2    1     2
## 9569    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9570    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9571    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9572    Suc. Belenes     1       1     1     1    1    NA
## 9573    Suc. Belenes     1       1     1     1    1     1
## 9574    Suc. Belenes     1       3     1     1    2     1
## 9575    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9576    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9577    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9578    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9579    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9580    Suc. Belenes    NA       0    NA     0   NA     0
## 9581    Suc. Belenes     1       1     1     1    1     1
## 9582    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9583    Suc. Belenes     2      NA    NA     2    1    NA
## 9584    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9585    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9586    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9587    Suc. Belenes     1       1     1     1    1     1
## 9588    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9589    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9590    Suc. Belenes     3       6     3    NA   NA     3
## 9591    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9592    Suc. Belenes    NA      NA     2    NA    1     2
## 9593    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9594    Suc. Belenes    NA       6     1     3    3     3
## 9595    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9596    Suc. Belenes     0       1     1     1    0     0
## 9597    Suc. Belenes     1       1     1     3    1     1
## 9598    Suc. Belenes     1       4     1     1    2     1
## 9599    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9600    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9601    Suc. Belenes     2       3     2     4    4     2
## 9602    Suc. Belenes     0       0    NA     0   NA    NA
## 9603    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9604    Suc. Belenes    38      21    21    32   63    19
## 9605    Suc. Belenes    98      89    76   111  139   101
## 9606    Suc. Belenes    NA      NA    NA    NA   NA     7
## 9607    Suc. Belenes    18      15    18    48   46    36
## 9608    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9609    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9610    Suc. Belenes     3       5     3     3    5    NA
## 9611    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9612    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9613    Suc. Belenes    NA       3    NA    NA   NA    NA
## 9614    Suc. Belenes     2      NA    NA    NA   NA     2
## 9615    Suc. Belenes     2       2    NA    NA   NA    NA
## 9616    Suc. Belenes    51      36    27    42   46    55
## 9617    Suc. Belenes    38      38    44    57   38    42
## 9618    Suc. Belenes    NA      14     8     8    3     6
## 9619    Suc. Belenes    23      14    17    28   23    25
## 9620    Suc. Belenes     3       2     5     3    2     7
## 9621    Suc. Belenes    NA      NA    NA    38   21    91
## 9622    Suc. Belenes     8       6     3     3    3     7
## 9623    Suc. Belenes     8       8     6     8   23     8
## 9624    Suc. Belenes     4      NA    NA     6   NA    NA
## 9625    Suc. Belenes    53      59    42    49  106    74
## 9626    Suc. Belenes   159      66   124   122  108   106
## 9627    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9628    Suc. Belenes   444     460   396   491  380   254
## 9629    Suc. Belenes    60      68   120   122  105    53
## 9630    Suc. Belenes   188     167   189   293  390   360
## 9631    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9632    Suc. Belenes   113      68    28    28   56    85
## 9633    Suc. Belenes   106     247   106   282  387   159
## 9634    Suc. Belenes    NA      NA   704    NA   NA   704
## 9635    Suc. Belenes     2      NA    NA    NA   NA    NA
## 9636    Suc. Belenes   148     180   232   159  127    95
## 9637    Suc. Belenes    NA      NA    NA    NA   NA   146
## 9638    Suc. Belenes    NA      NA    NA    NA   NA   930
## 9639    Suc. Belenes     3       5     4     7    9     9
## 9640    Suc. Belenes     6      12     9    NA    6     6
## 9641    Suc. Belenes    60      50    38    65   60    90
## 9642    Suc. Belenes    32      NA    NA    NA   12    30
## 9643    Suc. Belenes    22      12    NA    26   18    20
## 9644    Suc. Belenes    23       5     5    11    9    15
## 9645    Suc. Belenes    NA      NA    NA     5    6    NA
## 9646    Suc. Belenes     7       9     3     9    9     5
## 9647    Suc. Belenes     6       2    NA     4    2     4
## 9648    Suc. Belenes     3      NA     3    NA    8     3
## 9649    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9650    Suc. Belenes     2       4     2     2   NA     2
## 9651    Suc. Belenes    23      15    20    33   39    41
## 9652    Suc. Belenes     6      NA    NA    NA   NA    NA
## 9653    Suc. Belenes     6       8    NA     6   NA    NA
## 9654    Suc. Belenes    14       7    14     7   14    11
## 9655    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9656    Suc. Belenes    12       2     4     5    7     3
## 9657    Suc. Belenes    74      53    55    42   57    40
## 9658    Suc. Belenes    41       5    54    NA    8    NA
## 9659    Suc. Belenes    NA      NA     2     2   NA    NA
## 9660    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9661    Suc. Belenes    NA       3     3     6   NA     6
## 9662    Suc. Belenes     4       4     7     7   18     4
## 9663    Suc. Belenes     2       2     2     2   NA     3
## 9664    Suc. Belenes    23      20    11    25   13    17
## 9665    Suc. Belenes    46      NA    28    NA    3     3
## 9666    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9667    Suc. Belenes    15      11    20    35   35    38
## 9668    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9669    Suc. Belenes     8       3     3     6   NA    NA
## 9670    Suc. Belenes     7       7     4    21   18    11
## 9671    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9672    Suc. Belenes     3       2     3     2    2     2
## 9673    Suc. Belenes    53      47    42    40   30    40
## 9674    Suc. Belenes    46      NA    28    NA    3     3
## 9675    Suc. Belenes    NA       5     3    NA    3     5
## 9676    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9677    Suc. Belenes    13      NA    11    25   NA    NA
## 9678    Suc. Belenes    NA      NA    23    NA   NA    NA
## 9679    Suc. Belenes     4       2     4     4    2     2
## 9680    Suc. Belenes    24      18    23    35   36    42
## 9681    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9682    Suc. Belenes     8       6     6     6   NA    NA
## 9683    Suc. Belenes    14      11    11     7   21    18
## 9684    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9685    Suc. Belenes     5       5     5     3    5     3
## 9686    Suc. Belenes    76      55    61    74   49    40
## 9687    Suc. Belenes    46      NA    28     3    8     3
## 9688    Suc. Belenes    NA      NA    NA     2    4     3
## 9689    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9690    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9691    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9692    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9693    Suc. Belenes     4      11     4    13    2     4
## 9694    Suc. Belenes    10      13    10    22   10     6
## 9695    Suc. Belenes     5       5     3     5    3     3
## 9696    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9697    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9698    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9699    Suc. Belenes     1       0     1     0    1     0
## 9700    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9701    Suc. Belenes     3       3     2     3    3     5
## 9702    Suc. Belenes     1      NA    NA     1    1     1
## 9703    Suc. Belenes     0      NA    NA    NA   NA    NA
## 9704    Suc. Belenes     2      NA     1     1    1     1
## 9705    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9706    Suc. Belenes    NA      NA    NA     1   NA     1
## 9707    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9708    Suc. Belenes     1       1    NA    NA   NA    NA
## 9709    Suc. Belenes     4       4     2     2    4     2
## 9710    Suc. Belenes    13      13     6    11   15     8
## 9711    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9712    Suc. Belenes    NA       2    NA    NA   NA    NA
## 9713    Suc. Belenes    34      13    34    32   40    24
## 9714    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9715    Suc. Belenes    44      41    54    51   44    38
## 9716    Suc. Belenes     8      11     8    14   15    11
## 9717    Suc. Belenes    NA      NA    NA     1   NA    NA
## 9718    Suc. Belenes    32      35    46    56   53    35
## 9719    Suc. Belenes   155     144   141   176  211   134
## 9720    Suc. Belenes    17      15    13    11   15    15
## 9721    Suc. Belenes    23      17    21    30   23    25
## 9722    Suc. Belenes    89      87    87   118   78    95
## 9723    Suc. Belenes     5       6     5     7    9     5
## 9724    Suc. Belenes     3       3     5     3    5     3
## 9725    Suc. Belenes    10       8    10    14   14    14
## 9726    Suc. Belenes    10       6     6     7    6     6
## 9727    Suc. Belenes     1       1    NA     1    1     1
## 9728    Suc. Belenes    NA      NA    NA     1   NA    NA
## 9729    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9730    Suc. Belenes     1      NA     0     0    0     0
## 9731    Suc. Belenes     3       3     3     3    1     2
## 9732    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9733    Suc. Belenes     0      NA     0     0    0     0
## 9734    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9735    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9736    Suc. Belenes     3      NA    NA    NA   NA     1
## 9737    Suc. Belenes     2       0     1     0    1     0
## 9738    Suc. Belenes     1       1     2     2    0     2
## 9739    Suc. Belenes    NA      NA    NA     2   NA    NA
## 9740    Suc. Belenes     2       4     1     4    2     5
## 9741    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9742    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9743    Suc. Belenes     0       0     1     0    0     0
## 9744    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9745    Suc. Belenes    NA      NA     1    NA    4     1
## 9746    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9747    Suc. Belenes    NA      NA    NA     3   NA     1
## 9748    Suc. Belenes     1       0     1     0    1     2
## 9749    Suc. Belenes     3       3     2     2    2     2
## 9750    Suc. Belenes     4       4     3     2    6     3
## 9751    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9752    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9753    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9754    Suc. Belenes    NA       3     3    NA    3     1
## 9755    Suc. Belenes     1       0     1     0    1     0
## 9756    Suc. Belenes     2       2     2     1    2     3
## 9757    Suc. Belenes     6       4     5     4    6     1
## 9758    Suc. Belenes    NA       5    NA    NA   NA    NA
## 9759    Suc. Belenes    NA       0    NA    NA   NA    NA
## 9760    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9761    Suc. Belenes     1      NA     1     1    3    NA
## 9762    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9763    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9764    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9765    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9766    Suc. Belenes     6      44     2     2    2     4
## 9767    Suc. Belenes    10     101     3     3    3     3
## 9768    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9769    Suc. Belenes     3      56    NA    NA   NA    NA
## 9770    Suc. Belenes     1       0     0     0    0     0
## 9771    Suc. Belenes    NA       2     3    NA    1    NA
## 9772    Suc. Belenes     0      NA    NA     3    4     2
## 9773    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9774    Suc. Belenes     1       3     1    NA    1     1
## 9775    Suc. Belenes    NA      NA    NA     4   NA    NA
## 9776    Suc. Belenes     2       2     1     1    1     1
## 9777    Suc. Belenes    NA      17    NA    NA    8    NA
## 9778    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9779    Suc. Belenes    NA      NA    NA     0   NA    NA
## 9780    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9781    Suc. Belenes     2       4    NA    NA   NA    NA
## 9782    Suc. Belenes    NA      NA    NA     2    2    NA
## 9783    Suc. Belenes     1       1     1    NA    1     1
## 9784    Suc. Belenes     8      11    11     8   15     4
## 9785    Suc. Belenes     6       3     3     6    6     8
## 9786    Suc. Belenes     8       3     8     8    6     6
## 9787    Suc. Belenes     8      NA    NA     6   NA     6
## 9788    Suc. Belenes     2       2     2     2    2     2
## 9789    Suc. Belenes    13      11     6    13   11    32
## 9790    Suc. Belenes     2       2     4     6    7    18
## 9791    Suc. Belenes     6       5     2     5    5     2
## 9792    Suc. Belenes    NA       2     4     2    4     2
## 9793    Suc. Belenes     3       3     6     6    3    NA
## 9794    Suc. Belenes     2      NA     2     4   NA     2
## 9795    Suc. Belenes    32      36    55     4   25    21
## 9796    Suc. Belenes    16      26    16    26   48     3
## 9797    Suc. Belenes    13      13    19    22   44   108
## 9798    Suc. Belenes   149       3   127    92   82    92
## 9799    Suc. Belenes    14      18     6    15   36     2
## 9800    Suc. Belenes    33      12     9    20   35    60
## 9801    Suc. Belenes    20      25    54     6   NA    87
## 9802    Suc. Belenes    25      51     6    28   85     6
## 9803    Suc. Belenes    99     151    81    39  211    49
## 9804    Suc. Belenes   232     278    74    35  416   426
## 9805    Suc. Belenes     2       3     3    NA    2    NA
## 9806    Suc. Belenes    15      17    11    13   13    15
## 9807    Suc. Belenes    11      21     2     6    4    46
## 9808    Suc. Belenes   188     256   108   526   23    13
## 9809    Suc. Belenes    NA      NA    NA     8    3     5
## 9810    Suc. Belenes    15       9     9     9    9     9
## 9811    Suc. Belenes    11      14    20     3   15    34
## 9812    Suc. Belenes     8       6     6     9    9     8
## 9813    Suc. Belenes     8      NA     8     8   10    12
## 9814    Suc. Belenes    11      11     9    10    9    19
## 9815    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9816    Suc. Belenes     2       1     1     1    1     1
## 9817    Suc. Belenes    NA       1    NA     1   NA    NA
## 9818    Suc. Belenes     4       3    NA     3    3     3
## 9819    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9820    Suc. Belenes     4       0     1     0    2     0
## 9821    Suc. Belenes     2       1     1    NA    0    NA
## 9822    Suc. Belenes     4       3    NA     1    4    NA
## 9823    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9824    Suc. Belenes    NA       2     2     2    2     2
## 9825    Suc. Belenes     0       1     0     1    1     1
## 9826    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9827    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9828    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9829    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9830    Suc. Belenes     0       1     0     0    0     2
## 9831    Suc. Belenes     5       5     4     5    5     3
## 9832    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9833    Suc. Belenes     2      NA     4    NA    2     4
## 9834    Suc. Belenes    NA      14    17    NA   14    20
## 9835    Suc. Belenes     1       0     0     0    0     0
## 9836    Suc. Belenes     0       0    NA    NA    0     0
## 9837    Suc. Belenes     6       8     3    25    3     1
## 9838    Suc. Belenes     4       3     1     1    3     1
## 9839    Suc. Belenes    NA       1     0     0    0     0
## 9840    Suc. Belenes    NA      NA    NA     2    2    NA
## 9841    Suc. Belenes     6       8    NA     3    6    11
## 9842    Suc. Belenes     0       0     0     0    0     0
## 9843    Suc. Belenes    NA      NA    NA     0    0    NA
## 9844    Suc. Belenes     2       2     3    NA    1     1
## 9845    Suc. Belenes     2       1    NA     1    2     1
## 9846    Suc. Belenes    NA       1     0     0    0     0
## 9847    Suc. Belenes    NA      NA    NA     2   NA     2
## 9848    Suc. Belenes    11       3     3    NA    6     6
## 9849    Suc. Belenes     1       0     0     0    0     0
## 9850    Suc. Belenes    NA      NA    NA    NA    0    NA
## 9851    Suc. Belenes     6       4     1     8    1     1
## 9852    Suc. Belenes     1      NA     1     1   NA     1
## 9853    Suc. Belenes     1       2     1     2    1     3
## 9854    Suc. Belenes     8       8    11    NA    8    14
## 9855    Suc. Belenes    11       6    NA     2    2    NA
## 9856    Suc. Belenes     1       4     1     1    4     1
## 9857    Suc. Belenes    NA       1     0     0    0     0
## 9858    Suc. Belenes     2       2     2     4    2     4
## 9859    Suc. Belenes    NA      17    17    NA    8     6
## 9860    Suc. Belenes     1       0     0     0    0     0
## 9861    Suc. Belenes     0      NA     0    NA    0    NA
## 9862    Suc. Belenes     6       4     3    27    3     1
## 9863    Suc. Belenes     3      14     1     2    3     1
## 9864    Suc. Belenes    NA       1     0     0    0     0
## 9865    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9866    Suc. Belenes     6      10     6     4    7     4
## 9867    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9868    Suc. Belenes    NA      NA    NA    10   NA    NA
## 9869    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9870    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9871    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9872    Suc. Belenes    NA      NA     4    NA   NA     2
## 9873    Suc. Belenes    NA      NA    NA    NA   NA     3
## 9874    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9875    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9876    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9877    Suc. Belenes    NA      12    NA    NA   NA    NA
## 9878    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9879    Suc. Belenes     1      NA    NA    NA   NA     1
## 9880    Suc. Belenes    NA      NA     2    NA   NA     1
## 9881    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9882    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9883    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9884    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9885    Suc. Belenes    NA      NA    NA    NA    4     4
## 9886    Suc. Belenes    NA      NA     2    NA    2    NA
## 9887    Suc. Belenes     3       3     6    NA   11     6
## 9888    Suc. Belenes    NA      NA    NA    NA    3    NA
## 9889    Suc. Belenes    NA      NA     8     2   30    38
## 9890    Suc. Belenes    NA      NA    NA    NA    2    NA
## 9891    Suc. Belenes    58      NA   185    32  114    NA
## 9892    Suc. Belenes    NA      NA    NA    NA   NA    35
## 9893    Suc. Belenes    NA     181   292   333  285   336
## 9894    Suc. Belenes    NA       2    17    41   48    33
## 9895    Suc. Belenes    50      83    14    NA   33    33
## 9896    Suc. Belenes    NA      NA    NA    60   NA    NA
## 9897    Suc. Belenes    39      NA    60    49  169   120
## 9898    Suc. Belenes   472     497   898   243   NA   838
## 9899    Suc. Belenes    42      NA    30    91  110   216
## 9900    Suc. Belenes   328     372   594   750  636   573
## 9901    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9902    Suc. Belenes    11      NA    18    11   33    22
## 9903    Suc. Belenes    17      NA    NA    NA   17    17
## 9904    Suc. Belenes    12      12    NA    11   14    NA
## 9905    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9906    Suc. Belenes     0       0    NA    NA   NA     0
## 9907    Suc. Belenes    NA      NA    NA    NA    1    NA
## 9908    Suc. Belenes    NA      NA    10    NA    4     7
## 9909    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9910    Suc. Belenes    NA      NA    NA     4    2     2
## 9911    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9912    Suc. Belenes     0      NA    NA    NA   NA     0
## 9913    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9914    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9915    Suc. Belenes    NA      NA    11     4   NA     3
## 9916    Suc. Belenes    NA      NA    NA    NA    0    NA
## 9917    Suc. Belenes    NA       1    13     7   20    11
## 9918    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9919    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9920    Suc. Belenes    NA      NA     6     1   NA    NA
## 9921    Suc. Belenes    NA      NA    NA     4   NA    NA
## 9922    Suc. Belenes    NA      NA    NA    NA    0    NA
## 9923    Suc. Belenes    NA       1     9     3    1    NA
## 9924    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9925    Suc. Belenes    NA      NA     6     1   NA    NA
## 9926    Suc. Belenes    NA      NA    NA    NA    0     0
## 9927    Suc. Belenes    NA       1    11    11    3     6
## 9928    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9929    Suc. Belenes    NA       3     3    NA   NA    NA
## 9930    Suc. Belenes    NA      NA     2     4    2    NA
## 9931    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9932    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9933    Suc. Belenes    NA      NA    17    12   NA     8
## 9934    Suc. Belenes     0       1     0    NA    3    NA
## 9935    Suc. Belenes    NA       1    15    11   12    13
## 9936    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9937    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9938    Suc. Belenes    NA       6    NA    NA    1    NA
## 9939    Suc. Belenes    NA      NA     0    NA   NA    NA
## 9940    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9941    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9942    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9943    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9944    Suc. Belenes    13       4     8     2    4     6
## 9945    Suc. Belenes    19      10    10    22   29    19
## 9946    Suc. Belenes    NA      NA    NA    NA    7    14
## 9947    Suc. Belenes     5      NA    NA    NA   NA    NA
## 9948    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9949    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9950    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9951    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9952    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9953    Suc. Belenes    NA      NA    NA    NA   NA     1
## 9954    Suc. Belenes     2       1     1     3    3     5
## 9955    Suc. Belenes    NA      NA    NA    NA   NA     0
## 9956    Suc. Belenes     1       2     1     2    1     1
## 9957    Suc. Belenes    NA       1    NA    NA   NA    NA
## 9958    Suc. Belenes     2       2     1     1    1     1
## 9959    Suc. Belenes     8      11     8    11    8     8
## 9960    Suc. Belenes    NA      NA     1    NA   NA    NA
## 9961    Suc. Belenes    NA      NA    NA    NA    0     0
## 9962    Suc. Belenes    NA      NA    NA    NA    2    NA
## 9963    Suc. Belenes     1      NA     2    NA   NA     3
## 9964    Suc. Belenes     2      NA    NA     2    2     2
## 9965    Suc. Belenes     2       1     1     2    1     1
## 9966    Suc. Belenes     8       8     6    11    8     8
## 9967    Suc. Belenes     3       3     3     8    8     6
## 9968    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9969    Suc. Belenes     8       8     8     8    8    11
## 9970    Suc. Belenes     1      NA     1     2    2     4
## 9971    Suc. Belenes     2       2    NA     2    1     2
## 9972    Suc. Belenes     6       6     8     4    4     4
## 9973    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9974    Suc. Belenes    NA       4     2     2   NA     4
## 9975    Suc. Belenes     1       1    NA     2    1    NA
## 9976    Suc. Belenes    NA      NA    NA    NA    8     2
## 9977    Suc. Belenes    61      45    53    58   37    34
## 9978    Suc. Belenes    NA      NA    NA    NA   NA    32
## 9979    Suc. Belenes    32      29    22    38   44    60
## 9980    Suc. Belenes    12      12    12    12   12    11
## 9981    Suc. Belenes    28      23    20    34   31    28
## 9982    Suc. Belenes    39      39    34    37   42    45
## 9983    Suc. Belenes    35      53    46    60   56    53
## 9984    Suc. Belenes    99      92    99   130  187   173
## 9985    Suc. Belenes    NA      NA    NA    NA   NA    NA
## 9986    Suc. Belenes    21      17    17    25   23    27
## 9987    Suc. Belenes    46      44    63    51  108    44
## 9988    Suc. Belenes     5       5     5    13    8    13
## 9989    Suc. Belenes     5       3     4     4    5     6
## 9990    Suc. Belenes     5      NA     2     6    3     5
## 9991    Suc. Belenes    NA      NA    NA    NA   NA     2
## 9992    Suc. Belenes     6       6     3     4    5     5
## 9993    Suc. Belenes    NA       2    NA    NA   NA    NA
## 9994    Suc. Belenes     1       2     2     1    2     2
## 9995    Suc. Belenes    NA       1    NA     1   NA    NA
## 9996    Suc. Belenes    NA       1    NA     1    1     2
## 9997    Suc. Belenes    NA       1    NA     3    4     1
## 9998    Suc. Belenes     1      NA    NA    NA   NA    NA
## 9999    Suc. Belenes     6       0     2     1    2     2
## 10000   Suc. Belenes     1       2     1     3    2     1
## 10001   Suc. Belenes     3       4    20     5    6     4
## 10002   Suc. Belenes    NA      NA    NA    NA   NA     2
## 10003   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10004   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10005   Suc. Belenes    NA      NA    NA    NA    1     1
## 10006   Suc. Belenes     1       2    NA     2    3     6
## 10007   Suc. Belenes     1      NA     2     2    3     4
## 10008   Suc. Belenes    NA       2     1     1    2     4
## 10009   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10010   Suc. Belenes     0       1     1     0    1     1
## 10011   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10012   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10013   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10014   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10015   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10016   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10017   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10018   Suc. Belenes    NA       1     3     6    6     3
## 10019   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10020   Suc. Belenes     2       1    NA    NA    0     0
## 10021   Suc. Belenes     2      NA     2    NA    2     1
## 10022   Suc. Belenes    NA      10    NA    NA    1     2
## 10023   Suc. Belenes    NA       1     0     1    0     0
## 10024   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10025   Suc. Belenes    NA      NA    NA    NA   NA     3
## 10026   Suc. Belenes    NA       1    NA    NA    1    NA
## 10027   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10028   Suc. Belenes     1       0    NA     0   NA     0
## 10029   Suc. Belenes     2      NA     2    NA    2     1
## 10030   Suc. Belenes    NA      NA    NA    NA    1     1
## 10031   Suc. Belenes    NA       1     0     1    0     0
## 10032   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10033   Suc. Belenes    NA       1    NA    NA    1    NA
## 10034   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10035   Suc. Belenes     0       0    NA    NA   NA     1
## 10036   Suc. Belenes     2      NA     2    NA   NA     1
## 10037   Suc. Belenes    NA      NA    NA    NA    1     1
## 10038   Suc. Belenes    NA      NA    NA    NA    1     1
## 10039   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10040   Suc. Belenes     3       6     3    NA   NA     3
## 10041   Suc. Belenes    NA      NA    NA    NA    7    NA
## 10042   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10043   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10044   Suc. Belenes    NA       1     0     1    0     0
## 10045   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10046   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10047   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10048   Suc. Belenes    11      12     8     3    4    NA
## 10049   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10050   Suc. Belenes     1      NA    NA    NA   NA     2
## 10051   Suc. Belenes     4       2     2     2   NA     3
## 10052   Suc. Belenes     3      NA    NA    NA    1     1
## 10053   Suc. Belenes    NA       1     0     1    0     0
## 10054   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10055   Suc. Belenes     3       3     3     4    5     4
## 10056   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10057   Suc. Belenes    NA      NA    NA     2    3     1
## 10058   Suc. Belenes     4       1     1    NA   NA    NA
## 10059   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10060   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10061   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10062   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10063   Suc. Belenes     4       6    11     4    4    11
## 10064   Suc. Belenes    10       3     3     3   10    10
## 10065   Suc. Belenes     3      NA    NA    NA    3     5
## 10066   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10067   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10068   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10069   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10070   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10071   Suc. Belenes    NA       1    NA    NA    1    NA
## 10072   Suc. Belenes     1       1     1     1    1     1
## 10073   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10074   Suc. Belenes    NA      NA    NA    NA    1     1
## 10075   Suc. Belenes     5       3     2     5    3     4
## 10076   Suc. Belenes     1       0     0     0   NA    NA
## 10077   Suc. Belenes     1       1     6     4    4     8
## 10078   Suc. Belenes     2       2    NA    NA   NA    NA
## 10079   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10080   Suc. Belenes     3      NA     1     2    1     1
## 10081   Suc. Belenes     8       6     8     6    6     3
## 10082   Suc. Belenes     3      NA     1    NA    3     1
## 10083   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10084   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10085   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10086   Suc. Belenes    NA       2    NA    NA   NA    NA
## 10087   Suc. Belenes    NA      NA     4    NA   NA    NA
## 10088   Suc. Belenes    11       8     6    11   13    11
## 10089   Suc. Belenes     2       3     5     6    5     3
## 10090   Suc. Belenes     6       6    11    14    8    11
## 10091   Suc. Belenes     8       6     3    11    6     3
## 10092   Suc. Belenes    18       7    14    14   11    28
## 10093   Suc. Belenes    15      19    11    17   17    21
## 10094   Suc. Belenes     2      NA     2     2    2     2
## 10095   Suc. Belenes     2       2     2     2    2     3
## 10096   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10097   Suc. Belenes     2       2     4     8    4     4
## 10098   Suc. Belenes    17      14    11    14   11    14
## 10099   Suc. Belenes     2       6    NA     6    2     2
## 10100   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10101   Suc. Belenes    34      32    42    49   32    40
## 10102   Suc. Belenes    NA      NA    NA     5   NA    NA
## 10103   Suc. Belenes    NA      NA    NA    NA   NA     3
## 10104   Suc. Belenes    73      70   143    35  101   105
## 10105   Suc. Belenes     9      11     8     8    6    11
## 10106   Suc. Belenes    NA       2     2     2   NA    NA
## 10107   Suc. Belenes    28      25    28    34   28    34
## 10108   Suc. Belenes    34      31    39    37   31    39
## 10109   Suc. Belenes    56      63    60    99   60    67
## 10110   Suc. Belenes   180     141   211   141  137   243
## 10111   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10112   Suc. Belenes    55      55    44    42   42    51
## 10113   Suc. Belenes   150     137   167   116  171   169
## 10114   Suc. Belenes     6       5     4     6    9     6
## 10115   Suc. Belenes     5       5     3     6    5     5
## 10116   Suc. Belenes     6       4     6     6    6     6
## 10117   Suc. Belenes     6       7     6     7    7     8
## 10118   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10119   Suc. Belenes     2      NA     1     1    2     2
## 10120   Suc. Belenes     1       1    NA     1    1     2
## 10121   Suc. Belenes     1      NA    NA     1    1     3
## 10122   Suc. Belenes     3      NA     0     0    0     0
## 10123   Suc. Belenes     1      NA    NA     0    1     1
## 10124   Suc. Belenes     4       3     3     5    4     6
## 10125   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10126   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10127   Suc. Belenes     4       6     2     8    4     4
## 10128   Suc. Belenes     2       1     1     2    1     0
## 10129   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10130   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10131   Suc. Belenes     0       0     0     0    1     0
## 10132   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10133   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10134   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10135   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10136   Suc. Belenes     3      NA     3     6   NA    NA
## 10137   Suc. Belenes    NA      NA     2    NA   NA    NA
## 10138   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10139   Suc. Belenes    NA      NA     0     0    0     1
## 10140   Suc. Belenes     5       1     7     2    1     3
## 10141   Suc. Belenes     3      12     3     1    2     1
## 10142   Suc. Belenes    NA       1    NA     0   NA    NA
## 10143   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10144   Suc. Belenes    NA      NA    NA     3   NA    NA
## 10145   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10146   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10147   Suc. Belenes    NA      NA    NA    NA    0     1
## 10148   Suc. Belenes     5       1     1     2    1     3
## 10149   Suc. Belenes    NA       1     4     1    2     1
## 10150   Suc. Belenes    NA       1    NA     0   NA    NA
## 10151   Suc. Belenes    NA       4    NA    NA   NA     2
## 10152   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10153   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10154   Suc. Belenes    NA      NA    NA    NA    0     1
## 10155   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10156   Suc. Belenes     3       1     1     2    1     3
## 10157   Suc. Belenes     1       1     1     1    2     1
## 10158   Suc. Belenes    NA       1     1     1   NA     1
## 10159   Suc. Belenes     3       3    14     6    6     3
## 10160   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10161   Suc. Belenes     6       6    NA     8    4     6
## 10162   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10163   Suc. Belenes    NA       1    NA     0   NA    NA
## 10164   Suc. Belenes     4      NA    NA    NA    4     2
## 10165   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10166   Suc. Belenes    NA       6    11     3   NA    NA
## 10167   Suc. Belenes    NA      NA    NA     4   NA    NA
## 10168   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10169   Suc. Belenes     1       0    NA    NA    0     2
## 10170   Suc. Belenes     5       1     1     2    7     5
## 10171   Suc. Belenes     2       3     1     1    2     1
## 10172   Suc. Belenes    NA       1    NA     0   NA    NA
## 10173   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10174   Suc. Belenes     3       2     3     4    6     4
## 10175   Suc. Belenes     0      NA    NA    NA   NA     0
## 10176   Suc. Belenes    NA      NA    NA     0    0    NA
## 10177   Suc. Belenes     1       1    NA     1   NA    NA
## 10178   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10179   Suc. Belenes     2      NA    NA    NA   NA     2
## 10180   Suc. Belenes     3      NA    NA    NA   NA     3
## 10181   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10182   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10183   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10184   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10185   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10186   Suc. Belenes    NA      NA    NA     0   NA    NA
## 10187   Suc. Belenes    NA      NA    NA     0   NA    NA
## 10188   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10189   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10190   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10191   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10192   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10193   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10194   Suc. Belenes    24      29    69    55   45    32
## 10195   Suc. Belenes    NA      NA    NA    NA   NA    38
## 10196   Suc. Belenes    NA      NA    NA     3    3     3
## 10197   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10198   Suc. Belenes    NA      NA    NA    59   NA    NA
## 10199   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10200   Suc. Belenes    67     208   211   144  106    95
## 10201   Suc. Belenes    NA      NA    NA    NA   NA     4
## 10202   Suc. Belenes    17     114    70    55   91    70
## 10203   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10204   Suc. Belenes   467     573    NA   666   NA    NA
## 10205   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10206   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10207   Suc. Belenes   106     152   142   118  134   184
## 10208   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10209   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10210   Suc. Belenes    NA      NA     0    NA   NA     0
## 10211   Suc. Belenes     9      14    NA    16   11     2
## 10212   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10213   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10214   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10215   Suc. Belenes    NA       0    NA     0   NA     0
## 10216   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10217   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10218   Suc. Belenes    NA      NA    NA    NA    1     3
## 10219   Suc. Belenes    NA       3     2     3   NA    NA
## 10220   Suc. Belenes    16      NA    29    27   25    23
## 10221   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10222   Suc. Belenes    NA      NA    NA    NA    1     3
## 10223   Suc. Belenes    NA       4    NA    NA   NA    NA
## 10224   Suc. Belenes    NA      NA     2    NA   NA    NA
## 10225   Suc. Belenes    16       8    26    27   23    23
## 10226   Suc. Belenes    NA      NA    NA    NA    1     3
## 10227   Suc. Belenes    NA       4    NA    NA   NA    NA
## 10228   Suc. Belenes    NA       3     2    NA   NA    NA
## 10229   Suc. Belenes    16      NA    26    27   23    23
## 10230   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10231   Suc. Belenes    NA      NA    NA    NA   NA     4
## 10232   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10233   Suc. Belenes    NA      NA    NA    NA   24     3
## 10234   Suc. Belenes    NA       4    NA    NA   NA    NA
## 10235   Suc. Belenes    NA       3     4     5   NA     0
## 10236   Suc. Belenes    16      15    26    27   27    27
## 10237   Suc. Belenes     6       3    NA    11    4    NA
## 10238   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10239   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10240   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10241   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10242   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10243   Suc. Belenes     4       6     8     8    6     4
## 10244   Suc. Belenes    22       3    13    19   10    25
## 10245   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10246   Suc. Belenes     4       7     7    NA    7     7
## 10247   Suc. Belenes    NA       3     3    NA   NA     3
## 10248   Suc. Belenes     0      NA     1    NA    1    NA
## 10249   Suc. Belenes    NA      NA     1     2   NA    NA
## 10250   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10251   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10252   Suc. Belenes    NA       1    NA     1    1     1
## 10253   Suc. Belenes     4       3     3     2    3     4
## 10254   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10255   Suc. Belenes     1       1     2     1    2     3
## 10256   Suc. Belenes    NA      NA    NA     4   NA    NA
## 10257   Suc. Belenes     2       1     2     1    1     2
## 10258   Suc. Belenes    NA       3     8    17    8    11
## 10259   Suc. Belenes     1      NA     1     1    1     1
## 10260   Suc. Belenes     0      NA     0     1    0     0
## 10261   Suc. Belenes     1      NA     1    NA    1     1
## 10262   Suc. Belenes     1      NA     1    NA    2     1
## 10263   Suc. Belenes     2       2     2    NA   NA    NA
## 10264   Suc. Belenes    NA       4     2     2    2    NA
## 10265   Suc. Belenes    13      15    17    17   17    17
## 10266   Suc. Belenes    17      17    23    25   28    20
## 10267   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10268   Suc. Belenes     4       8    11     8   11     6
## 10269   Suc. Belenes     2       1     2     1    2     1
## 10270   Suc. Belenes    NA      NA     3     3    2     2
## 10271   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10272   Suc. Belenes     2       4     4     6    6     8
## 10273   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10274   Suc. Belenes     2      NA    NA    NA   NA     2
## 10275   Suc. Belenes    34      21    40    34   23    32
## 10276   Suc. Belenes    34      26    45    45   40    24
## 10277   Suc. Belenes    NA      NA    NA    NA   NA    19
## 10278   Suc. Belenes    10      10     6    13   10    10
## 10279   Suc. Belenes     6       6     6    11    6     6
## 10280   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10281   Suc. Belenes    17      11    17    11    8     8
## 10282   Suc. Belenes    NA      NA     6    NA    3    NA
## 10283   Suc. Belenes    74      74    92    92  102    88
## 10284   Suc. Belenes    49      70    56    67   63    70
## 10285   Suc. Belenes    NA       4     2    NA   NA    NA
## 10286   Suc. Belenes    21      21    23    36   36    36
## 10287   Suc. Belenes    42      38    44    51   55    46
## 10288   Suc. Belenes     5       7     5     6    7     6
## 10289   Suc. Belenes     3       3     5     6    6     5
## 10290   Suc. Belenes     2       2     4     4    4     6
## 10291   Suc. Belenes     4       4     5     2    3     4
## 10292   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10293   Suc. Belenes     1       1     3     1    5     2
## 10294   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10295   Suc. Belenes     1       3    NA     6    4     4
## 10296   Suc. Belenes     1       1     1     2    2     4
## 10297   Suc. Belenes     2       0     0     0    0     0
## 10298   Suc. Belenes    NA       1    NA    NA    0    NA
## 10299   Suc. Belenes     3       3     5     3    5     7
## 10300   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10301   Suc. Belenes     2      NA    NA     4    6     2
## 10302   Suc. Belenes    NA       0     0     0    0     1
## 10303   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10304   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10305   Suc. Belenes     0       0     0     2    1     0
## 10306   Suc. Belenes     1       1     3     2    3     3
## 10307   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10308   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10309   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10310   Suc. Belenes     4       2     4     2    4     4
## 10311   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10312   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10313   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10314   Suc. Belenes     3      NA    NA    NA   NA     3
## 10315   Suc. Belenes     4       4     4     4   14     9
## 10316   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10317   Suc. Belenes     2       2     1     2    2     1
## 10318   Suc. Belenes     1      NA     1     1    1    NA
## 10319   Suc. Belenes    NA       1     3     2    3     2
## 10320   Suc. Belenes    NA       0     1     1    0     0
## 10321   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10322   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10323   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10324   Suc. Belenes    NA      NA     4    NA   NA    NA
## 10325   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10326   Suc. Belenes    NA       0     0     1    1    NA
## 10327   Suc. Belenes     1      NA     1     1    1    NA
## 10328   Suc. Belenes    NA       1     1     1   NA     1
## 10329   Suc. Belenes    NA       0     1     1    0     0
## 10330   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10331   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10332   Suc. Belenes    NA      NA    NA    NA   NA     4
## 10333   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10334   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10335   Suc. Belenes     1      NA     1     1    1    NA
## 10336   Suc. Belenes    NA       1     1     1    1    NA
## 10337   Suc. Belenes    NA       1     4     1    1     3
## 10338   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10339   Suc. Belenes    NA      NA    NA    NA    3    NA
## 10340   Suc. Belenes     7       4    NA     7    7     7
## 10341   Suc. Belenes     2       1     2     1    1     0
## 10342   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10343   Suc. Belenes    NA       3    NA     3   NA     1
## 10344   Suc. Belenes    NA       0     1     1    0     0
## 10345   Suc. Belenes    NA       4     4     4    6     6
## 10346   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10347   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10348   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10349   Suc. Belenes    NA      NA     3     3   NA     3
## 10350   Suc. Belenes    NA       4     7    11   11     5
## 10351   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10352   Suc. Belenes     1       1     2     2    1     1
## 10353   Suc. Belenes     1       2     1     1    1    NA
## 10354   Suc. Belenes     1      NA     1     1    1     2
## 10355   Suc. Belenes    NA       0     1     1    0     0
## 10356   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10357   Suc. Belenes     3      10     6     6    3     6
## 10358   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10359   Suc. Belenes    NA      NA    NA    NA   NA     2
## 10360   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10361   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10362   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10363   Suc. Belenes     6       4     4     6    4     8
## 10364   Suc. Belenes     6      13    13    16   13    19
## 10365   Suc. Belenes    NA      NA     0     1    0     0
## 10366   Suc. Belenes     3       5     5    NA    8     3
## 10367   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10368   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10369   Suc. Belenes     2       3     1     3    3     1
## 10370   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10371   Suc. Belenes     3       8     8     2   10     2
## 10372   Suc. Belenes    NA       2     1     3    1     1
## 10373   Suc. Belenes     2       3    NA     2    1     1
## 10374   Suc. Belenes     0       1     1     1    1     1
## 10375   Suc. Belenes    NA       1     1     1    1     2
## 10376   Suc. Belenes     2       1     1    NA    2     1
## 10377   Suc. Belenes     0      NA     0     0    1     1
## 10378   Suc. Belenes    NA       1     2     1    3     1
## 10379   Suc. Belenes     2      NA    NA    NA   NA     2
## 10380   Suc. Belenes     2       2     2     2    3     2
## 10381   Suc. Belenes     3       3     3     6    3     3
## 10382   Suc. Belenes     0       0     0     0    0     0
## 10383   Suc. Belenes     1       1    NA     1    1    NA
## 10384   Suc. Belenes    NA      NA    NA    NA   NA     2
## 10385   Suc. Belenes    NA      NA    NA     2    2     2
## 10386   Suc. Belenes     1      NA     2    NA   NA    NA
## 10387   Suc. Belenes     2       2     3     2    5     2
## 10388   Suc. Belenes     6       6     3     6    6     8
## 10389   Suc. Belenes     2       6     4     2    4    NA
## 10390   Suc. Belenes     2       1     1     1    1     2
## 10391   Suc. Belenes    NA       1    NA     1   NA    NA
## 10392   Suc. Belenes    NA      NA     2    NA    2     4
## 10393   Suc. Belenes     4      11    13     6    8     8
## 10394   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10395   Suc. Belenes    32      32    41    54   25    32
## 10396   Suc. Belenes     3       5     6     6    6     6
## 10397   Suc. Belenes     3       5     6     6    6     6
## 10398   Suc. Belenes    11      17    14    17   14    17
## 10399   Suc. Belenes    11      14    21    18   14    14
## 10400   Suc. Belenes    92      88   144   116  116   123
## 10401   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10402   Suc. Belenes     8      11     6    13   21     8
## 10403   Suc. Belenes    78      72   108    99   76    80
## 10404   Suc. Belenes     3       3     3     6    3     3
## 10405   Suc. Belenes     2       2     4     7    4     4
## 10406   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10407   Suc. Belenes     4       2     4    NA    4     2
## 10408   Suc. Belenes     2       2     3     2    2     4
## 10409   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10410   Suc. Belenes    NA       1     1    NA    1     1
## 10411   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10412   Suc. Belenes     1       1     2    NA    3     1
## 10413   Suc. Belenes     1       1     1    NA    1     1
## 10414   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10415   Suc. Belenes     0       2     1     2    2     1
## 10416   Suc. Belenes     1       1    NA     1    1    NA
## 10417   Suc. Belenes     3       6     7     6    7     6
## 10418   Suc. Belenes    NA       1     0     0    1    NA
## 10419   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10420   Suc. Belenes     2      NA    NA     2    2     2
## 10421   Suc. Belenes     0       0     0     1    1     1
## 10422   Suc. Belenes    NA      NA     1    NA   NA     1
## 10423   Suc. Belenes    NA      NA     1    NA   NA     1
## 10424   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10425   Suc. Belenes     0       1     1     1    1     1
## 10426   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10427   Suc. Belenes     1      NA     3     1    3     1
## 10428   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10429   Suc. Belenes     3       6    11    14    6    11
## 10430   Suc. Belenes     0       1     1     1    1     1
## 10431   Suc. Belenes     0      NA    NA     0   NA    NA
## 10432   Suc. Belenes     8       4     4     4    4     2
## 10433   Suc. Belenes     4       3     2     2    2     3
## 10434   Suc. Belenes    NA       0    NA     0    1     0
## 10435   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10436   Suc. Belenes     3      NA     3     3   NA     3
## 10437   Suc. Belenes     0       0     0     0    1     0
## 10438   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10439   Suc. Belenes    NA      NA     2     2    4     2
## 10440   Suc. Belenes     1      NA     1     1    2     1
## 10441   Suc. Belenes    NA       0    NA     0    1     0
## 10442   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10443   Suc. Belenes     0       1     1     1    1     1
## 10444   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10445   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10446   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10447   Suc. Belenes     1       2     2     1    2     3
## 10448   Suc. Belenes     8       8    14    14   17     8
## 10449   Suc. Belenes     2       2     4     2    2    NA
## 10450   Suc. Belenes     1      NA     1     1    3    NA
## 10451   Suc. Belenes    NA       0    NA     0    1     0
## 10452   Suc. Belenes     8       6    11    14    8     8
## 10453   Suc. Belenes     3      NA    NA    NA   NA    NA
## 10454   Suc. Belenes     0       1     1     1    1     1
## 10455   Suc. Belenes    NA       0     0    NA    0     0
## 10456   Suc. Belenes     6       2     4     4    6     4
## 10457   Suc. Belenes     3       3     2     3    5     3
## 10458   Suc. Belenes    NA       0    NA     0    1     0
## 10459   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10460   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10461   Suc. Belenes     1       3     1     2    6    NA
## 10462   Suc. Belenes    NA       0    NA    NA   NA     0
## 10463   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10464   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10465   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10466   Suc. Belenes     2       2    NA     4    2     4
## 10467   Suc. Belenes     3       3    NA     3    3    10
## 10468   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10469   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10470   Suc. Belenes    NA      NA    NA     0    0     0
## 10471   Suc. Belenes    NA      NA    NA    NA   NA     3
## 10472   Suc. Belenes     2       2     2     1    2     3
## 10473   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10474   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10475   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10476   Suc. Belenes    NA       1     2    NA    2     1
## 10477   Suc. Belenes    NA      NA    NA     3    3    NA
## 10478   Suc. Belenes    NA      NA     1    NA    1     1
## 10479   Suc. Belenes    NA      NA    NA     0   NA     0
## 10480   Suc. Belenes    NA      NA    NA     2    1     2
## 10481   Suc. Belenes     2      NA    NA    NA    2    NA
## 10482   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10483   Suc. Belenes     2       2     2     2    2     2
## 10484   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10485   Suc. Belenes    11       6     8     8    6     8
## 10486   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10487   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10488   Suc. Belenes     4       2     2     4    6     4
## 10489   Suc. Belenes    17      13    15    25   19    23
## 10490   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10491   Suc. Belenes   127     111   130   133  133   108
## 10492   Suc. Belenes    12       6     8     8    9    12
## 10493   Suc. Belenes     3       3    NA     2    2    NA
## 10494   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10495   Suc. Belenes    NA       3    NA    NA   NA    NA
## 10496   Suc. Belenes     7      18    11    21   21    14
## 10497   Suc. Belenes   296     285   299   299  324   335
## 10498   Suc. Belenes     6       6     8     8   13    23
## 10499   Suc. Belenes     4      13     6    13   11    15
## 10500   Suc. Belenes   142     108   142   152  156   184
## 10501   Suc. Belenes    NA      NA    NA    NA    6     6
## 10502   Suc. Belenes     1       1     2     1    2     4
## 10503   Suc. Belenes     2       2     2     2    2     3
## 10504   Suc. Belenes     6       4    NA     6    4     8
## 10505   Suc. Belenes     3       1     1     3    3     3
## 10506   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10507   Suc. Belenes     1       1    NA    NA   NA    NA
## 10508   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10509   Suc. Belenes     1      NA    NA     1    3     3
## 10510   Suc. Belenes    NA      NA     0     0    0     1
## 10511   Suc. Belenes     2       0     0     1   NA     0
## 10512   Suc. Belenes     1       1     1     2    1     1
## 10513   Suc. Belenes     4       2     3     3    5     4
## 10514   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10515   Suc. Belenes    NA      NA    NA     2   NA     2
## 10516   Suc. Belenes    NA       0    NA     0    0     0
## 10517   Suc. Belenes     0       0    NA    NA   NA    NA
## 10518   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10519   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10520   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10521   Suc. Belenes     1      NA     3     3   NA     3
## 10522   Suc. Belenes    NA      NA    NA     0    0     0
## 10523   Suc. Belenes     2      NA     0     0    2     3
## 10524   Suc. Belenes     4       2     6     4    2     2
## 10525   Suc. Belenes     1       1    NA    NA    1     1
## 10526   Suc. Belenes    NA       0    NA    NA    0     0
## 10527   Suc. Belenes     1      NA    NA     3   NA    NA
## 10528   Suc. Belenes    NA      NA    NA     0    0     0
## 10529   Suc. Belenes     1       0    NA     0    2     2
## 10530   Suc. Belenes    NA       2    NA     4    4     4
## 10531   Suc. Belenes    NA      NA    NA    NA    1     2
## 10532   Suc. Belenes    NA       0    NA    NA    0     0
## 10533   Suc. Belenes     1      NA    NA     3   NA    NA
## 10534   Suc. Belenes    NA      NA    NA     0    0     0
## 10535   Suc. Belenes     0       0    NA    NA    1     2
## 10536   Suc. Belenes    NA      NA     2     4   NA    NA
## 10537   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10538   Suc. Belenes    NA      NA    NA    NA    1     1
## 10539   Suc. Belenes    NA      NA     8    NA   NA     6
## 10540   Suc. Belenes     0      NA    NA     0   NA    NA
## 10541   Suc. Belenes     2       2    NA     2    6    NA
## 10542   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10543   Suc. Belenes    NA       0    NA    NA    0     0
## 10544   Suc. Belenes     1       6    NA     3    3    NA
## 10545   Suc. Belenes    NA      NA    NA     0    0     0
## 10546   Suc. Belenes     0       0    NA     0    1     3
## 10547   Suc. Belenes     2       2     4     2    4    NA
## 10548   Suc. Belenes     1       1    NA    NA    1     1
## 10549   Suc. Belenes    NA       0    NA    NA    0     0
## 10550   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10551   Suc. Belenes     1       1    NA     1    8     3
## 10552   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10553   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10554   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10555   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10556   Suc. Belenes     4      13    17     8   15     4
## 10557   Suc. Belenes    16      22    19    19   35    16
## 10558   Suc. Belenes    NA      NA    NA     7   11    NA
## 10559   Suc. Belenes     3       5     5    NA    5     5
## 10560   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10561   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10562   Suc. Belenes     0       0     0    NA   NA    NA
## 10563   Suc. Belenes     1       2     3     1    4     2
## 10564   Suc. Belenes     3       2     2     4    4     3
## 10565   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10566   Suc. Belenes    NA       1     2     2    4    NA
## 10567   Suc. Belenes     2      NA    NA    NA   NA    NA
## 10568   Suc. Belenes    NA       2     2     1    1    NA
## 10569   Suc. Belenes    11      11     8    14   14    17
## 10570   Suc. Belenes    NA      NA     3     3    3     3
## 10571   Suc. Belenes    NA      NA    NA     0   NA    NA
## 10572   Suc. Belenes     1      NA     1     1    1     1
## 10573   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10574   Suc. Belenes    NA      NA     2     4    4     2
## 10575   Suc. Belenes    27      25    30    21   25    32
## 10576   Suc. Belenes    39      31    39    34   31    39
## 10577   Suc. Belenes     3       3     3     2    2     3
## 10578   Suc. Belenes    17      13    15    17   11    15
## 10579   Suc. Belenes     5       5     5     5    6     5
## 10580   Suc. Belenes     6       4     4     8    6     6
## 10581   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10582   Suc. Belenes    98      95    95    77  143    58
## 10583   Suc. Belenes    NA      NA    NA    NA   NA    19
## 10584   Suc. Belenes     3      NA     6     3    3     3
## 10585   Suc. Belenes    20      24    23    17   17    24
## 10586   Suc. Belenes    73      59    73    73   70    82
## 10587   Suc. Belenes    70      67   102    95   99    99
## 10588   Suc. Belenes    42      49    42    56   53    46
## 10589   Suc. Belenes    53      53    66    57   63    68
## 10590   Suc. Belenes    85      76    76    68   78    76
## 10591   Suc. Belenes     9       7     8    10   11    10
## 10592   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10593   Suc. Belenes    12      10    16     8   20    14
## 10594   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10595   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10596   Suc. Belenes     1      NA     2     4    2     1
## 10597   Suc. Belenes     1       0    NA     1    1     1
## 10598   Suc. Belenes    NA       0    NA    NA    0    NA
## 10599   Suc. Belenes     4       4     4     5    8     1
## 10600   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10601   Suc. Belenes     2       4     2     2    4     2
## 10602   Suc. Belenes    NA      NA     0     0   NA     0
## 10603   Suc. Belenes     4       3     5     7    8     4
## 10604   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10605   Suc. Belenes     3       3     3     8    6     8
## 10606   Suc. Belenes     0       0     0    NA   NA    NA
## 10607   Suc. Belenes     0      NA     0     1    1    NA
## 10608   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10609   Suc. Belenes     3       3     4     3    4     3
## 10610   Suc. Belenes     3       3     3     3    3    NA
## 10611   Suc. Belenes     0       0     0    NA   NA    NA
## 10612   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10613   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10614   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10615   Suc. Belenes    NA      NA    NA     3   NA    NA
## 10616   Suc. Belenes     0       0     0    NA   NA    NA
## 10617   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10618   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10619   Suc. Belenes     8       8     8     6   11     8
## 10620   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10621   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10622   Suc. Belenes     1      NA     0     0   NA    NA
## 10623   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10624   Suc. Belenes     4       4     6     4    5     4
## 10625   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10626   Suc. Belenes     6       3     8     8    8     8
## 10627   Suc. Belenes     0       0     0    NA   NA    NA
## 10628   Suc. Belenes     1      NA     1     0   NA    NA
## 10629   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10630   Suc. Belenes     5       6     8     4    8     6
## 10631   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10632   Suc. Belenes     1       4    10     5   13     4
## 10633   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10634   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10635   Suc. Belenes    14      NA    NA    NA   NA    NA
## 10636   Suc. Belenes     1       1    NA     1    3     1
## 10637   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10638   Suc. Belenes    11      19     8    19   34    17
## 10639   Suc. Belenes    16      25    16    19   22    25
## 10640   Suc. Belenes     5      10     3     3    5     8
## 10641   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10642   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10643   Suc. Belenes    NA      NA     2     3   NA    NA
## 10644   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10645   Suc. Belenes    NA       1     1     0    0     1
## 10646   Suc. Belenes     2       4     5     4    4     4
## 10647   Suc. Belenes     3       4     7     4    6     6
## 10648   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10649   Suc. Belenes     1       1     1     2    2     2
## 10650   Suc. Belenes    NA       2     2    NA   NA    NA
## 10651   Suc. Belenes     2       1     2     1    2     2
## 10652   Suc. Belenes     8      14    11    14   14     8
## 10653   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10654   Suc. Belenes    NA       0    NA    NA    1     0
## 10655   Suc. Belenes     1      NA    NA     1    1    NA
## 10656   Suc. Belenes     1       1    NA    NA    1     1
## 10657   Suc. Belenes     6       6     4    NA   NA    NA
## 10658   Suc. Belenes    NA       2     2     2   NA    NA
## 10659   Suc. Belenes    11      15    11    21   13    17
## 10660   Suc. Belenes    11      11    14    23   14    17
## 10661   Suc. Belenes     4      15    15    11   13    17
## 10662   Suc. Belenes    NA       2    NA     1    1    NA
## 10663   Suc. Belenes    NA       2    NA     2    2    NA
## 10664   Suc. Belenes     4       4     2     4    6     4
## 10665   Suc. Belenes     4       4     4     8   11     8
## 10666   Suc. Belenes    25      42    17    27   40    30
## 10667   Suc. Belenes    13      26    24    21    5    11
## 10668   Suc. Belenes    13      13    29    16   10    19
## 10669   Suc. Belenes    25      16    25    41   44    25
## 10670   Suc. Belenes     9      14     9    14   17     8
## 10671   Suc. Belenes    42      20    23    31   25    25
## 10672   Suc. Belenes   176     102    67   113  116   134
## 10673   Suc. Belenes   190     201   204   208  211   306
## 10674   Suc. Belenes     6      15     2     8    8    11
## 10675   Suc. Belenes    25      19    17    32   44    72
## 10676   Suc. Belenes    57      55    49    76   72    74
## 10677   Suc. Belenes     4       2     5     5    6    10
## 10678   Suc. Belenes     3       3     6     6    9     3
## 10679   Suc. Belenes     2       2     2     2    6     2
## 10680   Suc. Belenes     1       3    NA     1    2     1
## 10681   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10682   Suc. Belenes     1       1     1     1    1     1
## 10683   Suc. Belenes    NA      NA    NA    NA    3     3
## 10684   Suc. Belenes    11       8     6     6    5     8
## 10685   Suc. Belenes     4       2     2     2    2     4
## 10686   Suc. Belenes     1       1     1     1    2     1
## 10687   Suc. Belenes     3       4    10     4    5    10
## 10688   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10689   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10690   Suc. Belenes    NA       2     2    NA    4    NA
## 10691   Suc. Belenes    NA       0     1     0    1    NA
## 10692   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10693   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10694   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10695   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10696   Suc. Belenes     3       2     4     3    4     4
## 10697   Suc. Belenes     2       3     1     1    1     1
## 10698   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10699   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10700   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10701   Suc. Belenes     2       4     4     2    4    NA
## 10702   Suc. Belenes     6       6     3    11    6    11
## 10703   Suc. Belenes    NA       1     1     0    0     1
## 10704   Suc. Belenes     0       1     2     1    1     1
## 10705   Suc. Belenes     1       1     1     1    2     3
## 10706   Suc. Belenes     2       3     4    NA    3     1
## 10707   Suc. Belenes    NA       0     0     0    0     0
## 10708   Suc. Belenes    NA       3     3     3    8     3
## 10709   Suc. Belenes    NA       0     0     0    0     0
## 10710   Suc. Belenes    NA       1     1    NA    1     1
## 10711   Suc. Belenes     1       1     1     1    2     5
## 10712   Suc. Belenes     1       1     3    NA    3     1
## 10713   Suc. Belenes    NA       0     0     0    0     0
## 10714   Suc. Belenes    NA       3     3    11    6     3
## 10715   Suc. Belenes    NA       1     1     0    0     1
## 10716   Suc. Belenes    NA       1     2     0    1     0
## 10717   Suc. Belenes     1       1     1     1    2     3
## 10718   Suc. Belenes     1       3     3    NA    3     1
## 10719   Suc. Belenes    NA       5     3     4    3     6
## 10720   Suc. Belenes     3       3     6     8    3     6
## 10721   Suc. Belenes    NA      NA    NA     0    0     0
## 10722   Suc. Belenes     1      NA    NA    NA    3    NA
## 10723   Suc. Belenes    NA       0     0     0    0     0
## 10724   Suc. Belenes     4       8     2     4    4     2
## 10725   Suc. Belenes    NA      NA     2    NA   NA    NA
## 10726   Suc. Belenes    NA       3     6     6   17    17
## 10727   Suc. Belenes    NA      NA     4    NA   NA    NA
## 10728   Suc. Belenes    NA       1     1     0    0     1
## 10729   Suc. Belenes    NA       2     3     1    1     2
## 10730   Suc. Belenes     1       1     1     1    2     3
## 10731   Suc. Belenes     4       7     5     3    4     3
## 10732   Suc. Belenes    NA       0     0     0    0     0
## 10733   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10734   Suc. Belenes    NA       6     6     3    3    16
## 10735   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10736   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10737   Suc. Belenes    NA      NA    NA    NA   NA     1
## 10738   Suc. Belenes    NA       4    11     6    4     4
## 10739   Suc. Belenes    NA      10    13     6    6    13
## 10740   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10741   Suc. Belenes    NA       3     3    NA    8     5
## 10742   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10743   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10744   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10745   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10746   Suc. Belenes     0       1     2     2    4     3
## 10747   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10748   Suc. Belenes    NA       2    NA    NA   NA    NA
## 10749   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10750   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10751   Suc. Belenes    NA       3     6     3    6     8
## 10752   Suc. Belenes    NA      NA     1     4   NA    NA
## 10753   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10754   Suc. Belenes    NA       2    NA    NA   NA    NA
## 10755   Suc. Belenes    NA      NA    NA    NA    2     2
## 10756   Suc. Belenes    NA       2     2     4   NA     4
## 10757   Suc. Belenes     8       8     6     6    3    14
## 10758   Suc. Belenes     6      NA     4     4    6     4
## 10759   Suc. Belenes    NA       1    NA     1   NA     1
## 10760   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10761   Suc. Belenes    NA      NA    NA     2   NA     6
## 10762   Suc. Belenes    NA      NA    NA     2    2    NA
## 10763   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10764   Suc. Belenes    15      15    17    21   25    15
## 10765   Suc. Belenes    NA      NA    NA    NA   NA     3
## 10766   Suc. Belenes    NA      NA    NA    NA   NA     3
## 10767   Suc. Belenes     6      16     3     6   13    16
## 10768   Suc. Belenes     5       5     2     9    3     5
## 10769   Suc. Belenes    14      11    11    20   20    23
## 10770   Suc. Belenes    NA      NA    NA     3   NA    NA
## 10771   Suc. Belenes    35      60    81    99  134    70
## 10772   Suc. Belenes    21      99    14    42   46    39
## 10773   Suc. Belenes    19      19     8    21   27    27
## 10774   Suc. Belenes    30      34    34    53   32    27
## 10775   Suc. Belenes     4       3     1     6    4     1
## 10776   Suc. Belenes     3       2     5     3    3     3
## 10777   Suc. Belenes    NA      NA    NA     4    6     4
## 10778   Suc. Belenes     2       2     2     3    2     1
## 10779   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10780   Suc. Belenes    NA      NA    NA     1    2    NA
## 10781   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10782   Suc. Belenes     3      NA     3     6   NA     6
## 10783   Suc. Belenes     1       1    NA     1    2    NA
## 10784   Suc. Belenes     1      NA    NA     1   NA     2
## 10785   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10786   Suc. Belenes     3      NA     3     1    5     2
## 10787   Suc. Belenes     2      NA    NA     4   NA     2
## 10788   Suc. Belenes    NA      NA     0     1    1     0
## 10789   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10790   Suc. Belenes    NA       3    NA     2    1     5
## 10791   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10792   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10793   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10794   Suc. Belenes    NA       3     6     9    3     6
## 10795   Suc. Belenes     2       2     2    NA    0     2
## 10796   Suc. Belenes     2       1    NA     1   NA    NA
## 10797   Suc. Belenes    NA       3     3     3   NA     3
## 10798   Suc. Belenes    NA       0    NA     0    0    NA
## 10799   Suc. Belenes    NA      NA     3     1   NA    NA
## 10800   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10801   Suc. Belenes    NA       3     2     7    2     2
## 10802   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10803   Suc. Belenes    NA       0    NA     0    0    NA
## 10804   Suc. Belenes    NA      NA     3     1    3     3
## 10805   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10806   Suc. Belenes    NA       5     2     5    4    NA
## 10807   Suc. Belenes    NA      NA     3    NA    3    NA
## 10808   Suc. Belenes    NA      NA    NA     4   NA    NA
## 10809   Suc. Belenes    NA      NA    NA     3   NA    NA
## 10810   Suc. Belenes    NA       0    NA    NA   NA    NA
## 10811   Suc. Belenes    NA       0    NA     0    0    NA
## 10812   Suc. Belenes    NA       3     8    15    3     8
## 10813   Suc. Belenes     2       0     2    NA    3    NA
## 10814   Suc. Belenes     2       3     2     3    2     2
## 10815   Suc. Belenes    NA       5     3     3    3     5
## 10816   Suc. Belenes    NA       0    NA     0    0    NA
## 10817   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10818   Suc. Belenes     3       1     2     3    4     3
## 10819   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10820   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10821   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10822   Suc. Belenes     2      NA     6     2    2     2
## 10823   Suc. Belenes     3      NA    10     3    3     3
## 10824   Suc. Belenes    NA      NA    NA    NA    0    NA
## 10825   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10826   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10827   Suc. Belenes     6       3     3     3    3     1
## 10828   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10829   Suc. Belenes    NA       1    NA     1    1     1
## 10830   Suc. Belenes    NA      NA    NA     1    1     1
## 10831   Suc. Belenes     3      NA     3     3   NA     3
## 10832   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10833   Suc. Belenes     1      NA    NA    NA   NA    NA
## 10834   Suc. Belenes    NA       4     6     2    2     4
## 10835   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10836   Suc. Belenes     6       4     6     8    8     4
## 10837   Suc. Belenes     1       2    NA     2    1     2
## 10838   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10839   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10840   Suc. Belenes    24      21    29    21   26    13
## 10841   Suc. Belenes    NA      NA    NA    NA   NA    10
## 10842   Suc. Belenes     3       3     3     3    3     3
## 10843   Suc. Belenes     2       2    NA     2    2     2
## 10844   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10845   Suc. Belenes    11       8     8     8   11    11
## 10846   Suc. Belenes    39      25    39    46   46    32
## 10847   Suc. Belenes    42      25    42    42   49    42
## 10848   Suc. Belenes    34      32    25    44   49    42
## 10849   Suc. Belenes    59      42    53    61   53    70
## 10850   Suc. Belenes    17       9     9    12   11    11
## 10851   Suc. Belenes     3      NA     5     5    3     6
## 10852   Suc. Belenes     2      NA    NA     1    4     2
## 10853   Suc. Belenes    NA      NA    NA     1    1     1
## 10854   Suc. Belenes     3      NA    NA    NA   NA    NA
## 10855   Suc. Belenes     3      NA     0     0    0     0
## 10856   Suc. Belenes    NA       0    NA    NA    0    NA
## 10857   Suc. Belenes     3       4     5     4    2     2
## 10858   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10859   Suc. Belenes     2      NA    NA    NA   NA    NA
## 10860   Suc. Belenes    NA      NA    NA     1   NA    NA
## 10861   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10862   Suc. Belenes    NA      NA    NA     0    0     0
## 10863   Suc. Belenes    NA       2     1     2    3     1
## 10864   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10865   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10866   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10867   Suc. Belenes     3       6     8     3    8     6
## 10868   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10869   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10870   Suc. Belenes     3       1     3     2   NA    NA
## 10871   Suc. Belenes    NA       0     0     0   NA    NA
## 10872   Suc. Belenes    NA      NA    NA    NA   NA     0
## 10873   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10874   Suc. Belenes    NA       0     0     0   NA    NA
## 10875   Suc. Belenes    NA      NA    NA    NA    0    NA
## 10876   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10877   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10878   Suc. Belenes     8       6     3     6    6     6
## 10879   Suc. Belenes     2       2     4     2    2     2
## 10880   Suc. Belenes    NA       0     0     0   NA    NA
## 10881   Suc. Belenes     4       2     6     4    8     6
## 10882   Suc. Belenes     6       6     3     3    6     8
## 10883   Suc. Belenes    NA      NA    NA     0   NA    NA
## 10884   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10885   Suc. Belenes     4       2     2     2    6     8
## 10886   Suc. Belenes     3       2     4     3   NA    NA
## 10887   Suc. Belenes    NA       0     0     0   NA    NA
## 10888   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10889   Suc. Belenes     3       3     4     7    2     1
## 10890   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10891   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10892   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10893   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10894   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10895   Suc. Belenes     2       2     2     2    2     2
## 10896   Suc. Belenes     6       3     3     3    3     3
## 10897   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10898   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10899   Suc. Belenes    NA       1     1     1    1    NA
## 10900   Suc. Belenes     0       1    NA     0   NA     1
## 10901   Suc. Belenes     1       1     1    NA    1     1
## 10902   Suc. Belenes    NA      NA    NA     2   NA    NA
## 10903   Suc. Belenes    NA       2     1     1    2     1
## 10904   Suc. Belenes    NA       3    NA     3    6     8
## 10905   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10906   Suc. Belenes    NA      NA    NA     0    0     0
## 10907   Suc. Belenes    NA      NA    NA    NA   NA     2
## 10908   Suc. Belenes    NA       1    NA    NA   NA    NA
## 10909   Suc. Belenes     8       2    NA     6    6     6
## 10910   Suc. Belenes     4       4     4     4    6     6
## 10911   Suc. Belenes     1      NA    NA     1   NA     1
## 10912   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10913   Suc. Belenes    26      21    24    32   18    13
## 10914   Suc. Belenes    NA      NA    NA    NA   NA    16
## 10915   Suc. Belenes    38      38    38    32   48    60
## 10916   Suc. Belenes    11      14     5    12   15     5
## 10917   Suc. Belenes     3       2     5     2    3     2
## 10918   Suc. Belenes    NA      NA    NA    NA    3    NA
## 10919   Suc. Belenes    20      17    17    14   11     8
## 10920   Suc. Belenes    14      18    28    25   32    32
## 10921   Suc. Belenes   148     113    81    99  106    92
## 10922   Suc. Belenes     4       6     4     6    8     6
## 10923   Suc. Belenes    15      13    11     6   11     8
## 10924   Suc. Belenes    80      68    70    93   89    85
## 10925   Suc. Belenes     3       3     2     4    2     6
## 10926   Suc. Belenes     3      NA     2     2    2    NA
## 10927   Suc. Belenes     4       4     8     6    6     8
## 10928   Suc. Belenes     6       6     6     3    3     3
## 10929   Suc. Belenes     1       1     2     1    2     3
## 10930   Suc. Belenes     1      NA     2     2    1     2
## 10931   Suc. Belenes    NA      NA     2     1    1     1
## 10932   Suc. Belenes    NA       0     0     0    0     0
## 10933   Suc. Belenes     1      NA     1     2    1     1
## 10934   Suc. Belenes     4       1     3     3    3    NA
## 10935   Suc. Belenes    NA      NA     2    NA   NA     2
## 10936   Suc. Belenes     0      NA    NA    NA   NA    NA
## 10937   Suc. Belenes     0       0     0     0    0     0
## 10938   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10939   Suc. Belenes     0       1     0     1   NA     1
## 10940   Suc. Belenes     3       1     3     3    1     2
## 10941   Suc. Belenes     1       1     1     1    1     1
## 10942   Suc. Belenes    NA       0     0    NA   NA    NA
## 10943   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10944   Suc. Belenes     0       0     0     0    0     0
## 10945   Suc. Belenes     1       1     1     1    1     2
## 10946   Suc. Belenes     1       1     1     1    1     1
## 10947   Suc. Belenes    NA       0     0    NA   NA    NA
## 10948   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10949   Suc. Belenes     0      NA    NA     1   NA    NA
## 10950   Suc. Belenes     1       1     1     1    3     4
## 10951   Suc. Belenes     1      NA     1     1    1     1
## 10952   Suc. Belenes     1      NA     2    NA   NA     1
## 10953   Suc. Belenes     3       3    NA    NA   NA     3
## 10954   Suc. Belenes    NA      NA    NA     4   NA    NA
## 10955   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10956   Suc. Belenes    NA       0     0    NA   NA    NA
## 10957   Suc. Belenes     3      NA     1     3    3     3
## 10958   Suc. Belenes     1       1     1     0   NA     1
## 10959   Suc. Belenes     1       3     1     1    1     4
## 10960   Suc. Belenes     1       2     1     1    1     2
## 10961   Suc. Belenes    NA       0     0    NA   NA    NA
## 10962   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10963   Suc. Belenes     1       4     1     1    4     4
## 10964   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10965   Suc. Belenes    NA      NA    NA     3    3    NA
## 10966   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10967   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10968   Suc. Belenes     6       2     4     8   11     4
## 10969   Suc. Belenes    10       3     3    10   16     6
## 10970   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10971   Suc. Belenes     4       4     4     4   NA     4
## 10972   Suc. Belenes     3      NA    NA     3    3     3
## 10973   Suc. Belenes     0      NA     0     0    0    NA
## 10974   Suc. Belenes     1       1    NA     1    1    NA
## 10975   Suc. Belenes     5       4     2     2    5     2
## 10976   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10977   Suc. Belenes     1       2     1     2    1     1
## 10978   Suc. Belenes     2       1     2     2    1     1
## 10979   Suc. Belenes     8       8     3     8    6     3
## 10980   Suc. Belenes    NA      NA    NA    NA    2    NA
## 10981   Suc. Belenes    NA      NA     1    NA   NA    NA
## 10982   Suc. Belenes    NA      NA     0    NA   NA    NA
## 10983   Suc. Belenes    NA      NA    NA    NA    1    NA
## 10984   Suc. Belenes    NA      NA    NA     2   NA     2
## 10985   Suc. Belenes     2      NA    NA     2   NA    NA
## 10986   Suc. Belenes     4       2     2     2    4     2
## 10987   Suc. Belenes    NA      NA    NA     2   NA     2
## 10988   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 10989   Suc. Belenes    13       8    18     8   16     8
## 10990   Suc. Belenes    NA      NA    NA     3   NA     3
## 10991   Suc. Belenes    82      95   105   139  124    86
## 10992   Suc. Belenes     5       3     5     6    6     3
## 10993   Suc. Belenes    NA      NA    NA     6   NA    NA
## 10994   Suc. Belenes    14      11    14    11    4    11
## 10995   Suc. Belenes   229     208   215   257  268   173
## 10996   Suc. Belenes     2       4     2     4    2    NA
## 10997   Suc. Belenes    15       6     8     4    4     4
## 10998   Suc. Belenes    76      63    70    80   93    59
## 10999   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11000   Suc. Belenes     4       4     6     5    6     4
## 11001   Suc. Belenes    NA       2     3    NA    2     2
## 11002   Suc. Belenes    NA       2    NA     2    4    NA
## 11003   Suc. Belenes     3       2     1     1    2     1
## 11004   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11005   Suc. Belenes     1       1     1     1    1     1
## 11006   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11007   Suc. Belenes     2      NA    NA     2    5    NA
## 11008   Suc. Belenes     2       0     1     0    0     0
## 11009   Suc. Belenes    NA       0    NA    NA    0    NA
## 11010   Suc. Belenes     3       2    NA     2    3     2
## 11011   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11012   Suc. Belenes     2      NA    NA    NA    2    NA
## 11013   Suc. Belenes     0      NA     0     0    1     0
## 11014   Suc. Belenes     2       2     3    NA   NA    NA
## 11015   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11016   Suc. Belenes    NA       1     3    NA   NA    NA
## 11017   Suc. Belenes     1       0     0     0    0     0
## 11018   Suc. Belenes    NA      NA     2     3    5     2
## 11019   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11020   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11021   Suc. Belenes     3       6     6     8   17     6
## 11022   Suc. Belenes     0      NA     0     0    0    NA
## 11023   Suc. Belenes     1       0     1     0    1    NA
## 11024   Suc. Belenes     3       1     2     2    1     3
## 11025   Suc. Belenes     1       4     1     3    1     1
## 11026   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11027   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11028   Suc. Belenes    NA       3     3     3    8     6
## 11029   Suc. Belenes     0      NA     0     0    0    NA
## 11030   Suc. Belenes    NA       0    NA     0   NA    NA
## 11031   Suc. Belenes     3       1    NA    NA    1     1
## 11032   Suc. Belenes     1       1     1     1    1     1
## 11033   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11034   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11035   Suc. Belenes     0      NA     0     0    0    NA
## 11036   Suc. Belenes    NA       1    NA     0   NA    NA
## 11037   Suc. Belenes     3       1    NA    NA    1     1
## 11038   Suc. Belenes     1       1     1     1    1     1
## 11039   Suc. Belenes     1       1     1     3    1     1
## 11040   Suc. Belenes     8       6     3     8    8     8
## 11041   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11042   Suc. Belenes     2      NA    NA     2    2    NA
## 11043   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11044   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11045   Suc. Belenes    14       8    11    20   28    11
## 11046   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11047   Suc. Belenes     2       1     0     2    0     1
## 11048   Suc. Belenes     2       0     0     0    1     0
## 11049   Suc. Belenes     5       1     4     2    5     5
## 11050   Suc. Belenes     5      11     1     4    4     3
## 11051   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11052   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11053   Suc. Belenes     2       3    NA     4    7     1
## 11054   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11055   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11056   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11057   Suc. Belenes    11      11    11     6    8     8
## 11058   Suc. Belenes    19      13    10    13   13    13
## 11059   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11060   Suc. Belenes     8       5     5     5    8     8
## 11061   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11062   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11063   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11064   Suc. Belenes     1       6    NA     3    2     2
## 11065   Suc. Belenes     3      NA     2     5    6     2
## 11066   Suc. Belenes     2       2    NA     1   NA    NA
## 11067   Suc. Belenes     1       1    NA     1   NA    NA
## 11068   Suc. Belenes    NA       1     1     0   NA     1
## 11069   Suc. Belenes     1       1     1    NA   NA     1
## 11070   Suc. Belenes     1       1    NA    NA   NA     1
## 11071   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11072   Suc. Belenes     2       1    NA     1    2     1
## 11073   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11074   Suc. Belenes     2       2    NA     1    1     2
## 11075   Suc. Belenes     6      NA     3     6    3     6
## 11076   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11077   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11078   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11079   Suc. Belenes    NA       2    NA    NA   NA    NA
## 11080   Suc. Belenes    NA       2     2    NA   NA    NA
## 11081   Suc. Belenes     2       2     2     6   NA     4
## 11082   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11083   Suc. Belenes     6       3     6     8   NA     6
## 11084   Suc. Belenes    NA      NA    NA    NA    3    NA
## 11085   Suc. Belenes     2       2     2     2    2     2
## 11086   Suc. Belenes     2      21     2     2   NA    NA
## 11087   Suc. Belenes    NA       1     1    NA   NA     1
## 11088   Suc. Belenes     2       2    NA    NA   NA    NA
## 11089   Suc. Belenes     2       6     4     4   NA     6
## 11090   Suc. Belenes     8      11    11    11   NA     6
## 11091   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11092   Suc. Belenes     8       4     8     8   NA     8
## 11093   Suc. Belenes     5       5     5    NA   NA    NA
## 11094   Suc. Belenes    NA      NA    NA    NA   NA    38
## 11095   Suc. Belenes    35      13    54    16    3     6
## 11096   Suc. Belenes     5       6    20     5    2     5
## 11097   Suc. Belenes    NA      NA    NA    NA    9    NA
## 11098   Suc. Belenes    14      34     8    11   NA     3
## 11099   Suc. Belenes    14       6    14    11   NA    11
## 11100   Suc. Belenes    14      11    18    14   NA    18
## 11101   Suc. Belenes    99      81    70    21    4    63
## 11102   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11103   Suc. Belenes    13      21    11     4   NA     2
## 11104   Suc. Belenes    55     159    44    44   19    32
## 11105   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11106   Suc. Belenes     4       1     5     2   NA     1
## 11107   Suc. Belenes     3       3     5     5    2     3
## 11108   Suc. Belenes     2       6     4     4    4     4
## 11109   Suc. Belenes     2       3     4     2    1     1
## 11110   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11111   Suc. Belenes     1       1    NA     1    1     1
## 11112   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11113   Suc. Belenes     1      NA    NA    NA   NA     2
## 11114   Suc. Belenes     1       0     1    NA    1     1
## 11115   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11116   Suc. Belenes     1       1    NA     0    1     1
## 11117   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11118   Suc. Belenes     3       3     3     2    3     4
## 11119   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11120   Suc. Belenes    NA       2    NA    NA    2     2
## 11121   Suc. Belenes     0       0     0     0    0     1
## 11122   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11123   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11124   Suc. Belenes    NA      NA     2    NA   NA    NA
## 11125   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11126   Suc. Belenes     0       0     0     0    0     0
## 11127   Suc. Belenes    NA       1    NA     1    1     1
## 11128   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11129   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11130   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11131   Suc. Belenes    NA       4    NA     2    2     4
## 11132   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11133   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11134   Suc. Belenes     6       3     4     6   NA     3
## 11135   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11136   Suc. Belenes    NA       1    NA     0   NA     1
## 11137   Suc. Belenes     1      NA     0    NA   NA    NA
## 11138   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11139   Suc. Belenes     1      NA     1     4    2     1
## 11140   Suc. Belenes     1       1    NA    NA   NA    NA
## 11141   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11142   Suc. Belenes    NA       0     0     0    0    NA
## 11143   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11144   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11145   Suc. Belenes     3      NA     4     6    3     3
## 11146   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11147   Suc. Belenes    NA       0    NA     0   NA     1
## 11148   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11149   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11150   Suc. Belenes     1      NA     1    NA   NA     1
## 11151   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11152   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11153   Suc. Belenes    NA       0     0     0    0    NA
## 11154   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11155   Suc. Belenes    NA      NA     1     6   NA    NA
## 11156   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11157   Suc. Belenes    NA       1    NA     0    1     1
## 11158   Suc. Belenes    NA       0    NA     0    0     0
## 11159   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11160   Suc. Belenes     1       2     1     2    2     1
## 11161   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11162   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11163   Suc. Belenes     3       1     3    NA    1     3
## 11164   Suc. Belenes     6       6     3     3   NA    NA
## 11165   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11166   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11167   Suc. Belenes    NA      NA    NA     2    2    NA
## 11168   Suc. Belenes     1       3    NA    NA   NA    NA
## 11169   Suc. Belenes    NA       0     0     0    0    NA
## 11170   Suc. Belenes     2       4     2     2    2     4
## 11171   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11172   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11173   Suc. Belenes    11       6     4    11    3     8
## 11174   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11175   Suc. Belenes    NA       1    NA     0    3     1
## 11176   Suc. Belenes     3      NA     2     0   NA    NA
## 11177   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11178   Suc. Belenes     1      NA     3     4   NA     1
## 11179   Suc. Belenes     1      11     3    NA    1    NA
## 11180   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11181   Suc. Belenes    NA       0     0     0    0    NA
## 11182   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11183   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11184   Suc. Belenes     1       4    NA     1    8    NA
## 11185   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11186   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11187   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11188   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11189   Suc. Belenes    15      13    11    13   13     8
## 11190   Suc. Belenes    19      13    16    19    6     6
## 11191   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11192   Suc. Belenes    NA       4    NA    NA    7    NA
## 11193   Suc. Belenes     3       3    NA     3    3     3
## 11194   Suc. Belenes     1      NA     1    NA    1    NA
## 11195   Suc. Belenes     2       2     1     1    1     1
## 11196   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11197   Suc. Belenes     1      NA     1    NA   NA     2
## 11198   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11199   Suc. Belenes    NA      NA     2    NA   NA     1
## 11200   Suc. Belenes     6      NA     6     3    8     6
## 11201   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11202   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11203   Suc. Belenes     4       4     6     6    6     8
## 11204   Suc. Belenes     2       4     6    NA    6     6
## 11205   Suc. Belenes     1       2    NA     2    1     2
## 11206   Suc. Belenes    NA      NA     2     2   NA     2
## 11207   Suc. Belenes    11       4    32    19    4    15
## 11208   Suc. Belenes    18      16     8    18   13     8
## 11209   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11210   Suc. Belenes    29      38    35    54   44    51
## 11211   Suc. Belenes    14      14    12     9   15    17
## 11212   Suc. Belenes     5      NA    NA    NA    2     3
## 11213   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11214   Suc. Belenes    42      35    39    56   49    53
## 11215   Suc. Belenes   162     134   123   197  162    92
## 11216   Suc. Belenes    32      21    21    36   15    23
## 11217   Suc. Belenes    82      78    80   112   61    76
## 11218   Suc. Belenes     6       3     3     3    3     3
## 11219   Suc. Belenes     5       5     7     3    4     8
## 11220   Suc. Belenes     3      NA     5     5    3     5
## 11221   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11222   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11223   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11224   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11225   Suc. Belenes     0       0    NA    NA   NA     0
## 11226   Suc. Belenes     2       1    NA     2    0    NA
## 11227   Suc. Belenes     1       1    NA    NA    1    NA
## 11228   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11229   Suc. Belenes     0      NA    NA    NA   NA     0
## 11230   Suc. Belenes    NA      NA     1     1   NA     3
## 11231   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11232   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11233   Suc. Belenes    NA      NA     8     3   NA     1
## 11234   Suc. Belenes     0       1     0    NA    0    NA
## 11235   Suc. Belenes     4       1     2     3    3     1
## 11236   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11237   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11238   Suc. Belenes    NA      NA    NA    NA   NA     4
## 11239   Suc. Belenes    NA       1    NA    NA    0     0
## 11240   Suc. Belenes     2       1     2     1    1     1
## 11241   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11242   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11243   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11244   Suc. Belenes     2       1     2     1    1     1
## 11245   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11246   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11247   Suc. Belenes     3       3    NA    NA    3    NA
## 11248   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11249   Suc. Belenes     2      NA    NA    NA   NA    NA
## 11250   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11251   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11252   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11253   Suc. Belenes     2      NA     2    NA   NA    NA
## 11254   Suc. Belenes    NA       3     3     3    3     4
## 11255   Suc. Belenes    NA       1    NA    NA    0    NA
## 11256   Suc. Belenes     2       3     4     3    3     5
## 11257   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11258   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11259   Suc. Belenes    NA       1    NA     3    1    NA
## 11260   Suc. Belenes    NA      NA     3    NA   NA    NA
## 11261   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11262   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11263   Suc. Belenes    15      49    27    44   74    82
## 11264   Suc. Belenes    25      35    57    82   95   111
## 11265   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11266   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11267   Suc. Belenes    15      25    15    20   18    43
## 11268   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11269   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11270   Suc. Belenes     5      NA     5     3   16    25
## 11271   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11272   Suc. Belenes    NA       2    NA    NA    1    NA
## 11273   Suc. Belenes     1      NA     1    NA   NA     1
## 11274   Suc. Belenes     1       5     6     1    3     4
## 11275   Suc. Belenes     2       6     5     6    5     9
## 11276   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11277   Suc. Belenes     1       3     2     2    4     6
## 11278   Suc. Belenes    NA      NA    NA     6    2     2
## 11279   Suc. Belenes     2       1     2     3    4     1
## 11280   Suc. Belenes     3      NA    NA     6   NA    23
## 11281   Suc. Belenes     2      NA     1    NA   NA    NA
## 11282   Suc. Belenes     1       2     1     1    2     1
## 11283   Suc. Belenes     1       3     2     3    3     5
## 11284   Suc. Belenes    NA      NA     3    NA    3     3
## 11285   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11286   Suc. Belenes     2      NA     2     6   NA     4
## 11287   Suc. Belenes    NA      NA    NA     1    1    NA
## 11288   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11289   Suc. Belenes    17       6    11    11   11    15
## 11290   Suc. Belenes    11      14     6    17    8    17
## 11291   Suc. Belenes     7      11     7    14   11    11
## 11292   Suc. Belenes     3       3     3     3    2     5
## 11293   Suc. Belenes     2      21     4    15   40    NA
## 11294   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11295   Suc. Belenes     2       4    NA     2    4     2
## 11296   Suc. Belenes     3       3     2     5    3     3
## 11297   Suc. Belenes     2       2     1    NA    1     1
## 11298   Suc. Belenes    NA       4    NA     2    4     2
## 11299   Suc. Belenes     3      NA    NA    NA   NA     3
## 11300   Suc. Belenes     4       2     4     2    6     6
## 11301   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11302   Suc. Belenes     2       2    NA     2   NA     4
## 11303   Suc. Belenes     1       1     1    NA   NA    NA
## 11304   Suc. Belenes     6      NA    NA    NA   NA     2
## 11305   Suc. Belenes    45      32    42    42   66    11
## 11306   Suc. Belenes    NA      NA    NA    NA   NA    32
## 11307   Suc. Belenes     3       3    19    13   10    10
## 11308   Suc. Belenes    20      21    15    26   21    17
## 11309   Suc. Belenes    NA      NA     2    NA    2     6
## 11310   Suc. Belenes    34      34    25    54   23    39
## 11311   Suc. Belenes     8       3    11     3   NA     6
## 11312   Suc. Belenes    49      49    49    74   70   116
## 11313   Suc. Belenes    53      49    46    32   14    25
## 11314   Suc. Belenes    NA      NA    NA    NA   NA     7
## 11315   Suc. Belenes    32      21    30    15   27    32
## 11316   Suc. Belenes    51      61    59    66   66   125
## 11317   Suc. Belenes    76      95    87   110  110   118
## 11318   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11319   Suc. Belenes    12      15     3    12   12    15
## 11320   Suc. Belenes     7       9     5     9   16    11
## 11321   Suc. Belenes     9       6    12    10   14    14
## 11322   Suc. Belenes     6       8     6    12   12    12
## 11323   Suc. Belenes     8       9     4     4    5     7
## 11324   Suc. Belenes    NA       1     1    NA   NA    NA
## 11325   Suc. Belenes     2       1     1     1    5     8
## 11326   Suc. Belenes     4       3     3    NA   NA     5
## 11327   Suc. Belenes     3       4     3     1    3    NA
## 11328   Suc. Belenes    NA       1     0     1    2     1
## 11329   Suc. Belenes     4       2     4     4    0     8
## 11330   Suc. Belenes     4       3     3     2    4     3
## 11331   Suc. Belenes     9       7    24     1   NA    16
## 11332   Suc. Belenes    NA       1     1     1   NA     1
## 11333   Suc. Belenes     2       2     2     2   NA     4
## 11334   Suc. Belenes     0       1    NA    NA    1     3
## 11335   Suc. Belenes    NA       1     1     1   NA     2
## 11336   Suc. Belenes    NA       2     1     1    1     1
## 11337   Suc. Belenes    NA       2    NA     1   NA     2
## 11338   Suc. Belenes    NA       1     2     2   NA     2
## 11339   Suc. Belenes     1       3     2     1    2     1
## 11340   Suc. Belenes     3      NA     3     2    1     4
## 11341   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11342   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11343   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11344   Suc. Belenes     2       2     2     4    6     2
## 11345   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11346   Suc. Belenes     6       6     6     3    8    11
## 11347   Suc. Belenes    NA      NA     3    NA    3     3
## 11348   Suc. Belenes     1      NA     1    NA    4     2
## 11349   Suc. Belenes    NA       4     4     2    6     4
## 11350   Suc. Belenes    NA      NA     0     1    1     1
## 11351   Suc. Belenes    NA       0     1     1    1     1
## 11352   Suc. Belenes     2      NA     2     4    2     4
## 11353   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11354   Suc. Belenes     6       3    NA     3   NA    11
## 11355   Suc. Belenes     1       1     2     1    3     2
## 11356   Suc. Belenes     1       2     3     2   NA     4
## 11357   Suc. Belenes    NA       2     3     4   NA     1
## 11358   Suc. Belenes    NA      NA     0     1    1     1
## 11359   Suc. Belenes    NA       0     1     1    1     1
## 11360   Suc. Belenes     4      NA     2     4    4     2
## 11361   Suc. Belenes    NA      NA     2    NA   NA    NA
## 11362   Suc. Belenes     6       3     3     6    3     8
## 11363   Suc. Belenes     2      NA     2     1    3     3
## 11364   Suc. Belenes     1      NA     1    NA    2    NA
## 11365   Suc. Belenes     1       1     1     2    1     1
## 11366   Suc. Belenes    NA      NA     0     1    1     1
## 11367   Suc. Belenes     1      NA    NA     1   NA     3
## 11368   Suc. Belenes    NA       2    NA    NA   NA    NA
## 11369   Suc. Belenes     3       3     8    11    3     6
## 11370   Suc. Belenes     2       3     2     3    3     3
## 11371   Suc. Belenes    NA       2     2     2   NA     4
## 11372   Suc. Belenes    NA      NA     3     3    3     1
## 11373   Suc. Belenes    NA       0     1     1    1     1
## 11374   Suc. Belenes     6       4     2     6    6     6
## 11375   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11376   Suc. Belenes    NA       2    NA    NA   NA    NA
## 11377   Suc. Belenes     3       8     8    11    8    20
## 11378   Suc. Belenes     2       4     2     2    3     5
## 11379   Suc. Belenes     1       6     3     2    2     2
## 11380   Suc. Belenes     5       5     4     4    7     8
## 11381   Suc. Belenes    NA      NA     0     1    1     1
## 11382   Suc. Belenes    NA       0     1     1    1     1
## 11383   Suc. Belenes     1      NA     1    NA   NA    NA
## 11384   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11385   Suc. Belenes     4       8     5     4    6    11
## 11386   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11387   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11388   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11389   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11390   Suc. Belenes     2      NA     2     2    2     2
## 11391   Suc. Belenes     3      NA    NA     3    3     3
## 11392   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11393   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11394   Suc. Belenes     2      NA    NA    NA   NA    NA
## 11395   Suc. Belenes     3       4     2     3    4     2
## 11396   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11397   Suc. Belenes     1      NA    NA     3    1     2
## 11398   Suc. Belenes     2      NA    NA    NA   NA    NA
## 11399   Suc. Belenes     2      NA     1     1    2     1
## 11400   Suc. Belenes    NA      NA    NA     3    6     3
## 11401   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11402   Suc. Belenes     1      NA    NA     1   NA     1
## 11403   Suc. Belenes     6       2    NA     2   NA     4
## 11404   Suc. Belenes     2      NA     4    NA   NA    NA
## 11405   Suc. Belenes    11       6    11    13   11     8
## 11406   Suc. Belenes    NA       5    NA    NA   NA    NA
## 11407   Suc. Belenes    10       3     6     6   10     3
## 11408   Suc. Belenes   105      89    98   149  127   108
## 11409   Suc. Belenes     2       5     8     3    5     5
## 11410   Suc. Belenes    NA      NA     2     3    2     3
## 11411   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11412   Suc. Belenes     7      25    18    21   18    28
## 11413   Suc. Belenes   222     261   215   243  204   257
## 11414   Suc. Belenes     2       8    NA     2    4     4
## 11415   Suc. Belenes    11       8     4     8    6    13
## 11416   Suc. Belenes    93      91    72   125  114   146
## 11417   Suc. Belenes     3       3     3     3    3     3
## 11418   Suc. Belenes     4       3     2     6    7     8
## 11419   Suc. Belenes     2       2     2     2    2     3
## 11420   Suc. Belenes    NA      NA     2     2   NA     4
## 11421   Suc. Belenes     2       4     3     4    2     3
## 11422   Suc. Belenes     1      NA    NA     1    1     1
## 11423   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11424   Suc. Belenes     1      NA    NA     3   NA    NA
## 11425   Suc. Belenes     3      NA    NA     2    2     0
## 11426   Suc. Belenes     2       1    NA     1    1     1
## 11427   Suc. Belenes     3       2     1     3    5     3
## 11428   Suc. Belenes     1       1    NA    NA    2    NA
## 11429   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11430   Suc. Belenes    NA       2    NA    NA   NA    NA
## 11431   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11432   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11433   Suc. Belenes     0      NA    NA     0    0     0
## 11434   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11435   Suc. Belenes    NA       2    NA    NA   NA     2
## 11436   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11437   Suc. Belenes    NA       1     4     8   NA    NA
## 11438   Suc. Belenes    NA      NA     1    NA    3    NA
## 11439   Suc. Belenes    NA       2     1     1    3     4
## 11440   Suc. Belenes     3      NA    NA     1    1     2
## 11441   Suc. Belenes    NA       0     0     0   NA     0
## 11442   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11443   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11444   Suc. Belenes    NA       1     1    NA   NA    NA
## 11445   Suc. Belenes    NA      NA     2    NA    4    NA
## 11446   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11447   Suc. Belenes    NA       2     1     1    1     4
## 11448   Suc. Belenes     1      NA     1     1   NA     3
## 11449   Suc. Belenes    NA       0     0     0   NA     0
## 11450   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11451   Suc. Belenes    NA       1     1     3   NA    NA
## 11452   Suc. Belenes    NA      NA    NA    NA    1    NA
## 11453   Suc. Belenes    NA       2     1     1    1     2
## 11454   Suc. Belenes    NA      NA     1     1   NA     1
## 11455   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11456   Suc. Belenes    NA      NA    NA     3   NA     3
## 11457   Suc. Belenes    NA      NA    NA    NA    8    NA
## 11458   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11459   Suc. Belenes    NA       0     0     0   NA     0
## 11460   Suc. Belenes     2      NA    NA    NA    2    NA
## 11461   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11462   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11463   Suc. Belenes     3       1     4    14   14    NA
## 11464   Suc. Belenes     0       0     0     0    3     2
## 11465   Suc. Belenes     2       2     1     1    5     4
## 11466   Suc. Belenes    NA      NA     1     1    1     3
## 11467   Suc. Belenes    NA       0     0     0   NA     0
## 11468   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11469   Suc. Belenes    NA       1    NA    NA    3    NA
## 11470   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11471   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11472   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11473   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11474   Suc. Belenes    34      15    17    23   27    21
## 11475   Suc. Belenes    19      16    19    38   32    22
## 11476   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11477   Suc. Belenes     5       5     8    13   18     8
## 11478   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11479   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11480   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11481   Suc. Belenes     1      NA     5     4    5     2
## 11482   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11483   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11484   Suc. Belenes     1       4     1     3    1     3
## 11485   Suc. Belenes     7       7     5    15   10     8
## 11486   Suc. Belenes     1       1     1     1    0     2
## 11487   Suc. Belenes     1       4     3    NA    3    NA
## 11488   Suc. Belenes     4      NA     2     6   NA     4
## 11489   Suc. Belenes     3       2     2     2    2     2
## 11490   Suc. Belenes     6       8    14    11    8     6
## 11491   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11492   Suc. Belenes     0       0     0     1    2     1
## 11493   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11494   Suc. Belenes    NA      NA     1     1    1     1
## 11495   Suc. Belenes     2       4    NA     2    2     2
## 11496   Suc. Belenes    11      13     6    13    8    11
## 11497   Suc. Belenes    NA      NA    NA    NA    3    NA
## 11498   Suc. Belenes    14      17    20    14   14    20
## 11499   Suc. Belenes    13      13     6    11    8    13
## 11500   Suc. Belenes     1       1     1     1    3     2
## 11501   Suc. Belenes     4       4     4     6    4     8
## 11502   Suc. Belenes    NA      NA    NA     8    6    11
## 11503   Suc. Belenes     6       4     4     6    6     4
## 11504   Suc. Belenes     2       1    NA    NA    2    NA
## 11505   Suc. Belenes     2       4     2    NA    2    NA
## 11506   Suc. Belenes   108      98   116   153   82    55
## 11507   Suc. Belenes    NA      NA    NA    NA   NA    48
## 11508   Suc. Belenes    63      67    67    98   82    76
## 11509   Suc. Belenes    18      30    11    20   21    14
## 11510   Suc. Belenes     6      NA     3     8    3    NA
## 11511   Suc. Belenes    17      17    11    20   14    20
## 11512   Suc. Belenes    53      67    74   106   95    67
## 11513   Suc. Belenes   229     222   247   296  268   218
## 11514   Suc. Belenes    13      19    23    23   15    27
## 11515   Suc. Belenes    55      46    53    78   51    61
## 11516   Suc. Belenes    89      95    93   139  127    80
## 11517   Suc. Belenes     8       8     6     9    8     7
## 11518   Suc. Belenes     9       6     6     9    5     6
## 11519   Suc. Belenes     8       4     6     8   10    10
## 11520   Suc. Belenes     5       4     7     6    5     4
## 11521   Suc. Belenes    NA       1     1    NA   NA    NA
## 11522   Suc. Belenes     1       1     3     1    5     1
## 11523   Suc. Belenes     1       4     1     1    4     3
## 11524   Suc. Belenes     2       0     1     0    0     0
## 11525   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11526   Suc. Belenes     6       8    12    10   11     8
## 11527   Suc. Belenes    NA       2     2    NA    4     2
## 11528   Suc. Belenes     0       2     0     1    1     1
## 11529   Suc. Belenes     0       0     0     0    0     0
## 11530   Suc. Belenes     3      NA     2     2   NA     1
## 11531   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11532   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11533   Suc. Belenes     5       5     6     6    5     5
## 11534   Suc. Belenes     1       8     1     4    4     2
## 11535   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11536   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11537   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11538   Suc. Belenes     4       1     4     4    1     3
## 11539   Suc. Belenes    NA       0    NA     0   NA    NA
## 11540   Suc. Belenes     3       2     3     5    2     5
## 11541   Suc. Belenes     1      NA     1     1    1     2
## 11542   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11543   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11544   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11545   Suc. Belenes     4       1     1     3    1     3
## 11546   Suc. Belenes    NA       0    NA     0   NA    NA
## 11547   Suc. Belenes     8       3     3     5    2     5
## 11548   Suc. Belenes     1      NA     1     1    1     2
## 11549   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11550   Suc. Belenes    NA      NA    NA     0   NA     0
## 11551   Suc. Belenes    NA      NA    NA    NA   NA     2
## 11552   Suc. Belenes     3       2    NA     2    2     2
## 11553   Suc. Belenes    NA      NA     2     4   NA     2
## 11554   Suc. Belenes    14       8    11    11    6     8
## 11555   Suc. Belenes     2       4     4     6    4     4
## 11556   Suc. Belenes     3       1     1     4    3     1
## 11557   Suc. Belenes    NA       0    NA     0   NA    NA
## 11558   Suc. Belenes    11       6     6     6    5     5
## 11559   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11560   Suc. Belenes     6      NA     4     1    4     2
## 11561   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11562   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11563   Suc. Belenes     2      NA     0    NA   NA    NA
## 11564   Suc. Belenes    NA      NA     2    NA   NA    NA
## 11565   Suc. Belenes    NA      NA    NA     2   NA     2
## 11566   Suc. Belenes     7      13     4     3    3     4
## 11567   Suc. Belenes    NA       0    NA     0   NA    NA
## 11568   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11569   Suc. Belenes    NA       6     3     2    4     6
## 11570   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11571   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11572   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11573   Suc. Belenes     6      11     2     2    2     6
## 11574   Suc. Belenes     3      10     3    13    3    16
## 11575   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11576   Suc. Belenes    NA       5     5    NA    3     8
## 11577   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11578   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11579   Suc. Belenes    NA      NA    NA     0   NA    NA
## 11580   Suc. Belenes    NA       1    NA    NA    1     1
## 11581   Suc. Belenes     2      NA     2    NA   NA    NA
## 11582   Suc. Belenes     2       1     2    NA    1     1
## 11583   Suc. Belenes    NA       3     6    NA   NA    NA
## 11584   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11585   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11586   Suc. Belenes    NA       4     2    NA    4    NA
## 11587   Suc. Belenes     2      NA     2     4   NA     2
## 11588   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11589   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11590   Suc. Belenes    16      34    18    61   NA    NA
## 11591   Suc. Belenes    NA      NA    NA    NA   NA    44
## 11592   Suc. Belenes   187     159   133   250  257   162
## 11593   Suc. Belenes    11      17     2    20    2     2
## 11594   Suc. Belenes    NA      NA    NA     3   NA    NA
## 11595   Suc. Belenes    11      21    14     7   53    NA
## 11596   Suc. Belenes   539     557   535   402  627   472
## 11597   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11598   Suc. Belenes    19      21    NA    NA   NA    NA
## 11599   Suc. Belenes   478     526   454   511  480   249
## 11600   Suc. Belenes    NA       2    NA     1    2     1
## 11601   Suc. Belenes    NA      NA    NA    NA    2    NA
## 11602   Suc. Belenes     2       2     4     2    4     2
## 11603   Suc. Belenes     4       3     1    NA    1     2
## 11604   Suc. Belenes     1      NA     1    NA    1     1
## 11605   Suc. Belenes     8      NA    NA    NA   NA    NA
## 11606   Suc. Belenes     3       0     0    NA    0     0
## 11607   Suc. Belenes    NA      NA    NA    NA    1    NA
## 11608   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11609   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11610   Suc. Belenes     0       0     0    NA    0     0
## 11611   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11612   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11613   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11614   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11615   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11616   Suc. Belenes    NA       9     8     3   12    NA
## 11617   Suc. Belenes    NA       4    NA     7    2     3
## 11618   Suc. Belenes     1      NA    11    10   13    11
## 11619   Suc. Belenes     8      18    NA    NA   NA    NA
## 11620   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11621   Suc. Belenes    NA       0     0     1    0    NA
## 11622   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11623   Suc. Belenes    NA       1     3     3   12    NA
## 11624   Suc. Belenes    NA       2    NA     5    2     3
## 11625   Suc. Belenes     1       2     2     2    4     3
## 11626   Suc. Belenes     3      NA    NA    NA   NA    NA
## 11627   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11628   Suc. Belenes    NA       0     0     1    0    NA
## 11629   Suc. Belenes    NA       1     3     3    9    NA
## 11630   Suc. Belenes    NA       2     0     5    2     3
## 11631   Suc. Belenes     1      NA     2     2   NA     9
## 11632   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11633   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11634   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11635   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11636   Suc. Belenes    NA       6     3     3    3     3
## 11637   Suc. Belenes    NA       2    NA     5    2     3
## 11638   Suc. Belenes    NA      NA     2    19    8     6
## 11639   Suc. Belenes     3      NA    NA    NA   NA    NA
## 11640   Suc. Belenes    NA       0     0     1    0    NA
## 11641   Suc. Belenes    NA      NA    NA    NA   NA    10
## 11642   Suc. Belenes     3      18    14     8   20     8
## 11643   Suc. Belenes     0       7    NA     7    2     7
## 11644   Suc. Belenes     1      NA    17     2    8     9
## 11645   Suc. Belenes     8      10    NA    NA   NA    NA
## 11646   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11647   Suc. Belenes    NA       0     0     1    0    NA
## 11648   Suc. Belenes    NA      NA     1    NA   NA    NA
## 11649   Suc. Belenes    NA      NA     3    NA    3     1
## 11650   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11651   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11652   Suc. Belenes     4       6     8    11   13    17
## 11653   Suc. Belenes     3      16     3    13   22    29
## 11654   Suc. Belenes     3      NA    NA    NA   NA    NA
## 11655   Suc. Belenes     4      NA    NA    NA   NA    NA
## 11656   Suc. Belenes     5       3     3    10   10     8
## 11657   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11658   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11659   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11660   Suc. Belenes     2       1     1     4    4     2
## 11661   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11662   Suc. Belenes     1       1     1     3    1     3
## 11663   Suc. Belenes    NA       2    NA     2   NA    NA
## 11664   Suc. Belenes     2       2     2     2    1     2
## 11665   Suc. Belenes     6      NA     3     8   11    NA
## 11666   Suc. Belenes    NA      NA    NA     0    0     0
## 11667   Suc. Belenes     1       1     1     1    1    NA
## 11668   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11669   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11670   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11671   Suc. Belenes     4       2     6     8    2     6
## 11672   Suc. Belenes     3      NA     3     6    6     3
## 11673   Suc. Belenes     8       8    11    11   11    11
## 11674   Suc. Belenes     2       4    NA     2    4    NA
## 11675   Suc. Belenes     2       2    NA     2    4     2
## 11676   Suc. Belenes    NA      NA    NA    11   30    53
## 11677   Suc. Belenes    42      42    63    37   NA    NA
## 11678   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11679   Suc. Belenes    57      54    60    57   79    82
## 11680   Suc. Belenes    14      15    15    15   21    21
## 11681   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11682   Suc. Belenes    NA      NA    NA     6   NA    NA
## 11683   Suc. Belenes   102     106   144   173  180   190
## 11684   Suc. Belenes   144      99   166   194  187   204
## 11685   Suc. Belenes    36      23    68    42   61    89
## 11686   Suc. Belenes    66      61   106   108  171   123
## 11687   Suc. Belenes     4       4     6     6    3     3
## 11688   Suc. Belenes     6      11     9     9   12    17
## 11689   Suc. Belenes     2       8     6     4    8    12
## 11690   Suc. Belenes     4       3     5     4    4     5
## 11691   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11692   Suc. Belenes     1       2     2     3    1     4
## 11693   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11694   Suc. Belenes     2       1     1     3    2     3
## 11695   Suc. Belenes     5      NA    NA     4    1     2
## 11696   Suc. Belenes     3       0     0     0    0     0
## 11697   Suc. Belenes    NA       1    NA    NA    0    NA
## 11698   Suc. Belenes     6       6     9     4    8     6
## 11699   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11700   Suc. Belenes     8      NA     4     4    4     4
## 11701   Suc. Belenes    NA      NA    NA     1    0     0
## 11702   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11703   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11704   Suc. Belenes     0       0     0     0    0     0
## 11705   Suc. Belenes    NA      NA     1     1    1     1
## 11706   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11707   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11708   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11709   Suc. Belenes     2      NA     2    NA    2    NA
## 11710   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11711   Suc. Belenes    NA       1     4     4    5    NA
## 11712   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11713   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11714   Suc. Belenes     1       0     1     0    3     2
## 11715   Suc. Belenes     2       1     4     4    6     5
## 11716   Suc. Belenes     2       3     3     3    3     1
## 11717   Suc. Belenes     0       1     0     0    0     0
## 11718   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11719   Suc. Belenes     2      NA    NA    NA   NA    NA
## 11720   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11721   Suc. Belenes    NA       4     4     4    2    NA
## 11722   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11723   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11724   Suc. Belenes     0       1     1    NA    3     2
## 11725   Suc. Belenes     2       1     2     2    8     3
## 11726   Suc. Belenes     3       1     2     2    2     2
## 11727   Suc. Belenes     0       1     0     0    0     0
## 11728   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11729   Suc. Belenes     2       2    NA     2    2    NA
## 11730   Suc. Belenes    NA       1     4     4    2    NA
## 11731   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11732   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11733   Suc. Belenes     0       0     1     0    1     2
## 11734   Suc. Belenes     2       1     4     2    8     1
## 11735   Suc. Belenes     1       1    NA     2    1     1
## 11736   Suc. Belenes     0       1     0     0    0     0
## 11737   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11738   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11739   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11740   Suc. Belenes    NA      NA     0    NA   NA    NA
## 11741   Suc. Belenes     2      NA    NA    NA    4    NA
## 11742   Suc. Belenes     1      NA     3     1    1     1
## 11743   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11744   Suc. Belenes     2       2     4     2    2    NA
## 11745   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11746   Suc. Belenes     3       4     4     6    8     3
## 11747   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11748   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11749   Suc. Belenes     2       1     2     0    3     2
## 11750   Suc. Belenes     2       5     4     4   27     7
## 11751   Suc. Belenes     4       2     4     3    4     3
## 11752   Suc. Belenes     0       1     0     0    0     0
## 11753   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11754   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11755   Suc. Belenes     3       3     3     4    6     3
## 11756   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11757   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11758   Suc. Belenes     2       2    NA    NA    4     4
## 11759   Suc. Belenes     3       3    NA    NA    3     3
## 11760   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11761   Suc. Belenes     4       4     7     4    4    NA
## 11762   Suc. Belenes     3      NA     3     5    5     5
## 11763   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11764   Suc. Belenes     1       0    NA     1    0     0
## 11765   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11766   Suc. Belenes    NA      NA    NA    NA    1     1
## 11767   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11768   Suc. Belenes     1       1    NA    NA    1    NA
## 11769   Suc. Belenes    NA       2    NA    NA   NA    NA
## 11770   Suc. Belenes     2       2     1    NA    1    NA
## 11771   Suc. Belenes    NA       6     6    NA    6     6
## 11772   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11773   Suc. Belenes     6      11     6     8    4     6
## 11774   Suc. Belenes    11       8    11     8   11     8
## 11775   Suc. Belenes    11       8    11    13   13    17
## 11776   Suc. Belenes    NA       3    NA    NA   NA    NA
## 11777   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11778   Suc. Belenes    44      44    73    79   51    44
## 11779   Suc. Belenes     5       3     5     8    5     9
## 11780   Suc. Belenes    18      28    28    18   28    25
## 11781   Suc. Belenes   144      88   109    88  102    99
## 11782   Suc. Belenes     6      11     6     8    6    11
## 11783   Suc. Belenes    72      61    72    59   55    66
## 11784   Suc. Belenes     2      NA     2     1    2     4
## 11785   Suc. Belenes    NA       3     2     2    2     2
## 11786   Suc. Belenes    NA      NA    NA     2    2     2
## 11787   Suc. Belenes     3       2     4     4    4     4
## 11788   Suc. Belenes     2       1    NA    NA    1    NA
## 11789   Suc. Belenes    NA       1    NA    NA    1    NA
## 11790   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11791   Suc. Belenes    NA      NA     0    NA   NA    NA
## 11792   Suc. Belenes     3       0    NA    NA    0    NA
## 11793   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11794   Suc. Belenes     2      NA    NA    NA    2    NA
## 11795   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11796   Suc. Belenes     0       0    NA    NA    0    NA
## 11797   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11798   Suc. Belenes     3       6     6     6    6    NA
## 11799   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11800   Suc. Belenes    NA      NA    11     3    3     3
## 11801   Suc. Belenes    NA       4    NA     7    4     4
## 11802   Suc. Belenes     1       0    NA     1    0     0
## 11803   Suc. Belenes     1       1     1     1    2     1
## 11804   Suc. Belenes     4       2     4     2    3     4
## 11805   Suc. Belenes     1       2     1     1    2     1
## 11806   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11807   Suc. Belenes     6       3     3     3    6    NA
## 11808   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11809   Suc. Belenes    NA      NA     3     6   NA    NA
## 11810   Suc. Belenes    NA      NA    NA    NA    5     4
## 11811   Suc. Belenes     0       0    NA     0    0     0
## 11812   Suc. Belenes     1       1     1     1    1     1
## 11813   Suc. Belenes    NA       4     2     4    3     2
## 11814   Suc. Belenes     1       1     1     1    1     3
## 11815   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11816   Suc. Belenes     6       6     6     6    3     6
## 11817   Suc. Belenes    NA      NA    NA     3   NA    NA
## 11818   Suc. Belenes    NA      NA     4     4    2     7
## 11819   Suc. Belenes     1       0    NA     1    0     0
## 11820   Suc. Belenes     0      NA     2     1    2     1
## 11821   Suc. Belenes    NA      NA    NA    NA    3    NA
## 11822   Suc. Belenes     1       2     1     1    3     1
## 11823   Suc. Belenes     1       1     1     1    1     1
## 11824   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11825   Suc. Belenes    NA      NA     6     3   NA    NA
## 11826   Suc. Belenes    NA       7     4    NA    4    NA
## 11827   Suc. Belenes    NA       0    NA     0   NA    NA
## 11828   Suc. Belenes     6       2     2     4   NA     2
## 11829   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11830   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11831   Suc. Belenes     3      10    10    10    6     6
## 11832   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11833   Suc. Belenes     3       3     6     3    3    NA
## 11834   Suc. Belenes    NA      NA     4     7    7     7
## 11835   Suc. Belenes     1       0    NA     1    0     0
## 11836   Suc. Belenes     0       1     2     1    1     2
## 11837   Suc. Belenes    NA       2     4     4    5     4
## 11838   Suc. Belenes     1       3     2     3    3     2
## 11839   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11840   Suc. Belenes    NA      NA    NA    NA    3    NA
## 11841   Suc. Belenes     2      NA     2     2    2     4
## 11842   Suc. Belenes     3      NA    NA    NA    3     6
## 11843   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11844   Suc. Belenes    NA      NA    NA    NA    3    NA
## 11845   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11846   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11847   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11848   Suc. Belenes     4       4     8     9    8     8
## 11849   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11850   Suc. Belenes    NA      NA    NA    NA    1     1
## 11851   Suc. Belenes    NA      NA    NA    NA    1     1
## 11852   Suc. Belenes     4       2    NA    NA    2    NA
## 11853   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11854   Suc. Belenes     3       5    NA    NA   NA     3
## 11855   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11856   Suc. Belenes    73      57    76    67   73    79
## 11857   Suc. Belenes     2      NA     2     2    3     3
## 11858   Suc. Belenes    NA       6    NA    NA   NA    NA
## 11859   Suc. Belenes    NA      NA    NA     4    4    NA
## 11860   Suc. Belenes    81      85    88    99  116    70
## 11861   Suc. Belenes     4      NA     2     4    2     4
## 11862   Suc. Belenes    34      30    53    42   57    55
## 11863   Suc. Belenes    NA       1    NA    NA   NA     1
## 11864   Suc. Belenes     2       2    NA     2   NA     2
## 11865   Suc. Belenes     1       3     1     2   NA     1
## 11866   Suc. Belenes    NA       2     1    NA    2     1
## 11867   Suc. Belenes    NA       1     1    NA    1    NA
## 11868   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11869   Suc. Belenes    NA      NA    NA     0    1     2
## 11870   Suc. Belenes    NA       0    NA    NA    0     0
## 11871   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11872   Suc. Belenes     3       1     7    NA    3     3
## 11873   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11874   Suc. Belenes    NA       0    NA    NA    0     0
## 11875   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11876   Suc. Belenes    NA      NA     6    NA    1     3
## 11877   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11878   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11879   Suc. Belenes     3       1    NA    NA    1    NA
## 11880   Suc. Belenes    NA      NA     1    NA    1     1
## 11881   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11882   Suc. Belenes    NA      NA    NA    NA    1    NA
## 11883   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11884   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11885   Suc. Belenes     1       1     2    NA    3     2
## 11886   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11887   Suc. Belenes    NA      NA    NA    NA    4    NA
## 11888   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11889   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11890   Suc. Belenes     1       1    NA    NA    1    NA
## 11891   Suc. Belenes     1      NA     1    NA    1     1
## 11892   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11893   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11894   Suc. Belenes    NA      NA     2    NA   NA    NA
## 11895   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11896   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11897   Suc. Belenes     3      NA     3    NA    4    NA
## 11898   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11899   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11900   Suc. Belenes     3       1     4    NA    1    NA
## 11901   Suc. Belenes     1       1     1    NA    1     1
## 11902   Suc. Belenes    NA      NA    NA     2   NA    NA
## 11903   Suc. Belenes    NA       0    NA    NA   NA    NA
## 11904   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11905   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11906   Suc. Belenes    11       4    NA     2    8     6
## 11907   Suc. Belenes    16       3    NA     3    6    10
## 11908   Suc. Belenes     5       5    NA    NA   NA    NA
## 11909   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11910   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11911   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11912   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11913   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11914   Suc. Belenes     3      NA    NA    NA   NA    NA
## 11915   Suc. Belenes     3       3     2     4    3     6
## 11916   Suc. Belenes    NA      NA    NA    NA   NA     0
## 11917   Suc. Belenes     1       2    NA     1    3     3
## 11918   Suc. Belenes     2       2    NA     1    2     2
## 11919   Suc. Belenes    NA      NA    NA     3    6     6
## 11920   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11921   Suc. Belenes    NA       0    NA    NA    0    NA
## 11922   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11923   Suc. Belenes    NA      NA    NA    NA   NA     1
## 11924   Suc. Belenes     1      NA    NA    NA   NA    NA
## 11925   Suc. Belenes    NA       4    NA    NA   NA    NA
## 11926   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11927   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11928   Suc. Belenes     6      NA     2    NA    2    NA
## 11929   Suc. Belenes    NA       1    NA    NA   NA    NA
## 11930   Suc. Belenes     4       1     2     5    3     3
## 11931   Suc. Belenes     1      NA     1    NA   NA    NA
## 11932   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11933   Suc. Belenes    11       4     6    13   11    13
## 11934   Suc. Belenes    NA      NA    NA     3   NA    NA
## 11935   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11936   Suc. Belenes     6       3     6     3    3     3
## 11937   Suc. Belenes     8       5     6     9    9    11
## 11938   Suc. Belenes    23      20     8    20   20    23
## 11939   Suc. Belenes    NA       3    NA    NA   NA    NA
## 11940   Suc. Belenes    35      25    21    42   35    35
## 11941   Suc. Belenes     7       4     4     4    4     4
## 11942   Suc. Belenes     8      11     8     2   NA    NA
## 11943   Suc. Belenes    27      15    19    27   21    27
## 11944   Suc. Belenes    49      49    53    57   82    97
## 11945   Suc. Belenes     3       2     1     4    5     8
## 11946   Suc. Belenes     4       4     3     4    4     8
## 11947   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11948   Suc. Belenes     2       1     1     1   NA    NA
## 11949   Suc. Belenes    NA      NA    NA     1   NA    NA
## 11950   Suc. Belenes    NA       1    NA     1    1     2
## 11951   Suc. Belenes     1       1    NA    NA   NA    NA
## 11952   Suc. Belenes     1       1    NA     2    2     3
## 11953   Suc. Belenes     4       0     1     4    3     3
## 11954   Suc. Belenes    NA       0    NA    NA    1    NA
## 11955   Suc. Belenes    NA       3     1     3    3     3
## 11956   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11957   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11958   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11959   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11960   Suc. Belenes     0       0    NA     0    0     0
## 11961   Suc. Belenes     1       1     1     2    2     2
## 11962   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11963   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11964   Suc. Belenes     1       1    NA     3    3    NA
## 11965   Suc. Belenes     0       0     1     0    1     0
## 11966   Suc. Belenes     1      NA    NA    NA    1    NA
## 11967   Suc. Belenes     4       1     1     1    1     3
## 11968   Suc. Belenes    NA       0    NA    NA    1    NA
## 11969   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11970   Suc. Belenes     1       1    NA    NA   NA    NA
## 11971   Suc. Belenes     0      NA     0    NA    1     0
## 11972   Suc. Belenes     1      NA    NA    NA    1    NA
## 11973   Suc. Belenes     3       1    NA     1    1     2
## 11974   Suc. Belenes    NA       0    NA    NA    1    NA
## 11975   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11976   Suc. Belenes     1       1    NA    NA   NA    NA
## 11977   Suc. Belenes     0      NA     1    NA    0     0
## 11978   Suc. Belenes     1      NA    NA    NA    1    NA
## 11979   Suc. Belenes     4       1     1     1    1     3
## 11980   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11981   Suc. Belenes     1      NA    NA    NA   NA     1
## 11982   Suc. Belenes    NA      NA    NA    NA   NA     3
## 11983   Suc. Belenes    NA      NA    NA    NA    0    NA
## 11984   Suc. Belenes     4      NA    NA    NA   NA    NA
## 11985   Suc. Belenes    NA       0    NA    NA    1    NA
## 11986   Suc. Belenes     1       1    NA    NA   NA    NA
## 11987   Suc. Belenes     0      NA     1     0    0     0
## 11988   Suc. Belenes     1       2    NA     2    1     2
## 11989   Suc. Belenes     3       2     2     3    2     3
## 11990   Suc. Belenes    NA       0    NA    NA    1    NA
## 11991   Suc. Belenes     0      NA    NA    NA   NA    NA
## 11992   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11993   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11994   Suc. Belenes    NA       1     1     4    3     4
## 11995   Suc. Belenes    11      11     6     8    8    11
## 11996   Suc. Belenes    10       3     3    10    6    10
## 11997   Suc. Belenes     3       8     3     8    5     8
## 11998   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 11999   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12000   Suc. Belenes     0      NA    NA     0   NA     0
## 12001   Suc. Belenes     4       4     3     3    2    11
## 12002   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12003   Suc. Belenes    NA      NA    NA    NA    2     2
## 12004   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12005   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12006   Suc. Belenes    NA      NA    NA     2    1     1
## 12007   Suc. Belenes     6      NA    NA     3    3     3
## 12008   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12009   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12010   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12011   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12012   Suc. Belenes     2       2    NA     2    4     4
## 12013   Suc. Belenes     3      NA     3    NA    6    NA
## 12014   Suc. Belenes     4       4     2     2    6     4
## 12015   Suc. Belenes    NA       1     1     1    1     1
## 12016   Suc. Belenes    NA       1    NA     2   NA    NA
## 12017   Suc. Belenes    NA       3    NA    NA   NA    NA
## 12018   Suc. Belenes     1      NA     1     1    1     1
## 12019   Suc. Belenes     6       8     8     6    4     8
## 12020   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12021   Suc. Belenes     6       6     3     6   10    13
## 12022   Suc. Belenes     2       5     2     5    3     3
## 12023   Suc. Belenes     2       2     3     5   NA    NA
## 12024   Suc. Belenes     6      NA    NA    NA   NA    NA
## 12025   Suc. Belenes    21      11    11     7   14    18
## 12026   Suc. Belenes    42      25    32    39   35    39
## 12027   Suc. Belenes     3       3     3     3    3    NA
## 12028   Suc. Belenes    NA      NA    NA    NA    2     4
## 12029   Suc. Belenes    13      13    15    15   15    19
## 12030   Suc. Belenes    38      30    36    42   36    36
## 12031   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12032   Suc. Belenes     4       5     4     2    5     5
## 12033   Suc. Belenes     3       2     2     2    3     3
## 12034   Suc. Belenes     2       2     1     1    2     1
## 12035   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12036   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12037   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12038   Suc. Belenes     1      NA    NA    NA    2     0
## 12039   Suc. Belenes    NA      NA    NA    NA    0    NA
## 12040   Suc. Belenes     3       1     3     4    3     9
## 12041   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12042   Suc. Belenes     2      NA    NA    NA   NA     2
## 12043   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12044   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12045   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12046   Suc. Belenes    NA      NA    NA     0   NA     0
## 12047   Suc. Belenes    NA       1     1     1    3     1
## 12048   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12049   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12050   Suc. Belenes     4      NA     4     4    4     4
## 12051   Suc. Belenes     0      NA    NA     0   NA     0
## 12052   Suc. Belenes     1       3     1     0   NA     0
## 12053   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12054   Suc. Belenes     1       3     1     1    4     3
## 12055   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12056   Suc. Belenes     0      NA    NA     0   NA     0
## 12057   Suc. Belenes     1      NA     1    NA   NA    NA
## 12058   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12059   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12060   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12061   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12062   Suc. Belenes     0      NA    NA     0   NA     0
## 12063   Suc. Belenes     1      NA     1    NA   NA    NA
## 12064   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12065   Suc. Belenes    NA      NA    NA    NA    3     2
## 12066   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12067   Suc. Belenes     3       1     1     3    1    NA
## 12068   Suc. Belenes    NA       3    NA    NA   NA     3
## 12069   Suc. Belenes     7       4     4     4    4     4
## 12070   Suc. Belenes     0      NA    NA     0   NA     0
## 12071   Suc. Belenes     1      NA     1     0   NA    NA
## 12072   Suc. Belenes     4       4     4     2    6     4
## 12073   Suc. Belenes     3       5     3     4    3     3
## 12074   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12075   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12076   Suc. Belenes     3       3     1     2   NA     2
## 12077   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12078   Suc. Belenes     3       3     3     4    3     3
## 12079   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12080   Suc. Belenes    25     169     8    38   55    17
## 12081   Suc. Belenes     3     111    16    51  101    13
## 12082   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12083   Suc. Belenes    18      63    10    15   36    10
## 12084   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12085   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12086   Suc. Belenes     6       6     5    NA   NA     2
## 12087   Suc. Belenes     8       3     5    NA   NA    NA
## 12088   Suc. Belenes     5      NA    NA    NA   NA    NA
## 12089   Suc. Belenes     3       3     2     4    2     2
## 12090   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12091   Suc. Belenes    NA      NA    NA     0   NA     1
## 12092   Suc. Belenes    10       8     5     5    5     6
## 12093   Suc. Belenes     4       4     1     6    7     4
## 12094   Suc. Belenes     3       3     3     5    1     2
## 12095   Suc. Belenes    NA       1     1    11    6     2
## 12096   Suc. Belenes     2       2    NA    NA   NA    NA
## 12097   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12098   Suc. Belenes     3       2     1     5    1     2
## 12099   Suc. Belenes    NA       3     3    NA    3    NA
## 12100   Suc. Belenes     1      NA    NA     5   NA    NA
## 12101   Suc. Belenes     1       1     0     2    0     1
## 12102   Suc. Belenes     3       1     2     4    3     4
## 12103   Suc. Belenes     5      13     4     3    3     1
## 12104   Suc. Belenes     2      NA    NA    NA   NA    NA
## 12105   Suc. Belenes     4       4     2     4    6     2
## 12106   Suc. Belenes     4       2     1     1    1     1
## 12107   Suc. Belenes     8       6     6     8    6     8
## 12108   Suc. Belenes     8      11     6    11   14     8
## 12109   Suc. Belenes     7       3     3     3    7     2
## 12110   Suc. Belenes    25      19    23    27   27    25
## 12111   Suc. Belenes     3       2     2     4    3     3
## 12112   Suc. Belenes     5       3     3     5    5     2
## 12113   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12114   Suc. Belenes     4       6     2     4    4     4
## 12115   Suc. Belenes     3       2     3     3    3     3
## 12116   Suc. Belenes     6      NA    NA    NA    3    NA
## 12117   Suc. Belenes     6       2     6     6    6     4
## 12118   Suc. Belenes     1       1     1     1    2     1
## 12119   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12120   Suc. Belenes    42      34    25    30   30    23
## 12121   Suc. Belenes     3       3     3    13    3     3
## 12122   Suc. Belenes     6       3     3    NA   NA     6
## 12123   Suc. Belenes    13      13     6    16   16     6
## 12124   Suc. Belenes    41      38    41    42   35    42
## 12125   Suc. Belenes     2      NA    NA    NA    2    NA
## 12126   Suc. Belenes    11      17    17    17   20    20
## 12127   Suc. Belenes    70      67    46    63   70    81
## 12128   Suc. Belenes   134      92   106   127   99   162
## 12129   Suc. Belenes     2      NA    NA    NA   NA    NA
## 12130   Suc. Belenes     4       8     8     8   11     6
## 12131   Suc. Belenes   188     144   142   150  167   165
## 12132   Suc. Belenes   150     144   131   194  180   161
## 12133   Suc. Belenes    24      21    18    21   21    18
## 12134   Suc. Belenes    16      14    13    14   17    15
## 12135   Suc. Belenes    20      17    21    21   26    21
## 12136   Suc. Belenes    12      10    12    12   20    18
## 12137   Suc. Belenes    17      17    11    12   14    15
## 12138   Suc. Belenes    NA      NA     1     1   NA    NA
## 12139   Suc. Belenes     4       2     4     8    1     4
## 12140   Suc. Belenes    NA       1    NA     2   NA    NA
## 12141   Suc. Belenes     5       2     3     6    5     5
## 12142   Suc. Belenes     1      NA    NA    NA   NA     1
## 12143   Suc. Belenes    NA      NA     1    NA    1    NA
## 12144   Suc. Belenes     4       0     0     2    0     0
## 12145   Suc. Belenes    NA       1    NA    NA    2    NA
## 12146   Suc. Belenes    11      14    40    23   34    10
## 12147   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12148   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12149   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12150   Suc. Belenes     8       2     6    15    8    11
## 12151   Suc. Belenes     3       1     2     2    3     3
## 12152   Suc. Belenes    NA       1     1     2    1    NA
## 12153   Suc. Belenes     2       1     1     1    1    NA
## 12154   Suc. Belenes    NA      NA     1     1   NA    NA
## 12155   Suc. Belenes    NA      NA     1    NA    1    NA
## 12156   Suc. Belenes     1       1     1     2    1     1
## 12157   Suc. Belenes     5       3     5     5    6     5
## 12158   Suc. Belenes     2       2     2    NA    2     2
## 12159   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12160   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12161   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12162   Suc. Belenes     4       2    NA     4    4     4
## 12163   Suc. Belenes    14       6    NA     8    6     8
## 12164   Suc. Belenes    NA      NA    NA     0   NA     1
## 12165   Suc. Belenes     3       3     1     0    1     2
## 12166   Suc. Belenes     8       3     2     2    3     4
## 12167   Suc. Belenes    11      11    10    13   10    15
## 12168   Suc. Belenes     0       2     2     2    2    NA
## 12169   Suc. Belenes    NA       0     0     1    1     0
## 12170   Suc. Belenes     1       0    NA    NA   NA    NA
## 12171   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12172   Suc. Belenes     3       3    NA     3    3     3
## 12173   Suc. Belenes    NA      NA    NA     0   NA     0
## 12174   Suc. Belenes     3       2     1     1    1     0
## 12175   Suc. Belenes     2       3     2     2    3     4
## 12176   Suc. Belenes     3       5     3     3    8     5
## 12177   Suc. Belenes     0      NA    NA    NA   NA    NA
## 12178   Suc. Belenes    NA       0     0     1    1     0
## 12179   Suc. Belenes     1       0    NA    NA   NA    NA
## 12180   Suc. Belenes     3      NA    NA    NA   NA     3
## 12181   Suc. Belenes    NA      NA    NA     0   NA     1
## 12182   Suc. Belenes     2       2     1     1    1     3
## 12183   Suc. Belenes     2       3     2     2    3     4
## 12184   Suc. Belenes     8      NA     3     3    3     5
## 12185   Suc. Belenes     0      NA    NA    NA   NA    NA
## 12186   Suc. Belenes     1       0    NA    NA   NA    NA
## 12187   Suc. Belenes    12       8     5     8   10     8
## 12188   Suc. Belenes     3       3     6     8    3    NA
## 12189   Suc. Belenes    NA      NA    NA    NA    4    NA
## 12190   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12191   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12192   Suc. Belenes    13       8    10    10    9    13
## 12193   Suc. Belenes    NA       0     0     1    1     0
## 12194   Suc. Belenes     4       4     2     8    4     6
## 12195   Suc. Belenes     8       8     3    11   20    NA
## 12196   Suc. Belenes    NA      NA     4    NA   NA    NA
## 12197   Suc. Belenes    NA      NA    NA     0   NA     1
## 12198   Suc. Belenes     3       3     1     2    2     4
## 12199   Suc. Belenes     2       3     4     4    5     4
## 12200   Suc. Belenes    30      14    18    16   13    18
## 12201   Suc. Belenes     3       2     5     3    2     3
## 12202   Suc. Belenes    NA       0     0     1    1     0
## 12203   Suc. Belenes     1       0    NA    NA   NA    NA
## 12204   Suc. Belenes     3      NA     1     2    1    NA
## 12205   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12206   Suc. Belenes     7      15    13    13    7     8
## 12207   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12208   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12209   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12210   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12211   Suc. Belenes     2      NA     2     4    2     2
## 12212   Suc. Belenes     3      NA     3     6    3     6
## 12213   Suc. Belenes    NA      NA    NA    NA    0    NA
## 12214   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12215   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12216   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12217   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12218   Suc. Belenes     1       1     1    NA    1    NA
## 12219   Suc. Belenes     2       2     3     3    4     3
## 12220   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12221   Suc. Belenes    NA      NA     1     1    2     2
## 12222   Suc. Belenes    NA      NA     2     1    2     2
## 12223   Suc. Belenes     6       3     8     8    8     6
## 12224   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12225   Suc. Belenes    NA      NA     0    NA    0     0
## 12226   Suc. Belenes     1      NA    NA    NA    1    NA
## 12227   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12228   Suc. Belenes    NA       2    NA    NA   NA    NA
## 12229   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12230   Suc. Belenes     4      NA     2     4    2     2
## 12231   Suc. Belenes     2       1     1     1    1    NA
## 12232   Suc. Belenes    17       8     6    15   19    13
## 12233   Suc. Belenes    NA       5     2     6    6     9
## 12234   Suc. Belenes    17      11     8    20   17    23
## 12235   Suc. Belenes    13      19     6    11   13    17
## 12236   Suc. Belenes     4       3     2     4    3     5
## 12237   Suc. Belenes     5      NA    NA     3    3     2
## 12238   Suc. Belenes     1       1     1     1    1     1
## 12239   Suc. Belenes    NA       2    NA     4    4     4
## 12240   Suc. Belenes     3      NA    NA    NA   NA    NA
## 12241   Suc. Belenes     2       2     2     2    4     4
## 12242   Suc. Belenes     1       1     1     1    2     1
## 12243   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12244   Suc. Belenes    23      21    23    25   38    38
## 12245   Suc. Belenes    NA      NA    NA    NA   NA     6
## 12246   Suc. Belenes    22      13    13    22   32    29
## 12247   Suc. Belenes     9       6     6     5   11     9
## 12248   Suc. Belenes    54      54    48    60   73    70
## 12249   Suc. Belenes    42      32    28    25   46    46
## 12250   Suc. Belenes    74      77    53    77   85    95
## 12251   Suc. Belenes    NA       2     2     4   11    11
## 12252   Suc. Belenes    30      40    27    30   53    49
## 12253   Suc. Belenes    34      34    30    40   55    53
## 12254   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12255   Suc. Belenes    10       6     7     6   10    10
## 12256   Suc. Belenes     6       6     3     6    5     6
## 12257   Suc. Belenes     6       4     4    NA    4     8
## 12258   Suc. Belenes     2       1     1     2    2     1
## 12259   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12260   Suc. Belenes    NA      NA     1     1    3     3
## 12261   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12262   Suc. Belenes     1       1     1     3    1     3
## 12263   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12264   Suc. Belenes     3       0     2     0    0     0
## 12265   Suc. Belenes     1       1     1     1    1     1
## 12266   Suc. Belenes     3       3     3     3    5     4
## 12267   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12268   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12269   Suc. Belenes    NA      NA     1    NA   NA    NA
## 12270   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12271   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12272   Suc. Belenes     0       0     1     0    1     1
## 12273   Suc. Belenes     2       1     3     3    3     1
## 12274   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12275   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12276   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12277   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12278   Suc. Belenes     1       4    NA     6    3     3
## 12279   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12280   Suc. Belenes    NA      NA    NA     0   NA    NA
## 12281   Suc. Belenes     1      NA     1     1    1    NA
## 12282   Suc. Belenes     3       2     3     4    3     2
## 12283   Suc. Belenes    NA       0     0     0    0     0
## 12284   Suc. Belenes     0       0    NA    NA   NA    NA
## 12285   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12286   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12287   Suc. Belenes     1       1    NA    NA    3    NA
## 12288   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12289   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12290   Suc. Belenes     1      NA     1     1    1    NA
## 12291   Suc. Belenes     1       1     1     3    3     1
## 12292   Suc. Belenes    NA       0     0     0    0     0
## 12293   Suc. Belenes     0       0    NA    NA   NA    NA
## 12294   Suc. Belenes     1       1    NA    NA    3    NA
## 12295   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12296   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12297   Suc. Belenes     1      NA     1     1    1    NA
## 12298   Suc. Belenes     3       2    NA     3    1     1
## 12299   Suc. Belenes     0       0    NA    NA   NA    NA
## 12300   Suc. Belenes     2       1     1     1    1    NA
## 12301   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12302   Suc. Belenes    NA      NA    NA    NA    3     3
## 12303   Suc. Belenes    NA      NA    NA    NA    2    NA
## 12304   Suc. Belenes    NA      NA     1    NA   NA     1
## 12305   Suc. Belenes    NA       0     0     0    0     0
## 12306   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12307   Suc. Belenes    NA      NA    NA    NA   NA    10
## 12308   Suc. Belenes     6       4     8     3    6     8
## 12309   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12310   Suc. Belenes     0      NA     0    NA    0     0
## 12311   Suc. Belenes     1      NA     1     1    1     2
## 12312   Suc. Belenes     4       3     3     3    3     2
## 12313   Suc. Belenes    NA       0     0     0    0     0
## 12314   Suc. Belenes     0       0    NA    NA   NA    NA
## 12315   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12316   Suc. Belenes     1       2    NA     3    5     4
## 12317   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12318   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12319   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12320   Suc. Belenes     2       2     2     2    2     4
## 12321   Suc. Belenes     6       3     6     3   10     3
## 12322   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12323   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12324   Suc. Belenes    NA       3     3    NA   NA     3
## 12325   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12326   Suc. Belenes    NA       1    NA     0   NA    NA
## 12327   Suc. Belenes    NA      NA     0    NA    0     0
## 12328   Suc. Belenes     1      NA     1    NA    1     1
## 12329   Suc. Belenes     2       2     1     1    2     3
## 12330   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12331   Suc. Belenes    NA      NA     1     1    1     1
## 12332   Suc. Belenes    NA      NA     1     1    1     1
## 12333   Suc. Belenes     3      NA    NA    NA   NA    NA
## 12334   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12335   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12336   Suc. Belenes     1      NA    NA    NA   NA     1
## 12337   Suc. Belenes     2       4     2     6    4     2
## 12338   Suc. Belenes    NA      NA    NA     3   NA    NA
## 12339   Suc. Belenes     2       2     2     2   NA     2
## 12340   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12341   Suc. Belenes    NA       0     1    NA    0    NA
## 12342   Suc. Belenes     1      NA    NA    NA    0    NA
## 12343   Suc. Belenes    NA       2    NA    NA   NA    NA
## 12344   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12345   Suc. Belenes    13      13     8    24   18    21
## 12346   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12347   Suc. Belenes    76      48    73    82   63    86
## 12348   Suc. Belenes     6       9     6     9    8     8
## 12349   Suc. Belenes    NA      NA    NA     6   NA    NA
## 12350   Suc. Belenes    18      NA     4    11   11     7
## 12351   Suc. Belenes   159     183   113   162  141    92
## 12352   Suc. Belenes     2       4     2     2    4     2
## 12353   Suc. Belenes     6      11     4    13    2     2
## 12354   Suc. Belenes    66      72    76    93   61    78
## 12355   Suc. Belenes     5       5     6     4    6     6
## 12356   Suc. Belenes     2       2     2     3    2    NA
## 12357   Suc. Belenes    NA       2    NA     4    2     2
## 12358   Suc. Belenes     3       2     2     1    2     2
## 12359   Suc. Belenes     1      NA     1     1    1     1
## 12360   Suc. Belenes     1      NA     1     1    1    NA
## 12361   Suc. Belenes     1      NA    NA    NA    1    NA
## 12362   Suc. Belenes    NA      NA     0     0    0     0
## 12363   Suc. Belenes     6       5     3     4    2     5
## 12364   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12365   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12366   Suc. Belenes    NA       0    NA     0    0    NA
## 12367   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12368   Suc. Belenes     0       0     0     0    0     0
## 12369   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12370   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12371   Suc. Belenes    NA       2     2    NA    2    NA
## 12372   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12373   Suc. Belenes    NA       3     3    NA   NA     6
## 12374   Suc. Belenes    NA      NA     0    NA    0     0
## 12375   Suc. Belenes     1       1    NA     1    1     2
## 12376   Suc. Belenes    NA       1     2     3    4     3
## 12377   Suc. Belenes    NA       1     1     1   NA    NA
## 12378   Suc. Belenes    NA      NA    NA     0   NA    NA
## 12379   Suc. Belenes     2      NA    NA     2   NA    NA
## 12380   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12381   Suc. Belenes    NA      NA    NA    NA    3     3
## 12382   Suc. Belenes    NA      NA     0    NA    0     0
## 12383   Suc. Belenes    NA       1    NA     0    0     1
## 12384   Suc. Belenes    NA       3    NA     3    2     1
## 12385   Suc. Belenes    NA       1    NA     1    1     1
## 12386   Suc. Belenes    NA      NA    NA     0   NA    NA
## 12387   Suc. Belenes    NA      NA    NA     2    2    NA
## 12388   Suc. Belenes    NA      NA     0    NA    0     0
## 12389   Suc. Belenes    NA       0    NA    NA   NA     0
## 12390   Suc. Belenes    NA       1    NA     1    2     1
## 12391   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12392   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12393   Suc. Belenes     3       3     3     6   NA     3
## 12394   Suc. Belenes     0       0    NA     0    0    NA
## 12395   Suc. Belenes     2      NA     2    NA   NA    NA
## 12396   Suc. Belenes    NA      NA    NA     0   NA    NA
## 12397   Suc. Belenes     2      NA     5     3   NA     3
## 12398   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12399   Suc. Belenes    NA       3     8     6    3     3
## 12400   Suc. Belenes    NA      NA     4     4   NA    NA
## 12401   Suc. Belenes    NA      NA     0    NA    0     0
## 12402   Suc. Belenes     3       2     1     2    2     3
## 12403   Suc. Belenes     2       3     2     5    4     3
## 12404   Suc. Belenes     1       1     1     2    1     1
## 12405   Suc. Belenes    NA      NA    NA     0   NA    NA
## 12406   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12407   Suc. Belenes    NA      NA     1     1    2    NA
## 12408   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12409   Suc. Belenes     2       2     6     2    4     4
## 12410   Suc. Belenes     3      NA     3     6    3     6
## 12411   Suc. Belenes    NA      NA     3     5   NA    NA
## 12412   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12413   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12414   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12415   Suc. Belenes     1       1     1     1    1     1
## 12416   Suc. Belenes     2       2     2     1    2     3
## 12417   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12418   Suc. Belenes    NA       1     1    NA    2     1
## 12419   Suc. Belenes    NA       2     1    NA   NA     1
## 12420   Suc. Belenes     8       6     3     6    6     6
## 12421   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12422   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12423   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12424   Suc. Belenes     8       6     6     8    6     8
## 12425   Suc. Belenes     3       3     3     3    3     6
## 12426   Suc. Belenes     6       6     8    11    8     8
## 12427   Suc. Belenes     8       4     8     4    6     6
## 12428   Suc. Belenes     1       1    NA    NA   NA     1
## 12429   Suc. Belenes     1      NA     0     0   NA     0
## 12430   Suc. Belenes    NA       2     2     2    2    NA
## 12431   Suc. Belenes     2      NA    NA     2   NA     2
## 12432   Suc. Belenes     1      NA     2    NA    1    NA
## 12433   Suc. Belenes    11      13    11    11   13    17
## 12434   Suc. Belenes     5       5     5     3    5     8
## 12435   Suc. Belenes     6       6     6    10    3    10
## 12436   Suc. Belenes     3       6     6     6    6    10
## 12437   Suc. Belenes     3       3     3     5    5     5
## 12438   Suc. Belenes    14      17    17    17   20    17
## 12439   Suc. Belenes     8      NA     6     8    6     3
## 12440   Suc. Belenes    39      32    28    35   32    39
## 12441   Suc. Belenes    92      46    77    95   92   102
## 12442   Suc. Belenes     8      13    13    15   17    17
## 12443   Suc. Belenes    17      13    15    19   23    25
## 12444   Suc. Belenes     3       3     5     5    6     6
## 12445   Suc. Belenes     2       2     3     2    3     3
## 12446   Suc. Belenes     2       2     2     2    1     2
## 12447   Suc. Belenes    NA       1     1    NA   NA    NA
## 12448   Suc. Belenes    NA      NA     1     3    3     1
## 12449   Suc. Belenes     1       1     1     1    2     1
## 12450   Suc. Belenes     1       1     1     1    3     1
## 12451   Suc. Belenes     1       1     1     1    1     1
## 12452   Suc. Belenes     1       1     1     1    1     1
## 12453   Suc. Belenes     4       4     3     2    2     2
## 12454   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12455   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12456   Suc. Belenes     0      NA    NA    NA   NA    NA
## 12457   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12458   Suc. Belenes    NA      NA     1    NA    1     1
## 12459   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12460   Suc. Belenes    NA      NA     0    NA   NA     1
## 12461   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12462   Suc. Belenes     1       1     2     1    1     1
## 12463   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12464   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12465   Suc. Belenes    NA      NA     0    NA    0    NA
## 12466   Suc. Belenes    NA      NA     2    NA   NA    NA
## 12467   Suc. Belenes     3       1     3     3    2     3
## 12468   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12469   Suc. Belenes     1       1     2     1    1     1
## 12470   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12471   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12472   Suc. Belenes    NA      NA    NA    NA    0    NA
## 12473   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12474   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12475   Suc. Belenes     1       1     2     1    1     1
## 12476   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12477   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12478   Suc. Belenes    NA      NA    NA    NA    0    NA
## 12479   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12480   Suc. Belenes     1       1     1     1    1     3
## 12481   Suc. Belenes     6       6    NA     8    6     6
## 12482   Suc. Belenes     0      NA    NA    NA   NA    NA
## 12483   Suc. Belenes     1      NA     1     1   NA     1
## 12484   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12485   Suc. Belenes     2      NA    NA    NA   NA    NA
## 12486   Suc. Belenes     1       1     2     1    1     1
## 12487   Suc. Belenes    NA      NA     3     3    3     3
## 12488   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12489   Suc. Belenes    NA      NA    NA     0    0    NA
## 12490   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12491   Suc. Belenes     3       1     2     3    2     1
## 12492   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12493   Suc. Belenes     6       2     2     2    4     4
## 12494   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12495   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12496   Suc. Belenes     2      11     4     2    2     2
## 12497   Suc. Belenes     3       3     3     3    3     6
## 12498   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12499   Suc. Belenes    NA      15    NA    NA   NA    NA
## 12500   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12501   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12502   Suc. Belenes     4       2     1     4    4     6
## 12503   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12504   Suc. Belenes     1       1     1     1    1     2
## 12505   Suc. Belenes    NA       1     2     1    1     1
## 12506   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12507   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12508   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12509   Suc. Belenes     6       2     2     4    2     4
## 12510   Suc. Belenes     4      11    NA    NA    2    NA
## 12511   Suc. Belenes     1      NA    NA    NA   NA     1
## 12512   Suc. Belenes    NA      NA    NA    NA   NA     6
## 12513   Suc. Belenes    26      24    18    24   18    11
## 12514   Suc. Belenes    NA      NA    NA    NA   NA    10
## 12515   Suc. Belenes     3      10   111     6   10    44
## 12516   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12517   Suc. Belenes    12      27     8    15   11    12
## 12518   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12519   Suc. Belenes    NA      NA    NA    17   NA    NA
## 12520   Suc. Belenes    NA      14    21    18   21    NA
## 12521   Suc. Belenes    42     109   169    28  296    18
## 12522   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12523   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12524   Suc. Belenes    11      27    25    30   80    NA
## 12525   Suc. Belenes    70      87   120    49  182    30
## 12526   Suc. Belenes     7       5    11     6    9     6
## 12527   Suc. Belenes    10      10    10     4   14     8
## 12528   Suc. Belenes    NA       2     5     2    2    NA
## 12529   Suc. Belenes     1       1     1     1    1     2
## 12530   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12531   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12532   Suc. Belenes     1       2     0     0    0     0
## 12533   Suc. Belenes     2      NA     1     1    1    NA
## 12534   Suc. Belenes     2       2     2    NA   NA    NA
## 12535   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12536   Suc. Belenes     0      NA     0     0    0     1
## 12537   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12538   Suc. Belenes     0       0     0     0    0     0
## 12539   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12540   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12541   Suc. Belenes     3       6     3     3    6    NA
## 12542   Suc. Belenes     0       2     3     2    1     1
## 12543   Suc. Belenes     1       1     9    NA    1     1
## 12544   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12545   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12546   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12547   Suc. Belenes    NA       1    NA    NA    1    NA
## 12548   Suc. Belenes    NA      NA     0     0    0    NA
## 12549   Suc. Belenes     1       1     1    NA    1     1
## 12550   Suc. Belenes    NA       1    NA    NA    1    NA
## 12551   Suc. Belenes    NA      NA     0     0   NA    NA
## 12552   Suc. Belenes     1       1     1     2    1     1
## 12553   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12554   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12555   Suc. Belenes    NA       6     3    NA    3    NA
## 12556   Suc. Belenes    NA      NA     4    NA    4    NA
## 12557   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12558   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12559   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12560   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12561   Suc. Belenes    NA      12     3     3    6     3
## 12562   Suc. Belenes    NA       0     1     1    1     1
## 12563   Suc. Belenes     1       1     1    NA    5     1
## 12564   Suc. Belenes    NA       8    NA    NA   NA     1
## 12565   Suc. Belenes    NA      NA     0    NA   NA    NA
## 12566   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12567   Suc. Belenes     1       1     1     1    3     3
## 12568   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12569   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12570   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12571   Suc. Belenes    13      19    15    11   17    19
## 12572   Suc. Belenes    10      16    10    16   22    22
## 12573   Suc. Belenes     5       8     3     8    8    13
## 12574   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12575   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12576   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12577   Suc. Belenes     0      NA    NA     0   NA     1
## 12578   Suc. Belenes     1       3    NA    NA   NA    NA
## 12579   Suc. Belenes     1       2     1     1    1     2
## 12580   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12581   Suc. Belenes    NA       1     1    NA   NA    NA
## 12582   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12583   Suc. Belenes    NA       2     1    NA   NA    NA
## 12584   Suc. Belenes     6      NA     3     3   NA     3
## 12585   Suc. Belenes    NA       2     2    NA   NA    NA
## 12586   Suc. Belenes    NA      NA    NA    NA    1     2
## 12587   Suc. Belenes     2       2     4     4    4     2
## 12588   Suc. Belenes     1      NA    NA    NA    1     1
## 12589   Suc. Belenes    32      38    32    38   30    42
## 12590   Suc. Belenes    37      37    45    45   42    37
## 12591   Suc. Belenes     8      11    14     6   11    14
## 12592   Suc. Belenes     7       8    14    14   10    10
## 12593   Suc. Belenes    30      27    30    32   30    32
## 12594   Suc. Belenes     3       3     4     4    3     4
## 12595   Suc. Belenes     3       3     5     3    3     6
## 12596   Suc. Belenes    NA       2     2     4    8    11
## 12597   Suc. Belenes    NA       6     6     6    8    11
## 12598   Suc. Belenes     2       6     6     6    8     6
## 12599   Suc. Belenes    NA       1    NA     1   NA     2
## 12600   Suc. Belenes    40      38    42    42   46    49
## 12601   Suc. Belenes     8       8     5    13   11     8
## 12602   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12603   Suc. Belenes     3       3     3    NA    3     3
## 12604   Suc. Belenes     9       3     2    NA   NA    NA
## 12605   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12606   Suc. Belenes    25      31    37    45   39    48
## 12607   Suc. Belenes     8       3    17    11   23    23
## 12608   Suc. Belenes    42      53    49    67   56    56
## 12609   Suc. Belenes    32      35    46    49   39    49
## 12610   Suc. Belenes    15      17    25    32   24     5
## 12611   Suc. Belenes    NA      NA    NA    NA   NA    19
## 12612   Suc. Belenes    40      42    53    57   51    51
## 12613   Suc. Belenes   108      70    80    82   63    57
## 12614   Suc. Belenes    15      16    18    16   14    17
## 12615   Suc. Belenes     8       6     8     9    9     9
## 12616   Suc. Belenes     2       4     8     6    6     2
## 12617   Suc. Belenes     5       8     7     7    6     6
## 12618   Suc. Belenes    NA       1     1    NA   NA    NA
## 12619   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12620   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12621   Suc. Belenes     4       1    NA     1   NA     1
## 12622   Suc. Belenes     2       1     1     1   NA    NA
## 12623   Suc. Belenes     1       2    NA     1   NA    NA
## 12624   Suc. Belenes     2       3    NA     2   NA     3
## 12625   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12626   Suc. Belenes    NA      NA     2     2   NA     2
## 12627   Suc. Belenes     1       0    NA    NA   NA     1
## 12628   Suc. Belenes     1       1    NA     1   NA    NA
## 12629   Suc. Belenes    NA       2     3     2    1    NA
## 12630   Suc. Belenes     1      NA    NA     3   NA    NA
## 12631   Suc. Belenes     2       3     2     2   NA    NA
## 12632   Suc. Belenes     0       0     0    NA   NA    NA
## 12633   Suc. Belenes     8       7     8     6    8     4
## 12634   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12635   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12636   Suc. Belenes     2       4     6     6    4     4
## 12637   Suc. Belenes    NA       3     3    NA   NA     3
## 12638   Suc. Belenes     0      NA    NA     0   NA     1
## 12639   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12640   Suc. Belenes    NA      NA     2    NA   NA    NA
## 12641   Suc. Belenes     4       1     3     6    5     4
## 12642   Suc. Belenes     3      NA     3    NA   NA     3
## 12643   Suc. Belenes     0      NA    NA     0   NA     1
## 12644   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12645   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12646   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12647   Suc. Belenes     2       4     2     4    6     4
## 12648   Suc. Belenes    NA       3     3     3    3     3
## 12649   Suc. Belenes     0      NA    NA     0   NA     1
## 12650   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12651   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12652   Suc. Belenes     6       3     3     6    6     4
## 12653   Suc. Belenes     5       6     4     4    1     4
## 12654   Suc. Belenes    NA       6     3     3    3     3
## 12655   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12656   Suc. Belenes     0      NA     0    NA    2    NA
## 12657   Suc. Belenes     2       4     2     4    2     2
## 12658   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12659   Suc. Belenes     8       6     6     8    8     8
## 12660   Suc. Belenes     3       3     6     6    6     6
## 12661   Suc. Belenes     0      NA    NA     0   NA     1
## 12662   Suc. Belenes    NA       0    NA     1   NA    NA
## 12663   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12664   Suc. Belenes     4       8     8     9    8     7
## 12665   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12666   Suc. Belenes     4       4     2     2   NA     2
## 12667   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12668   Suc. Belenes    NA      NA    NA    NA   NA     8
## 12669   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12670   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12671   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12672   Suc. Belenes    NA      NA    NA    NA   NA     4
## 12673   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12674   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12675   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12676   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12677   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12678   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12679   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12680   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12681   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12682   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12683   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12684   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12685   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12686   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12687   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12688   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12689   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12690   Suc. Belenes    NA      NA    NA    NA   NA     4
## 12691   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12692   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12693   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12694   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12695   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12696   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12697   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12698   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12699   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12700   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12701   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12702   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12703   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12704   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12705   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12706   Suc. Belenes    NA      NA    NA    NA   NA     6
## 12707   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12708   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12709   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12710   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12711   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12712   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12713   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12714   Suc. Belenes     4       8    11     6    2     2
## 12715   Suc. Belenes     6      10     3    10    3     3
## 12716   Suc. Belenes     3       5     3     3   NA    NA
## 12717   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12718   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12719   Suc. Belenes     1       1    NA     1    1     1
## 12720   Suc. Belenes     1       1     0     0   NA    NA
## 12721   Suc. Belenes     1       1     1     2    2     2
## 12722   Suc. Belenes     2       2     1     2    2     2
## 12723   Suc. Belenes    NA       0     0     1    0     2
## 12724   Suc. Belenes    NA       1     1     1    2     1
## 12725   Suc. Belenes     2      NA    NA    NA   NA    NA
## 12726   Suc. Belenes     2       2     1     2    2     2
## 12727   Suc. Belenes    NA       3    NA     3    3     8
## 12728   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12729   Suc. Belenes    NA       1     1    NA    1    NA
## 12730   Suc. Belenes    NA      NA    NA    NA   NA     3
## 12731   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12732   Suc. Belenes     4       6     6     8    2     6
## 12733   Suc. Belenes     2      NA     6     2    4     4
## 12734   Suc. Belenes     1      NA    NA    NA   NA    NA
## 12735   Suc. Belenes     8       8     6     8    8     8
## 12736   Suc. Belenes    17      17    11    17   14     8
## 12737   Suc. Belenes    NA      NA     2    NA    2     2
## 12738   Suc. Belenes    17      15    21    21   34    34
## 12739   Suc. Belenes    NA      NA    NA     6   NA    NA
## 12740   Suc. Belenes     3       3     3     3    3     3
## 12741   Suc. Belenes     3       9    12    12   11    12
## 12742   Suc. Belenes     3       2     3     3    5     5
## 12743   Suc. Belenes    NA      NA    NA     1    3    NA
## 12744   Suc. Belenes    11       8    17    14   25    23
## 12745   Suc. Belenes    14      21    32    35   32    28
## 12746   Suc. Belenes    18      14    14    32   32    28
## 12747   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12748   Suc. Belenes     4       6    17    19   15    11
## 12749   Suc. Belenes    21      21    34    49   78    89
## 12750   Suc. Belenes     3       3     3     3    6     6
## 12751   Suc. Belenes     6       6     8     9    9     9
## 12752   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12753   Suc. Belenes     3       4     3     3    5     4
## 12754   Suc. Belenes    NA       1     1    NA   NA    NA
## 12755   Suc. Belenes     2       1     1     1    2     4
## 12756   Suc. Belenes     2       1     1     2    1     2
## 12757   Suc. Belenes     1      NA     1     1    1     3
## 12758   Suc. Belenes     2       1     1     2    1     3
## 12759   Suc. Belenes     1      NA    NA    NA    0    NA
## 12760   Suc. Belenes     3       3     2     2    2     5
## 12761   Suc. Belenes     4       2     2     3    4     7
## 12762   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12763   Suc. Belenes    NA       0     0    NA    1     1
## 12764   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12765   Suc. Belenes    NA       0     0     0    0     0
## 12766   Suc. Belenes     1       1    NA     1    1     1
## 12767   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12768   Suc. Belenes    NA       6     6     3    6     6
## 12769   Suc. Belenes     0      NA    NA    NA   NA    NA
## 12770   Suc. Belenes     2       2    NA    NA    1    NA
## 12771   Suc. Belenes     2       1     4     3    7     6
## 12772   Suc. Belenes    NA       0     0     0    0     0
## 12773   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12774   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12775   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12776   Suc. Belenes    NA       0     0     0    0     0
## 12777   Suc. Belenes    NA      NA    NA     3   NA    NA
## 12778   Suc. Belenes    NA       0    NA    NA   NA    NA
## 12779   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12780   Suc. Belenes     1       1     3     1    3     3
## 12781   Suc. Belenes     1      NA     1     1    1     4
## 12782   Suc. Belenes     6       8    11     8    8     8
## 12783   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12784   Suc. Belenes    NA       0     0     0    0     0
## 12785   Suc. Belenes     3      NA     3    NA   NA     6
## 12786   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12787   Suc. Belenes    NA      NA     0     0    0     0
## 12788   Suc. Belenes    NA      NA     2    NA    1    NA
## 12789   Suc. Belenes     4       1     4     3    8     7
## 12790   Suc. Belenes    NA       0     0     0    0     0
## 12791   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12792   Suc. Belenes     2       1     4     1    3     7
## 12793   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12794   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12795   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12796   Suc. Belenes    NA       2    NA     2   11    17
## 12797   Suc. Belenes    NA       3    NA    10   16    19
## 12798   Suc. Belenes     7       4     7     7   11     7
## 12799   Suc. Belenes    NA      NA     3    NA   10     5
## 12800   Suc. Belenes     7       5     4    10    5     4
## 12801   Suc. Belenes     8      13     8    13   13    15
## 12802   Suc. Belenes     5       5     8     5   10     8
## 12803   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12804   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12805   Suc. Belenes     3       3    NA    NA    3    NA
## 12806   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12807   Suc. Belenes    46      51    34    53   46    59
## 12808   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12809   Suc. Belenes    34      31    42    14   51    39
## 12810   Suc. Belenes    14      14    14    25   22    14
## 12811   Suc. Belenes    NA      NA    NA    68  108    91
## 12812   Suc. Belenes    21      27    10    11   27    25
## 12813   Suc. Belenes     3       3     8     8   17     9
## 12814   Suc. Belenes     2       2     2     3    1     2
## 12815   Suc. Belenes    13      11    11    13   11    13
## 12816   Suc. Belenes    NA      NA    NA    NA   NA     6
## 12817   Suc. Belenes     8      21    21    30   34    30
## 12818   Suc. Belenes     4       4     4     7    6     5
## 12819   Suc. Belenes    97     110    91   114  137   106
## 12820   Suc. Belenes    71      69    32   103  132    95
## 12821   Suc. Belenes    NA      NA    NA    NA   NA    32
## 12822   Suc. Belenes   371     342   327   501  453   514
## 12823   Suc. Belenes   209     189   239   224  270   191
## 12824   Suc. Belenes    72      38    63    77  113   138
## 12825   Suc. Belenes    68     104   138   192  192   141
## 12826   Suc. Belenes    65      70    37   104   51   104
## 12827   Suc. Belenes   303     299   222   296  363   377
## 12828   Suc. Belenes    NA     898   775    NA   NA    NA
## 12829   Suc. Belenes    10      14    10    10    2    NA
## 12830   Suc. Belenes   275     264   224   256  427   423
## 12831   Suc. Belenes    NA      NA    NA    NA   42   169
## 12832   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12833   Suc. Belenes    NA      NA    NA     1   NA    NA
## 12834   Suc. Belenes    69      63    54    66   66    60
## 12835   Suc. Belenes   107     120   124   152  207   165
## 12836   Suc. Belenes    39      32    44    45   48    47
## 12837   Suc. Belenes    66      60    64    76  122    98
## 12838   Suc. Belenes    35      36     5    NA   NA    NA
## 12839   Suc. Belenes    NA       3    NA    NA   NA    NA
## 12840   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12841   Suc. Belenes     4       3    NA    NA   NA    NA
## 12842   Suc. Belenes     4       2     2     4    4     6
## 12843   Suc. Belenes    NA      NA    NA    NA    0     1
## 12844   Suc. Belenes    NA       5     8     5   10     5
## 12845   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12846   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12847   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12848   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12849   Suc. Belenes    NA      NA    NA    NA    8     2
## 12850   Suc. Belenes    23      34    28    23   39    34
## 12851   Suc. Belenes     9       3     4     8    8     9
## 12852   Suc. Belenes    30      25    22    36   44    34
## 12853   Suc. Belenes     6       4     4     8    6     4
## 12854   Suc. Belenes    59      70    53    74   72    72
## 12855   Suc. Belenes    10       8    30     3   10     8
## 12856   Suc. Belenes    NA       1     0     1    2    NA
## 12857   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12858   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12859   Suc. Belenes     3       3     3     3   NA    NA
## 12860   Suc. Belenes    NA      NA    NA    NA    1    NA
## 12861   Suc. Belenes     3       5     7     3    7     3
## 12862   Suc. Belenes    19      17    25    23   27    23
## 12863   Suc. Belenes    NA      NA    25    NA   NA    NA
## 12864   Suc. Belenes    NA       1    NA     1    2    NA
## 12865   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12866   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12867   Suc. Belenes    NA      NA    NA    NA    5     2
## 12868   Suc. Belenes    20      14    20     8   28    14
## 12869   Suc. Belenes     9       3     3     5    7     4
## 12870   Suc. Belenes    34      25    24    37   42    32
## 12871   Suc. Belenes     6       4     4     6    6     4
## 12872   Suc. Belenes    53      59    42    72   76    70
## 12873   Suc. Belenes     8      NA    30     5   10     3
## 12874   Suc. Belenes    NA      NA     3    NA   NA    NA
## 12875   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12876   Suc. Belenes     8      14     6     6    3    14
## 12877   Suc. Belenes    NA      NA    NA     2   NA    NA
## 12878   Suc. Belenes    19      23    17    23   23    27
## 12879   Suc. Belenes    NA      NA    25    NA   NA     3
## 12880   Suc. Belenes    NA       1     0     1    2    NA
## 12881   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12882   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12883   Suc. Belenes    NA      NA    NA    NA   NA     2
## 12884   Suc. Belenes    NA      NA    NA    NA    8    NA
## 12885   Suc. Belenes    25      23    31    31   39    34
## 12886   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12887   Suc. Belenes    12       3     3     8   10     4
## 12888   Suc. Belenes    34      34    42    36   51    36
## 12889   Suc. Belenes     6       6     6     8   11    15
## 12890   Suc. Belenes    63      74    74    89   76    93
## 12891   Suc. Belenes    15       8    56     8   13    13
## 12892   Suc. Belenes    NA       1     0     1    2    NA
## 12893   Suc. Belenes     1       3    NA    NA   NA     1
## 12894   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12895   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12896   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12897   Suc. Belenes     2       6    NA     2    2     2
## 12898   Suc. Belenes     6       6    NA     3    3     3
## 12899   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12900   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12901   Suc. Belenes     0       0    NA     0   NA     0
## 12902   Suc. Belenes    NA       2     1    NA   NA    NA
## 12903   Suc. Belenes    NA      NA     0     1    3     1
## 12904   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12905   Suc. Belenes     1       1    NA     1    1     1
## 12906   Suc. Belenes     2       4    NA    NA   NA    NA
## 12907   Suc. Belenes    NA       2    NA     1    1     1
## 12908   Suc. Belenes     3       3    NA     3    3    NA
## 12909   Suc. Belenes    NA       1    NA    NA    1     1
## 12910   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12911   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12912   Suc. Belenes     8       2     6     6    8    11
## 12913   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12914   Suc. Belenes     2      NA    NA    NA   NA    NA
## 12915   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12916   Suc. Belenes    16      18    29    13   21    13
## 12917   Suc. Belenes    NA      NA    NA    NA   NA     6
## 12918   Suc. Belenes    54      86    57   181   41   146
## 12919   Suc. Belenes     2       5     2     3    5     3
## 12920   Suc. Belenes    NA      NA     2    NA   NA    NA
## 12921   Suc. Belenes     3       3    NA     6   NA    NA
## 12922   Suc. Belenes    NA      NA    NA     4    7     4
## 12923   Suc. Belenes   151     197   183   116  299   271
## 12924   Suc. Belenes     4       2     2     2    4    NA
## 12925   Suc. Belenes     8       4     6     4    6     4
## 12926   Suc. Belenes    80      89    93   209   80   125
## 12927   Suc. Belenes     1       1     1     2    1     1
## 12928   Suc. Belenes     2       2    NA     3    3    NA
## 12929   Suc. Belenes     2      NA     2     4    4     2
## 12930   Suc. Belenes     2       1     1     2    2     1
## 12931   Suc. Belenes     1       1    NA     1    1     1
## 12932   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12933   Suc. Belenes     1       1    NA    NA   NA    NA
## 12934   Suc. Belenes     1       0     0     0    0     0
## 12935   Suc. Belenes     2      NA     1     1    3     3
## 12936   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12937   Suc. Belenes    NA       1    NA     0    1     1
## 12938   Suc. Belenes    NA       1    NA    NA   NA    NA
## 12939   Suc. Belenes     0       0     0     0    0     0
## 12940   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12941   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12942   Suc. Belenes     2      NA    NA    NA    2     2
## 12943   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12944   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12945   Suc. Belenes     3       3     3    NA    3     1
## 12946   Suc. Belenes     0       0    NA     0   NA     0
## 12947   Suc. Belenes    NA       0     0     4    3     4
## 12948   Suc. Belenes    NA       1     4     1    1    NA
## 12949   Suc. Belenes    NA       1     1     1    1     1
## 12950   Suc. Belenes    NA       0     0    NA   NA    NA
## 12951   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12952   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12953   Suc. Belenes    NA      NA    NA    NA    3     4
## 12954   Suc. Belenes     0       0    NA     0   NA     0
## 12955   Suc. Belenes    NA       0     0     1    0     3
## 12956   Suc. Belenes    NA       1    NA     1    1     2
## 12957   Suc. Belenes    NA       1    NA     1    1     1
## 12958   Suc. Belenes    NA       0     0    NA   NA    NA
## 12959   Suc. Belenes    NA      NA    NA    NA    2     2
## 12960   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12961   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12962   Suc. Belenes     0       0    NA     0   NA     0
## 12963   Suc. Belenes    NA       0    NA     1    3     2
## 12964   Suc. Belenes    NA       1     2     1    1    NA
## 12965   Suc. Belenes    NA       1    NA     1    1     1
## 12966   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12967   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12968   Suc. Belenes    NA       6    NA    NA    3    NA
## 12969   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12970   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12971   Suc. Belenes    NA       0     0    NA   NA    NA
## 12972   Suc. Belenes    NA       2     4    NA    4     2
## 12973   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12974   Suc. Belenes    NA      NA    NA    NA   NA     1
## 12975   Suc. Belenes    NA       3    NA     6    8     1
## 12976   Suc. Belenes     0       0    NA     0   NA     0
## 12977   Suc. Belenes     2       0     0     1    3     2
## 12978   Suc. Belenes     2       1    NA     1    1    NA
## 12979   Suc. Belenes    NA       2     1     1    1     1
## 12980   Suc. Belenes    NA       0     0    NA   NA    NA
## 12981   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12982   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12983   Suc. Belenes    NA      NA    NA    NA    2    NA
## 12984   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12985   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12986   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12987   Suc. Belenes    13      NA    NA    NA   NA    NA
## 12988   Suc. Belenes     3      NA    NA    NA   NA    NA
## 12989   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12990   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12991   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 12992   Suc. Belenes     1       1     1     1    1     1
## 12993   Suc. Belenes     3       2     1     2    3     2
## 12994   Suc. Belenes    NA      NA    NA    NA   NA     0
## 12995   Suc. Belenes     2      NA    NA    NA   NA     1
## 12996   Suc. Belenes    NA      NA     2    NA   NA    NA
## 12997   Suc. Belenes    NA      NA     2     1   NA    NA
## 12998   Suc. Belenes    NA       3     3    NA    3     3
## 12999   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13000   Suc. Belenes    NA       0     0     0    0     0
## 13001   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13002   Suc. Belenes    NA      NA    NA     1    1    NA
## 13003   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13004   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13005   Suc. Belenes     6       2     4     4    6     6
## 13006   Suc. Belenes    14      15     8    15   17    12
## 13007   Suc. Belenes     6       6    11    14   11     3
## 13008   Suc. Belenes    NA       4    NA    NA   NA    NA
## 13009   Suc. Belenes     2      NA    NA     2    2    NA
## 13010   Suc. Belenes    11      19     8    15    8    11
## 13011   Suc. Belenes     1       5     2     3    4     5
## 13012   Suc. Belenes     2       2     2    NA    2     2
## 13013   Suc. Belenes    21      15    11    17   23    19
## 13014   Suc. Belenes     8       3     3     3    5     3
## 13015   Suc. Belenes     6      NA     3     3    3    10
## 13016   Suc. Belenes     3      NA     6     3    6     6
## 13017   Suc. Belenes     6       3     3     5    8    24
## 13018   Suc. Belenes     6       6     6     8   11     8
## 13019   Suc. Belenes    20      14     6    30   17    17
## 13020   Suc. Belenes    32      32    18    67   42    46
## 13021   Suc. Belenes    28      25    28    18    4     7
## 13022   Suc. Belenes     3       2     5     2    3    NA
## 13023   Suc. Belenes    40      85    23    32   34    51
## 13024   Suc. Belenes    76      85    72   129  110   169
## 13025   Suc. Belenes     3       3     3     3    9     3
## 13026   Suc. Belenes     7       5     4     4    5     3
## 13027   Suc. Belenes     9       9     3     6    6     5
## 13028   Suc. Belenes     6       2     6     6    6     6
## 13029   Suc. Belenes     4       2     2     3    5     3
## 13030   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13031   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13032   Suc. Belenes    NA      NA    NA    NA    1     1
## 13033   Suc. Belenes     1      NA    NA    NA    1     1
## 13034   Suc. Belenes     3       2    NA     4    1     3
## 13035   Suc. Belenes     2      NA    NA     2   NA    NA
## 13036   Suc. Belenes     1       1     1     1    1     1
## 13037   Suc. Belenes     3       3     1     3    2     3
## 13038   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13039   Suc. Belenes    NA       2    NA    NA    4    NA
## 13040   Suc. Belenes     1       0     0     0    1    NA
## 13041   Suc. Belenes     1       1     2    NA   NA    NA
## 13042   Suc. Belenes     2       1     6    NA   NA    NA
## 13043   Suc. Belenes    NA       1     5    NA   NA    NA
## 13044   Suc. Belenes     3       2     6     2   NA    NA
## 13045   Suc. Belenes    NA       1     1     1    1    NA
## 13046   Suc. Belenes     1       1    NA    NA    1     1
## 13047   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13048   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13049   Suc. Belenes    NA      NA    NA     3    3    NA
## 13050   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13051   Suc. Belenes     4       4    NA     4    6     2
## 13052   Suc. Belenes     1       2     1     1    2     2
## 13053   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13054   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13055   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13056   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13057   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13058   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13059   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13060   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13061   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13062   Suc. Belenes    NA      NA    NA    NA   NA     3
## 13063   Suc. Belenes     3      NA    NA    NA   NA    NA
## 13064   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13065   Suc. Belenes     8       2    NA     6    6     4
## 13066   Suc. Belenes     3       1    NA     3    1    NA
## 13067   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13068   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13069   Suc. Belenes    NA      NA    NA    NA   NA     3
## 13070   Suc. Belenes    NA       3     6    NA   NA    NA
## 13071   Suc. Belenes     0      NA     2    NA    0    NA
## 13072   Suc. Belenes     8       4     2     6    8     4
## 13073   Suc. Belenes     2       3    10     3    4     3
## 13074   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13075   Suc. Belenes    NA       4     1     1    4    NA
## 13076   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13077   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13078   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13079   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13080   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13081   Suc. Belenes     2       2    13     2    2     2
## 13082   Suc. Belenes    NA       3     6     3    3     3
## 13083   Suc. Belenes    NA       5    NA    NA   NA    NA
## 13084   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13085   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13086   Suc. Belenes     0       1    NA    NA   NA    NA
## 13087   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13088   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13089   Suc. Belenes    12      NA    10     4    7     7
## 13090   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13091   Suc. Belenes     2       1     2     1    1    NA
## 13092   Suc. Belenes    NA      NA     2    NA    2     4
## 13093   Suc. Belenes    NA       2     1     2    2     1
## 13094   Suc. Belenes    NA      NA    11    34   NA    28
## 13095   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13096   Suc. Belenes    NA      NA     1     2    2    NA
## 13097   Suc. Belenes    NA      NA    NA    NA    1     3
## 13098   Suc. Belenes     2       2    NA    NA   NA    NA
## 13099   Suc. Belenes    11      32    NA    NA   13    40
## 13100   Suc. Belenes    NA      NA    NA    NA    2     2
## 13101   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13102   Suc. Belenes    14      11    21    11   18    21
## 13103   Suc. Belenes    13      25    27    NA   38    25
## 13104   Suc. Belenes     1       2     3     2    5     2
## 13105   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13106   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13107   Suc. Belenes     2       4     4     6    2     6
## 13108   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13109   Suc. Belenes    NA       2    17    13   23    51
## 13110   Suc. Belenes    32      58    42    32   42     5
## 13111   Suc. Belenes    NA      NA    NA    NA   NA    41
## 13112   Suc. Belenes    10      13    13    10   16    19
## 13113   Suc. Belenes     6      41    21    29   39    44
## 13114   Suc. Belenes     6      NA    NA    NA    3     5
## 13115   Suc. Belenes    NA      NA    NA     6   NA    NA
## 13116   Suc. Belenes     8      11     8     6   11     6
## 13117   Suc. Belenes    32      77    95    42   85   116
## 13118   Suc. Belenes   240     208   356   151  254   257
## 13119   Suc. Belenes    15       2     8    NA   NA    NA
## 13120   Suc. Belenes     6      36    68    25   51    27
## 13121   Suc. Belenes   104     144   171   135  123   213
## 13122   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13123   Suc. Belenes     8      19    NA    17   15    13
## 13124   Suc. Belenes     2       3     3     5    6     8
## 13125   Suc. Belenes    NA      NA     4     4    4     6
## 13126   Suc. Belenes     5      17    NA    NA    5     3
## 13127   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13128   Suc. Belenes     1       2     1     1    1     1
## 13129   Suc. Belenes    NA      NA    NA     1    1    NA
## 13130   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13131   Suc. Belenes     2       0     0     0    0     0
## 13132   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13133   Suc. Belenes    NA       0    23    NA   NA     4
## 13134   Suc. Belenes     3      NA     2     1    2     4
## 13135   Suc. Belenes    NA      NA    NA    NA    0     1
## 13136   Suc. Belenes     6      NA     4     4    6     6
## 13137   Suc. Belenes     0       2     3     2    2     2
## 13138   Suc. Belenes    NA       1     4    NA   NA     6
## 13139   Suc. Belenes    NA       1    13     4   NA     4
## 13140   Suc. Belenes     2       1     2     2   NA     6
## 13141   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13142   Suc. Belenes     0       0     0     0    0     1
## 13143   Suc. Belenes     3       3     2     3    4     4
## 13144   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13145   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13146   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13147   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13148   Suc. Belenes     1       1    NA     3    3     3
## 13149   Suc. Belenes     2       3    NA    NA   NA    NA
## 13150   Suc. Belenes     0       1    NA    NA   NA    NA
## 13151   Suc. Belenes    NA       1     1     1    0     2
## 13152   Suc. Belenes     2       5    10    NA    6     2
## 13153   Suc. Belenes     1       1     1     1    1     1
## 13154   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13155   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13156   Suc. Belenes     1       1    NA     3   NA    NA
## 13157   Suc. Belenes    NA       3    NA     2    2    NA
## 13158   Suc. Belenes     0       0    NA    NA   NA    NA
## 13159   Suc. Belenes    NA       0    NA     0   NA     2
## 13160   Suc. Belenes    NA       3     3     2   11    NA
## 13161   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13162   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13163   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13164   Suc. Belenes     1       1    NA    NA   NA     3
## 13165   Suc. Belenes     2       3    NA     2    2    NA
## 13166   Suc. Belenes     0       1    NA    NA   NA    NA
## 13167   Suc. Belenes     0       0     1    NA    0     0
## 13168   Suc. Belenes    NA       3     3    NA   NA    NA
## 13169   Suc. Belenes    NA       1     1     1   NA    NA
## 13170   Suc. Belenes    NA       1     1    NA    1     3
## 13171   Suc. Belenes    NA       3     6     3    6     6
## 13172   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13173   Suc. Belenes    NA       1     3     2   NA     2
## 13174   Suc. Belenes    NA       2     8     2   11    NA
## 13175   Suc. Belenes     1       1     1    NA    1    NA
## 13176   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13177   Suc. Belenes     1       1     3     3    3     8
## 13178   Suc. Belenes     2       3    NA    NA    2    NA
## 13179   Suc. Belenes     0       1    NA    NA   NA    NA
## 13180   Suc. Belenes     0      NA     2     2    0     2
## 13181   Suc. Belenes    NA       5     5     4    4    NA
## 13182   Suc. Belenes     2       1     1     1    3     1
## 13183   Suc. Belenes    NA      NA     1     1   NA    NA
## 13184   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13185   Suc. Belenes     1      NA     6     6    4     5
## 13186   Suc. Belenes    NA       0    NA     2    1    NA
## 13187   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13188   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13189   Suc. Belenes     2      NA    NA     2   NA    NA
## 13190   Suc. Belenes     3      NA    NA    25    3     3
## 13191   Suc. Belenes    NA      NA    NA     3   NA    NA
## 13192   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13193   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13194   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13195   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13196   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13197   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13198   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13199   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13200   Suc. Belenes     2      NA     2    NA   NA    NA
## 13201   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13202   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13203   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13204   Suc. Belenes     4       2     2     4    6     2
## 13205   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13206   Suc. Belenes    21      13     4    25    6     4
## 13207   Suc. Belenes    NA      NA     3    NA   NA    NA
## 13208   Suc. Belenes    NA      NA    NA     1   NA    NA
## 13209   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13210   Suc. Belenes    NA      NA    NA    NA   32    NA
## 13211   Suc. Belenes    13      26    11    61   21    NA
## 13212   Suc. Belenes    NA      NA    NA    NA   NA    63
## 13213   Suc. Belenes     3      51    73   165  127   155
## 13214   Suc. Belenes    14      12    20    75   20     8
## 13215   Suc. Belenes    NA      NA    NA    17    3    NA
## 13216   Suc. Belenes    NA      NA    NA    NA    3    NA
## 13217   Suc. Belenes    NA      NA    85    28  292   313
## 13218   Suc. Belenes   218     268   162   472  623   289
## 13219   Suc. Belenes    NA      NA     2    NA   NA     8
## 13220   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13221   Suc. Belenes    21      27     4    NA   30   137
## 13222   Suc. Belenes   182     201   258   450  446   412
## 13223   Suc. Belenes    NA      NA     5    NA   NA    NA
## 13224   Suc. Belenes     5       3     3    14   18    12
## 13225   Suc. Belenes     6       2     2     5    3     3
## 13226   Suc. Belenes     2       4     6     2    2    NA
## 13227   Suc. Belenes    NA       3     2     2    1    NA
## 13228   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13229   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13230   Suc. Belenes    NA      NA    NA     1   NA    NA
## 13231   Suc. Belenes     4       5    NA    NA   NA    NA
## 13232   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13233   Suc. Belenes     7      NA     2    NA   NA    NA
## 13234   Suc. Belenes    NA       0    NA    NA   NA     0
## 13235   Suc. Belenes     1       5    NA     4   NA     7
## 13236   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13237   Suc. Belenes    NA      NA    NA     4   NA    NA
## 13238   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13239   Suc. Belenes    NA      NA    NA    NA    1     1
## 13240   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13241   Suc. Belenes    NA      NA    NA     2   NA    NA
## 13242   Suc. Belenes    NA      NA    NA    NA   NA    10
## 13243   Suc. Belenes    NA       6    NA     8    4     8
## 13244   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13245   Suc. Belenes     0       2    NA    NA    2     2
## 13246   Suc. Belenes    NA      NA    NA     2   NA    NA
## 13247   Suc. Belenes     1       6     6     5   19     3
## 13248   Suc. Belenes    NA       4    NA     1    1     1
## 13249   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13250   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13251   Suc. Belenes    NA      NA    NA    NA   NA     3
## 13252   Suc. Belenes    NA      NA    NA    14    1    NA
## 13253   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13254   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13255   Suc. Belenes     1       4     4     3    8     1
## 13256   Suc. Belenes    NA      NA    NA     3    3     1
## 13257   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13258   Suc. Belenes    NA      NA    NA     3   NA    NA
## 13259   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13260   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13261   Suc. Belenes    NA      NA    NA    NA   NA     4
## 13262   Suc. Belenes     1       2     2     1    8     1
## 13263   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13264   Suc. Belenes    NA      NA    NA     1    1    NA
## 13265   Suc. Belenes    NA      NA    NA    NA   NA    13
## 13266   Suc. Belenes    NA       3    NA     6    3     6
## 13267   Suc. Belenes    NA       2     2     4   11     2
## 13268   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13269   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13270   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13271   Suc. Belenes    NA      NA    NA    NA   NA    10
## 13272   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13273   Suc. Belenes     3       6     3    51   46    23
## 13274   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13275   Suc. Belenes    NA       6    NA    NA    2     4
## 13276   Suc. Belenes     1       6     4     1   17     3
## 13277   Suc. Belenes    NA       1    NA     1    1     2
## 13278   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13279   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13280   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13281   Suc. Belenes    NA       4     7     2    3     2
## 13282   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13283   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13284   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13285   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13286   Suc. Belenes     4       2    NA    NA    2     4
## 13287   Suc. Belenes     3       3    NA    NA    3     3
## 13288   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13289   Suc. Belenes    NA      NA    NA    NA   NA     2
## 13290   Suc. Belenes    NA      NA    NA     1    1    NA
## 13291   Suc. Belenes     1       4     1     2    4     4
## 13292   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13293   Suc. Belenes    NA       1    NA    NA    1     1
## 13294   Suc. Belenes    NA       2    NA    NA    1     1
## 13295   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13296   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13297   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13298   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13299   Suc. Belenes     2      NA     2     2    2    NA
## 13300   Suc. Belenes    NA      NA    NA     3   NA    NA
## 13301   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13302   Suc. Belenes     4       2    NA    NA    4     2
## 13303   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13304   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13305   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13306   Suc. Belenes    18      18    13    16   18     8
## 13307   Suc. Belenes    NA      NA    NA    NA   NA     6
## 13308   Suc. Belenes    19      54    22    86   22    25
## 13309   Suc. Belenes     6       9     5     8    8     3
## 13310   Suc. Belenes     2      NA    NA    NA   NA     5
## 13311   Suc. Belenes    42      32    25    46   39    25
## 13312   Suc. Belenes   187      77   116   141   74    70
## 13313   Suc. Belenes     6       2     2    NA   NA    NA
## 13314   Suc. Belenes    13       8     8    11   11     8
## 13315   Suc. Belenes    66      78    68    97   49    63
## 13316   Suc. Belenes     3       4     4     6    3     4
## 13317   Suc. Belenes     2       5     3     5    3     2
## 13318   Suc. Belenes    NA       2    NA    NA    2     2
## 13319   Suc. Belenes    NA       1     1     2    1     2
## 13320   Suc. Belenes    NA       1    NA    NA    1     1
## 13321   Suc. Belenes    NA      NA    NA     1    1    NA
## 13322   Suc. Belenes     1      NA    NA     2   NA    NA
## 13323   Suc. Belenes     1       0    NA    NA    0     1
## 13324   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13325   Suc. Belenes     1       1     1     2    2     2
## 13326   Suc. Belenes    NA      NA    NA    NA   NA     2
## 13327   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13328   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13329   Suc. Belenes    NA       0    NA    NA    0     0
## 13330   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13331   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13332   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13333   Suc. Belenes     8       3    NA     6    3    NA
## 13334   Suc. Belenes     0      NA    NA    NA    0    NA
## 13335   Suc. Belenes     4       1     1    NA    5     3
## 13336   Suc. Belenes     1       1     1     1    1     1
## 13337   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13338   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13339   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13340   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13341   Suc. Belenes    NA      NA    NA    NA    1     0
## 13342   Suc. Belenes     2       1     1     2    3     1
## 13343   Suc. Belenes    NA      NA     1     1    1    NA
## 13344   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13345   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13346   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13347   Suc. Belenes    NA       0    NA    NA    0    NA
## 13348   Suc. Belenes     2       1     1    NA    3     3
## 13349   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13350   Suc. Belenes    NA       1     1    NA   NA    NA
## 13351   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13352   Suc. Belenes     6       3    NA     6   NA     3
## 13353   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13354   Suc. Belenes     2       2    NA    NA   NA    NA
## 13355   Suc. Belenes    NA      NA    NA     1    1     1
## 13356   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13357   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13358   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13359   Suc. Belenes     6       6    NA     6   NA    NA
## 13360   Suc. Belenes    NA      NA    NA    NA    0     1
## 13361   Suc. Belenes     2       1     1     2    3     5
## 13362   Suc. Belenes     1       1     3    NA    1     1
## 13363   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13364   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13365   Suc. Belenes    NA      NA    NA     2    1     1
## 13366   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13367   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13368   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13369   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13370   Suc. Belenes     2      15    NA    NA    8    NA
## 13371   Suc. Belenes    29       6    NA    NA    6    NA
## 13372   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13373   Suc. Belenes    NA       0     0     1   NA     3
## 13374   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13375   Suc. Belenes    NA       2    NA    NA   NA     1
## 13376   Suc. Belenes     2       2    NA     2   NA    NA
## 13377   Suc. Belenes    NA       2    NA    NA   NA     1
## 13378   Suc. Belenes     3       3     3    NA   NA     3
## 13379   Suc. Belenes    NA       3     1    NA   NA    NA
## 13380   Suc. Belenes    NA      NA    NA    NA   NA     1
## 13381   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13382   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13383   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13384   Suc. Belenes     2       2    NA    NA    2     2
## 13385   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13386   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13387   Suc. Belenes    13       5    40    37   63    NA
## 13388   Suc. Belenes    NA      NA    NA    NA   NA    38
## 13389   Suc. Belenes    10      25    44   130    3    98
## 13390   Suc. Belenes     3       6     2    NA   NA    NA
## 13391   Suc. Belenes     3       3    NA     4   NA    NA
## 13392   Suc. Belenes    21      25    56    92   85    85
## 13393   Suc. Belenes    21     173    95   169  169   218
## 13394   Suc. Belenes    11       4    15    25   25    25
## 13395   Suc. Belenes     6      NA    15    25   25    25
## 13396   Suc. Belenes    25     110    57   211  101    76
## 13397   Suc. Belenes     1      NA     2     1    1     2
## 13398   Suc. Belenes     2      NA     2    NA    2     5
## 13399   Suc. Belenes     2      NA     2     2    4     2
## 13400   Suc. Belenes     1       1    NA    NA    2     2
## 13401   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13402   Suc. Belenes     3      NA    NA     1   NA     2
## 13403   Suc. Belenes     1       1     4    NA    1    NA
## 13404   Suc. Belenes     3      NA     1     3    5    NA
## 13405   Suc. Belenes     0      NA     0    NA    2     1
## 13406   Suc. Belenes    NA       0    NA    NA    1    NA
## 13407   Suc. Belenes     7       7     3     2    4     4
## 13408   Suc. Belenes     1       1     1    NA   NA     0
## 13409   Suc. Belenes     2      NA    NA    NA    2    NA
## 13410   Suc. Belenes     0      NA     0     0   NA    NA
## 13411   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13412   Suc. Belenes     0      NA     0     0   NA    NA
## 13413   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13414   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13415   Suc. Belenes    NA      NA     3     6    3    10
## 13416   Suc. Belenes     3      NA     6    NA    3    NA
## 13417   Suc. Belenes     4       4     7    11    7    NA
## 13418   Suc. Belenes     2       1     2     4    5     5
## 13419   Suc. Belenes     2       1     2     4    2     2
## 13420   Suc. Belenes     3       3     2     2    4     3
## 13421   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13422   Suc. Belenes    NA       0    NA    NA    0     0
## 13423   Suc. Belenes    NA      NA     3     3    6     6
## 13424   Suc. Belenes    NA       3     6    NA    3    NA
## 13425   Suc. Belenes     4       4     4    NA    5    NA
## 13426   Suc. Belenes     0       1     2     4    6     3
## 13427   Suc. Belenes    NA       1     2     4    2     2
## 13428   Suc. Belenes     3       1     2     3    3     3
## 13429   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13430   Suc. Belenes    NA       0    NA    NA    0     0
## 13431   Suc. Belenes    NA      NA    NA     3   NA    NA
## 13432   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13433   Suc. Belenes    NA      NA    NA     4    2    NA
## 13434   Suc. Belenes     2       1     2     4    3     3
## 13435   Suc. Belenes     2       1     2     4    2     2
## 13436   Suc. Belenes     3       2     2     3    4     3
## 13437   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13438   Suc. Belenes    NA      NA     1    NA   NA     1
## 13439   Suc. Belenes    NA      NA    NA    NA   NA     3
## 13440   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13441   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13442   Suc. Belenes    NA      NA    NA     2   NA    NA
## 13443   Suc. Belenes    NA       0    NA    NA    0     0
## 13444   Suc. Belenes    NA      NA     3     6    6     6
## 13445   Suc. Belenes    NA      11     3    NA    3    NA
## 13446   Suc. Belenes     4       7     4    11   12     4
## 13447   Suc. Belenes     2       1     2     3    2     5
## 13448   Suc. Belenes     2       1     2     4    2     2
## 13449   Suc. Belenes     3       2     1     3    4     3
## 13450   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13451   Suc. Belenes    NA       0    NA    NA    0     0
## 13452   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13453   Suc. Belenes    NA      NA    NA    NA    1     3
## 13454   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13455   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13456   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13457   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13458   Suc. Belenes    NA       4     6     4    6     6
## 13459   Suc. Belenes    NA       3    10    13   10    13
## 13460   Suc. Belenes     4       7    21    25   21    11
## 13461   Suc. Belenes     3       3     8     3    3     5
## 13462   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13463   Suc. Belenes    NA       1     1    NA   NA    NA
## 13464   Suc. Belenes    NA      NA    NA    NA    0    NA
## 13465   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13466   Suc. Belenes    NA      NA    NA     2    2    NA
## 13467   Suc. Belenes    NA      NA    NA     2    2     2
## 13468   Suc. Belenes     3      NA    NA     3    6     6
## 13469   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13470   Suc. Belenes    NA      NA    NA    NA   NA     2
## 13471   Suc. Belenes     4       4     8     4    6     8
## 13472   Suc. Belenes    11      11     8     6   14    11
## 13473   Suc. Belenes     2       6     6     6    6     8
## 13474   Suc. Belenes     1       1    NA     1    2    NA
## 13475   Suc. Belenes     3       2     1     2    2     2
## 13476   Suc. Belenes     6      11    13    13   13     4
## 13477   Suc. Belenes    11      16    18    16    8     8
## 13478   Suc. Belenes    NA      NA    NA    NA   NA    16
## 13479   Suc. Belenes     3      10     3    10   16    22
## 13480   Suc. Belenes     3       3     2     5    6     3
## 13481   Suc. Belenes    NA       6    NA    NA   NA    NA
## 13482   Suc. Belenes    20      17    20    23   28    31
## 13483   Suc. Belenes    32      32    32    32   56    49
## 13484   Suc. Belenes    35      25    25    21   25    28
## 13485   Suc. Belenes     6       6     4     4    6     6
## 13486   Suc. Belenes     6      17    15    19   23    23
## 13487   Suc. Belenes    44      36    30    30   34    30
## 13488   Suc. Belenes     2       1     1     2    2     4
## 13489   Suc. Belenes     2      NA     3     3    5     8
## 13490   Suc. Belenes     4       2     2     2    6     8
## 13491   Suc. Belenes     2       2     2     3    3     4
## 13492   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13493   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13494   Suc. Belenes     1       1     1    NA    2     1
## 13495   Suc. Belenes    NA      NA    NA    NA    0     1
## 13496   Suc. Belenes     2       1     2     2    2     2
## 13497   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13498   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13499   Suc. Belenes     2      NA     1    NA   NA    NA
## 13500   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13501   Suc. Belenes     0       0     0     1   NA     0
## 13502   Suc. Belenes     1      NA     1     1   NA    NA
## 13503   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13504   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13505   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13506   Suc. Belenes    NA      NA    NA    NA    1     2
## 13507   Suc. Belenes     4       4    11     4    3     2
## 13508   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13509   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13510   Suc. Belenes     1       1     1    NA    1    NA
## 13511   Suc. Belenes    NA      NA     0     0    0     1
## 13512   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13513   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13514   Suc. Belenes    NA      NA    NA    NA    1     2
## 13515   Suc. Belenes    NA      NA    NA    NA    3     2
## 13516   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13517   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13518   Suc. Belenes    NA      NA     0     0    0     1
## 13519   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13520   Suc. Belenes    NA      NA    NA    NA    1     2
## 13521   Suc. Belenes     4       4     4     4    3     2
## 13522   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13523   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13524   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13525   Suc. Belenes    NA      NA     0     0    0     1
## 13526   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13527   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13528   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13529   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13530   Suc. Belenes    NA      NA    NA    NA    1     2
## 13531   Suc. Belenes     4       4    11    NA    3     2
## 13532   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13533   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13534   Suc. Belenes    NA       1     1    NA    1    NA
## 13535   Suc. Belenes    NA      NA     0     0    0     1
## 13536   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13537   Suc. Belenes     1      NA    NA     1    1     2
## 13538   Suc. Belenes    NA      NA    NA    NA   NA     0
## 13539   Suc. Belenes    NA       6     2    NA    2    NA
## 13540   Suc. Belenes    NA      10     3     3    6    NA
## 13541   Suc. Belenes    NA       3     3    NA   NA    NA
## 13542   Suc. Belenes     1       2     3    NA   NA    NA
## 13543   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13544   Suc. Belenes    NA       1     1    NA   NA    NA
## 13545   Suc. Belenes    NA       1     1     1    1    NA
## 13546   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13547   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13548   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13549   Suc. Belenes     3       3    NA     3    3    NA
## 13550   Suc. Belenes    NA      NA    NA     1   NA    NA
## 13551   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13552   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13553   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13554   Suc. Belenes     2       2    NA    NA   NA    NA
## 13555   Suc. Belenes    NA       3     3    NA   NA    NA
## 13556   Suc. Belenes     2       2     2    NA    4    NA
## 13557   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13558   Suc. Belenes    NA      NA    NA     2   NA    NA
## 13559   Suc. Belenes     8       8     5     5    5    NA
## 13560   Suc. Belenes    NA      NA    NA     6    3     3
## 13561   Suc. Belenes     3       3     2    NA   NA     3
## 13562   Suc. Belenes    28      18    32    14   25     7
## 13563   Suc. Belenes    21      25    11    18   18     4
## 13564   Suc. Belenes    13       8     6    13    8     4
## 13565   Suc. Belenes    27      30    17    23   27     8
## 13566   Suc. Belenes     2       2    NA     1   NA    NA
## 13567   Suc. Belenes     5       3     3     2    2    NA
## 13568   Suc. Belenes     2       4     4    NA    4    NA
## 13569   Suc. Belenes    NA       2    NA    NA   NA    NA
## 13570   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13571   Suc. Belenes    NA      NA    NA     0   NA    NA
## 13572   Suc. Belenes     2       2     2     2    1    NA
## 13573   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13574   Suc. Belenes    NA       2     2     2    2    NA
## 13575   Suc. Belenes     0      NA     1     0    0    NA
## 13576   Suc. Belenes    NA       3    NA    NA   NA    NA
## 13577   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13578   Suc. Belenes     1      NA     0    NA   NA    NA
## 13579   Suc. Belenes     1       1     1    NA    1    NA
## 13580   Suc. Belenes    NA       1     1    NA   NA    NA
## 13581   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13582   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13583   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13584   Suc. Belenes     1      NA     0    NA   NA    NA
## 13585   Suc. Belenes     1       1     1    NA    1    NA
## 13586   Suc. Belenes    NA       1     1    NA   NA    NA
## 13587   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13588   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13589   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13590   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13591   Suc. Belenes     1       1     1    NA    1    NA
## 13592   Suc. Belenes    NA       1     1    NA   NA    NA
## 13593   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13594   Suc. Belenes    NA       1     1    NA   NA    NA
## 13595   Suc. Belenes    NA       3    NA    NA   NA    NA
## 13596   Suc. Belenes     1      NA     0    NA   NA    NA
## 13597   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13598   Suc. Belenes    NA       3    NA    NA   NA    NA
## 13599   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13600   Suc. Belenes     1      NA     0    NA   NA    NA
## 13601   Suc. Belenes     1       1     1    NA    1    NA
## 13602   Suc. Belenes    NA       1     1    NA   NA    NA
## 13603   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13604   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13605   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13606   Suc. Belenes     3       3    NA     3   NA    NA
## 13607   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13608   Suc. Belenes    NA       4    NA    NA   NA    NA
## 13609   Suc. Belenes     4       4    NA    NA    4    NA
## 13610   Suc. Belenes     2       6    NA    NA    2    NA
## 13611   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13612   Suc. Belenes     3      NA    NA    NA   NA    NA
## 13613   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13614   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13615   Suc. Belenes     3      NA    NA    NA   NA    NA
## 13616   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13617   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13618   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13619   Suc. Belenes    NA       3    NA    NA   NA    NA
## 13620   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13621   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13622   Suc. Belenes     2      53    NA    NA   NA    NA
## 13623   Suc. Belenes     3      63    NA    NA   NA    NA
## 13624   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13625   Suc. Belenes    NA      38    NA    NA   NA    NA
## 13626   Suc. Belenes    NA      NA     3    NA    4    NA
## 13627   Suc. Belenes     1       1     1    NA    1    NA
## 13628   Suc. Belenes     2       2     1    NA   NA    NA
## 13629   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13630   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13631   Suc. Belenes    NA       3    NA    NA   NA    NA
## 13632   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13633   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13634   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13635   Suc. Belenes     3      NA    19     3    3    NA
## 13636   Suc. Belenes     2      NA    NA    NA   NA    NA
## 13637   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13638   Suc. Belenes     4      NA    11     4   NA    NA
## 13639   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13640   Suc. Belenes     2       2     8    NA    2    NA
## 13641   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13642   Suc. Belenes     1       1     1    NA    3    NA
## 13643   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13644   Suc. Belenes    NA      NA    NA    NA    4    NA
## 13645   Suc. Belenes     2       0     0    NA    0    NA
## 13646   Suc. Belenes    NA       1    NA    NA    1    NA
## 13647   Suc. Belenes    NA       7    NA    NA    1    NA
## 13648   Suc. Belenes    NA       1     1    NA   NA    NA
## 13649   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13650   Suc. Belenes    NA       1     1    NA   NA    NA
## 13651   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13652   Suc. Belenes     0       1     2    NA   NA    NA
## 13653   Suc. Belenes    NA      NA    NA    NA   NA    NA
## 13654   Suc. Belenes     0      NA     0    NA   NA    NA
## 13655   Suc. Belenes     1      NA     1    NA   NA    NA
## 13656   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13657   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13658   Suc. Belenes     1      NA     1    NA   NA    NA
## 13659   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13660   Suc. Belenes    NA      NA    NA    NA    0    NA
## 13661   Suc. Belenes     1      NA     1    NA   NA    NA
## 13662   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13663   Suc. Belenes    NA      NA    NA    NA    3    NA
## 13664   Suc. Belenes    NA      NA     0    NA   NA    NA
## 13665   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13666   Suc. Belenes     3      NA    NA    NA    3    NA
## 13667   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13668   Suc. Belenes     1      NA     1    NA   NA    NA
## 13669   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13670   Suc. Belenes    NA       3    NA    NA    1    NA
## 13671   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13672   Suc. Belenes    NA       1     1     1   NA    NA
## 13673   Suc. Belenes     2       6     4     2   NA    NA
## 13674   Suc. Belenes     3      13     3     6   NA    NA
## 13675   Suc. Belenes    NA       0    NA    NA   NA    NA
## 13676   Suc. Belenes     3       3    NA     3   NA    NA
## 13677   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13678   Suc. Belenes    NA      NA    NA    NA    1    NA
## 13679   Suc. Belenes    NA      NA     1    NA   NA    NA
## 13680   Suc. Belenes     2       4     3     3    0    NA
## 13681   Suc. Belenes    NA       1     1     1   NA    NA
## 13682   Suc. Belenes     0      NA    NA    NA   NA    NA
## 13683   Suc. Belenes    NA       1     1     2    1    NA
## 13684   Suc. Belenes    NA       3     3    NA   NA    NA
## 13685   Suc. Belenes    NA      NA     0     0   NA    NA
## 13686   Suc. Belenes     1      NA     1    NA   NA    NA
## 13687   Suc. Belenes     3      NA     3    NA   NA    NA
## 13688   Suc. Belenes    15       6     8    11   NA    NA
## 13689   Suc. Belenes     2       2     2     2   NA    NA
## 13690   Suc. Belenes    16      11     8    11   NA    NA
## 13691   Suc. Belenes    41      57    54    63    6    NA
## 13692   Suc. Belenes     6       6     6     6    2    NA
## 13693   Suc. Belenes     8       6     6     8   NA    NA
## 13694   Suc. Belenes    32      25    18    28    4    NA
## 13695   Suc. Belenes    85      70    70    99    7    NA
## 13696   Suc. Belenes     8       6     6     2   NA    NA
## 13697   Suc. Belenes    85      93    99   110   15    NA
## 13698   Suc. Belenes     3       2     2     2   NA    NA
## 13699   Suc. Belenes     3      NA    NA    NA   NA    NA
## 13700   Suc. Belenes    NA       2    NA     2   NA    NA
## 13701   Suc. Belenes     1       3     2     2   NA    NA
## 13702   Suc. Belenes    NA       1    NA    NA   NA    NA
## 13703   Suc. Belenes    NA       1     1     1   NA    NA
## 13704   Suc. Belenes    NA      NA    NA     1   NA    NA
## 13705   Suc. Belenes    NA       1    NA     1   NA    NA
## 13706   Suc. Belenes     1       0     2     0    0    NA
## 13707   Suc. Belenes     1       2     3     0   NA    NA
## 13708   Suc. Belenes     2       3     3    NA   NA    NA
## 13709   Suc. Belenes    NA      NA     1     0   NA    NA
## 13710   Suc. Belenes     0      NA     1    NA   NA    NA
## 13711   Suc. Belenes     0       0     0     0   NA    NA
## 13712   Suc. Belenes     1       4     1     4   NA    NA
## 13713   Suc. Belenes     0       2     1     0    2    NA
## 13714   Suc. Belenes    NA       3     1     3    2    NA
## 13715   Suc. Belenes     1      NA     1     1   NA    NA
## 13716   Suc. Belenes    NA       0    NA     0   NA    NA
## 13717   Suc. Belenes     1       1     1     1   NA    NA
## 13718   Suc. Belenes    NA       1     1     3    2    NA
## 13719   Suc. Belenes     1       1    NA    NA   NA    NA
## 13720   Suc. Belenes    NA       0    NA     0   NA    NA
## 13721   Suc. Belenes    NA       1     1     1   NA    NA
## 13722   Suc. Belenes    NA       1     1     1   NA    NA
## 13723   Suc. Belenes     3       1     1    NA   NA    NA
## 13724   Suc. Belenes    NA       2     1    NA   NA    NA
## 13725   Suc. Belenes     1      NA    NA    NA   NA    NA
## 13726   Suc. Belenes    NA      NA    NA    NA    2    NA
## 13727   Suc. Belenes    NA       0    NA     0   NA    NA
## 13728   Suc. Belenes     1       4     4     1   NA    NA
## 13729   Suc. Belenes     0       1    NA     1   NA    NA
## 13730   Suc. Belenes     2       3     1     3   NA    NA
## 13731   Suc. Belenes     1       1     1     1   NA    NA
## 13732   Suc. Belenes    NA       0    NA     0   NA    NA
## 13733   Suc. Belenes     1       3     5     2   NA    NA
## 13734 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13735 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13736 Suc. Huentitán     2      11     6    17   11    13
## 13737 Suc. Huentitán    10      10    16    25   22    22
## 13738 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 13739 Suc. Huentitán    NA      NA    NA    NA    7    NA
## 13740 Suc. Huentitán     5       5     5     5    5     8
## 13741 Suc. Huentitán     1      NA    NA    NA    1    NA
## 13742 Suc. Huentitán     1      NA    NA    NA    1    NA
## 13743 Suc. Huentitán     0       0     0     0    1     1
## 13744 Suc. Huentitán     1       1    NA     1   NA     1
## 13745 Suc. Huentitán     4       3     2     5    3     4
## 13746 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13747 Suc. Huentitán     1      NA     2     1   NA     2
## 13748 Suc. Huentitán     2       2    NA     4    4    NA
## 13749 Suc. Huentitán     1       1     3     1    2     2
## 13750 Suc. Huentitán     6       8     3     8    8     3
## 13751 Suc. Huentitán    NA       0     0     0   NA    NA
## 13752 Suc. Huentitán     1      NA     1     1   NA    NA
## 13753 Suc. Huentitán    NA      NA    NA     2   NA    NA
## 13754 Suc. Huentitán     1       1     1    NA   NA    NA
## 13755 Suc. Huentitán     8      11     2    11    8    15
## 13756 Suc. Huentitán     8       8    14    14    8    14
## 13757 Suc. Huentitán    NA      NA    NA    NA    3    NA
## 13758 Suc. Huentitán    11       8     6     8   11     8
## 13759 Suc. Huentitán     1       1     1     2   NA     2
## 13760 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13761 Suc. Huentitán     2       4     4     2    2     6
## 13762 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13763 Suc. Huentitán    NA      NA    NA    NA    2    NA
## 13764 Suc. Huentitán    34      34    29    42   26    29
## 13765 Suc. Huentitán    NA      NA    NA    NA   NA     6
## 13766 Suc. Huentitán    25      35    32    38   41    48
## 13767 Suc. Huentitán    11       9     8    11    6     8
## 13768 Suc. Huentitán     5       2     2    NA   NA    NA
## 13769 Suc. Huentitán    NA      NA     3     6   NA    NA
## 13770 Suc. Huentitán    28      28    28    49   32    32
## 13771 Suc. Huentitán   159     116   183    99  180   183
## 13772 Suc. Huentitán    15      11    11    15   13     8
## 13773 Suc. Huentitán    21      17    21    27   19    19
## 13774 Suc. Huentitán   112      91   146    76  101   137
## 13775 Suc. Huentitán     4       4     6     6    5     7
## 13776 Suc. Huentitán     5       3     3     5    5     5
## 13777 Suc. Huentitán     2       4     2     6    4     6
## 13778 Suc. Huentitán     3       2     3     3    3     3
## 13779 Suc. Huentitán    NA       1    NA    NA    1     1
## 13780 Suc. Huentitán    NA       1     1     2    1     4
## 13781 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13782 Suc. Huentitán    NA       2     1     3    3     2
## 13783 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13784 Suc. Huentitán     1       1     1     2    0     1
## 13785 Suc. Huentitán    NA      NA     0    NA    0    NA
## 13786 Suc. Huentitán     5       3     4     5    3     3
## 13787 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13788 Suc. Huentitán     0      NA    NA    NA   NA     0
## 13789 Suc. Huentitán    NA      NA    NA     1   NA     1
## 13790 Suc. Huentitán    NA      NA     1     7    3    -1
## 13791 Suc. Huentitán     2       1     1     1    1     1
## 13792 Suc. Huentitán    NA       1     1     1    2     3
## 13793 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13794 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13795 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13796 Suc. Huentitán    NA      NA    NA    NA   NA     6
## 13797 Suc. Huentitán     2       4     3     7    4     4
## 13798 Suc. Huentitán     0       0     0     0    1     1
## 13799 Suc. Huentitán     2       2     1     3    3     2
## 13800 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 13801 Suc. Huentitán     3       3     3     3    3     4
## 13802 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 13803 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13804 Suc. Huentitán    NA      NA     0     0    0    NA
## 13805 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13806 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13807 Suc. Huentitán     2       1    NA     4    1     4
## 13808 Suc. Huentitán     0      NA    NA    NA   NA    NA
## 13809 Suc. Huentitán     2       0     0     1    2     1
## 13810 Suc. Huentitán     3       3     3     3    3     4
## 13811 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13812 Suc. Huentitán    NA      NA     0     0    0    NA
## 13813 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13814 Suc. Huentitán     2       1    NA     1    1     4
## 13815 Suc. Huentitán     0       0     0     0    1     1
## 13816 Suc. Huentitán     2       0     1     2    2     1
## 13817 Suc. Huentitán     3       3     3     3    3     4
## 13818 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13819 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13820 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13821 Suc. Huentitán    NA      NA    NA    NA    4     3
## 13822 Suc. Huentitán     2       1     0     0   NA     0
## 13823 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 13824 Suc. Huentitán    NA      NA     0     0    0    NA
## 13825 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13826 Suc. Huentitán    NA      NA    NA    NA   NA     6
## 13827 Suc. Huentitán     2       9     6     7    4     4
## 13828 Suc. Huentitán     0       0     0     0    1     1
## 13829 Suc. Huentitán     3       1     1     2    2     1
## 13830 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 13831 Suc. Huentitán     3       3     3     3    3     4
## 13832 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 13833 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13834 Suc. Huentitán    NA      NA     0     0    0    NA
## 13835 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13836 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13837 Suc. Huentitán     2       3     3     7    5     2
## 13838 Suc. Huentitán    NA      NA    NA    NA    3    NA
## 13839 Suc. Huentitán    NA      NA     1    NA   NA     1
## 13840 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13841 Suc. Huentitán    NA      11    30    34   51    42
## 13842 Suc. Huentitán    NA      32    29    35   60    51
## 13843 Suc. Huentitán    NA      NA    NA    NA    4    NA
## 13844 Suc. Huentitán    NA      NA    18    15   36    28
## 13845 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13846 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13847 Suc. Huentitán     3       2     3     2    3     2
## 13848 Suc. Huentitán     4       3     3     4   12    NA
## 13849 Suc. Huentitán    NA      NA     3     1    4    NA
## 13850 Suc. Huentitán     1       1     2     2    3     1
## 13851 Suc. Huentitán     0      NA    NA     0   NA    NA
## 13852 Suc. Huentitán     1      NA     2     1    2     3
## 13853 Suc. Huentitán     8       7     8     7    8    10
## 13854 Suc. Huentitán     1       1     4     2    2     2
## 13855 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13856 Suc. Huentitán     4      NA     2     4    4     2
## 13857 Suc. Huentitán    NA      NA     2     1   NA     1
## 13858 Suc. Huentitán    14       3     6    11   11    11
## 13859 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13860 Suc. Huentitán    NA      NA     4     1    1    NA
## 13861 Suc. Huentitán    NA       0     0     1    0     0
## 13862 Suc. Huentitán    NA      NA    NA     1    1     1
## 13863 Suc. Huentitán     1      NA     1     1    1     1
## 13864 Suc. Huentitán    NA      NA     2    NA   NA    NA
## 13865 Suc. Huentitán    NA      NA     1    NA    1    NA
## 13866 Suc. Huentitán     2       2     4     2    2     2
## 13867 Suc. Huentitán    19      21    19    23   19    17
## 13868 Suc. Huentitán     3      NA     3    NA   NA     2
## 13869 Suc. Huentitán     8       6     8    11   11    14
## 13870 Suc. Huentitán    45      23    51    34   25    25
## 13871 Suc. Huentitán     2       3     5    NA    3     2
## 13872 Suc. Huentitán    17      13    13    15   11    17
## 13873 Suc. Huentitán     3       3     2     2    3     2
## 13874 Suc. Huentitán     2      NA     3     2    2     2
## 13875 Suc. Huentitán     8       4     8     6   NA     4
## 13876 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13877 Suc. Huentitán    NA       3     3     3   NA    NA
## 13878 Suc. Huentitán    NA      NA    NA     0    0    NA
## 13879 Suc. Huentitán     4       2     2     4    2     6
## 13880 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13881 Suc. Huentitán    NA       1     1    NA    1     1
## 13882 Suc. Huentitán    46      32    53    51   44    51
## 13883 Suc. Huentitán    NA      NA    NA    NA    3    NA
## 13884 Suc. Huentitán    38      29    29    25   32    38
## 13885 Suc. Huentitán    79      89   105   146   86   130
## 13886 Suc. Huentitán    12      11    21    20   11    14
## 13887 Suc. Huentitán     3       2     2     5    3     5
## 13888 Suc. Huentitán    11       6    14    25   17    20
## 13889 Suc. Huentitán    20       8     8    17   20    25
## 13890 Suc. Huentitán    85      92   137    92  137   141
## 13891 Suc. Huentitán   254     134   271   190  250   331
## 13892 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13893 Suc. Huentitán    38      30    44    51   61    66
## 13894 Suc. Huentitán    70      57    68    82   72    76
## 13895 Suc. Huentitán     7       8    11     8   12    15
## 13896 Suc. Huentitán     3       2     5     5    5     3
## 13897 Suc. Huentitán     2       4     2     2   10     4
## 13898 Suc. Huentitán    13      10    13     6    5     9
## 13899 Suc. Huentitán    NA       1    NA    NA   NA    NA
## 13900 Suc. Huentitán     3       2     2     1    5     3
## 13901 Suc. Huentitán     2       1     1     1    2    NA
## 13902 Suc. Huentitán     4      NA     1     1    5     1
## 13903 Suc. Huentitán     9       8     4    11    8     9
## 13904 Suc. Huentitán     4       4     4     4    8     5
## 13905 Suc. Huentitán     3       2     4     3    4     1
## 13906 Suc. Huentitán    12       8    10    12   11     7
## 13907 Suc. Huentitán     4       5     4     4    6     2
## 13908 Suc. Huentitán     4       5     2     2    3     4
## 13909 Suc. Huentitán     2       2     4     4    6     2
## 13910 Suc. Huentitán     0       2     1     1    1    NA
## 13911 Suc. Huentitán     1      NA     4     3    6     3
## 13912 Suc. Huentitán     4       5    NA    NA    4    NA
## 13913 Suc. Huentitán     3       2     5     4    8    NA
## 13914 Suc. Huentitán    NA      NA    NA     1    1    NA
## 13915 Suc. Huentitán     3       4     4     3    4     3
## 13916 Suc. Huentitán     1      NA     2     1    2     3
## 13917 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13918 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13919 Suc. Huentitán     8       3     3    NA   NA    NA
## 13920 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13921 Suc. Huentitán     3       8    12     8    6     6
## 13922 Suc. Huentitán    NA      NA    NA    NA    4    NA
## 13923 Suc. Huentitán     0      NA    NA     0   NA    NA
## 13924 Suc. Huentitán     0      NA     0     0    1     1
## 13925 Suc. Huentitán     3      NA     3     3    3     4
## 13926 Suc. Huentitán     1       3    NA     1    3     2
## 13927 Suc. Huentitán     0      NA    NA    NA   NA    NA
## 13928 Suc. Huentitán    NA       0     0     0    0     0
## 13929 Suc. Huentitán    NA       6    NA    NA   NA     3
## 13930 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13931 Suc. Huentitán     6       6     4     3    3    11
## 13932 Suc. Huentitán    NA      NA     0    NA    1     0
## 13933 Suc. Huentitán     1      NA     1     1    1    NA
## 13934 Suc. Huentitán     2      NA     3     1    1     3
## 13935 Suc. Huentitán     0      NA    NA    NA   NA    NA
## 13936 Suc. Huentitán    NA       0     0     0    0     0
## 13937 Suc. Huentitán    NA      NA     3     3   NA     3
## 13938 Suc. Huentitán    NA      NA    NA     3    1    NA
## 13939 Suc. Huentitán     0      NA    NA     0   NA    NA
## 13940 Suc. Huentitán    NA      NA     0     0   NA    NA
## 13941 Suc. Huentitán     1      NA     1     1    1    NA
## 13942 Suc. Huentitán     1       1     1     1    1     1
## 13943 Suc. Huentitán     0      NA    NA    NA   NA    NA
## 13944 Suc. Huentitán    NA       1     1     3    2     1
## 13945 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13946 Suc. Huentitán     8      14    23     8    5    14
## 13947 Suc. Huentitán    NA      NA    NA     0    1     1
## 13948 Suc. Huentitán    NA       2     2     2    4     4
## 13949 Suc. Huentitán     1       1     3    NA    5     3
## 13950 Suc. Huentitán    NA       0     0     0    0     0
## 13951 Suc. Huentitán    10      NA     5    NA   NA     3
## 13952 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13953 Suc. Huentitán    11       6     9    14    6    14
## 13954 Suc. Huentitán    NA      NA    NA    NA    4    NA
## 13955 Suc. Huentitán     0      NA    NA     0   NA    NA
## 13956 Suc. Huentitán    NA       0    NA    NA    1     0
## 13957 Suc. Huentitán     5       2     5     5    9     4
## 13958 Suc. Huentitán     2       1     4     3    3     6
## 13959 Suc. Huentitán     0      NA    NA    NA   NA    NA
## 13960 Suc. Huentitán    NA       0     0     0    0     0
## 13961 Suc. Huentitán     2       1     4    NA   NA    NA
## 13962 Suc. Huentitán     5       8    11     6   15    10
## 13963 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 13964 Suc. Huentitán     1      NA     1    NA   NA    NA
## 13965 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13966 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13967 Suc. Huentitán     2       4     4     4    4     4
## 13968 Suc. Huentitán    13      10     3     3   10     6
## 13969 Suc. Huentitán    NA      NA     0    NA   NA    NA
## 13970 Suc. Huentitán    NA       3     5    NA   NA    NA
## 13971 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13972 Suc. Huentitán     2       2     2     1    3    NA
## 13973 Suc. Huentitán    NA      NA     2    NA    3    NA
## 13974 Suc. Huentitán    NA      NA     1    NA    1    NA
## 13975 Suc. Huentitán     0       1     1     1    1     1
## 13976 Suc. Huentitán    NA      NA     1     1   NA    NA
## 13977 Suc. Huentitán     4       5     5     5    6     2
## 13978 Suc. Huentitán     0       0    NA    NA    0     1
## 13979 Suc. Huentitán    NA      NA    NA    NA    1     1
## 13980 Suc. Huentitán    NA       2     2     4    2    NA
## 13981 Suc. Huentitán     3       1     1     1    1     1
## 13982 Suc. Huentitán     6       3     3     6    6    NA
## 13983 Suc. Huentitán    NA      NA    NA    NA    0    NA
## 13984 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13985 Suc. Huentitán    NA      NA     1    NA   NA     1
## 13986 Suc. Huentitán     4      NA    NA     4    2     2
## 13987 Suc. Huentitán    NA      NA     0    NA   NA    NA
## 13988 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 13989 Suc. Huentitán     8       2     4     6    4     8
## 13990 Suc. Huentitán    11       6     6     8    8     8
## 13991 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 13992 Suc. Huentitán    11      13     6     8   13    13
## 13993 Suc. Huentitán     1       1     1     1    1     2
## 13994 Suc. Huentitán     2       4     2     4    2     4
## 13995 Suc. Huentitán     6       8     8    11    3    11
## 13996 Suc. Huentitán     2      NA     2     2    2     4
## 13997 Suc. Huentitán     1       1     1     2    1     2
## 13998 Suc. Huentitán    NA      NA    NA    NA    1    NA
## 13999 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14000 Suc. Huentitán    29      29    42    45   37    26
## 14001 Suc. Huentitán    NA      NA    NA    NA   NA    19
## 14002 Suc. Huentitán    22      22    22    29   29    38
## 14003 Suc. Huentitán    12       9    12    20   12    12
## 14004 Suc. Huentitán     9      12     9    15    9    17
## 14005 Suc. Huentitán    NA       6     3    11    3     6
## 14006 Suc. Huentitán     6       6     6    11    6     6
## 14007 Suc. Huentitán    74      49    63    99   74    63
## 14008 Suc. Huentitán   113     113   229    74  137   106
## 14009 Suc. Huentitán    NA      -2    NA    NA   NA    NA
## 14010 Suc. Huentitán    NA      NA    NA    NA    2     2
## 14011 Suc. Huentitán    30      21    23    34   23    13
## 14012 Suc. Huentitán    63      70    74   116   40    76
## 14013 Suc. Huentitán     8       7     9    10   10     6
## 14014 Suc. Huentitán     2       3     3     5    5     3
## 14015 Suc. Huentitán     2       6     2     6    4     4
## 14016 Suc. Huentitán     2       4     3     4    2     2
## 14017 Suc. Huentitán    NA       1    NA    NA   NA    NA
## 14018 Suc. Huentitán     1       1     1     1    4     2
## 14019 Suc. Huentitán     1       1     1     2    2     2
## 14020 Suc. Huentitán     1      NA     1     2    3     3
## 14021 Suc. Huentitán     1      NA     2     1    1    NA
## 14022 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14023 Suc. Huentitán     3       2     1     3    5     0
## 14024 Suc. Huentitán     1      NA     1     0    1     1
## 14025 Suc. Huentitán     3       2     3     0    3     3
## 14026 Suc. Huentitán    NA       1    NA    NA   NA     1
## 14027 Suc. Huentitán    NA       2     2     2    6    NA
## 14028 Suc. Huentitán    NA      NA     0     0   NA     0
## 14029 Suc. Huentitán     2       2     1     2   NA     1
## 14030 Suc. Huentitán     2      NA     3     1   NA     3
## 14031 Suc. Huentitán     1       1     3     1    1     2
## 14032 Suc. Huentitán     1      NA     1    NA   NA    NA
## 14033 Suc. Huentitán     3       3     2     1    3     2
## 14034 Suc. Huentitán     1       1     2    NA    1     1
## 14035 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14036 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14037 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14038 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14039 Suc. Huentitán     5       5     5     6    5     6
## 14040 Suc. Huentitán     6       1     3     3   NA     3
## 14041 Suc. Huentitán     0       1     1     1    1     1
## 14042 Suc. Huentitán     0      NA     1     1    1     1
## 14043 Suc. Huentitán     5       2    NA     3   NA     3
## 14044 Suc. Huentitán     1       1     1    NA   NA    NA
## 14045 Suc. Huentitán    NA       0     1     0    0     0
## 14046 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14047 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14048 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14049 Suc. Huentitán     4       1     3    NA    3    NA
## 14050 Suc. Huentitán     0      NA     1     1    0    NA
## 14051 Suc. Huentitán     1       2    NA     3    2     1
## 14052 Suc. Huentitán     1      NA    NA    NA    1    NA
## 14053 Suc. Huentitán    NA       0     1     0    0     0
## 14054 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14055 Suc. Huentitán     1       1    31     3   NA    NA
## 14056 Suc. Huentitán     0       1     1     1    1     1
## 14057 Suc. Huentitán    NA       0     0     1   NA     0
## 14058 Suc. Huentitán     5       4     4     5   NA     1
## 14059 Suc. Huentitán     1      NA    NA     1   NA    NA
## 14060 Suc. Huentitán     1       1     1     1   NA    NA
## 14061 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14062 Suc. Huentitán     6       3     3    NA    6    NA
## 14063 Suc. Huentitán     0       0     1     0    0    NA
## 14064 Suc. Huentitán     6       6     4     4    2    NA
## 14065 Suc. Huentitán     1       1    NA    NA   NA    NA
## 14066 Suc. Huentitán    NA       0     1     0    0     0
## 14067 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14068 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14069 Suc. Huentitán     6       5     6     6    5     8
## 14070 Suc. Huentitán     4       1     3     8    6     6
## 14071 Suc. Huentitán    NA       4    NA    NA   NA    NA
## 14072 Suc. Huentitán     0       1     1     1    1     1
## 14073 Suc. Huentitán     0      NA     1     1    0     1
## 14074 Suc. Huentitán     7       2     2     3   NA     5
## 14075 Suc. Huentitán     1       1     1     1   NA    NA
## 14076 Suc. Huentitán    NA       0     1     0    0     0
## 14077 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14078 Suc. Huentitán     1       3     3     1    5     5
## 14079 Suc. Huentitán    NA      NA     0     0   NA    NA
## 14080 Suc. Huentitán    NA      NA    NA    NA    1    NA
## 14081 Suc. Huentitán     1      NA     1     1    1    NA
## 14082 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14083 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14084 Suc. Huentitán     2      11     4     8   17    13
## 14085 Suc. Huentitán    25       6    10    19   16    22
## 14086 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14087 Suc. Huentitán     5      NA    NA     5    3     5
## 14088 Suc. Huentitán     1       2     2    NA   NA     2
## 14089 Suc. Huentitán    NA       0     1     1    0     0
## 14090 Suc. Huentitán     0      NA     0    NA   NA    NA
## 14091 Suc. Huentitán    NA       1    NA     1   NA     1
## 14092 Suc. Huentitán     4       2     1     4    3     6
## 14093 Suc. Huentitán    NA       0     1     0   NA     1
## 14094 Suc. Huentitán    NA       1     2    11    1     2
## 14095 Suc. Huentitán    NA       1     1     8    1     1
## 14096 Suc. Huentitán    NA       3     3     3    3     3
## 14097 Suc. Huentitán    NA       1    NA    NA   NA    NA
## 14098 Suc. Huentitán    NA      NA    NA    NA   -2    NA
## 14099 Suc. Huentitán     1      NA     2    NA   NA    NA
## 14100 Suc. Huentitán     2       8     8     6    8     8
## 14101 Suc. Huentitán    NA       3     3     6   NA    NA
## 14102 Suc. Huentitán     6       3     6     8   NA     6
## 14103 Suc. Huentitán    11       8     8     4   11    11
## 14104 Suc. Huentitán     1       1     1     2   NA    NA
## 14105 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14106 Suc. Huentitán    NA       2    NA    NA   NA    NA
## 14107 Suc. Huentitán    NA       1    NA    NA   NA    NA
## 14108 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14109 Suc. Huentitán    21      29    37    29   29    18
## 14110 Suc. Huentitán    NA      NA    NA    NA   NA    16
## 14111 Suc. Huentitán    98     117   146   155  101   133
## 14112 Suc. Huentitán     5       9     9    15    6    11
## 14113 Suc. Huentitán    NA      NA    NA     6   NA    NA
## 14114 Suc. Huentitán    32      28    18    25   28    39
## 14115 Suc. Huentitán   232     232   264   232  190   215
## 14116 Suc. Huentitán     2      NA    NA     2   NA    NA
## 14117 Suc. Huentitán    13      15    13    17   15    17
## 14118 Suc. Huentitán   127     114   152   205  184   135
## 14119 Suc. Huentitán     2       2     1     5    4     4
## 14120 Suc. Huentitán     3      NA     3     5    3     2
## 14121 Suc. Huentitán     2       4     2     4    4     4
## 14122 Suc. Huentitán     5       1     4     3    2     3
## 14123 Suc. Huentitán    NA       1    NA    NA   NA    NA
## 14124 Suc. Huentitán     1       1     1    12    1     1
## 14125 Suc. Huentitán    NA      NA     1    NA   NA     1
## 14126 Suc. Huentitán     3       1     2     2    2     3
## 14127 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14128 Suc. Huentitán     4       2     4     2    2     3
## 14129 Suc. Huentitán     1       0     1     1    1     1
## 14130 Suc. Huentitán     3       3     3     3    4     4
## 14131 Suc. Huentitán    NA      NA    NA    NA   NA     0
## 14132 Suc. Huentitán    NA       2    NA    NA    2    NA
## 14133 Suc. Huentitán     0       0    NA     1    1    NA
## 14134 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14135 Suc. Huentitán     1       0     1     1    1     1
## 14136 Suc. Huentitán    NA       1     1     1    2     1
## 14137 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14138 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14139 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14140 Suc. Huentitán     6       3     4    NA    8     3
## 14141 Suc. Huentitán     0      NA     0    NA   NA    NA
## 14142 Suc. Huentitán     0      NA     0    NA    0    NA
## 14143 Suc. Huentitán     2       3     2     3    3     2
## 14144 Suc. Huentitán     1      NA     1     3    1     1
## 14145 Suc. Huentitán    NA       0     0     0   NA    NA
## 14146 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14147 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14148 Suc. Huentitán    NA      NA     1     3    3     3
## 14149 Suc. Huentitán    NA      NA    NA    NA   NA     0
## 14150 Suc. Huentitán     2       1     2     3    1     2
## 14151 Suc. Huentitán    NA      NA    NA    NA    1    NA
## 14152 Suc. Huentitán    NA       0     0     0   NA    NA
## 14153 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14154 Suc. Huentitán    NA      NA     1    NA    3     3
## 14155 Suc. Huentitán     0      NA     0    NA   NA    NA
## 14156 Suc. Huentitán    NA      NA    NA    NA   NA    -1
## 14157 Suc. Huentitán     2       1     2     3    1     2
## 14158 Suc. Huentitán     1      NA    NA     1    1     1
## 14159 Suc. Huentitán     1      NA    NA     1    2     1
## 14160 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14161 Suc. Huentitán     6      NA     3     3    3     3
## 14162 Suc. Huentitán    NA      NA     0    NA   NA     0
## 14163 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14164 Suc. Huentitán    NA       0     0     0   NA    NA
## 14165 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14166 Suc. Huentitán    NA      NA    NA    NA   NA     2
## 14167 Suc. Huentitán     3       3     1     3    3     3
## 14168 Suc. Huentitán     0      NA     0    NA   NA    NA
## 14169 Suc. Huentitán     0       1     1     0    0     1
## 14170 Suc. Huentitán     2       3     6     3    5     2
## 14171 Suc. Huentitán     2      NA     2     3    4     1
## 14172 Suc. Huentitán    NA       0     0     0   NA    NA
## 14173 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14174 Suc. Huentitán     1       3     5     4    3     8
## 14175 Suc. Huentitán    NA      NA    NA     2    0    NA
## 14176 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14177 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14178 Suc. Huentitán     2       2     6     2    2     4
## 14179 Suc. Huentitán    16       3     6     6    3     6
## 14180 Suc. Huentitán    NA      NA     0    NA   NA    NA
## 14181 Suc. Huentitán     3      NA     3     3    3     3
## 14182 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14183 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14184 Suc. Huentitán    NA       1     1     2    1     1
## 14185 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14186 Suc. Huentitán     2       1     1    NA   NA     1
## 14187 Suc. Huentitán     1       1     1     1    1     2
## 14188 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14189 Suc. Huentitán    NA       1    NA    NA    1    NA
## 14190 Suc. Huentitán     2      NA     6    NA   NA    NA
## 14191 Suc. Huentitán     3       2     4    NA    1    NA
## 14192 Suc. Huentitán     8       8     8    11    8     3
## 14193 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14194 Suc. Huentitán    NA      NA    NA     2    6     4
## 14195 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14196 Suc. Huentitán     0      NA     1     0   NA    NA
## 14197 Suc. Huentitán    NA      NA    NA     0   NA    NA
## 14198 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14199 Suc. Huentitán     5       3     8     5    3     8
## 14200 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14201 Suc. Huentitán    35      32    51    57   38    82
## 14202 Suc. Huentitán     2       3     3     8    2     2
## 14203 Suc. Huentitán     3       3     3     3    3    NA
## 14204 Suc. Huentitán     4      NA     7     4   NA    NA
## 14205 Suc. Huentitán   169     159   148   183  173   208
## 14206 Suc. Huentitán    NA       4     4     2    2    NA
## 14207 Suc. Huentitán     4       2     6     4    4     4
## 14208 Suc. Huentitán    80      78    80    74   89    87
## 14209 Suc. Huentitán     1      NA     1     1   NA     1
## 14210 Suc. Huentitán    NA       2     3     2    2    NA
## 14211 Suc. Huentitán    NA      NA    NA     2   NA    NA
## 14212 Suc. Huentitán     3       2     2     1    1     2
## 14213 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14214 Suc. Huentitán    NA       1     1    -1    1     1
## 14215 Suc. Huentitán     1      NA    NA    NA   NA     1
## 14216 Suc. Huentitán    NA      NA    NA    NA   NA     1
## 14217 Suc. Huentitán    NA       0     0    NA    2     3
## 14218 Suc. Huentitán    NA      NA     0    NA   NA     0
## 14219 Suc. Huentitán     2       3     3     2    3     3
## 14220 Suc. Huentitán     1       0     2     1    0     1
## 14221 Suc. Huentitán    NA       2     2    NA   NA    NA
## 14222 Suc. Huentitán    NA      NA    NA    NA   NA     0
## 14223 Suc. Huentitán    NA       0     0    NA    0    NA
## 14224 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14225 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14226 Suc. Huentitán     3       6     8     6    3     4
## 14227 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14228 Suc. Huentitán    NA       0    NA     0    0    NA
## 14229 Suc. Huentitán     2      NA    NA    -1   NA    NA
## 14230 Suc. Huentitán     2       2     5     6    2     5
## 14231 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14232 Suc. Huentitán     0       0     0     0   NA     0
## 14233 Suc. Huentitán    NA       0     0    NA    0     0
## 14234 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14235 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14236 Suc. Huentitán    NA      NA     3    NA    3     4
## 14237 Suc. Huentitán     2       2     3     4    2     1
## 14238 Suc. Huentitán    NA      NA     0    NA   NA     0
## 14239 Suc. Huentitán    NA       0     0    NA    0     0
## 14240 Suc. Huentitán     6       3    11     3   NA     6
## 14241 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14242 Suc. Huentitán     4       2     5     4    2     3
## 14243 Suc. Huentitán     3      NA    NA    NA   NA     1
## 14244 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14245 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14246 Suc. Huentitán    NA       0     0    NA    0     0
## 14247 Suc. Huentitán     6       6    14    NA    3     9
## 14248 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14249 Suc. Huentitán    NA      NA    NA     0    1     1
## 14250 Suc. Huentitán     2      NA    NA    -1   NA    NA
## 14251 Suc. Huentitán     2       4     7     6    2     7
## 14252 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14253 Suc. Huentitán    NA      NA     0    NA    1     2
## 14254 Suc. Huentitán    NA       0     0    NA    0     0
## 14255 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14256 Suc. Huentitán     1       1    NA     1    3    NA
## 14257 Suc. Huentitán    NA      NA     1    NA   NA     1
## 14258 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14259 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14260 Suc. Huentitán     4      NA     4     6    6     2
## 14261 Suc. Huentitán     6      16    13     6    3    25
## 14262 Suc. Huentitán    NA       0    NA     0    0    NA
## 14263 Suc. Huentitán     2       2     2     3    2     3
## 14264 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14265 Suc. Huentitán    NA      NA    NA    NA   NA     3
## 14266 Suc. Huentitán    NA       0    NA    NA    1    NA
## 14267 Suc. Huentitán    NA       2    NA     2    1     1
## 14268 Suc. Huentitán    NA       1    NA     1    1     1
## 14269 Suc. Huentitán    NA      NA    NA    NA   NA    NA
## 14270 Suc. Huentitán     1       1     1     1   NA     1
## 14271 Suc. Huentitán     1       3     2     1    1     1
## 14272 Suc. Huentitán    10      17     3    19    9    16
## 14273 Suc. Huentitán    NA      NA    NA     1    1    NA
## 14274 Suc. Huentitán    NA      NA     1    NA   NA    NA
## 14275 Suc. Huentitán    NA      NA    NA     2   NA    NA
## 14276 Suc. Huentitán     5       2     3     2    2     2
## 14277 Suc. Huentitán     3       3    NA     3   NA    NA
## 14278 Suc. Huentitán     1      NA    NA    NA   NA    NA
## 14279 Suc. Huentitán    NA      NA     1     0   NA     0
## 14280 Suc. Huentitán     1      NA     1     1    1     1
## 14281 Suc. Huentitán    NA      NA    NA    NA   NA     1
## 14282 Suc. Huentitán     2      NA     4    NA    2     4
## 14283 Suc. Huentitán     5       5     6     6    2     8
## 14284 Suc. Huentitán    NA      NA    NA    NA    3    NA
## 14285 Suc. Huentitán     8      17    25    17   20    42
##  [ reached 'max' / getOption("max.print") -- omitted 452224 rows ]

Función filter

filter <- filter(base_de_datos, Tamaño.Cte.Industria =="Grande")
filter
##          ID  Año  Territorio Sub.Territorio         CEDI Cliente Nombre
## 1    374960 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 2    374961 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 3    374962 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 4    374963 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 5    374964 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 6    374965 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 7    374966 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 8    374967 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 9    374968 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 10   374969 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 11   374970 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 12   374971 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 13   374972 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 14   374973 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 15   374974 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 16   374975 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 17   374976 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 18   374977 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 19   374978 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 20   374979 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 21   374980 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 22   374981 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 23   374982 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 24   374983 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 25   374984 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 26   374985 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 27   374986 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 28   374987 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 29   374988 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 30   374989 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 31   374990 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 32   374991 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 33   374992 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 34   374993 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 35   374994 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 36   374995 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 37   374996 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 38   374997 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 39   374998 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 40   374999 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 41   375000 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 42   375001 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 43   375002 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 44   375003 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 45   375004 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 46   375005 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 47   375006 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 48   375007 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 49   375008 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 50   375009 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 51   375010 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 52   375011 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 53   375012 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 54   375013 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 55   375014 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 56   375015 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 57   375016 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 58   375017 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 59   375018 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 60   375019 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 61   375020 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 62   375021 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 63   375022 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 64   375023 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 65   375024 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 66   375025 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 67   375026 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 68   375027 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 69   375028 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 70   375029 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 71   375030 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 72   375031 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 73   375032 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 74   375033 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 75   375034 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 76   375035 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 77   375036 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 78   375037 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 79   375038 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 80   375039 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 81   375040 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 82   375041 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 83   375042 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 84   375043 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 85   375044 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 86   375045 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 87   375046 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 88   375047 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 89   375048 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 90   375049 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 91   375050 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 92   375051 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 93   375052 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 94   375053 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 95   375054 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 96   375055 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 97   375056 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 98   375057 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 99   375058 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 100  375059 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 101  375060 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 102  375061 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 103  375062 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 104  375063 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 105  375064 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 106  375065 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 107  375066 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 108  375067 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 109  375068 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 110  375069 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 111  375070 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 112  375071 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 113  375072 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 114  375073 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 115  375074 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 116  375075 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 117  375076 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 118  375077 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 119  375078 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 120  375079 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 121  375080 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 122  375081 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 123  375082 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 124  375083 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 125  375084 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 126  375085 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 127  375086 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 128  375087 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 129  375088 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 130  375089 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 131  375090 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 132  375091 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 133  375092 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 134  375093 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 135  375094 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 136  375095 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 137  375096 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 138  375097 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 139  375098 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 140  375099 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 141  375100 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 142  375101 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 143  375102 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 144  375103 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 145  375104 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 146  375105 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 147  375106 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 148  375107 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 149  375108 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 150  375109 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 151  375110 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 152  375111 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 153  375112 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 154  375113 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 155  375114 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 156  375115 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 157  375116 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 158  375117 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 159  375118 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 160  375119 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 161  375120 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 162  375121 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 163  375122 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 164  375123 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 165  375124 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 166  375125 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 167  375126 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 168  375127 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 169  375128 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 170  375129 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 171  375130 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 172  375131 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 173  375132 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 174  375133 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 175  375134 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 176  375135 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 177  375136 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 178  375137 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 179  375138 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 180  375139 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 181  375140 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 182  375141 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 183  375142 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 184  375143 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 185  375144 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 186  375145 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 187  375146 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 188  375147 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 189  375148 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 190  375149 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 191  375150 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 192  375151 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 193  375152 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 194  375153 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 195  375154 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 196  375155 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 197  375156 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 198  375157 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 199  375158 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 200  375159 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 201  375160 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 202  375161 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 203  375162 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 204  375163 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 205  375164 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 206  375165 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 207  375166 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 208  375167 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 209  375168 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 210  375169 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 211  375170 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 212  375171 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 213  375172 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 214  375173 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 215  375174 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 216  375175 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 217  375176 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 218  375177 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 219  375178 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 220  375179 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 221  375180 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 222  375181 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 223  375182 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 224  375183 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 225  375184 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 226  375185 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 227  375186 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 228  375187 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 229  375188 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 230  375189 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 231  375190 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 232  375191 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 233  375192 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 234  375193 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 235  375194 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 236  375195 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 237  375196 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 238  375197 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 239  375198 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 240  375199 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 241  375200 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 242  375201 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 243  375202 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 244  375203 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 245  375204 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 246  375205 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 247  375206 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 248  375207 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 249  375208 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 250  375209 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 251  375210 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 252  375211 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 253  375212 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 254  375213 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 255  375214 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 256  375215 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 257  375216 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 258  375217 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 259  375218 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 260  375219 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 261  375220 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 262  375221 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 263  375222 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 264  375223 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 265  375224 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 266  375225 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 267  375226 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 268  375227 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 269  375228 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 270  375229 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 271  375230 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 272  375231 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 273  375232 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 274  375233 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 275  375234 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 276  375235 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 277  375236 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 278  375237 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 279  375238 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 280  375239 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 281  375240 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 282  375241 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 283  375242 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 284  375243 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 285  375244 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 286  375245 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 287  375246 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 288  375247 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 289  375248 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 290  375249 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 291  375250 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 292  375251 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 293  375252 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 294  375253 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 295  375254 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 296  375255 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 297  375256 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 298  375257 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 299  375258 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 300  375259 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 301  375260 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 302  375261 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 303  375262 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 304  375263 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 305  375264 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 306  375265 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 307  375266 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 308  375267 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 309  375268 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 310  375269 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 311  375270 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 312  375271 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 313  375272 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 314  375273 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 315  375274 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 316  375275 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 317  375276 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 318  375277 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 319  375278 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 320  375279 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 321  375280 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 322  375281 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 323  375282 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 324  375283 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 325  375284 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 326  375285 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 327  375286 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 328  375287 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 329  375288 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 330  375289 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 331  375290 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 332  375291 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 333  375292 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 334  375293 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 335  375294 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 336  375295 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 337  375296 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 338  375297 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 339  375298 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 340  375299 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 341  375300 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 342  375301 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 343  375302 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 344  375303 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 345  375304 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 346  375305 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 347  375306 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 348  375307 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 349  375308 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 350  375309 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 351  375310 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 352  375311 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 353  375312 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 354  375313 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 355  375314 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 356  375315 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 357  375316 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 358  375317 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 359  375318 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 360  375319 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 361  375320 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 362  375321 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 363  375322 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 364  375323 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 365  375324 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 366  375325 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 367  375326 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 368  375327 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 369  375328 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 370  375329 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 371  375330 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 372  375331 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 373  375332 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 374  375333 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 375  375334 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 376  375335 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 377  375336 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 378  375337 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 379  375338 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 380  375339 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 381  375340 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 382  375341 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 383  375342 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 384  375343 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 385  375344 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 386  375345 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 387  375346 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 388  375347 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 389  375348 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 390  375349 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 391  375350 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 392  375351 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 393  375352 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 394  375353 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 395  375354 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 396  375355 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 397  375356 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 398  375357 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 399  375358 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 400  375359 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 401  375360 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 402  375361 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 403  375362 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 404  375363 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 405  375364 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 406  375365 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 407  375366 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 408  375367 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 409  375368 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 410  375369 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 411  375370 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 412  375371 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 413  375372 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 414  375373 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 415  375374 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 416  375375 2019 Guadalajara        Belenes Suc. Belenes    7708  ABARR
## 417  375376 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 418  375377 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 419  375378 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 420  375379 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 421  375380 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 422  375381 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 423  375382 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 424  375383 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 425  375384 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 426  375385 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 427  375386 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 428  375387 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 429  375388 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 430  375389 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 431  375390 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 432  375391 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 433  375392 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 434  375393 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 435  375394 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 436  375395 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 437  375396 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 438  375397 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 439  375398 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 440  375399 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 441  375400 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 442  375401 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 443  375402 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 444  375403 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 445  375404 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 446  375405 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 447  375406 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 448  375407 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 449  375408 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 450  375409 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 451  375410 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 452  375411 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 453  375412 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 454  375413 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 455  375414 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 456  375415 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 457  375416 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 458  375417 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 459  375418 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 460  375419 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 461  375420 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 462  375421 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 463  375422 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 464  375423 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 465  375424 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 466  375425 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 467  375426 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 468  375427 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 469  375428 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 470  375429 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 471  375430 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 472  375431 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 473  375432 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 474  375433 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 475  375434 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 476  375435 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 477  375436 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 478  375437 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 479  375438 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 480  375439 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 481  375440 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 482  375441 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 483  375442 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 484  375443 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 485  375444 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 486  375445 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 487  375446 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 488  375447 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 489  375448 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 490  375449 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 491  375450 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 492  375451 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 493  375452 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 494  375453 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 495  375454 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 496  375455 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 497  375456 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 498  375457 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 499  375458 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 500  375459 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 501  375460 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 502  375461 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 503  375462 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 504  375463 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 505  375464 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 506  375465 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 507  375466 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 508  375467 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 509  375468 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 510  375469 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 511  375470 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 512  375471 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 513  375472 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 514  375473 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 515  375474 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 516  375475 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 517  375476 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 518  375477 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 519  375478 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 520  375479 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 521  375480 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 522  375481 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 523  375482 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 524  375483 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 525  375484 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 526  375485 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 527  375486 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 528  375487 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 529  375488 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 530  375489 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 531  375490 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 532  375491 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 533  375492 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 534  375493 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 535  375494 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 536  375495 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 537  375496 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 538  375497 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 539  375498 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 540  375499 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 541  375500 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 542  375501 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 543  375502 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 544  375503 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 545  375504 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 546  375505 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 547  375506 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 548  375507 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 549  375508 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 550  375509 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 551  375510 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 552  375511 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 553  375512 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 554  375513 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 555  375514 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 556  375515 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 557  375516 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 558  375517 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 559  375518 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 560  375519 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 561  375520 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 562  375521 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 563  375522 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 564  375523 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 565  375524 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 566  375525 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 567  375526 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 568  375527 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 569  375528 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 570  375529 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 571  375530 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 572  375531 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 573  375532 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 574  375533 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 575  375534 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 576  375535 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 577  375536 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 578  375537 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 579  375538 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 580  375539 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 581  375540 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 582  375541 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 583  375542 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 584  375543 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 585  375544 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 586  375545 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 587  375546 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 588  375547 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 589  375548 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 590  375549 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 591  375550 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 592  375551 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 593  375552 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 594  375553 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 595  375554 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 596  375555 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 597  375556 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 598  375557 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 599  375558 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 600  375559 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 601  375560 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 602  375561 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 603  375562 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 604  375563 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 605  375564 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 606  375565 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 607  375566 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 608  375567 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 609  375568 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 610  375569 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 611  375570 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 612  375571 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 613  375572 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 614  375573 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 615  375574 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 616  375575 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 617  375576 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 618  375577 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 619  375578 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 620  375579 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 621  375580 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 622  375581 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 623  375582 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 624  375583 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 625  375584 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 626  375585 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 627  375586 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 628  375587 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 629  375588 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 630  375589 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 631  375590 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 632  375591 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 633  375592 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 634  375593 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 635  375594 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 636  375595 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 637  375596 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 638  375597 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 639  375598 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 640  375599 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 641  375600 2019 Guadalajara        Belenes Suc. Belenes    7738  ABARR
## 642  375601 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 643  375602 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 644  375603 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 645  375604 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 646  375605 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 647  375606 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 648  375607 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 649  375608 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 650  375609 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 651  375610 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 652  375611 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 653  375612 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 654  375613 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 655  375614 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 656  375615 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 657  375616 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 658  375617 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 659  375618 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 660  375619 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 661  375620 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 662  375621 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 663  375622 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 664  375623 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 665  375624 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 666  375625 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 667  375626 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 668  375627 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 669  375628 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 670  375629 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 671  375630 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 672  375631 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 673  375632 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 674  375633 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 675  375634 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 676  375635 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 677  375636 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 678  375637 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 679  375638 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 680  375639 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 681  375640 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 682  375641 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 683  375642 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 684  375643 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 685  375644 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 686  375645 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 687  375646 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 688  375647 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 689  375648 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 690  375649 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 691  375650 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 692  375651 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 693  375652 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 694  375653 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 695  375654 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 696  375655 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 697  375656 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 698  375657 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 699  375658 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 700  375659 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 701  375660 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 702  375661 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 703  375662 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 704  375663 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 705  375664 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 706  375665 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 707  375666 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 708  375667 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 709  375668 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 710  375669 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 711  375670 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 712  375671 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 713  375672 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 714  375673 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 715  375674 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 716  375675 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 717  375676 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 718  375677 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 719  375678 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 720  375679 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 721  375680 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 722  375681 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 723  375682 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 724  375683 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 725  375684 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 726  375685 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 727  375686 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 728  375687 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 729  375688 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 730  375689 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 731  375690 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 732  375691 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 733  375692 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 734  375693 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 735  375694 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 736  375695 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 737  375696 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 738  375697 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 739  375698 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 740  375699 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 741  375700 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 742  375701 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 743  375702 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 744  375703 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 745  375704 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 746  375705 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 747  375706 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 748  375707 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 749  375708 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 750  375709 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 751  375710 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 752  375711 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 753  375712 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 754  375713 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 755  375714 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 756  375715 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 757  375716 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 758  375717 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 759  375718 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 760  375719 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 761  375720 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 762  375721 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 763  375722 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 764  375723 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 765  375724 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 766  375725 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 767  375726 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 768  375727 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 769  375728 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 770  375729 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 771  375730 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 772  375731 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 773  375732 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 774  375733 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 775  375734 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 776  375735 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 777  375736 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 778  375737 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 779  375738 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 780  375739 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 781  375740 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 782  375741 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 783  375742 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 784  375743 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 785  375744 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 786  375745 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 787  375746 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 788  375747 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 789  375748 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 790  375749 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 791  375750 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 792  375751 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 793  375752 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 794  375753 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 795  375754 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 796  375755 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 797  375756 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 798  375757 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 799  375758 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 800  375759 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 801  375760 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 802  375761 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 803  375762 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 804  375763 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 805  375764 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 806  375765 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 807  375766 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 808  375767 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 809  375768 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 810  375769 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 811  375770 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 812  375771 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 813  375772 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 814  375773 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 815  375774 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 816  375775 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 817  375776 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 818  375777 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 819  375778 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 820  375779 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 821  375780 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 822  375781 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 823  375782 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 824  375783 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 825  375784 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 826  375785 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 827  375786 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 828  375787 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 829  375788 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 830  375789 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 831  375790 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 832  375791 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 833  375792 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 834  375793 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 835  375794 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 836  375795 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 837  375796 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 838  375797 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 839  375798 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 840  375799 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 841  375800 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 842  375801 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 843  375802 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 844  375803 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 845  375804 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 846  375805 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 847  375806 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 848  375807 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 849  375808 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 850  375809 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 851  375810 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 852  375811 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 853  375812 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 854  375813 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 855  375814 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 856  375815 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 857  375816 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 858  375817 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 859  375818 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 860  375819 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 861  375820 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 862  375821 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 863  375822 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 864  375823 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 865  375824 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 866  375825 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 867  375826 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 868  375827 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 869  375828 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 870  375829 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 871  375830 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 872  375831 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 873  375832 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 874  375833 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 875  375834 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 876  375835 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 877  375836 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 878  375837 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 879  375838 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 880  375839 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 881  375840 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 882  375841 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 883  375842 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 884  375843 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 885  375844 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 886  375845 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 887  375846 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 888  375847 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 889  375848 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 890  375849 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 891  375850 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 892  375851 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 893  375852 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 894  375853 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 895  375854 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 896  375855 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 897  375856 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 898  375857 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 899  375858 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 900  375859 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 901  375860 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 902  375861 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 903  375862 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 904  375863 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 905  375864 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 906  375865 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 907  375866 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 908  375867 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 909  375868 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 910  375869 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 911  375870 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 912  375871 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 913  375872 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 914  375873 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 915  375874 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 916  375875 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 917  375876 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 918  375877 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 919  375878 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 920  375879 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 921  375880 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 922  375881 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 923  375882 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 924  375883 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 925  375884 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 926  375885 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 927  375886 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 928  375887 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 929  375888 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 930  375889 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 931  375890 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 932  375891 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 933  375892 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 934  375893 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 935  375894 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 936  375895 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 937  375896 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 938  375897 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 939  375898 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 940  375899 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 941  375900 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 942  375901 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 943  375902 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 944  375903 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 945  375904 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 946  375905 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 947  375906 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 948  375907 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 949  375908 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 950  375909 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 951  375910 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 952  375911 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 953  375912 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 954  375913 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 955  375914 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 956  375915 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 957  375916 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 958  375917 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 959  375918 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 960  375919 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 961  375920 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 962  375921 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 963  375922 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 964  375923 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 965  375924 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 966  375925 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 967  375926 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 968  375927 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 969  375928 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 970  375929 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 971  375930 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 972  375931 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 973  375932 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 974  375933 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 975  375934 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 976  375935 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 977  375936 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 978  375937 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 979  375938 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 980  375939 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 981  375940 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 982  375941 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 983  375942 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 984  375943 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 985  375944 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 986  375945 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 987  375946 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 988  375947 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 989  375948 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 990  375949 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 991  375950 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 992  375951 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 993  375952 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 994  375953 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 995  375954 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 996  375955 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 997  375956 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 998  375957 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 999  375958 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1000 375959 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1001 375960 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1002 375961 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1003 375962 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1004 375963 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1005 375964 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1006 375965 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1007 375966 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1008 375967 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1009 375968 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1010 375969 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1011 375970 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1012 375971 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1013 375972 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1014 375973 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1015 375974 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1016 375975 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1017 375976 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1018 375977 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1019 375978 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1020 375979 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1021 375980 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1022 375981 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1023 375982 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1024 375983 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1025 375984 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1026 375985 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1027 375986 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1028 375987 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1029 375988 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1030 375989 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1031 375990 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1032 375991 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1033 375992 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1034 375993 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1035 375994 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1036 375995 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1037 375996 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1038 375997 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1039 375998 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1040 375999 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1041 376000 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1042 376001 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1043 376002 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1044 376003 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1045 376004 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1046 376005 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1047 376006 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1048 376007 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1049 376008 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1050 376009 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1051 376010 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1052 376011 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1053 376012 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1054 376013 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1055 376014 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1056 376015 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1057 376016 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1058 376017 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1059 376018 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1060 376019 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1061 376020 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1062 376021 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1063 376022 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1064 376023 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1065 376024 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1066 376025 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1067 376026 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1068 376027 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1069 376028 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1070 376029 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1071 376030 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1072 376031 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1073 376032 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1074 376033 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1075 376034 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1076 376035 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1077 376036 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1078 376037 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1079 376038 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1080 376039 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1081 376040 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1082 376041 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1083 376042 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1084 376043 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1085 376044 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1086 376045 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1087 376046 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1088 376047 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1089 376048 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1090 376049 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1091 376050 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1092 376051 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1093 376052 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1094 376053 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1095 376054 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1096 376055 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 1097 376056 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1098 376057 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1099 376058 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1100 376059 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1101 376060 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1102 376061 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1103 376062 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1104 376063 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1105 376064 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1106 376065 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1107 376066 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1108 376067 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1109 376068 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1110 376069 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1111 376070 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1112 376071 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1113 376072 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1114 376073 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1115 376074 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1116 376075 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1117 376076 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1118 376077 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1119 376078 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1120 376079 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1121 376080 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1122 376081 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1123 376082 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1124 376083 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1125 376084 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1126 376085 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1127 376086 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1128 376087 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1129 376088 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1130 376089 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1131 376090 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1132 376091 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1133 376092 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1134 376093 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1135 376094 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1136 376095 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1137 376096 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1138 376097 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1139 376098 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1140 376099 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1141 376100 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1142 376101 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1143 376102 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1144 376103 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1145 376104 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1146 376105 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1147 376106 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1148 376107 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1149 376108 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1150 376109 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1151 376110 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1152 376111 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1153 376112 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1154 376113 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1155 376114 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1156 376115 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1157 376116 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1158 376117 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1159 376118 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1160 376119 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1161 376120 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1162 376121 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1163 376122 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 1164 376123 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1165 376124 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1166 376125 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1167 376126 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1168 376127 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1169 376128 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1170 376129 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1171 376130 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1172 376131 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1173 376132 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1174 376133 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1175 376134 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1176 376135 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1177 376136 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1178 376137 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1179 376138 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1180 376139 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1181 376140 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1182 376141 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1183 376142 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1184 376143 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1185 376144 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1186 376145 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1187 376146 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1188 376147 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1189 376148 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1190 376149 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1191 376150 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1192 376151 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1193 376152 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1194 376153 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1195 376154 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1196 376155 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1197 376156 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1198 376157 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1199 376158 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1200 376159 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1201 376160 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1202 376161 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1203 376162 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1204 376163 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1205 376164 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1206 376165 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1207 376166 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1208 376167 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1209 376168 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1210 376169 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1211 376170 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1212 376171 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1213 376172 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1214 376173 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1215 376174 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1216 376175 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1217 376176 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1218 376177 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1219 376178 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1220 376179 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1221 376180 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1222 376181 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1223 376182 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1224 376183 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1225 376184 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1226 376185 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1227 376186 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1228 376187 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1229 376188 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1230 376189 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1231 376190 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1232 376191 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1233 376192 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1234 376193 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1235 376194 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1236 376195 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1237 376196 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1238 376197 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1239 376198 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1240 376199 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1241 376200 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1242 376201 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1243 376202 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1244 376203 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1245 376204 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1246 376205 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1247 376206 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1248 376207 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1249 376208 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1250 376209 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1251 376210 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1252 376211 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1253 376212 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1254 376213 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1255 376214 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1256 376215 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1257 376216 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1258 376217 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1259 376218 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1260 376219 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1261 376220 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1262 376221 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1263 376222 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1264 376223 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1265 376224 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1266 376225 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1267 376226 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1268 376227 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1269 376228 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1270 376229 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1271 376230 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1272 376231 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1273 376232 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1274 376233 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1275 376234 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1276 376235 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1277 376236 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1278 376237 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1279 376238 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1280 376239 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1281 376240 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1282 376241 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1283 376242 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1284 376243 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1285 376244 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1286 376245 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1287 376246 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1288 376247 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1289 376248 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1290 376249 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1291 376250 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1292 376251 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1293 376252 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1294 376253 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1295 376254 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1296 376255 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1297 376256 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1298 376257 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1299 376258 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1300 376259 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1301 376260 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1302 376261 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1303 376262 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1304 376263 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1305 376264 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1306 376265 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1307 376266 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1308 376267 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1309 376268 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1310 376269 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1311 376270 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1312 376271 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1313 376272 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1314 376273 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1315 376274 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1316 376275 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1317 376276 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1318 376277 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1319 376278 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1320 376279 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1321 376280 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1322 376281 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1323 376282 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1324 376283 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1325 376284 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1326 376285 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1327 376286 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1328 376287 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1329 376288 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1330 376289 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1331 376290 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1332 376291 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1333 376292 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1334 376293 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1335 376294 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1336 376295 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1337 376296 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1338 376297 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1339 376298 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1340 376299 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1341 376300 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1342 376301 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1343 376302 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1344 376303 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1345 376304 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1346 376305 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1347 376306 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1348 376307 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1349 376308 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 1350 376309 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1351 376310 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1352 376311 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1353 376312 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1354 376313 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1355 376314 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1356 376315 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1357 376316 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1358 376317 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1359 376318 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1360 376319 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1361 376320 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1362 376321 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1363 376322 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1364 376323 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1365 376324 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1366 376325 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1367 376326 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1368 376327 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1369 376328 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1370 376329 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1371 376330 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1372 376331 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1373 376332 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1374 376333 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1375 376334 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1376 376335 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1377 376336 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1378 376337 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1379 376338 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1380 376339 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1381 376340 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1382 376341 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1383 376342 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1384 376343 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1385 376344 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1386 376345 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1387 376346 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1388 376347 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1389 376348 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1390 376349 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1391 376350 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1392 376351 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1393 376352 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1394 376353 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1395 376354 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1396 376355 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1397 376356 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1398 376357 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1399 376358 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1400 376359 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1401 376360 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1402 376361 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1403 376362 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1404 376363 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1405 376364 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1406 376365 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1407 376366 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1408 376367 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1409 376368 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1410 376369 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1411 376370 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1412 376371 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1413 376372 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1414 376373 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1415 376374 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1416 376375 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1417 376376 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1418 376377 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 1419 376378 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1420 376379 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1421 376380 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1422 376381 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1423 376382 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1424 376383 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1425 376384 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1426 376385 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1427 376386 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1428 376387 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1429 376388 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1430 376389 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1431 376390 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1432 376391 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1433 376392 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1434 376393 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1435 376394 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1436 376395 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1437 376396 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1438 376397 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1439 376398 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1440 376399 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1441 376400 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1442 376401 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1443 376402 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1444 376403 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1445 376404 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1446 376405 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1447 376406 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1448 376407 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1449 376408 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1450 376409 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1451 376410 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1452 376411 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1453 376412 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1454 376413 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1455 376414 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1456 376415 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1457 376416 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1458 376417 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1459 376418 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1460 376419 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1461 376420 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1462 376421 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1463 376422 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1464 376423 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1465 376424 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1466 376425 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1467 376426 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1468 376427 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1469 376428 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1470 376429 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1471 376430 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1472 376431 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1473 376432 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1474 376433 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1475 376434 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1476 376435 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1477 376436 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1478 376437 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1479 376438 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1480 376439 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1481 376440 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1482 376441 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1483 376442 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1484 376443 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1485 376444 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1486 376445 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1487 376446 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1488 376447 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1489 376448 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1490 376449 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1491 376450 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1492 376451 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1493 376452 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1494 376453 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1495 376454 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1496 376455 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1497 376456 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1498 376457 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1499 376458 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1500 376459 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1501 376460 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1502 376461 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1503 376462 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1504 376463 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1505 376464 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1506 376465 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1507 376466 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1508 376467 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1509 376468 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1510 376469 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1511 376470 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1512 376471 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1513 376472 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1514 376473 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1515 376474 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1516 376475 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1517 376476 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 1518 376477 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1519 376478 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1520 376479 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1521 376480 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1522 376481 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1523 376482 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1524 376483 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1525 376484 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1526 376485 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1527 376486 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1528 376487 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1529 376488 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1530 376489 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1531 376490 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1532 376491 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1533 376492 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1534 376493 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1535 376494 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1536 376495 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1537 376496 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1538 376497 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1539 376498 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1540 376499 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1541 376500 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1542 376501 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1543 376502 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1544 376503 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1545 376504 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1546 376505 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1547 376506 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1548 376507 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1549 376508 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1550 376509 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1551 376510 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1552 376511 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1553 376512 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1554 376513 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1555 376514 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1556 376515 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1557 376516 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1558 376517 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1559 376518 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1560 376519 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1561 376520 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1562 376521 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1563 376522 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1564 376523 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1565 376524 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1566 376525 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1567 376526 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1568 376527 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1569 376528 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1570 376529 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1571 376530 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1572 376531 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1573 376532 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1574 376533 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1575 376534 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1576 376535 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1577 376536 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1578 376537 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1579 376538 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1580 376539 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1581 376540 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1582 376541 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1583 376542 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1584 376543 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1585 376544 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1586 376545 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1587 376546 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1588 376547 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1589 376548 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1590 376549 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1591 376550 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1592 376551 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1593 376552 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1594 376553 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1595 376554 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1596 376555 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1597 376556 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1598 376557 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1599 376558 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1600 376559 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1601 376560 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1602 376561 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1603 376562 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1604 376563 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 1605 376564 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1606 376565 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1607 376566 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1608 376567 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1609 376568 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1610 376569 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1611 376570 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1612 376571 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1613 376572 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1614 376573 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1615 376574 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1616 376575 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1617 376576 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1618 376577 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1619 376578 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1620 376579 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1621 376580 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1622 376581 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1623 376582 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1624 376583 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1625 376584 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1626 376585 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1627 376586 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1628 376587 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1629 376588 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1630 376589 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1631 376590 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1632 376591 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1633 376592 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1634 376593 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1635 376594 2019 Guadalajara        Belenes Suc. Belenes    8069  MARIA
## 1636 376595 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1637 376596 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1638 376597 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1639 376598 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1640 376599 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1641 376600 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1642 376601 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1643 376602 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1644 376603 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1645 376604 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1646 376605 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1647 376606 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1648 376607 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1649 376608 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1650 376609 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1651 376610 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1652 376611 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1653 376612 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1654 376613 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1655 376614 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1656 376615 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1657 376616 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1658 376617 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1659 376618 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1660 376619 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1661 376620 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1662 376621 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1663 376622 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1664 376623 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1665 376624 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1666 376625 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1667 376626 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1668 376627 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1669 376628 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1670 376629 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1671 376630 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1672 376631 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1673 376632 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1674 376633 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1675 376634 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1676 376635 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1677 376636 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1678 376637 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1679 376638 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1680 376639 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1681 376640 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1682 376641 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1683 376642 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1684 376643 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1685 376644 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1686 376645 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1687 376646 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1688 376647 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1689 376648 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1690 376649 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1691 376650 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1692 376651 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1693 376652 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1694 376653 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1695 376654 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1696 376655 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1697 376656 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1698 376657 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1699 376658 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1700 376659 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1701 376660 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1702 376661 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1703 376662 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1704 376663 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1705 376664 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1706 376665 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1707 376666 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1708 376667 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1709 376668 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1710 376669 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1711 376670 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1712 376671 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1713 376672 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1714 376673 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1715 376674 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1716 376675 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1717 376676 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1718 376677 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1719 376678 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1720 376679 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1721 376680 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 1722 376681 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1723 376682 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1724 376683 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1725 376684 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1726 376685 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1727 376686 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1728 376687 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1729 376688 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1730 376689 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1731 376690 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1732 376691 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1733 376692 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1734 376693 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1735 376694 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1736 376695 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1737 376696 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1738 376697 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1739 376698 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1740 376699 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1741 376700 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1742 376701 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1743 376702 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1744 376703 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1745 376704 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1746 376705 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1747 376706 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1748 376707 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1749 376708 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1750 376709 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1751 376710 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1752 376711 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1753 376712 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1754 376713 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1755 376714 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1756 376715 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1757 376716 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1758 376717 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1759 376718 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1760 376719 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1761 376720 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1762 376721 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1763 376722 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1764 376723 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1765 376724 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1766 376725 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1767 376726 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1768 376727 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1769 376728 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1770 376729 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1771 376730 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1772 376731 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1773 376732 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1774 376733 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1775 376734 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1776 376735 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1777 376736 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1778 376737 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1779 376738 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1780 376739 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1781 376740 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1782 376741 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1783 376742 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1784 376743 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1785 376744 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1786 376745 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1787 376746 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1788 376747 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1789 376748 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1790 376749 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1791 376750 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1792 376751 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1793 376752 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1794 376753 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1795 376754 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1796 376755 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1797 376756 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1798 376757 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1799 376758 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1800 376759 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1801 376760 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1802 376761 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1803 376762 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1804 376763 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1805 376764 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1806 376765 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1807 376766 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1808 376767 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1809 376768 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1810 376769 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1811 376770 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1812 376771 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1813 376772 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1814 376773 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1815 376774 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1816 376775 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1817 376776 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1818 376777 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1819 376778 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1820 376779 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1821 376780 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1822 376781 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1823 376782 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1824 376783 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1825 376784 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1826 376785 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1827 376786 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1828 376787 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1829 376788 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1830 376789 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1831 376790 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1832 376791 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1833 376792 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1834 376793 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1835 376794 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1836 376795 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1837 376796 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1838 376797 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1839 376798 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1840 376799 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1841 376800 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1842 376801 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1843 376802 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1844 376803 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1845 376804 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1846 376805 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1847 376806 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1848 376807 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1849 376808 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1850 376809 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1851 376810 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1852 376811 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1853 376812 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1854 376813 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1855 376814 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1856 376815 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1857 376816 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1858 376817 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1859 376818 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1860 376819 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1861 376820 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1862 376821 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1863 376822 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1864 376823 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1865 376824 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1866 376825 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1867 376826 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1868 376827 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1869 376828 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1870 376829 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1871 376830 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 1872 376831 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1873 376832 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1874 376833 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1875 376834 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1876 376835 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1877 376836 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1878 376837 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1879 376838 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1880 376839 2019 Guadalajara        Belenes Suc. Belenes    8114  MARIA
## 1881 376840 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1882 376841 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1883 376842 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1884 376843 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1885 376844 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1886 376845 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1887 376846 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1888 376847 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1889 376848 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1890 376849 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1891 376850 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1892 376851 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1893 376852 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1894 376853 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1895 376854 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1896 376855 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1897 376856 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1898 376857 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1899 376858 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1900 376859 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1901 376860 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1902 376861 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1903 376862 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1904 376863 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1905 376864 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1906 376865 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1907 376866 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1908 376867 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1909 376868 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1910 376869 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1911 376870 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1912 376871 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1913 376872 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1914 376873 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1915 376874 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1916 376875 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1917 376876 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1918 376877 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1919 376878 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1920 376879 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1921 376880 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1922 376881 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1923 376882 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1924 376883 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1925 376884 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1926 376885 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1927 376886 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1928 376887 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1929 376888 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1930 376889 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1931 376890 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1932 376891 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1933 376892 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1934 376893 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1935 376894 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1936 376895 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1937 376896 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1938 376897 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1939 376898 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1940 376899 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1941 376900 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1942 376901 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1943 376902 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1944 376903 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1945 376904 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1946 376905 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1947 376906 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1948 376907 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1949 376908 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1950 376909 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1951 376910 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1952 376911 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1953 376912 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1954 376913 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1955 376914 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1956 376915 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1957 376916 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1958 376917 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1959 376918 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1960 376919 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1961 376920 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1962 376921 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1963 376922 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1964 376923 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1965 376924 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1966 376925 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1967 376926 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1968 376927 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1969 376928 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1970 376929 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1971 376930 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1972 376931 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1973 376932 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1974 376933 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1975 376934 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1976 376935 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1977 376936 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1978 376937 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1979 376938 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1980 376939 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1981 376940 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1982 376941 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1983 376942 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1984 376943 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1985 376944 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1986 376945 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1987 376946 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1988 376947 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1989 376948 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1990 376949 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1991 376950 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1992 376951 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1993 376952 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1994 376953 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1995 376954 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1996 376955 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1997 376956 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1998 376957 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1999 376958 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2000 376959 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2001 376960 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2002 376961 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2003 376962 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2004 376963 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2005 376964 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2006 376965 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2007 376966 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2008 376967 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2009 376968 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2010 376969 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2011 376970 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2012 376971 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2013 376972 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2014 376973 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2015 376974 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2016 376975 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2017 376976 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2018 376977 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2019 376978 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2020 376979 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2021 376980 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2022 376981 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2023 376982 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2024 376983 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2025 376984 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2026 376985 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2027 376986 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2028 376987 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2029 376988 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2030 376989 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2031 376990 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2032 376991 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2033 376992 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2034 376993 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2035 376994 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2036 376995 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2037 376996 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2038 376997 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2039 376998 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2040 376999 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2041 377000 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2042 377001 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2043 377002 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2044 377003 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2045 377004 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2046 377005 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2047 377006 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2048 377007 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2049 377008 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2050 377009 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2051 377010 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2052 377011 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2053 377012 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2054 377013 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2055 377014 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2056 377015 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2057 377016 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2058 377017 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2059 377018 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2060 377019 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2061 377020 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2062 377021 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2063 377022 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2064 377023 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2065 377024 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2066 377025 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2067 377026 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2068 377027 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2069 377028 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2070 377029 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2071 377030 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2072 377031 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2073 377032 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2074 377033 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2075 377034 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2076 377035 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2077 377036 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2078 377037 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2079 377038 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2080 377039 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2081 377040 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2082 377041 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2083 377042 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2084 377043 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2085 377044 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2086 377045 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2087 377046 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2088 377047 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2089 377048 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2090 377049 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2091 377050 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2092 377051 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2093 377052 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2094 377053 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2095 377054 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2096 377055 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2097 377056 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2098 377057 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2099 377058 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2100 377059 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2101 377060 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2102 377061 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2103 377062 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2104 377063 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2105 377064 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2106 377065 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2107 377066 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2108 377067 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2109 377068 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2110 377069 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2111 377070 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2112 377071 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2113 377072 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2114 377073 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2115 377074 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2116 377075 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2117 377076 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2118 377077 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2119 377078 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2120 377079 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2121 377080 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2122 377081 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2123 377082 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2124 377083 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2125 377084 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2126 377085 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2127 377086 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2128 377087 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 2129 377088 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2130 377089 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2131 377090 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2132 377091 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2133 377092 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2134 377093 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2135 377094 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2136 377095 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2137 377096 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2138 377097 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2139 377098 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2140 377099 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2141 377100 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2142 377101 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2143 377102 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2144 377103 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2145 377104 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2146 377105 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2147 377106 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2148 377107 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2149 377108 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2150 377109 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2151 377110 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2152 377111 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2153 377112 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2154 377113 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2155 377114 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2156 377115 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2157 377116 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2158 377117 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2159 377118 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2160 377119 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2161 377120 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2162 377121 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2163 377122 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2164 377123 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2165 377124 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2166 377125 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2167 377126 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2168 377127 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2169 377128 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2170 377129 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2171 377130 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2172 377131 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2173 377132 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2174 377133 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2175 377134 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2176 377135 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2177 377136 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2178 377137 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2179 377138 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2180 377139 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2181 377140 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2182 377141 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2183 377142 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2184 377143 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2185 377144 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2186 377145 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2187 377146 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2188 377147 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2189 377148 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2190 377149 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2191 377150 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2192 377151 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2193 377152 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2194 377153 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2195 377154 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2196 377155 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2197 377156 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2198 377157 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2199 377158 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2200 377159 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2201 377160 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2202 377161 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2203 377162 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2204 377163 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2205 377164 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2206 377165 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2207 377166 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2208 377167 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2209 377168 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2210 377169 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2211 377170 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2212 377171 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2213 377172 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2214 377173 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2215 377174 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2216 377175 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2217 377176 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2218 377177 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2219 377178 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2220 377179 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2221 377180 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2222 377181 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2223 377182 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2224 377183 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2225 377184 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2226 377185 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2227 377186 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2228 377187 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2229 377188 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2230 377189 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2231 377190 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2232 377191 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2233 377192 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2234 377193 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2235 377194 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2236 377195 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2237 377196 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2238 377197 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2239 377198 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2240 377199 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2241 377200 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2242 377201 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2243 377202 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2244 377203 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2245 377204 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2246 377205 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2247 377206 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2248 377207 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2249 377208 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2250 377209 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2251 377210 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2252 377211 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2253 377212 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2254 377213 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2255 377214 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2256 377215 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2257 377216 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2258 377217 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2259 377218 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2260 377219 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2261 377220 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2262 377221 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2263 377222 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2264 377223 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2265 377224 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2266 377225 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2267 377226 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2268 377227 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2269 377228 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2270 377229 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2271 377230 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2272 377231 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2273 377232 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2274 377233 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2275 377234 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2276 377235 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2277 377236 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2278 377237 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2279 377238 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2280 377239 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2281 377240 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2282 377241 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2283 377242 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2284 377243 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2285 377244 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2286 377245 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2287 377246 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2288 377247 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2289 377248 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2290 377249 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2291 377250 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2292 377251 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2293 377252 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2294 377253 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2295 377254 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2296 377255 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2297 377256 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2298 377257 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2299 377258 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2300 377259 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2301 377260 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2302 377261 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2303 377262 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2304 377263 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2305 377264 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2306 377265 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2307 377266 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2308 377267 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2309 377268 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2310 377269 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2311 377270 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2312 377271 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2313 377272 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2314 377273 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2315 377274 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2316 377275 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2317 377276 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2318 377277 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2319 377278 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2320 377279 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2321 377280 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2322 377281 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2323 377282 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2324 377283 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2325 377284 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2326 377285 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2327 377286 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2328 377287 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2329 377288 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2330 377289 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2331 377290 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2332 377291 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2333 377292 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2334 377293 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2335 377294 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2336 377295 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2337 377296 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2338 377297 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2339 377298 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2340 377299 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2341 377300 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2342 377301 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2343 377302 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2344 377303 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2345 377304 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2346 377305 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2347 377306 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2348 377307 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2349 377308 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2350 377309 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2351 377310 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2352 377311 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2353 377312 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2354 377313 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2355 377314 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2356 377315 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2357 377316 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2358 377317 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2359 377318 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2360 377319 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2361 377320 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2362 377321 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2363 377322 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2364 377323 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2365 377324 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2366 377325 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2367 377326 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2368 377327 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2369 377328 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2370 377329 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2371 377330 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2372 377331 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2373 377332 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2374 377333 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2375 377334 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2376 377335 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2377 377336 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2378 377337 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2379 377338 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2380 377339 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2381 377340 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2382 377341 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2383 377342 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2384 377343 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2385 377344 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2386 377345 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2387 377346 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2388 377347 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2389 377348 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2390 377349 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2391 377350 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2392 377351 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2393 377352 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2394 377353 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2395 377354 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2396 377355 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2397 377356 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2398 377357 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2399 377358 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2400 377359 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2401 377360 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2402 377361 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2403 377362 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2404 377363 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2405 377364 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2406 377365 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2407 377366 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2408 377367 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2409 377368 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2410 377369 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 2411 377370 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2412 377371 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2413 377372 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2414 377373 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2415 377374 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2416 377375 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2417 377376 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2418 377377 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2419 377378 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2420 377379 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2421 377380 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2422 377381 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2423 377382 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2424 377383 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2425 377384 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2426 377385 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2427 377386 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2428 377387 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2429 377388 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2430 377389 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2431 377390 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2432 377391 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2433 377392 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2434 377393 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2435 377394 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2436 377395 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2437 377396 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2438 377397 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2439 377398 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2440 377399 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2441 377400 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2442 377401 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2443 377402 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2444 377403 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2445 377404 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2446 377405 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2447 377406 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2448 377407 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2449 377408 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2450 377409 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2451 377410 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2452 377411 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2453 377412 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2454 377413 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2455 377414 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2456 377415 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2457 377416 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2458 377417 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2459 377418 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2460 377419 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2461 377420 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2462 377421 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2463 377422 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2464 377423 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2465 377424 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2466 377425 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2467 377426 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2468 377427 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2469 377428 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2470 377429 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2471 377430 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2472 377431 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2473 377432 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2474 377433 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2475 377434 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2476 377435 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2477 377436 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2478 377437 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2479 377438 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2480 377439 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2481 377440 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2482 377441 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2483 377442 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2484 377443 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2485 377444 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2486 377445 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2487 377446 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2488 377447 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2489 377448 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2490 377449 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2491 377450 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2492 377451 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2493 377452 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2494 377453 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2495 377454 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2496 377455 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2497 377456 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2498 377457 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2499 377458 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2500 377459 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2501 377460 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2502 377461 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2503 377462 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2504 377463 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2505 377464 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2506 377465 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2507 377466 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2508 377467 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2509 377468 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2510 377469 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2511 377470 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2512 377471 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2513 377472 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2514 377473 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2515 377474 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2516 377475 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2517 377476 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2518 377477 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2519 377478 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2520 377479 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2521 377480 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2522 377481 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2523 377482 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2524 377483 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2525 377484 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2526 377485 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2527 377486 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2528 377487 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2529 377488 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2530 377489 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2531 377490 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2532 377491 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2533 377492 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2534 377493 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2535 377494 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2536 377495 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2537 377496 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2538 377497 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2539 377498 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2540 377499 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2541 377500 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2542 377501 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2543 377502 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2544 377503 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2545 377504 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2546 377505 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2547 377506 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2548 377507 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2549 377508 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2550 377509 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2551 377510 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2552 377511 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2553 377512 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2554 377513 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2555 377514 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2556 377515 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2557 377516 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2558 377517 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2559 377518 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2560 377519 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2561 377520 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2562 377521 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2563 377522 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2564 377523 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2565 377524 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2566 377525 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2567 377526 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2568 377527 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2569 377528 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2570 377529 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2571 377530 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2572 377531 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2573 377532 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2574 377533 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2575 377534 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2576 377535 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2577 377536 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2578 377537 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2579 377538 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2580 377539 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2581 377540 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2582 377541 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2583 377542 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2584 377543 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2585 377544 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2586 377545 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2587 377546 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2588 377547 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2589 377548 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2590 377549 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2591 377550 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2592 377551 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2593 377552 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2594 377553 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2595 377554 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2596 377555 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2597 377556 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2598 377557 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2599 377558 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2600 377559 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2601 377560 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2602 377561 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2603 377562 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2604 377563 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2605 377564 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2606 377565 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2607 377566 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2608 377567 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2609 377568 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2610 377569 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2611 377570 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2612 377571 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2613 377572 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2614 377573 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2615 377574 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2616 377575 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2617 377576 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2618 377577 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2619 377578 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2620 377579 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2621 377580 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2622 377581 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2623 377582 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2624 377583 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2625 377584 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2626 377585 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2627 377586 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2628 377587 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2629 377588 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2630 377589 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2631 377590 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2632 377591 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2633 377592 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2634 377593 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2635 377594 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2636 377595 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2637 377596 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2638 377597 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2639 377598 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2640 377599 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2641 377600 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2642 377601 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2643 377602 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2644 377603 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2645 377604 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2646 377605 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2647 377606 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2648 377607 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2649 377608 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2650 377609 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2651 377610 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2652 377611 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2653 377612 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2654 377613 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2655 377614 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2656 377615 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2657 377616 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2658 377617 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2659 377618 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2660 377619 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2661 377620 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2662 377621 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2663 377622 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2664 377623 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2665 377624 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2666 377625 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2667 377626 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2668 377627 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2669 377628 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2670 377629 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2671 377630 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2672 377631 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2673 377632 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2674 377633 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2675 377634 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2676 377635 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2677 377636 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2678 377637 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2679 377638 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2680 377639 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2681 377640 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2682 377641 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2683 377642 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2684 377643 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2685 377644 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2686 377645 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2687 377646 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2688 377647 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2689 377648 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2690 377649 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2691 377650 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2692 377651 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2693 377652 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2694 377653 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2695 377654 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2696 377655 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2697 377656 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2698 377657 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2699 377658 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2700 377659 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2701 377660 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2702 377661 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2703 377662 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2704 377663 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2705 377664 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2706 377665 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2707 377666 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2708 377667 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2709 377668 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2710 377669 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2711 377670 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2712 377671 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2713 377672 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2714 377673 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2715 377674 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2716 377675 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2717 377676 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2718 377677 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2719 377678 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2720 377679 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2721 377680 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2722 377681 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2723 377682 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2724 377683 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2725 377684 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2726 377685 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2727 377686 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2728 377687 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2729 377688 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2730 377689 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2731 377690 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2732 377691 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2733 377692 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2734 377693 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2735 377694 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2736 377695 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2737 377696 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2738 377697 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2739 377698 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2740 377699 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2741 377700 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2742 377701 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2743 377702 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2744 377703 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2745 377704 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2746 377705 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2747 377706 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2748 377707 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2749 377708 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2750 377709 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2751 377710 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2752 377711 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2753 377712 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2754 377713 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2755 377714 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2756 377715 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2757 377716 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2758 377717 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2759 377718 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2760 377719 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2761 377720 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2762 377721 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2763 377722 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2764 377723 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2765 377724 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2766 377725 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2767 377726 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2768 377727 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2769 377728 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2770 377729 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2771 377730 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2772 377731 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2773 377732 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2774 377733 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2775 377734 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2776 377735 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2777 377736 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2778 377737 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2779 377738 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2780 377739 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2781 377740 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2782 377741 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2783 377742 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2784 377743 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2785 377744 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2786 377745 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2787 377746 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2788 377747 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2789 377748 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2790 377749 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2791 377750 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2792 377751 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2793 377752 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2794 377753 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2795 377754 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2796 377755 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2797 377756 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2798 377757 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2799 377758 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2800 377759 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2801 377760 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2802 377761 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2803 377762 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2804 377763 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2805 377764 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2806 377765 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2807 377766 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2808 377767 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2809 377768 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2810 377769 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2811 377770 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2812 377771 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2813 377772 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2814 377773 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2815 377774 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2816 377775 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2817 377776 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2818 377777 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2819 377778 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2820 377779 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2821 377780 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2822 377781 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2823 377782 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2824 377783 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2825 377784 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2826 377785 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2827 377786 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2828 377787 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2829 377788 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2830 377789 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2831 377790 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2832 377791 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2833 377792 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2834 377793 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2835 377794 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2836 377795 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2837 377796 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2838 377797 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2839 377798 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2840 377799 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2841 377800 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2842 377801 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2843 377802 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2844 377803 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2845 377804 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2846 377805 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2847 377806 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2848 377807 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2849 377808 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2850 377809 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2851 377810 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2852 377811 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2853 377812 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2854 377813 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2855 377814 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2856 377815 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2857 377816 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2858 377817 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2859 377818 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2860 377819 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2861 377820 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2862 377821 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2863 377822 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2864 377823 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2865 377824 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2866 377825 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2867 377826 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2868 377827 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2869 377828 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2870 377829 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2871 377830 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2872 377831 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2873 377832 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2874 377833 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2875 377834 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2876 377835 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2877 377836 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2878 377837 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2879 377838 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2880 377839 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2881 377840 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2882 377841 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2883 377842 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2884 377843 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2885 377844 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2886 377845 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2887 377846 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2888 377847 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2889 377848 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2890 377849 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2891 377850 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2892 377851 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2893 377852 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2894 377853 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2895 377854 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2896 377855 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2897 377856 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2898 377857 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2899 377858 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2900 377859 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2901 377860 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2902 377861 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2903 377862 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2904 377863 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2905 377864 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2906 377865 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2907 377866 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2908 377867 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2909 377868 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2910 377869 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2911 377870 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2912 377871 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2913 377872 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2914 377873 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2915 377874 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2916 377875 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2917 377876 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2918 377877 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2919 377878 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2920 377879 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2921 377880 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2922 377881 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2923 377882 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2924 377883 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2925 377884 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2926 377885 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2927 377886 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2928 377887 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2929 377888 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2930 377889 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2931 377890 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2932 377891 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2933 377892 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2934 377893 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2935 377894 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2936 377895 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2937 377896 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2938 377897 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2939 377898 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2940 377899 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2941 377900 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2942 377901 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2943 377902 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2944 377903 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2945 377904 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2946 377905 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2947 377906 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2948 377907 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2949 377908 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2950 377909 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2951 377910 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2952 377911 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2953 377912 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2954 377913 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2955 377914 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2956 377915 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2957 377916 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2958 377917 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2959 377918 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2960 377919 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2961 377920 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2962 377921 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2963 377922 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2964 377923 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2965 377924 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2966 377925 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2967 377926 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2968 377927 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2969 377928 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2970 377929 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2971 377930 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2972 377931 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2973 377932 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2974 377933 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2975 377934 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2976 377935 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2977 377936 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2978 377937 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2979 377938 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2980 377939 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2981 377940 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2982 377941 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2983 377942 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2984 377943 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2985 377944 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2986 377945 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2987 377946 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2988 377947 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2989 377948 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2990 377949 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2991 377950 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2992 377951 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2993 377952 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2994 377953 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2995 377954 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2996 377955 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2997 377956 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2998 377957 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 2999 377958 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3000 377959 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3001 377960 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3002 377961 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3003 377962 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3004 377963 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3005 377964 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3006 377965 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3007 377966 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3008 377967 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3009 377968 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3010 377969 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3011 377970 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3012 377971 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3013 377972 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3014 377973 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3015 377974 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3016 377975 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3017 377976 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3018 377977 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3019 377978 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3020 377979 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3021 377980 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3022 377981 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3023 377982 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3024 377983 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3025 377984 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3026 377985 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3027 377986 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3028 377987 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3029 377988 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3030 377989 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3031 377990 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3032 377991 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3033 377992 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3034 377993 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3035 377994 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3036 377995 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3037 377996 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3038 377997 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3039 377998 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3040 377999 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3041 378000 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3042 378001 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3043 378002 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3044 378003 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3045 378004 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3046 378005 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3047 378006 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3048 378007 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3049 378008 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3050 378009 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3051 378010 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3052 378011 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3053 378012 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3054 378013 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3055 378014 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3056 378015 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3057 378016 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3058 378017 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3059 378018 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3060 378019 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3061 378020 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3062 378021 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3063 378022 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3064 378023 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3065 378024 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3066 378025 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3067 378026 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3068 378027 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3069 378028 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3070 378029 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3071 378030 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3072 378031 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3073 378032 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3074 378033 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3075 378034 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3076 378035 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3077 378036 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3078 378037 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3079 378038 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3080 378039 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3081 378040 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3082 378041 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3083 378042 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3084 378043 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3085 378044 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3086 378045 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3087 378046 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3088 378047 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3089 378048 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3090 378049 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3091 378050 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3092 378051 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3093 378052 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3094 378053 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3095 378054 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3096 378055 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3097 378056 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3098 378057 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3099 378058 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3100 378059 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3101 378060 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3102 378061 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3103 378062 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3104 378063 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3105 378064 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3106 378065 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3107 378066 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3108 378067 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3109 378068 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3110 378069 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3111 378070 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3112 378071 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3113 378072 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3114 378073 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3115 378074 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3116 378075 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3117 378076 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3118 378077 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3119 378078 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3120 378079 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3121 378080 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3122 378081 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3123 378082 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3124 378083 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 3125 378084 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3126 378085 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3127 378086 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3128 378087 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3129 378088 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3130 378089 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3131 378090 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3132 378091 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3133 378092 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3134 378093 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3135 378094 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3136 378095 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3137 378096 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3138 378097 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3139 378098 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3140 378099 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3141 378100 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3142 378101 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3143 378102 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3144 378103 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3145 378104 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3146 378105 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3147 378106 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3148 378107 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3149 378108 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3150 378109 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3151 378110 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3152 378111 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3153 378112 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3154 378113 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3155 378114 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3156 378115 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3157 378116 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3158 378117 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3159 378118 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3160 378119 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3161 378120 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3162 378121 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3163 378122 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3164 378123 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3165 378124 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3166 378125 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3167 378126 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3168 378127 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3169 378128 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3170 378129 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3171 378130 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3172 378131 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3173 378132 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3174 378133 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3175 378134 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3176 378135 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3177 378136 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3178 378137 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3179 378138 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3180 378139 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3181 378140 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3182 378141 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3183 378142 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3184 378143 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3185 378144 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3186 378145 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3187 378146 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3188 378147 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3189 378148 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3190 378149 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3191 378150 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3192 378151 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3193 378152 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3194 378153 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3195 378154 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3196 378155 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3197 378156 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3198 378157 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3199 378158 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3200 378159 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3201 378160 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3202 378161 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3203 378162 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3204 378163 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3205 378164 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3206 378165 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3207 378166 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3208 378167 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3209 378168 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3210 378169 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3211 378170 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3212 378171 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3213 378172 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3214 378173 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3215 378174 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3216 378175 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3217 378176 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3218 378177 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3219 378178 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3220 378179 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3221 378180 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3222 378181 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3223 378182 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3224 378183 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3225 378184 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3226 378185 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3227 378186 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3228 378187 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3229 378188 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3230 378189 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3231 378190 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3232 378191 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3233 378192 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3234 378193 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3235 378194 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3236 378195 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3237 378196 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3238 378197 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3239 378198 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3240 378199 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3241 378200 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3242 378201 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3243 378202 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3244 378203 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3245 378204 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3246 378205 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3247 378206 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3248 378207 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3249 378208 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3250 378209 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3251 378210 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3252 378211 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3253 378212 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3254 378213 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3255 378214 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3256 378215 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3257 378216 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3258 378217 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3259 378218 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3260 378219 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3261 378220 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3262 378221 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3263 378222 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3264 378223 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3265 378224 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3266 378225 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3267 378226 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3268 378227 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3269 378228 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3270 378229 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3271 378230 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3272 378231 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 3273 378232 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3274 378233 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3275 378234 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3276 378235 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3277 378236 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3278 378237 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3279 378238 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3280 378239 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3281 378240 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3282 378241 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3283 378242 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3284 378243 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3285 378244 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3286 378245 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3287 378246 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3288 378247 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3289 378248 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3290 378249 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3291 378250 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3292 378251 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3293 378252 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3294 378253 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3295 378254 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3296 378255 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3297 378256 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3298 378257 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3299 378258 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3300 378259 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3301 378260 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3302 378261 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3303 378262 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3304 378263 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3305 378264 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3306 378265 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3307 378266 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3308 378267 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3309 378268 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3310 378269 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3311 378270 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3312 378271 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3313 378272 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3314 378273 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3315 378274 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3316 378275 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3317 378276 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3318 378277 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3319 378278 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3320 378279 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3321 378280 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3322 378281 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3323 378282 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3324 378283 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3325 378284 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3326 378285 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3327 378286 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3328 378287 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3329 378288 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3330 378289 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3331 378290 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3332 378291 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3333 378292 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3334 378293 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3335 378294 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3336 378295 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3337 378296 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3338 378297 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3339 378298 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3340 378299 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3341 378300 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3342 378301 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3343 378302 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3344 378303 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3345 378304 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3346 378305 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3347 378306 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3348 378307 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3349 378308 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3350 378309 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3351 378310 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3352 378311 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3353 378312 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3354 378313 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3355 378314 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3356 378315 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3357 378316 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3358 378317 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3359 378318 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3360 378319 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3361 378320 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3362 378321 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3363 378322 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3364 378323 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3365 378324 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3366 378325 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3367 378326 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3368 378327 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3369 378328 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3370 378329 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3371 378330 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3372 378331 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3373 378332 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3374 378333 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3375 378334 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3376 378335 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3377 378336 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3378 378337 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3379 378338 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3380 378339 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3381 378340 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3382 378341 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3383 378342 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3384 378343 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3385 378344 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3386 378345 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3387 378346 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3388 378347 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3389 378348 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3390 378349 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3391 378350 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3392 378351 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3393 378352 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3394 378353 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3395 378354 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3396 378355 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3397 378356 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3398 378357 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3399 378358 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3400 378359 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3401 378360 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3402 378361 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3403 378362 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3404 378363 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3405 378364 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3406 378365 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3407 378366 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3408 378367 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3409 378368 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3410 378369 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3411 378370 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3412 378371 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3413 378372 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3414 378373 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3415 378374 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3416 378375 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3417 378376 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3418 378377 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3419 378378 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3420 378379 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3421 378380 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3422 378381 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3423 378382 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3424 378383 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3425 378384 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3426 378385 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3427 378386 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3428 378387 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3429 378388 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3430 378389 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3431 378390 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3432 378391 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3433 378392 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3434 378393 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 3435 378394 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3436 378395 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3437 378396 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3438 378397 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3439 378398 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3440 378399 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3441 378400 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3442 378401 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3443 378402 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3444 378403 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3445 378404 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3446 378405 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3447 378406 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3448 378407 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3449 378408 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3450 378409 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3451 378410 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3452 378411 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3453 378412 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3454 378413 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3455 378414 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3456 378415 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3457 378416 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3458 378417 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3459 378418 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3460 378419 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3461 378420 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3462 378421 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3463 378422 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3464 378423 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3465 378424 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3466 378425 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3467 378426 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3468 378427 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3469 378428 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3470 378429 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3471 378430 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3472 378431 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3473 378432 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3474 378433 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3475 378434 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3476 378435 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3477 378436 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3478 378437 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3479 378438 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3480 378439 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3481 378440 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3482 378441 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3483 378442 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3484 378443 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3485 378444 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3486 378445 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3487 378446 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3488 378447 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3489 378448 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3490 378449 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3491 378450 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3492 378451 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3493 378452 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3494 378453 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3495 378454 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3496 378455 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3497 378456 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3498 378457 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3499 378458 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3500 378459 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3501 378460 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3502 378461 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3503 378462 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3504 378463 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3505 378464 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3506 378465 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3507 378466 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3508 378467 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3509 378468 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3510 378469 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3511 378470 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3512 378471 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3513 378472 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3514 378473 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3515 378474 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3516 378475 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3517 378476 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3518 378477 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3519 378478 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3520 378479 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3521 378480 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3522 378481 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3523 378482 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3524 378483 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3525 378484 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3526 378485 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3527 378486 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3528 378487 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3529 378488 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3530 378489 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3531 378490 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3532 378491 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3533 378492 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3534 378493 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3535 378494 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3536 378495 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3537 378496 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3538 378497 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3539 378498 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3540 378499 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3541 378500 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3542 378501 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3543 378502 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3544 378503 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3545 378504 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3546 378505 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3547 378506 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3548 378507 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3549 378508 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3550 378509 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3551 378510 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3552 378511 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3553 378512 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3554 378513 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3555 378514 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3556 378515 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3557 378516 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3558 378517 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3559 378518 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3560 378519 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3561 378520 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3562 378521 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3563 378522 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3564 378523 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3565 378524 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3566 378525 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3567 378526 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3568 378527 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3569 378528 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3570 378529 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3571 378530 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3572 378531 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3573 378532 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3574 378533 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3575 378534 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3576 378535 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3577 378536 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3578 378537 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3579 378538 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3580 378539 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3581 378540 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3582 378541 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3583 378542 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3584 378543 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3585 378544 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3586 378545 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3587 378546 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3588 378547 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3589 378548 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3590 378549 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3591 378550 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3592 378551 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3593 378552 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3594 378553 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3595 378554 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3596 378555 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3597 378556 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3598 378557 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3599 378558 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3600 378559 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3601 378560 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3602 378561 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3603 378562 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3604 378563 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3605 378564 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3606 378565 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3607 378566 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3608 378567 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3609 378568 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3610 378569 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3611 378570 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3612 378571 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3613 378572 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3614 378573 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3615 378574 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3616 378575 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3617 378576 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3618 378577 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3619 378578 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3620 378579 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3621 378580 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3622 378581 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3623 378582 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3624 378583 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3625 378584 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3626 378585 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3627 378586 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3628 378587 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3629 378588 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3630 378589 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3631 378590 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3632 378591 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3633 378592 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3634 378593 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3635 378594 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3636 378595 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3637 378596 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3638 378597 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3639 378598 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3640 378599 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3641 378600 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3642 378601 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3643 378602 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3644 378603 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3645 378604 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3646 378605 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3647 378606 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3648 378607 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3649 378608 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3650 378609 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3651 378610 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3652 378611 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3653 378612 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3654 378613 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3655 378614 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3656 378615 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3657 378616 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3658 378617 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3659 378618 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3660 378619 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3661 378620 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3662 378621 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3663 378622 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3664 378623 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3665 378624 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3666 378625 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3667 378626 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3668 378627 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3669 378628 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3670 378629 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3671 378630 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3672 378631 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3673 378632 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3674 378633 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3675 378634 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3676 378635 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3677 378636 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3678 378637 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3679 378638 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3680 378639 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3681 378640 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3682 378641 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3683 378642 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3684 378643 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3685 378644 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3686 378645 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3687 378646 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3688 378647 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3689 378648 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3690 378649 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3691 378650 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3692 378651 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3693 378652 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3694 378653 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3695 378654 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3696 378655 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3697 378656 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3698 378657 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3699 378658 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3700 378659 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3701 378660 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3702 378661 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3703 378662 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3704 378663 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3705 378664 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3706 378665 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3707 378666 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3708 378667 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3709 378668 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3710 378669 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3711 378670 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3712 378671 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3713 378672 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3714 378673 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3715 378674 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3716 378675 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3717 378676 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3718 378677 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3719 378678 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3720 378679 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3721 378680 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3722 378681 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3723 378682 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3724 378683 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3725 378684 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3726 378685 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3727 378686 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3728 378687 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3729 378688 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3730 378689 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3731 378690 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3732 378691 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3733 378692 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3734 378693 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3735 378694 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3736 378695 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3737 378696 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3738 378697 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3739 378698 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3740 378699 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3741 378700 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3742 378701 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3743 378702 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3744 378703 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3745 378704 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3746 378705 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3747 378706 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3748 378707 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3749 378708 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3750 378709 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3751 378710 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3752 378711 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3753 378712 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3754 378713 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3755 378714 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3756 378715 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3757 378716 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3758 378717 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3759 378718 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3760 378719 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3761 378720 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3762 378721 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3763 378722 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3764 378723 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3765 378724 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3766 378725 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3767 378726 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3768 378727 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3769 378728 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3770 378729 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3771 378730 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3772 378731 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3773 378732 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3774 378733 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3775 378734 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3776 378735 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3777 378736 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3778 378737 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3779 378738 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3780 378739 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3781 378740 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3782 378741 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3783 378742 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3784 378743 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3785 378744 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3786 378745 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3787 378746 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3788 378747 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3789 378748 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3790 378749 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3791 378750 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3792 378751 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3793 378752 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3794 378753 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3795 378754 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3796 378755 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3797 378756 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3798 378757 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3799 378758 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3800 378759 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3801 378760 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3802 378761 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3803 378762 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3804 378763 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3805 378764 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3806 378765 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3807 378766 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3808 378767 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3809 378768 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3810 378769 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3811 378770 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3812 378771 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3813 378772 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3814 378773 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3815 378774 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3816 378775 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3817 378776 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3818 378777 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3819 378778 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3820 378779 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3821 378780 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3822 378781 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3823 378782 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3824 378783 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3825 378784 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3826 378785 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3827 378786 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3828 378787 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 3829 378788 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3830 378789 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3831 378790 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3832 378791 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3833 378792 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3834 378793 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3835 378794 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3836 378795 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3837 378796 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3838 378797 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3839 378798 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3840 378799 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3841 378800 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3842 378801 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3843 378802 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3844 378803 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3845 378804 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3846 378805 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3847 378806 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3848 378807 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3849 378808 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3850 378809 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3851 378810 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3852 378811 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3853 378812 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3854 378813 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3855 378814 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3856 378815 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3857 378816 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3858 378817 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3859 378818 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3860 378819 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3861 378820 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3862 378821 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3863 378822 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3864 378823 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3865 378824 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3866 378825 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3867 378826 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3868 378827 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3869 378828 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3870 378829 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3871 378830 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3872 378831 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3873 378832 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3874 378833 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3875 378834 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3876 378835 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3877 378836 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3878 378837 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3879 378838 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3880 378839 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3881 378840 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3882 378841 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3883 378842 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3884 378843 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3885 378844 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3886 378845 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3887 378846 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3888 378847 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3889 378848 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3890 378849 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3891 378850 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3892 378851 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3893 378852 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3894 378853 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3895 378854 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3896 378855 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3897 378856 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3898 378857 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 3899 378858 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3900 378859 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3901 378860 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3902 378861 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3903 378862 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3904 378863 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3905 378864 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3906 378865 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3907 378866 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3908 378867 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3909 378868 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3910 378869 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3911 378870 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3912 378871 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3913 378872 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3914 378873 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3915 378874 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3916 378875 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3917 378876 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3918 378877 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3919 378878 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3920 378879 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3921 378880 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3922 378881 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3923 378882 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3924 378883 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3925 378884 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3926 378885 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3927 378886 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3928 378887 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3929 378888 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3930 378889 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3931 378890 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3932 378891 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3933 378892 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3934 378893 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3935 378894 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3936 378895 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3937 378896 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3938 378897 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3939 378898 2019 Guadalajara        Belenes Suc. Belenes    8900  MARIA
## 3940 378899 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3941 378900 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3942 378901 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3943 378902 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3944 378903 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3945 378904 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3946 378905 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3947 378906 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3948 378907 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3949 378908 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3950 378909 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3951 378910 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3952 378911 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3953 378912 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3954 378913 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3955 378914 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3956 378915 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3957 378916 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3958 378917 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3959 378918 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3960 378919 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3961 378920 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3962 378921 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3963 378922 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3964 378923 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3965 378924 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3966 378925 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3967 378926 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3968 378927 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3969 378928 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3970 378929 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3971 378930 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3972 378931 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3973 378932 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3974 378933 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3975 378934 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3976 378935 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3977 378936 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3978 378937 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3979 378938 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3980 378939 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3981 378940 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3982 378941 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3983 378942 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3984 378943 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3985 378944 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3986 378945 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3987 378946 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3988 378947 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3989 378948 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3990 378949 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3991 378950 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3992 378951 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3993 378952 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3994 378953 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3995 378954 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3996 378955 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3997 378956 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3998 378957 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 3999 378958 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
##      Tamaño.Cte.Industria         Segmento.Det                Marca
## 1                  Grande         Agua Mineral    Ciel Mineralizada
## 2                  Grande         Agua Mineral      Topo Chico A.M.
## 3                  Grande         Agua Mineral      Topo Chico A.M.
## 4                  Grande      Agua Purificada Ciel Agua Purificada
## 5                  Grande      Agua Purificada Ciel Agua Purificada
## 6                  Grande      Agua Purificada Ciel Agua Purificada
## 7                  Grande      Agua Purificada Ciel Agua Purificada
## 8                  Grande      Agua Saborizada          Ciel Exprim
## 9                  Grande      Agua Saborizada          Ciel Exprim
## 10                 Grande     Bebidas de Fruta       Delaware Punch
## 11                 Grande     Bebidas de Fruta       Delaware Punch
## 12                 Grande     Bebidas de Fruta               Frutsi
## 13                 Grande     Bebidas de Fruta           Valle Frut
## 14                 Grande     Bebidas de Fruta           Valle Frut
## 15                 Grande     Bebidas de Fruta           Valle Frut
## 16                 Grande     Bebidas de Fruta           Valle Frut
## 17                 Grande      Bebidas de Soya          AdeS Frutal
## 18                 Grande      Bebidas de Soya          AdeS Frutal
## 19                 Grande      Bebidas de Soya          AdeS Lácteo
## 20                 Grande  Bebidas Energeticas       Monster Energy
## 21                 Grande          Colas Light      Coca-Cola Light
## 22                 Grande          Colas Light      Coca-Cola Light
## 23                 Grande          Colas Light      Coca-Cola Light
## 24                 Grande          Colas Light      Coca-Cola Light
## 25                 Grande          Colas Light      Coca-Cola Light
## 26                 Grande          Colas Light Coca-Cola Sin Azúcar
## 27                 Grande          Colas Light Coca-Cola Sin Azúcar
## 28                 Grande          Colas Light Coca-Cola Sin Azúcar
## 29                 Grande          Colas Light Coca-Cola Sin Azúcar
## 30                 Grande        Colas Regular            Coca-Cola
## 31                 Grande        Colas Regular            Coca-Cola
## 32                 Grande        Colas Regular            Coca-Cola
## 33                 Grande        Colas Regular            Coca-Cola
## 34                 Grande        Colas Regular            Coca-Cola
## 35                 Grande        Colas Regular            Coca-Cola
## 36                 Grande        Colas Regular            Coca-Cola
## 37                 Grande        Colas Regular            Coca-Cola
## 38                 Grande        Colas Regular            Coca-Cola
## 39                 Grande        Colas Regular            Coca-Cola
## 40                 Grande        Colas Regular            Coca-Cola
## 41                 Grande        Colas Regular            Coca-Cola
## 42                 Grande        Colas Regular            Coca-Cola
## 43                 Grande        Colas Regular            Coca-Cola
## 44                 Grande        Colas Regular            Coca-Cola
## 45                 Grande        Colas Regular            Coca-Cola
## 46                 Grande        Colas Regular            Coca-Cola
## 47                 Grande   Isotónicos Regular             Powerade
## 48                 Grande   Isotónicos Regular             Powerade
## 49                 Grande     Jugos y Néctares            Del Valle
## 50                 Grande     Jugos y Néctares            Del Valle
## 51                 Grande     Jugos y Néctares            Del Valle
## 52                 Grande     Jugos y Néctares            Del Valle
## 53                 Grande     Jugos y Néctares    Del Valle Reserva
## 54                 Grande     Jugos y Néctares    Del Valle Reserva
## 55                 Grande Leche UHT Especializ Santa Clara Deslacto
## 56                 Grande Leche UHT Especializ Santa Clara Deslacto
## 57                 Grande    Leche UHT Regular   Santa Clara Entera
## 58                 Grande Leche UHT Saborizada Santa Clara Saboriza
## 59                 Grande        Sabores Light     Del Valle y Nada
## 60                 Grande        Sabores Light     Del Valle y Nada
## 61                 Grande        Sabores Light          Sprite Zero
## 62                 Grande      Sabores Regular     Del Valle y Nada
## 63                 Grande      Sabores Regular     Del Valle y Nada
## 64                 Grande      Sabores Regular                Fanta
## 65                 Grande      Sabores Regular                Fanta
## 66                 Grande      Sabores Regular                Fanta
## 67                 Grande      Sabores Regular                Fanta
## 68                 Grande      Sabores Regular                Fanta
## 69                 Grande      Sabores Regular                Fanta
## 70                 Grande      Sabores Regular               Fresca
## 71                 Grande      Sabores Regular               Fresca
## 72                 Grande      Sabores Regular               Fresca
## 73                 Grande      Sabores Regular               Fresca
## 74                 Grande      Sabores Regular         Manzana Lift
## 75                 Grande      Sabores Regular         Manzana Lift
## 76                 Grande      Sabores Regular         Manzana Lift
## 77                 Grande      Sabores Regular               Senzao
## 78                 Grande      Sabores Regular        Sidral Mundet
## 79                 Grande      Sabores Regular        Sidral Mundet
## 80                 Grande      Sabores Regular        Sidral Mundet
## 81                 Grande      Sabores Regular               Sprite
## 82                 Grande      Sabores Regular               Sprite
## 83                 Grande      Sabores Regular               Sprite
## 84                 Grande      Sabores Regular               Sprite
## 85                 Grande      Sabores Regular               Sprite
## 86                 Grande           Té Regular             Fuze Tea
## 87                 Grande         Agua Mineral      Topo Chico A.M.
## 88                 Grande      Agua Purificada Ciel Agua Purificada
## 89                 Grande      Agua Purificada Ciel Agua Purificada
## 90                 Grande      Agua Purificada Ciel Agua Purificada
## 91                 Grande      Agua Purificada Ciel Agua Purificada
## 92                 Grande      Agua Saborizada          Ciel Exprim
## 93                 Grande      Agua Saborizada          Ciel Exprim
## 94                 Grande     Bebidas de Fruta       Delaware Punch
## 95                 Grande     Bebidas de Fruta               Frutsi
## 96                 Grande     Bebidas de Fruta                Pulpy
## 97                 Grande     Bebidas de Fruta           Valle Frut
## 98                 Grande     Bebidas de Fruta           Valle Frut
## 99                 Grande      Bebidas de Soya          AdeS Lácteo
## 100                Grande  Bebidas Energeticas                 Burn
## 101                Grande  Bebidas Energeticas       Monster Energy
## 102                Grande          Colas Light      Coca-Cola Light
## 103                Grande          Colas Light      Coca-Cola Light
## 104                Grande          Colas Light      Coca-Cola Light
## 105                Grande          Colas Light      Coca-Cola Light
## 106                Grande          Colas Light      Coca-Cola Light
## 107                Grande          Colas Light Coca-Cola Sin Azúcar
## 108                Grande          Colas Light Coca-Cola Sin Azúcar
## 109                Grande          Colas Light Coca-Cola Sin Azúcar
## 110                Grande          Colas Light Coca-Cola Sin Azúcar
## 111                Grande        Colas Regular            Coca-Cola
## 112                Grande        Colas Regular            Coca-Cola
## 113                Grande        Colas Regular            Coca-Cola
## 114                Grande        Colas Regular            Coca-Cola
## 115                Grande        Colas Regular            Coca-Cola
## 116                Grande        Colas Regular            Coca-Cola
## 117                Grande        Colas Regular            Coca-Cola
## 118                Grande        Colas Regular            Coca-Cola
## 119                Grande        Colas Regular            Coca-Cola
## 120                Grande        Colas Regular            Coca-Cola
## 121                Grande        Colas Regular            Coca-Cola
## 122                Grande        Colas Regular            Coca-Cola
## 123                Grande        Colas Regular            Coca-Cola
## 124                Grande        Colas Regular            Coca-Cola
## 125                Grande        Colas Regular            Coca-Cola
## 126                Grande        Colas Regular            Coca-Cola
## 127                Grande        Colas Regular            Coca-Cola
## 128                Grande   Isotónicos Regular             Powerade
## 129                Grande   Isotónicos Regular             Powerade
## 130                Grande     Jugos y Néctares            Del Valle
## 131                Grande     Jugos y Néctares            Del Valle
## 132                Grande     Jugos y Néctares            Del Valle
## 133                Grande     Jugos y Néctares Del Valle NutriForte
## 134                Grande     Jugos y Néctares Del Valle NutriVeget
## 135                Grande     Jugos y Néctares    Del Valle Reserva
## 136                Grande Leche UHT Especializ Santa Clara Deslacto
## 137                Grande Leche UHT Especializ Santa Clara Deslacto
## 138                Grande    Leche UHT Regular   Santa Clara Entera
## 139                Grande    Leche UHT Regular    Santa Clara Light
## 140                Grande Leche UHT Saborizada Santa Clara Saboriza
## 141                Grande        Sabores Light     Del Valle y Nada
## 142                Grande        Sabores Light          Sprite Zero
## 143                Grande      Sabores Regular     Del Valle y Nada
## 144                Grande      Sabores Regular                Fanta
## 145                Grande      Sabores Regular                Fanta
## 146                Grande      Sabores Regular                Fanta
## 147                Grande      Sabores Regular                Fanta
## 148                Grande      Sabores Regular                Fanta
## 149                Grande      Sabores Regular                Fanta
## 150                Grande      Sabores Regular               Fresca
## 151                Grande      Sabores Regular               Fresca
## 152                Grande      Sabores Regular               Fresca
## 153                Grande      Sabores Regular                 Joya
## 154                Grande      Sabores Regular         Manzana Lift
## 155                Grande      Sabores Regular         Manzana Lift
## 156                Grande      Sabores Regular         Manzana Lift
## 157                Grande      Sabores Regular         Manzana Lift
## 158                Grande      Sabores Regular               Senzao
## 159                Grande      Sabores Regular        Sidral Mundet
## 160                Grande      Sabores Regular        Sidral Mundet
## 161                Grande      Sabores Regular               Sprite
## 162                Grande      Sabores Regular               Sprite
## 163                Grande      Sabores Regular               Sprite
## 164                Grande      Sabores Regular               Sprite
## 165                Grande      Sabores Regular               Sprite
## 166                Grande      Sabores Regular               Sprite
## 167                Grande      Sabores Regular               Sprite
## 168                Grande      Sabores Regular               Sprite
## 169                Grande      Sabores Regular               Sprite
## 170                Grande           Té Regular             Fuze Tea
## 171                Grande           Té Regular             Fuze Tea
## 172                Grande         Agua Mineral    Ciel Mineralizada
## 173                Grande         Agua Mineral      Topo Chico A.M.
## 174                Grande      Agua Purificada Ciel Agua Purificada
## 175                Grande      Agua Purificada Ciel Agua Purificada
## 176                Grande      Agua Purificada Ciel Agua Purificada
## 177                Grande      Agua Saborizada          Ciel Exprim
## 178                Grande      Agua Saborizada          Ciel Exprim
## 179                Grande     Bebidas de Fruta       Delaware Punch
## 180                Grande     Bebidas de Fruta       Delaware Punch
## 181                Grande     Bebidas de Fruta               Frutsi
## 182                Grande     Bebidas de Fruta                Pulpy
## 183                Grande     Bebidas de Fruta           Valle Frut
## 184                Grande     Bebidas de Fruta           Valle Frut
## 185                Grande     Bebidas de Fruta           Valle Frut
## 186                Grande     Bebidas de Fruta           Valle Frut
## 187                Grande      Bebidas de Soya          AdeS Frutal
## 188                Grande      Bebidas de Soya          AdeS Lácteo
## 189                Grande  Bebidas Energeticas                 Burn
## 190                Grande  Bebidas Energeticas                 Burn
## 191                Grande  Bebidas Energeticas       Monster Energy
## 192                Grande          Colas Light      Coca-Cola Light
## 193                Grande          Colas Light      Coca-Cola Light
## 194                Grande          Colas Light      Coca-Cola Light
## 195                Grande          Colas Light      Coca-Cola Light
## 196                Grande          Colas Light Coca-Cola Sin Azúcar
## 197                Grande          Colas Light Coca-Cola Sin Azúcar
## 198                Grande          Colas Light Coca-Cola Sin Azúcar
## 199                Grande          Colas Light Coca-Cola Sin Azúcar
## 200                Grande        Colas Regular            Coca-Cola
## 201                Grande        Colas Regular            Coca-Cola
## 202                Grande        Colas Regular            Coca-Cola
## 203                Grande        Colas Regular            Coca-Cola
## 204                Grande        Colas Regular            Coca-Cola
## 205                Grande        Colas Regular            Coca-Cola
## 206                Grande        Colas Regular            Coca-Cola
## 207                Grande        Colas Regular            Coca-Cola
## 208                Grande        Colas Regular            Coca-Cola
## 209                Grande        Colas Regular            Coca-Cola
## 210                Grande        Colas Regular            Coca-Cola
## 211                Grande        Colas Regular            Coca-Cola
## 212                Grande        Colas Regular            Coca-Cola
## 213                Grande        Colas Regular            Coca-Cola
## 214                Grande        Colas Regular            Coca-Cola
## 215                Grande        Colas Regular            Coca-Cola
## 216                Grande   Isotónicos Regular             Powerade
## 217                Grande   Isotónicos Regular             Powerade
## 218                Grande     Jugos y Néctares            Del Valle
## 219                Grande     Jugos y Néctares            Del Valle
## 220                Grande     Jugos y Néctares            Del Valle
## 221                Grande     Jugos y Néctares Del Valle NutriVeget
## 222                Grande     Jugos y Néctares    Del Valle Reserva
## 223                Grande     Jugos y Néctares    Del Valle Reserva
## 224                Grande Leche UHT Especializ Santa Clara Deslacto
## 225                Grande Leche UHT Especializ Santa Clara Deslacto
## 226                Grande    Leche UHT Regular   Santa Clara Entera
## 227                Grande    Leche UHT Regular    Santa Clara Light
## 228                Grande Leche UHT Saborizada Santa Clara Saboriza
## 229                Grande        Sabores Light     Del Valle y Nada
## 230                Grande        Sabores Light     Del Valle y Nada
## 231                Grande        Sabores Light          Sprite Zero
## 232                Grande      Sabores Regular     Del Valle y Nada
## 233                Grande      Sabores Regular     Del Valle y Nada
## 234                Grande      Sabores Regular                Fanta
## 235                Grande      Sabores Regular                Fanta
## 236                Grande      Sabores Regular                Fanta
## 237                Grande      Sabores Regular                Fanta
## 238                Grande      Sabores Regular                Fanta
## 239                Grande      Sabores Regular                Fanta
## 240                Grande      Sabores Regular               Fresca
## 241                Grande      Sabores Regular               Fresca
## 242                Grande      Sabores Regular                 Joya
## 243                Grande      Sabores Regular         Manzana Lift
## 244                Grande      Sabores Regular         Manzana Lift
## 245                Grande      Sabores Regular         Manzana Lift
## 246                Grande      Sabores Regular               Senzao
## 247                Grande      Sabores Regular        Sidral Mundet
## 248                Grande      Sabores Regular        Sidral Mundet
## 249                Grande      Sabores Regular        Sidral Mundet
## 250                Grande      Sabores Regular        Sidral Mundet
## 251                Grande      Sabores Regular               Sprite
## 252                Grande      Sabores Regular               Sprite
## 253                Grande      Sabores Regular               Sprite
## 254                Grande      Sabores Regular               Sprite
## 255                Grande      Sabores Regular               Sprite
## 256                Grande      Sabores Regular               Sprite
## 257                Grande           Té Regular             Fuze Tea
## 258                Grande           Té Regular             Fuze Tea
## 259                Grande         Agua Mineral      Topo Chico A.M.
## 260                Grande      Agua Purificada Ciel Agua Purificada
## 261                Grande      Agua Purificada Ciel Agua Purificada
## 262                Grande      Agua Purificada Ciel Agua Purificada
## 263                Grande      Agua Purificada Ciel Agua Purificada
## 264                Grande      Agua Saborizada          Ciel Exprim
## 265                Grande      Agua Saborizada          Ciel Exprim
## 266                Grande      Agua Saborizada            Ciel Mini
## 267                Grande     Bebidas de Fruta       Delaware Punch
## 268                Grande     Bebidas de Fruta       Delaware Punch
## 269                Grande     Bebidas de Fruta               Frutsi
## 270                Grande     Bebidas de Fruta           Valle Frut
## 271                Grande     Bebidas de Fruta           Valle Frut
## 272                Grande     Bebidas de Fruta           Valle Frut
## 273                Grande     Bebidas de Fruta           Valle Frut
## 274                Grande      Bebidas de Soya          AdeS Frutal
## 275                Grande      Bebidas de Soya          AdeS Frutal
## 276                Grande      Bebidas de Soya          AdeS Lácteo
## 277                Grande  Bebidas Energeticas       Monster Energy
## 278                Grande Cafe Listo Para Bebe         Barista Bros
## 279                Grande          Colas Light      Coca-Cola Light
## 280                Grande          Colas Light      Coca-Cola Light
## 281                Grande          Colas Light Coca-Cola Sin Azúcar
## 282                Grande          Colas Light Coca-Cola Sin Azúcar
## 283                Grande          Colas Light Coca-Cola Sin Azúcar
## 284                Grande        Colas Regular            Coca-Cola
## 285                Grande        Colas Regular            Coca-Cola
## 286                Grande        Colas Regular            Coca-Cola
## 287                Grande        Colas Regular            Coca-Cola
## 288                Grande        Colas Regular            Coca-Cola
## 289                Grande        Colas Regular            Coca-Cola
## 290                Grande        Colas Regular            Coca-Cola
## 291                Grande        Colas Regular            Coca-Cola
## 292                Grande        Colas Regular            Coca-Cola
## 293                Grande        Colas Regular            Coca-Cola
## 294                Grande        Colas Regular            Coca-Cola
## 295                Grande        Colas Regular            Coca-Cola
## 296                Grande        Colas Regular            Coca-Cola
## 297                Grande        Colas Regular            Coca-Cola
## 298                Grande        Colas Regular            Coca-Cola
## 299                Grande        Colas Regular            Coca-Cola
## 300                Grande   Isotónicos Regular             Powerade
## 301                Grande   Isotónicos Regular             Powerade
## 302                Grande   Isotónicos Regular             Powerade
## 303                Grande     Jugos y Néctares            Del Valle
## 304                Grande     Jugos y Néctares            Del Valle
## 305                Grande     Jugos y Néctares            Del Valle
## 306                Grande     Jugos y Néctares            Del Valle
## 307                Grande     Jugos y Néctares Del Valle NutriForte
## 308                Grande     Jugos y Néctares Del Valle NutriVeget
## 309                Grande     Jugos y Néctares    Del Valle Reserva
## 310                Grande     Jugos y Néctares    Del Valle Reserva
## 311                Grande    Leche UHT Regular   Santa Clara Entera
## 312                Grande Leche UHT Saborizada Santa Clara Saboriza
## 313                Grande        Sabores Light     Del Valle y Nada
## 314                Grande      Sabores Regular                Fanta
## 315                Grande      Sabores Regular                Fanta
## 316                Grande      Sabores Regular                Fanta
## 317                Grande      Sabores Regular               Fresca
## 318                Grande      Sabores Regular               Fresca
## 319                Grande      Sabores Regular               Fresca
## 320                Grande      Sabores Regular                 Joya
## 321                Grande      Sabores Regular         Manzana Lift
## 322                Grande      Sabores Regular         Manzana Lift
## 323                Grande      Sabores Regular         Manzana Lift
## 324                Grande      Sabores Regular               Sprite
## 325                Grande      Sabores Regular               Sprite
## 326                Grande      Sabores Regular               Sprite
## 327                Grande           Té Regular             Fuze Tea
## 328                Grande           Té Regular             Fuze Tea
## 329                Grande         Agua Mineral    Ciel Mineralizada
## 330                Grande         Agua Mineral      Topo Chico A.M.
## 331                Grande         Agua Mineral      Topo Chico A.M.
## 332                Grande      Agua Purificada Ciel Agua Purificada
## 333                Grande      Agua Purificada Ciel Agua Purificada
## 334                Grande      Agua Purificada Ciel Agua Purificada
## 335                Grande      Agua Saborizada          Ciel Exprim
## 336                Grande      Agua Saborizada          Ciel Exprim
## 337                Grande     Bebidas de Fruta       Delaware Punch
## 338                Grande     Bebidas de Fruta               Frutsi
## 339                Grande     Bebidas de Fruta                Pulpy
## 340                Grande     Bebidas de Fruta           Valle Frut
## 341                Grande     Bebidas de Fruta           Valle Frut
## 342                Grande     Bebidas de Fruta           Valle Frut
## 343                Grande  Bebidas Energeticas                 Burn
## 344                Grande  Bebidas Energeticas                 Burn
## 345                Grande  Bebidas Energeticas       Monster Energy
## 346                Grande          Colas Light      Coca-Cola Light
## 347                Grande          Colas Light      Coca-Cola Light
## 348                Grande          Colas Light      Coca-Cola Light
## 349                Grande          Colas Light      Coca-Cola Light
## 350                Grande          Colas Light      Coca-Cola Light
## 351                Grande          Colas Light Coca-Cola Sin Azúcar
## 352                Grande          Colas Light Coca-Cola Sin Azúcar
## 353                Grande          Colas Light Coca-Cola Sin Azúcar
## 354                Grande          Colas Light Coca-Cola Sin Azúcar
## 355                Grande          Colas Light Coca-Cola Sin Azúcar
## 356                Grande          Colas Light Coca-Cola Sin Azúcar
## 357                Grande        Colas Regular            Coca-Cola
## 358                Grande        Colas Regular            Coca-Cola
## 359                Grande        Colas Regular            Coca-Cola
## 360                Grande        Colas Regular            Coca-Cola
## 361                Grande        Colas Regular            Coca-Cola
## 362                Grande        Colas Regular            Coca-Cola
## 363                Grande        Colas Regular            Coca-Cola
## 364                Grande        Colas Regular            Coca-Cola
## 365                Grande        Colas Regular            Coca-Cola
## 366                Grande        Colas Regular            Coca-Cola
## 367                Grande        Colas Regular            Coca-Cola
## 368                Grande        Colas Regular            Coca-Cola
## 369                Grande        Colas Regular            Coca-Cola
## 370                Grande        Colas Regular            Coca-Cola
## 371                Grande        Colas Regular            Coca-Cola
## 372                Grande        Colas Regular            Coca-Cola
## 373                Grande        Colas Regular            Coca-Cola
## 374                Grande   Isotónicos Regular             Powerade
## 375                Grande   Isotónicos Regular             Powerade
## 376                Grande     Jugos y Néctares            Del Valle
## 377                Grande     Jugos y Néctares            Del Valle
## 378                Grande     Jugos y Néctares            Del Valle
## 379                Grande     Jugos y Néctares    Del Valle Reserva
## 380                Grande     Jugos y Néctares    Del Valle Reserva
## 381                Grande Leche UHT Especializ Santa Clara Deslacto
## 382                Grande Leche UHT Especializ Santa Clara Deslacto
## 383                Grande    Leche UHT Regular   Santa Clara Entera
## 384                Grande    Leche UHT Regular    Santa Clara Light
## 385                Grande Leche UHT Saborizada Santa Clara Saboriza
## 386                Grande        Sabores Light     Del Valle y Nada
## 387                Grande        Sabores Light     Del Valle y Nada
## 388                Grande        Sabores Light          Sprite Zero
## 389                Grande      Sabores Regular     Del Valle y Nada
## 390                Grande      Sabores Regular     Del Valle y Nada
## 391                Grande      Sabores Regular                Fanta
## 392                Grande      Sabores Regular                Fanta
## 393                Grande      Sabores Regular                Fanta
## 394                Grande      Sabores Regular                Fanta
## 395                Grande      Sabores Regular                Fanta
## 396                Grande      Sabores Regular                Fanta
## 397                Grande      Sabores Regular               Fresca
## 398                Grande      Sabores Regular               Fresca
## 399                Grande      Sabores Regular               Fresca
## 400                Grande      Sabores Regular         Manzana Lift
## 401                Grande      Sabores Regular         Manzana Lift
## 402                Grande      Sabores Regular               Senzao
## 403                Grande      Sabores Regular        Sidral Mundet
## 404                Grande      Sabores Regular        Sidral Mundet
## 405                Grande      Sabores Regular        Sidral Mundet
## 406                Grande      Sabores Regular        Sidral Mundet
## 407                Grande      Sabores Regular               Sprite
## 408                Grande      Sabores Regular               Sprite
## 409                Grande      Sabores Regular               Sprite
## 410                Grande      Sabores Regular               Sprite
## 411                Grande      Sabores Regular               Sprite
## 412                Grande      Sabores Regular               Sprite
## 413                Grande      Sabores Regular               Sprite
## 414                Grande           Té Regular             Fuze Tea
## 415                Grande           Té Regular             Fuze Tea
## 416                Grande           Té Regular             Fuze Tea
## 417                Grande         Agua Mineral      Topo Chico A.M.
## 418                Grande      Agua Purificada Ciel Agua Purificada
## 419                Grande      Agua Purificada Ciel Agua Purificada
## 420                Grande      Agua Purificada Ciel Agua Purificada
## 421                Grande      Agua Saborizada          Ciel Exprim
## 422                Grande      Agua Saborizada          Ciel Exprim
## 423                Grande     Bebidas de Fruta       Delaware Punch
## 424                Grande     Bebidas de Fruta       Delaware Punch
## 425                Grande     Bebidas de Fruta               Frutsi
## 426                Grande     Bebidas de Fruta                Pulpy
## 427                Grande     Bebidas de Fruta           Valle Frut
## 428                Grande     Bebidas de Fruta           Valle Frut
## 429                Grande     Bebidas de Fruta           Valle Frut
## 430                Grande     Bebidas de Fruta           Valle Frut
## 431                Grande     Bebidas de Fruta           Valle Frut
## 432                Grande      Bebidas de Soya          AdeS Frutal
## 433                Grande      Bebidas de Soya          AdeS Lácteo
## 434                Grande  Bebidas Energeticas       Monster Energy
## 435                Grande Cafe Listo Para Bebe         Barista Bros
## 436                Grande          Colas Light      Coca-Cola Light
## 437                Grande          Colas Light      Coca-Cola Light
## 438                Grande          Colas Light      Coca-Cola Light
## 439                Grande          Colas Light      Coca-Cola Light
## 440                Grande          Colas Light      Coca-Cola Light
## 441                Grande          Colas Light Coca-Cola Sin Azúcar
## 442                Grande          Colas Light Coca-Cola Sin Azúcar
## 443                Grande          Colas Light Coca-Cola Sin Azúcar
## 444                Grande        Colas Regular            Coca-Cola
## 445                Grande        Colas Regular            Coca-Cola
## 446                Grande        Colas Regular            Coca-Cola
## 447                Grande        Colas Regular            Coca-Cola
## 448                Grande        Colas Regular            Coca-Cola
## 449                Grande        Colas Regular            Coca-Cola
## 450                Grande        Colas Regular            Coca-Cola
## 451                Grande        Colas Regular            Coca-Cola
## 452                Grande        Colas Regular            Coca-Cola
## 453                Grande        Colas Regular            Coca-Cola
## 454                Grande        Colas Regular            Coca-Cola
## 455                Grande        Colas Regular            Coca-Cola
## 456                Grande        Colas Regular            Coca-Cola
## 457                Grande        Colas Regular            Coca-Cola
## 458                Grande        Colas Regular            Coca-Cola
## 459                Grande        Colas Regular            Coca-Cola
## 460                Grande   Isotónicos Regular             Powerade
## 461                Grande   Isotónicos Regular             Powerade
## 462                Grande   Isotónicos Regular             Powerade
## 463                Grande     Jugos y Néctares            Del Valle
## 464                Grande     Jugos y Néctares            Del Valle
## 465                Grande     Jugos y Néctares            Del Valle
## 466                Grande     Jugos y Néctares            Del Valle
## 467                Grande     Jugos y Néctares Del Valle NutriForte
## 468                Grande Leche UHT Especializ Santa Clara Deslacto
## 469                Grande Leche UHT Especializ Santa Clara Deslacto
## 470                Grande    Leche UHT Regular   Santa Clara Entera
## 471                Grande    Leche UHT Regular    Santa Clara Light
## 472                Grande Leche UHT Saborizada Santa Clara Saboriza
## 473                Grande        Sabores Light     Del Valle y Nada
## 474                Grande        Sabores Light          Sprite Zero
## 475                Grande      Sabores Regular     Del Valle y Nada
## 476                Grande      Sabores Regular                Fanta
## 477                Grande      Sabores Regular                Fanta
## 478                Grande      Sabores Regular                Fanta
## 479                Grande      Sabores Regular                Fanta
## 480                Grande      Sabores Regular                Fanta
## 481                Grande      Sabores Regular                Fanta
## 482                Grande      Sabores Regular                Fanta
## 483                Grande      Sabores Regular               Fresca
## 484                Grande      Sabores Regular               Fresca
## 485                Grande      Sabores Regular               Fresca
## 486                Grande      Sabores Regular               Fresca
## 487                Grande      Sabores Regular               Fresca
## 488                Grande      Sabores Regular         Manzana Lift
## 489                Grande      Sabores Regular         Manzana Lift
## 490                Grande      Sabores Regular         Manzana Lift
## 491                Grande      Sabores Regular         Manzana Lift
## 492                Grande      Sabores Regular         Manzana Lift
## 493                Grande      Sabores Regular        Sidral Mundet
## 494                Grande      Sabores Regular        Sidral Mundet
## 495                Grande      Sabores Regular        Sidral Mundet
## 496                Grande      Sabores Regular        Sidral Mundet
## 497                Grande      Sabores Regular        Sidral Mundet
## 498                Grande      Sabores Regular        Sidral Mundet
## 499                Grande      Sabores Regular               Sprite
## 500                Grande      Sabores Regular               Sprite
## 501                Grande      Sabores Regular               Sprite
## 502                Grande      Sabores Regular               Sprite
## 503                Grande      Sabores Regular               Sprite
## 504                Grande      Sabores Regular               Sprite
## 505                Grande      Sabores Regular               Sprite
## 506                Grande      Sabores Regular               Sprite
## 507                Grande           Té Regular             Fuze Tea
## 508                Grande           Té Regular             Fuze Tea
## 509                Grande         Agua Mineral    Ciel Mineralizada
## 510                Grande         Agua Mineral      Topo Chico A.M.
## 511                Grande      Agua Purificada Ciel Agua Purificada
## 512                Grande      Agua Purificada Ciel Agua Purificada
## 513                Grande      Agua Purificada Ciel Agua Purificada
## 514                Grande      Agua Saborizada          Ciel Exprim
## 515                Grande      Agua Saborizada          Ciel Exprim
## 516                Grande     Bebidas de Fruta               Frutsi
## 517                Grande     Bebidas de Fruta           Valle Frut
## 518                Grande     Bebidas de Fruta           Valle Frut
## 519                Grande      Bebidas de Soya          AdeS Frutal
## 520                Grande      Bebidas de Soya          AdeS Frutal
## 521                Grande      Bebidas de Soya          AdeS Lácteo
## 522                Grande Cafe Listo Para Bebe         Barista Bros
## 523                Grande          Colas Light      Coca-Cola Light
## 524                Grande          Colas Light      Coca-Cola Light
## 525                Grande          Colas Light      Coca-Cola Light
## 526                Grande          Colas Light Coca-Cola Sin Azúcar
## 527                Grande          Colas Light Coca-Cola Sin Azúcar
## 528                Grande          Colas Light Coca-Cola Sin Azúcar
## 529                Grande        Colas Regular            Coca-Cola
## 530                Grande        Colas Regular            Coca-Cola
## 531                Grande        Colas Regular            Coca-Cola
## 532                Grande        Colas Regular            Coca-Cola
## 533                Grande        Colas Regular            Coca-Cola
## 534                Grande        Colas Regular            Coca-Cola
## 535                Grande        Colas Regular            Coca-Cola
## 536                Grande        Colas Regular            Coca-Cola
## 537                Grande        Colas Regular            Coca-Cola
## 538                Grande        Colas Regular            Coca-Cola
## 539                Grande        Colas Regular            Coca-Cola
## 540                Grande        Colas Regular            Coca-Cola
## 541                Grande        Colas Regular            Coca-Cola
## 542                Grande        Colas Regular            Coca-Cola
## 543                Grande        Colas Regular            Coca-Cola
## 544                Grande   Isotónicos Regular             Powerade
## 545                Grande   Isotónicos Regular             Powerade
## 546                Grande     Jugos y Néctares            Del Valle
## 547                Grande     Jugos y Néctares            Del Valle
## 548                Grande     Jugos y Néctares Del Valle NutriForte
## 549                Grande    Leche UHT Regular   Santa Clara Entera
## 550                Grande Leche UHT Saborizada Santa Clara Saboriza
## 551                Grande        Sabores Light     Del Valle y Nada
## 552                Grande      Sabores Regular                Fanta
## 553                Grande      Sabores Regular                Fanta
## 554                Grande      Sabores Regular                Fanta
## 555                Grande      Sabores Regular                Fanta
## 556                Grande      Sabores Regular                Fanta
## 557                Grande      Sabores Regular                Fanta
## 558                Grande      Sabores Regular               Fresca
## 559                Grande      Sabores Regular               Fresca
## 560                Grande      Sabores Regular               Fresca
## 561                Grande      Sabores Regular         Manzana Lift
## 562                Grande      Sabores Regular         Manzana Lift
## 563                Grande      Sabores Regular         Manzana Lift
## 564                Grande      Sabores Regular        Sidral Mundet
## 565                Grande      Sabores Regular        Sidral Mundet
## 566                Grande      Sabores Regular               Sprite
## 567                Grande      Sabores Regular               Sprite
## 568                Grande      Sabores Regular               Sprite
## 569                Grande      Sabores Regular               Sprite
## 570                Grande      Sabores Regular               Sprite
## 571                Grande           Té Regular             Fuze Tea
## 572                Grande         Agua Mineral      Topo Chico A.M.
## 573                Grande      Agua Purificada Ciel Agua Purificada
## 574                Grande      Agua Purificada Ciel Agua Purificada
## 575                Grande      Agua Purificada Ciel Agua Purificada
## 576                Grande      Agua Saborizada          Ciel Exprim
## 577                Grande      Agua Saborizada          Ciel Exprim
## 578                Grande     Bebidas de Fruta       Delaware Punch
## 579                Grande     Bebidas de Fruta                Pulpy
## 580                Grande     Bebidas de Fruta           Valle Frut
## 581                Grande     Bebidas de Fruta           Valle Frut
## 582                Grande  Bebidas Energeticas       Monster Energy
## 583                Grande          Colas Light      Coca-Cola Light
## 584                Grande          Colas Light      Coca-Cola Light
## 585                Grande          Colas Light      Coca-Cola Light
## 586                Grande          Colas Light      Coca-Cola Light
## 587                Grande          Colas Light Coca-Cola Sin Azúcar
## 588                Grande          Colas Light Coca-Cola Sin Azúcar
## 589                Grande          Colas Light Coca-Cola Sin Azúcar
## 590                Grande          Colas Light Coca-Cola Sin Azúcar
## 591                Grande        Colas Regular            Coca-Cola
## 592                Grande        Colas Regular            Coca-Cola
## 593                Grande        Colas Regular            Coca-Cola
## 594                Grande        Colas Regular            Coca-Cola
## 595                Grande        Colas Regular            Coca-Cola
## 596                Grande        Colas Regular            Coca-Cola
## 597                Grande        Colas Regular            Coca-Cola
## 598                Grande        Colas Regular            Coca-Cola
## 599                Grande        Colas Regular            Coca-Cola
## 600                Grande        Colas Regular            Coca-Cola
## 601                Grande        Colas Regular            Coca-Cola
## 602                Grande        Colas Regular            Coca-Cola
## 603                Grande        Colas Regular            Coca-Cola
## 604                Grande        Colas Regular            Coca-Cola
## 605                Grande        Colas Regular            Coca-Cola
## 606                Grande   Isotónicos Regular             Powerade
## 607                Grande   Isotónicos Regular             Powerade
## 608                Grande     Jugos y Néctares            Del Valle
## 609                Grande     Jugos y Néctares            Del Valle
## 610                Grande     Jugos y Néctares    Del Valle Reserva
## 611                Grande Leche UHT Especializ Santa Clara Deslacto
## 612                Grande Leche UHT Especializ Santa Clara Deslacto
## 613                Grande    Leche UHT Regular   Santa Clara Entera
## 614                Grande    Leche UHT Regular    Santa Clara Light
## 615                Grande Leche UHT Saborizada Santa Clara Saboriza
## 616                Grande        Sabores Light     Del Valle y Nada
## 617                Grande        Sabores Light     Del Valle y Nada
## 618                Grande        Sabores Light          Sprite Zero
## 619                Grande      Sabores Regular     Del Valle y Nada
## 620                Grande      Sabores Regular     Del Valle y Nada
## 621                Grande      Sabores Regular                Fanta
## 622                Grande      Sabores Regular                Fanta
## 623                Grande      Sabores Regular                Fanta
## 624                Grande      Sabores Regular                Fanta
## 625                Grande      Sabores Regular                Fanta
## 626                Grande      Sabores Regular                Fanta
## 627                Grande      Sabores Regular               Fresca
## 628                Grande      Sabores Regular         Manzana Lift
## 629                Grande      Sabores Regular         Manzana Lift
## 630                Grande      Sabores Regular         Manzana Lift
## 631                Grande      Sabores Regular        Sidral Mundet
## 632                Grande      Sabores Regular        Sidral Mundet
## 633                Grande      Sabores Regular        Sidral Mundet
## 634                Grande      Sabores Regular        Sidral Mundet
## 635                Grande      Sabores Regular               Sprite
## 636                Grande      Sabores Regular               Sprite
## 637                Grande      Sabores Regular               Sprite
## 638                Grande      Sabores Regular               Sprite
## 639                Grande      Sabores Regular               Sprite
## 640                Grande           Té Regular             Fuze Tea
## 641                Grande           Té Regular             Fuze Tea
## 642                Grande         Agua Mineral    Ciel Mineralizada
## 643                Grande         Agua Mineral      Topo Chico A.M.
## 644                Grande      Agua Purificada Ciel Agua Purificada
## 645                Grande      Agua Purificada Ciel Agua Purificada
## 646                Grande      Agua Purificada Ciel Agua Purificada
## 647                Grande      Agua Saborizada          Ciel Exprim
## 648                Grande      Agua Saborizada          Ciel Exprim
## 649                Grande     Bebidas de Fruta       Delaware Punch
## 650                Grande     Bebidas de Fruta               Frutsi
## 651                Grande     Bebidas de Fruta                Pulpy
## 652                Grande     Bebidas de Fruta           Valle Frut
## 653                Grande     Bebidas de Fruta           Valle Frut
## 654                Grande     Bebidas de Fruta           Valle Frut
## 655                Grande      Bebidas de Soya          AdeS Frutal
## 656                Grande      Bebidas de Soya          AdeS Frutal
## 657                Grande  Bebidas Energeticas                 Burn
## 658                Grande  Bebidas Energeticas       Monster Energy
## 659                Grande Cafe Listo Para Bebe         Barista Bros
## 660                Grande          Colas Light      Coca-Cola Light
## 661                Grande          Colas Light      Coca-Cola Light
## 662                Grande          Colas Light Coca-Cola Sin Azúcar
## 663                Grande          Colas Light Coca-Cola Sin Azúcar
## 664                Grande          Colas Light Coca-Cola Sin Azúcar
## 665                Grande          Colas Light Coca-Cola Sin Azúcar
## 666                Grande          Colas Light Coca-Cola Sin Azúcar
## 667                Grande          Colas Light Coca-Cola Sin Azúcar
## 668                Grande        Colas Regular            Coca-Cola
## 669                Grande        Colas Regular            Coca-Cola
## 670                Grande        Colas Regular            Coca-Cola
## 671                Grande        Colas Regular            Coca-Cola
## 672                Grande        Colas Regular            Coca-Cola
## 673                Grande        Colas Regular            Coca-Cola
## 674                Grande        Colas Regular            Coca-Cola
## 675                Grande        Colas Regular            Coca-Cola
## 676                Grande        Colas Regular            Coca-Cola
## 677                Grande        Colas Regular            Coca-Cola
## 678                Grande        Colas Regular            Coca-Cola
## 679                Grande        Colas Regular            Coca-Cola
## 680                Grande        Colas Regular            Coca-Cola
## 681                Grande        Colas Regular            Coca-Cola
## 682                Grande        Colas Regular            Coca-Cola
## 683                Grande   Isotónicos Regular             Powerade
## 684                Grande   Isotónicos Regular             Powerade
## 685                Grande   Isotónicos Regular             Powerade
## 686                Grande     Jugos y Néctares            Del Valle
## 687                Grande     Jugos y Néctares            Del Valle
## 688                Grande     Jugos y Néctares            Del Valle
## 689                Grande     Jugos y Néctares            Del Valle
## 690                Grande     Jugos y Néctares Del Valle NutriForte
## 691                Grande     Jugos y Néctares    Del Valle Reserva
## 692                Grande     Jugos y Néctares    Del Valle Reserva
## 693                Grande Leche UHT Especializ Santa Clara Deslacto
## 694                Grande    Leche UHT Regular   Santa Clara Entera
## 695                Grande Leche UHT Saborizada Santa Clara Saboriza
## 696                Grande        Sabores Light     Del Valle y Nada
## 697                Grande      Sabores Regular     Del Valle y Nada
## 698                Grande      Sabores Regular     Del Valle y Nada
## 699                Grande      Sabores Regular                Fanta
## 700                Grande      Sabores Regular                Fanta
## 701                Grande      Sabores Regular                Fanta
## 702                Grande      Sabores Regular                Fanta
## 703                Grande      Sabores Regular                Fanta
## 704                Grande      Sabores Regular                Fanta
## 705                Grande      Sabores Regular               Fresca
## 706                Grande      Sabores Regular                 Joya
## 707                Grande      Sabores Regular         Manzana Lift
## 708                Grande      Sabores Regular         Manzana Lift
## 709                Grande      Sabores Regular         Manzana Lift
## 710                Grande      Sabores Regular        Sidral Mundet
## 711                Grande      Sabores Regular        Sidral Mundet
## 712                Grande      Sabores Regular        Sidral Mundet
## 713                Grande      Sabores Regular        Sidral Mundet
## 714                Grande      Sabores Regular        Sidral Mundet
## 715                Grande      Sabores Regular        Sidral Mundet
## 716                Grande      Sabores Regular               Sprite
## 717                Grande      Sabores Regular               Sprite
## 718                Grande      Sabores Regular               Sprite
## 719                Grande      Sabores Regular               Sprite
## 720                Grande      Sabores Regular               Sprite
## 721                Grande      Sabores Regular               Sprite
## 722                Grande           Té Regular             Fuze Tea
## 723                Grande           Té Regular             Fuze Tea
## 724                Grande         Agua Mineral      Topo Chico A.M.
## 725                Grande      Agua Purificada Ciel Agua Purificada
## 726                Grande      Agua Purificada Ciel Agua Purificada
## 727                Grande      Agua Purificada Ciel Agua Purificada
## 728                Grande      Agua Saborizada          Ciel Exprim
## 729                Grande      Agua Saborizada          Ciel Exprim
## 730                Grande     Bebidas de Fruta               Frutsi
## 731                Grande     Bebidas de Fruta           Valle Frut
## 732                Grande     Bebidas de Fruta           Valle Frut
## 733                Grande     Bebidas de Fruta           Valle Frut
## 734                Grande      Bebidas de Soya          AdeS Frutal
## 735                Grande      Bebidas de Soya          AdeS Lácteo
## 736                Grande  Bebidas Energeticas       Monster Energy
## 737                Grande Cafe Listo Para Bebe         Barista Bros
## 738                Grande          Colas Light      Coca-Cola Light
## 739                Grande          Colas Light      Coca-Cola Light
## 740                Grande          Colas Light      Coca-Cola Light
## 741                Grande          Colas Light      Coca-Cola Light
## 742                Grande          Colas Light      Coca-Cola Light
## 743                Grande          Colas Light      Coca-Cola Light
## 744                Grande          Colas Light      Coca-Cola Light
## 745                Grande          Colas Light      Coca-Cola Light
## 746                Grande          Colas Light      Coca-Cola Light
## 747                Grande          Colas Light      Coca-Cola Light
## 748                Grande          Colas Light Coca-Cola Sin Azúcar
## 749                Grande          Colas Light Coca-Cola Sin Azúcar
## 750                Grande          Colas Light Coca-Cola Sin Azúcar
## 751                Grande          Colas Light Coca-Cola Sin Azúcar
## 752                Grande          Colas Light Coca-Cola Sin Azúcar
## 753                Grande        Colas Regular            Coca-Cola
## 754                Grande        Colas Regular            Coca-Cola
## 755                Grande        Colas Regular            Coca-Cola
## 756                Grande        Colas Regular            Coca-Cola
## 757                Grande        Colas Regular            Coca-Cola
## 758                Grande        Colas Regular            Coca-Cola
## 759                Grande        Colas Regular            Coca-Cola
## 760                Grande        Colas Regular            Coca-Cola
## 761                Grande        Colas Regular            Coca-Cola
## 762                Grande        Colas Regular            Coca-Cola
## 763                Grande        Colas Regular            Coca-Cola
## 764                Grande        Colas Regular            Coca-Cola
## 765                Grande        Colas Regular            Coca-Cola
## 766                Grande        Colas Regular            Coca-Cola
## 767                Grande        Colas Regular            Coca-Cola
## 768                Grande        Colas Regular            Coca-Cola
## 769                Grande   Isotónicos Regular             Powerade
## 770                Grande   Isotónicos Regular             Powerade
## 771                Grande     Jugos y Néctares            Del Valle
## 772                Grande     Jugos y Néctares            Del Valle
## 773                Grande     Jugos y Néctares            Del Valle
## 774                Grande     Jugos y Néctares Del Valle NutriVeget
## 775                Grande     Jugos y Néctares    Del Valle Reserva
## 776                Grande Leche UHT Especializ Santa Clara Deslacto
## 777                Grande Leche UHT Especializ Santa Clara Deslacto
## 778                Grande    Leche UHT Regular   Santa Clara Entera
## 779                Grande    Leche UHT Regular    Santa Clara Light
## 780                Grande Leche UHT Saborizada Santa Clara Saboriza
## 781                Grande        Sabores Light     Del Valle y Nada
## 782                Grande        Sabores Light     Del Valle y Nada
## 783                Grande        Sabores Light          Sprite Zero
## 784                Grande      Sabores Regular     Del Valle y Nada
## 785                Grande      Sabores Regular     Del Valle y Nada
## 786                Grande      Sabores Regular                Fanta
## 787                Grande      Sabores Regular                Fanta
## 788                Grande      Sabores Regular                Fanta
## 789                Grande      Sabores Regular                Fanta
## 790                Grande      Sabores Regular                Fanta
## 791                Grande      Sabores Regular                Fanta
## 792                Grande      Sabores Regular               Fresca
## 793                Grande      Sabores Regular               Fresca
## 794                Grande      Sabores Regular                 Joya
## 795                Grande      Sabores Regular         Manzana Lift
## 796                Grande      Sabores Regular               Senzao
## 797                Grande      Sabores Regular        Sidral Mundet
## 798                Grande      Sabores Regular        Sidral Mundet
## 799                Grande      Sabores Regular        Sidral Mundet
## 800                Grande      Sabores Regular               Sprite
## 801                Grande      Sabores Regular               Sprite
## 802                Grande      Sabores Regular               Sprite
## 803                Grande      Sabores Regular               Sprite
## 804                Grande      Sabores Regular               Sprite
## 805                Grande      Sabores Regular               Sprite
## 806                Grande      Sabores Regular               Sprite
## 807                Grande           Té Regular             Fuze Tea
## 808                Grande           Té Regular             Fuze Tea
## 809                Grande         Agua Mineral      Topo Chico A.M.
## 810                Grande         Agua Mineral      Topo Chico A.M.
## 811                Grande         Agua Mineral      Topo Chico A.M.
## 812                Grande      Agua Purificada Ciel Agua Purificada
## 813                Grande      Agua Purificada Ciel Agua Purificada
## 814                Grande      Agua Purificada Ciel Agua Purificada
## 815                Grande      Agua Purificada Ciel Agua Purificada
## 816                Grande      Agua Saborizada          Ciel Exprim
## 817                Grande      Agua Saborizada          Ciel Exprim
## 818                Grande      Agua Saborizada          Ciel Exprim
## 819                Grande     Bebidas de Fruta       Delaware Punch
## 820                Grande     Bebidas de Fruta               Frutsi
## 821                Grande     Bebidas de Fruta                Pulpy
## 822                Grande     Bebidas de Fruta           Valle Frut
## 823                Grande     Bebidas de Fruta           Valle Frut
## 824                Grande     Bebidas de Fruta           Valle Frut
## 825                Grande      Bebidas de Soya          AdeS Frutal
## 826                Grande      Bebidas de Soya          AdeS Frutal
## 827                Grande      Bebidas de Soya          AdeS Lácteo
## 828                Grande  Bebidas Energeticas              Glacéau
## 829                Grande  Bebidas Energeticas       Monster Energy
## 830                Grande          Colas Light      Coca-Cola Light
## 831                Grande          Colas Light      Coca-Cola Light
## 832                Grande          Colas Light      Coca-Cola Light
## 833                Grande          Colas Light      Coca-Cola Light
## 834                Grande          Colas Light      Coca-Cola Light
## 835                Grande          Colas Light      Coca-Cola Light
## 836                Grande          Colas Light      Coca-Cola Light
## 837                Grande          Colas Light Coca-Cola Sin Azúcar
## 838                Grande          Colas Light Coca-Cola Sin Azúcar
## 839                Grande          Colas Light Coca-Cola Sin Azúcar
## 840                Grande          Colas Light Coca-Cola Sin Azúcar
## 841                Grande          Colas Light Coca-Cola Sin Azúcar
## 842                Grande          Colas Light Coca-Cola Sin Azúcar
## 843                Grande          Colas Light Coca-Cola Sin Azúcar
## 844                Grande        Colas Regular            Coca-Cola
## 845                Grande        Colas Regular            Coca-Cola
## 846                Grande        Colas Regular            Coca-Cola
## 847                Grande        Colas Regular            Coca-Cola
## 848                Grande        Colas Regular            Coca-Cola
## 849                Grande        Colas Regular            Coca-Cola
## 850                Grande        Colas Regular            Coca-Cola
## 851                Grande        Colas Regular            Coca-Cola
## 852                Grande        Colas Regular            Coca-Cola
## 853                Grande        Colas Regular            Coca-Cola
## 854                Grande        Colas Regular            Coca-Cola
## 855                Grande        Colas Regular            Coca-Cola
## 856                Grande        Colas Regular            Coca-Cola
## 857                Grande        Colas Regular            Coca-Cola
## 858                Grande        Colas Regular            Coca-Cola
## 859                Grande        Colas Regular            Coca-Cola
## 860                Grande        Colas Regular            Coca-Cola
## 861                Grande        Colas Regular            Coca-Cola
## 862                Grande        Colas Regular            Coca-Cola
## 863                Grande        Colas Regular            Coca-Cola
## 864                Grande   Isotónicos Regular             Powerade
## 865                Grande   Isotónicos Regular             Powerade
## 866                Grande   Isotónicos Regular             Powerade
## 867                Grande     Jugos y Néctares            Del Valle
## 868                Grande     Jugos y Néctares            Del Valle
## 869                Grande     Jugos y Néctares            Del Valle
## 870                Grande     Jugos y Néctares            Del Valle
## 871                Grande     Jugos y Néctares    Del Valle Reserva
## 872                Grande     Jugos y Néctares    Del Valle Reserva
## 873                Grande Leche UHT Especializ Santa Clara Deslacto
## 874                Grande Leche UHT Especializ Santa Clara Deslacto
## 875                Grande    Leche UHT Regular   Santa Clara Entera
## 876                Grande    Leche UHT Regular    Santa Clara Light
## 877                Grande Leche UHT Saborizada Santa Clara Saboriza
## 878                Grande        Sabores Light     Del Valle y Nada
## 879                Grande        Sabores Light     Del Valle y Nada
## 880                Grande        Sabores Light          Sprite Zero
## 881                Grande      Sabores Regular     Del Valle y Nada
## 882                Grande      Sabores Regular     Del Valle y Nada
## 883                Grande      Sabores Regular                Fanta
## 884                Grande      Sabores Regular                Fanta
## 885                Grande      Sabores Regular                Fanta
## 886                Grande      Sabores Regular                Fanta
## 887                Grande      Sabores Regular                Fanta
## 888                Grande      Sabores Regular                Fanta
## 889                Grande      Sabores Regular               Fresca
## 890                Grande      Sabores Regular               Fresca
## 891                Grande      Sabores Regular               Fresca
## 892                Grande      Sabores Regular               Fresca
## 893                Grande      Sabores Regular                 Joya
## 894                Grande      Sabores Regular                 Joya
## 895                Grande      Sabores Regular         Manzana Lift
## 896                Grande      Sabores Regular         Manzana Lift
## 897                Grande      Sabores Regular         Manzana Lift
## 898                Grande      Sabores Regular               Senzao
## 899                Grande      Sabores Regular        Sidral Mundet
## 900                Grande      Sabores Regular        Sidral Mundet
## 901                Grande      Sabores Regular        Sidral Mundet
## 902                Grande      Sabores Regular        Sidral Mundet
## 903                Grande      Sabores Regular        Sidral Mundet
## 904                Grande      Sabores Regular               Sprite
## 905                Grande      Sabores Regular               Sprite
## 906                Grande      Sabores Regular               Sprite
## 907                Grande      Sabores Regular               Sprite
## 908                Grande      Sabores Regular               Sprite
## 909                Grande           Té Regular             Fuze Tea
## 910                Grande           Té Regular             Fuze Tea
## 911                Grande         Agua Mineral    Ciel Mineralizada
## 912                Grande         Agua Mineral      Topo Chico A.M.
## 913                Grande         Agua Mineral      Topo Chico A.M.
## 914                Grande      Agua Purificada Ciel Agua Purificada
## 915                Grande      Agua Purificada Ciel Agua Purificada
## 916                Grande      Agua Purificada Ciel Agua Purificada
## 917                Grande      Agua Saborizada          Ciel Exprim
## 918                Grande      Agua Saborizada          Ciel Exprim
## 919                Grande      Agua Saborizada            Ciel Mini
## 920                Grande     Bebidas de Fruta       Delaware Punch
## 921                Grande     Bebidas de Fruta       Delaware Punch
## 922                Grande     Bebidas de Fruta               Frutsi
## 923                Grande     Bebidas de Fruta                Pulpy
## 924                Grande     Bebidas de Fruta           Valle Frut
## 925                Grande     Bebidas de Fruta           Valle Frut
## 926                Grande     Bebidas de Fruta           Valle Frut
## 927                Grande     Bebidas de Fruta           Valle Frut
## 928                Grande      Bebidas de Soya          AdeS Frutal
## 929                Grande      Bebidas de Soya          AdeS Frutal
## 930                Grande      Bebidas de Soya          AdeS Lácteo
## 931                Grande  Bebidas Energeticas              Glacéau
## 932                Grande  Bebidas Energeticas       Monster Energy
## 933                Grande Cafe Listo Para Bebe         Barista Bros
## 934                Grande          Colas Light      Coca-Cola Light
## 935                Grande          Colas Light      Coca-Cola Light
## 936                Grande          Colas Light      Coca-Cola Light
## 937                Grande          Colas Light      Coca-Cola Light
## 938                Grande          Colas Light      Coca-Cola Light
## 939                Grande          Colas Light      Coca-Cola Light
## 940                Grande          Colas Light      Coca-Cola Light
## 941                Grande          Colas Light      Coca-Cola Light
## 942                Grande          Colas Light      Coca-Cola Light
## 943                Grande          Colas Light      Coca-Cola Light
## 944                Grande          Colas Light Coca-Cola Sin Azúcar
## 945                Grande          Colas Light Coca-Cola Sin Azúcar
## 946                Grande          Colas Light Coca-Cola Sin Azúcar
## 947                Grande          Colas Light Coca-Cola Sin Azúcar
## 948                Grande          Colas Light Coca-Cola Sin Azúcar
## 949                Grande          Colas Light Coca-Cola Sin Azúcar
## 950                Grande          Colas Light Coca-Cola Sin Azúcar
## 951                Grande        Colas Regular            Coca-Cola
## 952                Grande        Colas Regular            Coca-Cola
## 953                Grande        Colas Regular            Coca-Cola
## 954                Grande        Colas Regular            Coca-Cola
## 955                Grande        Colas Regular            Coca-Cola
## 956                Grande        Colas Regular            Coca-Cola
## 957                Grande        Colas Regular            Coca-Cola
## 958                Grande        Colas Regular            Coca-Cola
## 959                Grande        Colas Regular            Coca-Cola
## 960                Grande        Colas Regular            Coca-Cola
## 961                Grande        Colas Regular            Coca-Cola
## 962                Grande        Colas Regular            Coca-Cola
## 963                Grande        Colas Regular            Coca-Cola
## 964                Grande        Colas Regular            Coca-Cola
## 965                Grande        Colas Regular            Coca-Cola
## 966                Grande        Colas Regular            Coca-Cola
## 967                Grande        Colas Regular            Coca-Cola
## 968                Grande        Colas Regular            Coca-Cola
## 969                Grande        Colas Regular            Coca-Cola
## 970                Grande        Colas Regular            Coca-Cola
## 971                Grande        Colas Regular            Coca-Cola
## 972                Grande   Isotónicos Regular             Powerade
## 973                Grande   Isotónicos Regular             Powerade
## 974                Grande     Jugos y Néctares            Del Valle
## 975                Grande     Jugos y Néctares            Del Valle
## 976                Grande     Jugos y Néctares            Del Valle
## 977                Grande     Jugos y Néctares            Del Valle
## 978                Grande     Jugos y Néctares            Del Valle
## 979                Grande     Jugos y Néctares            Del Valle
## 980                Grande     Jugos y Néctares            Del Valle
## 981                Grande     Jugos y Néctares Del Valle NutriForte
## 982                Grande     Jugos y Néctares Del Valle NutriVeget
## 983                Grande     Jugos y Néctares    Del Valle Reserva
## 984                Grande     Jugos y Néctares    Del Valle Reserva
## 985                Grande Leche UHT Especializ Santa Clara Deslacto
## 986                Grande Leche UHT Especializ Santa Clara Deslacto
## 987                Grande    Leche UHT Regular   Santa Clara Entera
## 988                Grande    Leche UHT Regular    Santa Clara Light
## 989                Grande Leche UHT Saborizada Santa Clara Saboriza
## 990                Grande        Sabores Light     Del Valle y Nada
## 991                Grande        Sabores Light     Del Valle y Nada
## 992                Grande        Sabores Light          Sprite Zero
## 993                Grande        Sabores Light          Sprite Zero
## 994                Grande        Sabores Light          Sprite Zero
## 995                Grande      Sabores Regular     Del Valle y Nada
## 996                Grande      Sabores Regular     Del Valle y Nada
## 997                Grande      Sabores Regular                Fanta
## 998                Grande      Sabores Regular                Fanta
## 999                Grande      Sabores Regular                Fanta
## 1000               Grande      Sabores Regular                Fanta
## 1001               Grande      Sabores Regular                Fanta
## 1002               Grande      Sabores Regular                Fanta
## 1003               Grande      Sabores Regular                Fanta
## 1004               Grande      Sabores Regular               Fresca
## 1005               Grande      Sabores Regular               Fresca
## 1006               Grande      Sabores Regular               Fresca
## 1007               Grande      Sabores Regular               Fresca
## 1008               Grande      Sabores Regular                 Joya
## 1009               Grande      Sabores Regular                 Joya
## 1010               Grande      Sabores Regular         Manzana Lift
## 1011               Grande      Sabores Regular         Manzana Lift
## 1012               Grande      Sabores Regular         Manzana Lift
## 1013               Grande      Sabores Regular         Manzana Lift
## 1014               Grande      Sabores Regular               Senzao
## 1015               Grande      Sabores Regular        Sidral Mundet
## 1016               Grande      Sabores Regular        Sidral Mundet
## 1017               Grande      Sabores Regular        Sidral Mundet
## 1018               Grande      Sabores Regular        Sidral Mundet
## 1019               Grande      Sabores Regular               Sprite
## 1020               Grande      Sabores Regular               Sprite
## 1021               Grande      Sabores Regular               Sprite
## 1022               Grande      Sabores Regular               Sprite
## 1023               Grande      Sabores Regular               Sprite
## 1024               Grande      Sabores Regular               Sprite
## 1025               Grande      Sabores Regular               Sprite
## 1026               Grande           Té Regular             Fuze Tea
## 1027               Grande           Té Regular             Fuze Tea
## 1028               Grande           Té Regular             Fuze Tea
## 1029               Grande         Agua Mineral      Topo Chico A.M.
## 1030               Grande      Agua Purificada Ciel Agua Purificada
## 1031               Grande      Agua Purificada Ciel Agua Purificada
## 1032               Grande      Agua Purificada Ciel Agua Purificada
## 1033               Grande      Agua Saborizada          Ciel Exprim
## 1034               Grande      Agua Saborizada          Ciel Exprim
## 1035               Grande     Bebidas de Fruta           Valle Frut
## 1036               Grande     Bebidas de Fruta           Valle Frut
## 1037               Grande      Bebidas de Soya          AdeS Frutal
## 1038               Grande      Bebidas de Soya          AdeS Lácteo
## 1039               Grande  Bebidas Energeticas       Monster Energy
## 1040               Grande          Colas Light      Coca-Cola Light
## 1041               Grande          Colas Light      Coca-Cola Light
## 1042               Grande          Colas Light Coca-Cola Sin Azúcar
## 1043               Grande          Colas Light Coca-Cola Sin Azúcar
## 1044               Grande          Colas Light Coca-Cola Sin Azúcar
## 1045               Grande          Colas Light Coca-Cola Sin Azúcar
## 1046               Grande          Colas Light Coca-Cola Sin Azúcar
## 1047               Grande        Colas Regular            Coca-Cola
## 1048               Grande        Colas Regular            Coca-Cola
## 1049               Grande        Colas Regular            Coca-Cola
## 1050               Grande        Colas Regular            Coca-Cola
## 1051               Grande        Colas Regular            Coca-Cola
## 1052               Grande        Colas Regular            Coca-Cola
## 1053               Grande        Colas Regular            Coca-Cola
## 1054               Grande        Colas Regular            Coca-Cola
## 1055               Grande        Colas Regular            Coca-Cola
## 1056               Grande        Colas Regular            Coca-Cola
## 1057               Grande        Colas Regular            Coca-Cola
## 1058               Grande        Colas Regular            Coca-Cola
## 1059               Grande        Colas Regular            Coca-Cola
## 1060               Grande   Isotónicos Regular             Powerade
## 1061               Grande   Isotónicos Regular             Powerade
## 1062               Grande   Isotónicos Regular             Powerade
## 1063               Grande     Jugos y Néctares            Del Valle
## 1064               Grande     Jugos y Néctares            Del Valle
## 1065               Grande     Jugos y Néctares            Del Valle
## 1066               Grande     Jugos y Néctares Del Valle NutriForte
## 1067               Grande    Leche UHT Regular   Santa Clara Entera
## 1068               Grande    Leche UHT Regular    Santa Clara Light
## 1069               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1070               Grande        Sabores Light     Del Valle y Nada
## 1071               Grande      Sabores Regular     Del Valle y Nada
## 1072               Grande      Sabores Regular                Fanta
## 1073               Grande      Sabores Regular                Fanta
## 1074               Grande      Sabores Regular                Fanta
## 1075               Grande      Sabores Regular                Fanta
## 1076               Grande      Sabores Regular                Fanta
## 1077               Grande      Sabores Regular               Fresca
## 1078               Grande      Sabores Regular               Fresca
## 1079               Grande      Sabores Regular               Fresca
## 1080               Grande      Sabores Regular               Fresca
## 1081               Grande      Sabores Regular               Fresca
## 1082               Grande      Sabores Regular         Manzana Lift
## 1083               Grande      Sabores Regular         Manzana Lift
## 1084               Grande      Sabores Regular         Manzana Lift
## 1085               Grande      Sabores Regular        Sidral Mundet
## 1086               Grande      Sabores Regular        Sidral Mundet
## 1087               Grande      Sabores Regular        Sidral Mundet
## 1088               Grande      Sabores Regular               Sprite
## 1089               Grande      Sabores Regular               Sprite
## 1090               Grande      Sabores Regular               Sprite
## 1091               Grande      Sabores Regular               Sprite
## 1092               Grande      Sabores Regular               Sprite
## 1093               Grande      Sabores Regular               Sprite
## 1094               Grande      Sabores Regular               Sprite
## 1095               Grande      Sabores Regular               Sprite
## 1096               Grande           Té Regular             Fuze Tea
## 1097               Grande         Agua Mineral      Topo Chico A.M.
## 1098               Grande      Agua Purificada Ciel Agua Purificada
## 1099               Grande      Agua Purificada Ciel Agua Purificada
## 1100               Grande      Agua Purificada Ciel Agua Purificada
## 1101               Grande      Agua Saborizada          Ciel Exprim
## 1102               Grande      Agua Saborizada          Ciel Exprim
## 1103               Grande     Bebidas de Fruta               Frutsi
## 1104               Grande     Bebidas de Fruta                Pulpy
## 1105               Grande     Bebidas de Fruta           Valle Frut
## 1106               Grande     Bebidas de Fruta           Valle Frut
## 1107               Grande      Bebidas de Soya          AdeS Frutal
## 1108               Grande  Bebidas Energeticas       Monster Energy
## 1109               Grande          Colas Light      Coca-Cola Light
## 1110               Grande          Colas Light      Coca-Cola Light
## 1111               Grande          Colas Light      Coca-Cola Light
## 1112               Grande          Colas Light Coca-Cola Sin Azúcar
## 1113               Grande          Colas Light Coca-Cola Sin Azúcar
## 1114               Grande        Colas Regular            Coca-Cola
## 1115               Grande        Colas Regular            Coca-Cola
## 1116               Grande        Colas Regular            Coca-Cola
## 1117               Grande        Colas Regular            Coca-Cola
## 1118               Grande        Colas Regular            Coca-Cola
## 1119               Grande        Colas Regular            Coca-Cola
## 1120               Grande        Colas Regular            Coca-Cola
## 1121               Grande        Colas Regular            Coca-Cola
## 1122               Grande        Colas Regular            Coca-Cola
## 1123               Grande        Colas Regular            Coca-Cola
## 1124               Grande        Colas Regular            Coca-Cola
## 1125               Grande        Colas Regular            Coca-Cola
## 1126               Grande        Colas Regular            Coca-Cola
## 1127               Grande        Colas Regular            Coca-Cola
## 1128               Grande        Colas Regular            Coca-Cola
## 1129               Grande   Isotónicos Regular             Powerade
## 1130               Grande   Isotónicos Regular             Powerade
## 1131               Grande   Isotónicos Regular             Powerade
## 1132               Grande     Jugos y Néctares            Del Valle
## 1133               Grande     Jugos y Néctares            Del Valle
## 1134               Grande     Jugos y Néctares Del Valle NutriForte
## 1135               Grande     Jugos y Néctares    Del Valle Reserva
## 1136               Grande Leche UHT Especializ Santa Clara Deslacto
## 1137               Grande    Leche UHT Regular   Santa Clara Entera
## 1138               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1139               Grande        Sabores Light     Del Valle y Nada
## 1140               Grande      Sabores Regular     Del Valle y Nada
## 1141               Grande      Sabores Regular                Fanta
## 1142               Grande      Sabores Regular                Fanta
## 1143               Grande      Sabores Regular                Fanta
## 1144               Grande      Sabores Regular                Fanta
## 1145               Grande      Sabores Regular                Fanta
## 1146               Grande      Sabores Regular                Fanta
## 1147               Grande      Sabores Regular               Fresca
## 1148               Grande      Sabores Regular               Fresca
## 1149               Grande      Sabores Regular                 Joya
## 1150               Grande      Sabores Regular         Manzana Lift
## 1151               Grande      Sabores Regular         Manzana Lift
## 1152               Grande      Sabores Regular        Sidral Mundet
## 1153               Grande      Sabores Regular        Sidral Mundet
## 1154               Grande      Sabores Regular        Sidral Mundet
## 1155               Grande      Sabores Regular        Sidral Mundet
## 1156               Grande      Sabores Regular        Sidral Mundet
## 1157               Grande      Sabores Regular               Sprite
## 1158               Grande      Sabores Regular               Sprite
## 1159               Grande      Sabores Regular               Sprite
## 1160               Grande      Sabores Regular               Sprite
## 1161               Grande      Sabores Regular               Sprite
## 1162               Grande      Sabores Regular               Sprite
## 1163               Grande           Té Regular             Fuze Tea
## 1164               Grande         Agua Mineral    Ciel Mineralizada
## 1165               Grande         Agua Mineral    Ciel Mineralizada
## 1166               Grande         Agua Mineral      Topo Chico A.M.
## 1167               Grande         Agua Mineral      Topo Chico A.M.
## 1168               Grande      Agua Purificada Ciel Agua Purificada
## 1169               Grande      Agua Purificada Ciel Agua Purificada
## 1170               Grande      Agua Purificada Ciel Agua Purificada
## 1171               Grande      Agua Purificada Ciel Agua Purificada
## 1172               Grande      Agua Saborizada          Ciel Exprim
## 1173               Grande      Agua Saborizada          Ciel Exprim
## 1174               Grande      Agua Saborizada          Ciel Exprim
## 1175               Grande     Bebidas de Fruta       Delaware Punch
## 1176               Grande     Bebidas de Fruta               Frutsi
## 1177               Grande     Bebidas de Fruta                Pulpy
## 1178               Grande     Bebidas de Fruta           Valle Frut
## 1179               Grande     Bebidas de Fruta           Valle Frut
## 1180               Grande     Bebidas de Fruta           Valle Frut
## 1181               Grande     Bebidas de Fruta           Valle Frut
## 1182               Grande      Bebidas de Soya          AdeS Frutal
## 1183               Grande      Bebidas de Soya          AdeS Frutal
## 1184               Grande      Bebidas de Soya          AdeS Lácteo
## 1185               Grande  Bebidas Energeticas              Glacéau
## 1186               Grande  Bebidas Energeticas       Monster Energy
## 1187               Grande Cafe Listo Para Bebe         Barista Bros
## 1188               Grande          Colas Light      Coca-Cola Light
## 1189               Grande          Colas Light      Coca-Cola Light
## 1190               Grande          Colas Light      Coca-Cola Light
## 1191               Grande          Colas Light      Coca-Cola Light
## 1192               Grande          Colas Light      Coca-Cola Light
## 1193               Grande          Colas Light      Coca-Cola Light
## 1194               Grande          Colas Light      Coca-Cola Light
## 1195               Grande          Colas Light Coca-Cola Sin Azúcar
## 1196               Grande          Colas Light Coca-Cola Sin Azúcar
## 1197               Grande          Colas Light Coca-Cola Sin Azúcar
## 1198               Grande          Colas Light Coca-Cola Sin Azúcar
## 1199               Grande          Colas Light Coca-Cola Sin Azúcar
## 1200               Grande        Colas Regular            Coca-Cola
## 1201               Grande        Colas Regular            Coca-Cola
## 1202               Grande        Colas Regular            Coca-Cola
## 1203               Grande        Colas Regular            Coca-Cola
## 1204               Grande        Colas Regular            Coca-Cola
## 1205               Grande        Colas Regular            Coca-Cola
## 1206               Grande        Colas Regular            Coca-Cola
## 1207               Grande        Colas Regular            Coca-Cola
## 1208               Grande        Colas Regular            Coca-Cola
## 1209               Grande        Colas Regular            Coca-Cola
## 1210               Grande        Colas Regular            Coca-Cola
## 1211               Grande        Colas Regular            Coca-Cola
## 1212               Grande        Colas Regular            Coca-Cola
## 1213               Grande        Colas Regular            Coca-Cola
## 1214               Grande        Colas Regular            Coca-Cola
## 1215               Grande        Colas Regular            Coca-Cola
## 1216               Grande        Colas Regular            Coca-Cola
## 1217               Grande        Colas Regular            Coca-Cola
## 1218               Grande        Colas Regular            Coca-Cola
## 1219               Grande   Isotónicos Regular             Powerade
## 1220               Grande   Isotónicos Regular             Powerade
## 1221               Grande     Jugos y Néctares            Del Valle
## 1222               Grande     Jugos y Néctares            Del Valle
## 1223               Grande     Jugos y Néctares Del Valle NutriVeget
## 1224               Grande     Jugos y Néctares    Del Valle Reserva
## 1225               Grande Leche UHT Especializ Santa Clara Deslacto
## 1226               Grande Leche UHT Especializ Santa Clara Deslacto
## 1227               Grande    Leche UHT Regular   Santa Clara Entera
## 1228               Grande    Leche UHT Regular    Santa Clara Light
## 1229               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1230               Grande        Sabores Light     Del Valle y Nada
## 1231               Grande        Sabores Light     Del Valle y Nada
## 1232               Grande        Sabores Light          Sprite Zero
## 1233               Grande      Sabores Regular     Del Valle y Nada
## 1234               Grande      Sabores Regular     Del Valle y Nada
## 1235               Grande      Sabores Regular                Fanta
## 1236               Grande      Sabores Regular                Fanta
## 1237               Grande      Sabores Regular                Fanta
## 1238               Grande      Sabores Regular                Fanta
## 1239               Grande      Sabores Regular                Fanta
## 1240               Grande      Sabores Regular                Fanta
## 1241               Grande      Sabores Regular                Fanta
## 1242               Grande      Sabores Regular                Fanta
## 1243               Grande      Sabores Regular               Fresca
## 1244               Grande      Sabores Regular               Fresca
## 1245               Grande      Sabores Regular               Fresca
## 1246               Grande      Sabores Regular               Fresca
## 1247               Grande      Sabores Regular               Fresca
## 1248               Grande      Sabores Regular               Fresca
## 1249               Grande      Sabores Regular                 Joya
## 1250               Grande      Sabores Regular         Manzana Lift
## 1251               Grande      Sabores Regular         Manzana Lift
## 1252               Grande      Sabores Regular         Manzana Lift
## 1253               Grande      Sabores Regular         Manzana Lift
## 1254               Grande      Sabores Regular         Manzana Lift
## 1255               Grande      Sabores Regular               Senzao
## 1256               Grande      Sabores Regular        Sidral Mundet
## 1257               Grande      Sabores Regular        Sidral Mundet
## 1258               Grande      Sabores Regular        Sidral Mundet
## 1259               Grande      Sabores Regular        Sidral Mundet
## 1260               Grande      Sabores Regular               Sprite
## 1261               Grande      Sabores Regular               Sprite
## 1262               Grande      Sabores Regular               Sprite
## 1263               Grande      Sabores Regular               Sprite
## 1264               Grande      Sabores Regular               Sprite
## 1265               Grande      Sabores Regular               Sprite
## 1266               Grande      Sabores Regular               Sprite
## 1267               Grande      Sabores Regular               Sprite
## 1268               Grande           Té Regular             Fuze Tea
## 1269               Grande           Té Regular             Fuze Tea
## 1270               Grande         Agua Mineral    Ciel Mineralizada
## 1271               Grande         Agua Mineral      Topo Chico A.M.
## 1272               Grande      Agua Purificada Ciel Agua Purificada
## 1273               Grande      Agua Purificada Ciel Agua Purificada
## 1274               Grande      Agua Purificada Ciel Agua Purificada
## 1275               Grande      Agua Saborizada          Ciel Exprim
## 1276               Grande      Agua Saborizada          Ciel Exprim
## 1277               Grande     Bebidas de Fruta       Delaware Punch
## 1278               Grande     Bebidas de Fruta               Frutsi
## 1279               Grande     Bebidas de Fruta                Pulpy
## 1280               Grande     Bebidas de Fruta           Valle Frut
## 1281               Grande     Bebidas de Fruta           Valle Frut
## 1282               Grande     Bebidas de Fruta           Valle Frut
## 1283               Grande     Bebidas de Fruta           Valle Frut
## 1284               Grande  Bebidas Energeticas              Glacéau
## 1285               Grande  Bebidas Energeticas       Monster Energy
## 1286               Grande Cafe Listo Para Bebe         Barista Bros
## 1287               Grande          Colas Light      Coca-Cola Light
## 1288               Grande          Colas Light      Coca-Cola Light
## 1289               Grande          Colas Light      Coca-Cola Light
## 1290               Grande          Colas Light      Coca-Cola Light
## 1291               Grande          Colas Light      Coca-Cola Light
## 1292               Grande          Colas Light Coca-Cola Sin Azúcar
## 1293               Grande          Colas Light Coca-Cola Sin Azúcar
## 1294               Grande          Colas Light Coca-Cola Sin Azúcar
## 1295               Grande          Colas Light Coca-Cola Sin Azúcar
## 1296               Grande          Colas Light Coca-Cola Sin Azúcar
## 1297               Grande        Colas Regular            Coca-Cola
## 1298               Grande        Colas Regular            Coca-Cola
## 1299               Grande        Colas Regular            Coca-Cola
## 1300               Grande        Colas Regular            Coca-Cola
## 1301               Grande        Colas Regular            Coca-Cola
## 1302               Grande        Colas Regular            Coca-Cola
## 1303               Grande        Colas Regular            Coca-Cola
## 1304               Grande        Colas Regular            Coca-Cola
## 1305               Grande        Colas Regular            Coca-Cola
## 1306               Grande        Colas Regular            Coca-Cola
## 1307               Grande        Colas Regular            Coca-Cola
## 1308               Grande        Colas Regular            Coca-Cola
## 1309               Grande        Colas Regular            Coca-Cola
## 1310               Grande   Isotónicos Regular             Powerade
## 1311               Grande   Isotónicos Regular             Powerade
## 1312               Grande   Isotónicos Regular             Powerade
## 1313               Grande     Jugos y Néctares            Del Valle
## 1314               Grande     Jugos y Néctares            Del Valle
## 1315               Grande     Jugos y Néctares Del Valle NutriForte
## 1316               Grande     Jugos y Néctares    Del Valle Reserva
## 1317               Grande     Jugos y Néctares    Del Valle Reserva
## 1318               Grande Leche UHT Especializ Santa Clara Deslacto
## 1319               Grande Leche UHT Especializ Santa Clara Deslacto
## 1320               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1321               Grande        Sabores Light     Del Valle y Nada
## 1322               Grande        Sabores Light          Sprite Zero
## 1323               Grande      Sabores Regular     Del Valle y Nada
## 1324               Grande      Sabores Regular     Del Valle y Nada
## 1325               Grande      Sabores Regular                Fanta
## 1326               Grande      Sabores Regular                Fanta
## 1327               Grande      Sabores Regular                Fanta
## 1328               Grande      Sabores Regular                Fanta
## 1329               Grande      Sabores Regular               Fresca
## 1330               Grande      Sabores Regular               Fresca
## 1331               Grande      Sabores Regular               Fresca
## 1332               Grande      Sabores Regular                 Joya
## 1333               Grande      Sabores Regular         Manzana Lift
## 1334               Grande      Sabores Regular         Manzana Lift
## 1335               Grande      Sabores Regular         Manzana Lift
## 1336               Grande      Sabores Regular         Manzana Lift
## 1337               Grande      Sabores Regular               Senzao
## 1338               Grande      Sabores Regular        Sidral Mundet
## 1339               Grande      Sabores Regular        Sidral Mundet
## 1340               Grande      Sabores Regular        Sidral Mundet
## 1341               Grande      Sabores Regular               Sprite
## 1342               Grande      Sabores Regular               Sprite
## 1343               Grande      Sabores Regular               Sprite
## 1344               Grande      Sabores Regular               Sprite
## 1345               Grande      Sabores Regular               Sprite
## 1346               Grande      Sabores Regular               Sprite
## 1347               Grande      Sabores Regular               Sprite
## 1348               Grande           Té Regular             Fuze Tea
## 1349               Grande           Té Regular             Fuze Tea
## 1350               Grande         Agua Mineral      Topo Chico A.M.
## 1351               Grande         Agua Mineral      Topo Chico A.M.
## 1352               Grande      Agua Purificada Ciel Agua Purificada
## 1353               Grande      Agua Purificada Ciel Agua Purificada
## 1354               Grande      Agua Purificada Ciel Agua Purificada
## 1355               Grande     Bebidas de Fruta       Delaware Punch
## 1356               Grande     Bebidas de Fruta               Frutsi
## 1357               Grande     Bebidas de Fruta           Valle Frut
## 1358               Grande     Bebidas de Fruta           Valle Frut
## 1359               Grande     Bebidas de Fruta           Valle Frut
## 1360               Grande  Bebidas Energeticas                 Burn
## 1361               Grande  Bebidas Energeticas                 Burn
## 1362               Grande  Bebidas Energeticas       Monster Energy
## 1363               Grande Cafe Listo Para Bebe         Barista Bros
## 1364               Grande          Colas Light      Coca-Cola Light
## 1365               Grande          Colas Light      Coca-Cola Light
## 1366               Grande          Colas Light      Coca-Cola Light
## 1367               Grande          Colas Light      Coca-Cola Light
## 1368               Grande          Colas Light Coca-Cola Sin Azúcar
## 1369               Grande          Colas Light Coca-Cola Sin Azúcar
## 1370               Grande          Colas Light Coca-Cola Sin Azúcar
## 1371               Grande          Colas Light Coca-Cola Sin Azúcar
## 1372               Grande        Colas Regular            Coca-Cola
## 1373               Grande        Colas Regular            Coca-Cola
## 1374               Grande        Colas Regular            Coca-Cola
## 1375               Grande        Colas Regular            Coca-Cola
## 1376               Grande        Colas Regular            Coca-Cola
## 1377               Grande        Colas Regular            Coca-Cola
## 1378               Grande        Colas Regular            Coca-Cola
## 1379               Grande        Colas Regular            Coca-Cola
## 1380               Grande        Colas Regular            Coca-Cola
## 1381               Grande        Colas Regular            Coca-Cola
## 1382               Grande        Colas Regular            Coca-Cola
## 1383               Grande        Colas Regular            Coca-Cola
## 1384               Grande        Colas Regular            Coca-Cola
## 1385               Grande        Colas Regular            Coca-Cola
## 1386               Grande        Colas Regular            Coca-Cola
## 1387               Grande        Colas Regular            Coca-Cola
## 1388               Grande   Isotónicos Regular             Powerade
## 1389               Grande   Isotónicos Regular             Powerade
## 1390               Grande     Jugos y Néctares            Del Valle
## 1391               Grande     Jugos y Néctares Del Valle NutriVeget
## 1392               Grande     Jugos y Néctares    Del Valle Reserva
## 1393               Grande     Jugos y Néctares    Del Valle Reserva
## 1394               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1395               Grande        Sabores Light     Del Valle y Nada
## 1396               Grande      Sabores Regular     Del Valle y Nada
## 1397               Grande      Sabores Regular                Fanta
## 1398               Grande      Sabores Regular                Fanta
## 1399               Grande      Sabores Regular                Fanta
## 1400               Grande      Sabores Regular                Fanta
## 1401               Grande      Sabores Regular               Fresca
## 1402               Grande      Sabores Regular               Fresca
## 1403               Grande      Sabores Regular               Fresca
## 1404               Grande      Sabores Regular               Fresca
## 1405               Grande      Sabores Regular                 Joya
## 1406               Grande      Sabores Regular         Manzana Lift
## 1407               Grande      Sabores Regular         Manzana Lift
## 1408               Grande      Sabores Regular         Manzana Lift
## 1409               Grande      Sabores Regular               Senzao
## 1410               Grande      Sabores Regular        Sidral Mundet
## 1411               Grande      Sabores Regular        Sidral Mundet
## 1412               Grande      Sabores Regular        Sidral Mundet
## 1413               Grande      Sabores Regular        Sidral Mundet
## 1414               Grande      Sabores Regular               Sprite
## 1415               Grande      Sabores Regular               Sprite
## 1416               Grande      Sabores Regular               Sprite
## 1417               Grande      Sabores Regular               Sprite
## 1418               Grande           Té Regular             Fuze Tea
## 1419               Grande         Agua Mineral    Ciel Mineralizada
## 1420               Grande         Agua Mineral      Topo Chico A.M.
## 1421               Grande         Agua Mineral      Topo Chico A.M.
## 1422               Grande      Agua Purificada Ciel Agua Purificada
## 1423               Grande      Agua Purificada Ciel Agua Purificada
## 1424               Grande      Agua Purificada Ciel Agua Purificada
## 1425               Grande      Agua Purificada Ciel Agua Purificada
## 1426               Grande      Agua Saborizada          Ciel Exprim
## 1427               Grande      Agua Saborizada          Ciel Exprim
## 1428               Grande      Agua Saborizada          Ciel Exprim
## 1429               Grande     Bebidas de Fruta       Delaware Punch
## 1430               Grande     Bebidas de Fruta       Delaware Punch
## 1431               Grande     Bebidas de Fruta               Frutsi
## 1432               Grande     Bebidas de Fruta                Pulpy
## 1433               Grande     Bebidas de Fruta           Valle Frut
## 1434               Grande     Bebidas de Fruta           Valle Frut
## 1435               Grande     Bebidas de Fruta           Valle Frut
## 1436               Grande      Bebidas de Soya          AdeS Frutal
## 1437               Grande      Bebidas de Soya          AdeS Lácteo
## 1438               Grande  Bebidas Energeticas              Glacéau
## 1439               Grande  Bebidas Energeticas       Monster Energy
## 1440               Grande Cafe Listo Para Bebe         Barista Bros
## 1441               Grande          Colas Light      Coca-Cola Light
## 1442               Grande          Colas Light      Coca-Cola Light
## 1443               Grande          Colas Light      Coca-Cola Light
## 1444               Grande          Colas Light      Coca-Cola Light
## 1445               Grande          Colas Light      Coca-Cola Light
## 1446               Grande          Colas Light Coca-Cola Sin Azúcar
## 1447               Grande          Colas Light Coca-Cola Sin Azúcar
## 1448               Grande          Colas Light Coca-Cola Sin Azúcar
## 1449               Grande          Colas Light Coca-Cola Sin Azúcar
## 1450               Grande        Colas Regular            Coca-Cola
## 1451               Grande        Colas Regular            Coca-Cola
## 1452               Grande        Colas Regular            Coca-Cola
## 1453               Grande        Colas Regular            Coca-Cola
## 1454               Grande        Colas Regular            Coca-Cola
## 1455               Grande        Colas Regular            Coca-Cola
## 1456               Grande        Colas Regular            Coca-Cola
## 1457               Grande        Colas Regular            Coca-Cola
## 1458               Grande        Colas Regular            Coca-Cola
## 1459               Grande        Colas Regular            Coca-Cola
## 1460               Grande        Colas Regular            Coca-Cola
## 1461               Grande        Colas Regular            Coca-Cola
## 1462               Grande        Colas Regular            Coca-Cola
## 1463               Grande        Colas Regular            Coca-Cola
## 1464               Grande        Colas Regular            Coca-Cola
## 1465               Grande        Colas Regular            Coca-Cola
## 1466               Grande        Colas Regular            Coca-Cola
## 1467               Grande        Colas Regular            Coca-Cola
## 1468               Grande        Colas Regular            Coca-Cola
## 1469               Grande        Colas Regular            Coca-Cola
## 1470               Grande        Colas Regular            Coca-Cola
## 1471               Grande   Isotónicos Regular             Powerade
## 1472               Grande   Isotónicos Regular             Powerade
## 1473               Grande     Jugos y Néctares            Del Valle
## 1474               Grande     Jugos y Néctares            Del Valle
## 1475               Grande     Jugos y Néctares            Del Valle
## 1476               Grande     Jugos y Néctares    Del Valle Reserva
## 1477               Grande     Jugos y Néctares    Del Valle Reserva
## 1478               Grande Leche UHT Especializ Santa Clara Deslacto
## 1479               Grande Leche UHT Especializ Santa Clara Deslacto
## 1480               Grande    Leche UHT Regular   Santa Clara Entera
## 1481               Grande    Leche UHT Regular    Santa Clara Light
## 1482               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1483               Grande        Sabores Light     Del Valle y Nada
## 1484               Grande        Sabores Light          Sprite Zero
## 1485               Grande      Sabores Regular     Del Valle y Nada
## 1486               Grande      Sabores Regular                Fanta
## 1487               Grande      Sabores Regular                Fanta
## 1488               Grande      Sabores Regular                Fanta
## 1489               Grande      Sabores Regular                Fanta
## 1490               Grande      Sabores Regular                Fanta
## 1491               Grande      Sabores Regular                Fanta
## 1492               Grande      Sabores Regular                Fanta
## 1493               Grande      Sabores Regular                Fanta
## 1494               Grande      Sabores Regular               Fresca
## 1495               Grande      Sabores Regular               Fresca
## 1496               Grande      Sabores Regular               Fresca
## 1497               Grande      Sabores Regular               Fresca
## 1498               Grande      Sabores Regular               Fresca
## 1499               Grande      Sabores Regular         Manzana Lift
## 1500               Grande      Sabores Regular         Manzana Lift
## 1501               Grande      Sabores Regular         Manzana Lift
## 1502               Grande      Sabores Regular         Manzana Lift
## 1503               Grande      Sabores Regular               Senzao
## 1504               Grande      Sabores Regular        Sidral Mundet
## 1505               Grande      Sabores Regular        Sidral Mundet
## 1506               Grande      Sabores Regular        Sidral Mundet
## 1507               Grande      Sabores Regular               Sprite
## 1508               Grande      Sabores Regular               Sprite
## 1509               Grande      Sabores Regular               Sprite
## 1510               Grande      Sabores Regular               Sprite
## 1511               Grande      Sabores Regular               Sprite
## 1512               Grande      Sabores Regular               Sprite
## 1513               Grande      Sabores Regular               Sprite
## 1514               Grande      Sabores Regular               Sprite
## 1515               Grande           Té Regular             Fuze Tea
## 1516               Grande           Té Regular             Fuze Tea
## 1517               Grande           Té Regular             Fuze Tea
## 1518               Grande         Agua Mineral    Ciel Mineralizada
## 1519               Grande         Agua Mineral      Topo Chico A.M.
## 1520               Grande      Agua Purificada Ciel Agua Purificada
## 1521               Grande      Agua Purificada Ciel Agua Purificada
## 1522               Grande      Agua Purificada Ciel Agua Purificada
## 1523               Grande      Agua Saborizada          Ciel Exprim
## 1524               Grande      Agua Saborizada          Ciel Exprim
## 1525               Grande     Bebidas de Fruta       Delaware Punch
## 1526               Grande     Bebidas de Fruta       Delaware Punch
## 1527               Grande     Bebidas de Fruta               Frutsi
## 1528               Grande     Bebidas de Fruta           Valle Frut
## 1529               Grande     Bebidas de Fruta           Valle Frut
## 1530               Grande     Bebidas de Fruta           Valle Frut
## 1531               Grande      Bebidas de Soya          AdeS Frutal
## 1532               Grande  Bebidas Energeticas       Monster Energy
## 1533               Grande Cafe Listo Para Bebe         Barista Bros
## 1534               Grande          Colas Light      Coca-Cola Light
## 1535               Grande          Colas Light      Coca-Cola Light
## 1536               Grande          Colas Light      Coca-Cola Light
## 1537               Grande          Colas Light      Coca-Cola Light
## 1538               Grande          Colas Light      Coca-Cola Light
## 1539               Grande          Colas Light      Coca-Cola Light
## 1540               Grande          Colas Light Coca-Cola Sin Azúcar
## 1541               Grande          Colas Light Coca-Cola Sin Azúcar
## 1542               Grande          Colas Light Coca-Cola Sin Azúcar
## 1543               Grande          Colas Light Coca-Cola Sin Azúcar
## 1544               Grande          Colas Light Coca-Cola Sin Azúcar
## 1545               Grande        Colas Regular            Coca-Cola
## 1546               Grande        Colas Regular            Coca-Cola
## 1547               Grande        Colas Regular            Coca-Cola
## 1548               Grande        Colas Regular            Coca-Cola
## 1549               Grande        Colas Regular            Coca-Cola
## 1550               Grande        Colas Regular            Coca-Cola
## 1551               Grande        Colas Regular            Coca-Cola
## 1552               Grande        Colas Regular            Coca-Cola
## 1553               Grande        Colas Regular            Coca-Cola
## 1554               Grande        Colas Regular            Coca-Cola
## 1555               Grande        Colas Regular            Coca-Cola
## 1556               Grande        Colas Regular            Coca-Cola
## 1557               Grande        Colas Regular            Coca-Cola
## 1558               Grande        Colas Regular            Coca-Cola
## 1559               Grande        Colas Regular            Coca-Cola
## 1560               Grande        Colas Regular            Coca-Cola
## 1561               Grande   Isotónicos Regular             Powerade
## 1562               Grande   Isotónicos Regular             Powerade
## 1563               Grande     Jugos y Néctares            Del Valle
## 1564               Grande     Jugos y Néctares            Del Valle
## 1565               Grande     Jugos y Néctares            Del Valle
## 1566               Grande     Jugos y Néctares            Del Valle
## 1567               Grande     Jugos y Néctares Del Valle NutriVeget
## 1568               Grande     Jugos y Néctares    Del Valle Reserva
## 1569               Grande     Jugos y Néctares    Del Valle Reserva
## 1570               Grande Leche UHT Especializ Santa Clara Deslacto
## 1571               Grande    Leche UHT Regular   Santa Clara Entera
## 1572               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1573               Grande        Sabores Light     Del Valle y Nada
## 1574               Grande        Sabores Light          Sprite Zero
## 1575               Grande      Sabores Regular     Del Valle y Nada
## 1576               Grande      Sabores Regular                Fanta
## 1577               Grande      Sabores Regular                Fanta
## 1578               Grande      Sabores Regular                Fanta
## 1579               Grande      Sabores Regular                Fanta
## 1580               Grande      Sabores Regular                Fanta
## 1581               Grande      Sabores Regular                Fanta
## 1582               Grande      Sabores Regular                Fanta
## 1583               Grande      Sabores Regular               Fresca
## 1584               Grande      Sabores Regular               Fresca
## 1585               Grande      Sabores Regular               Fresca
## 1586               Grande      Sabores Regular               Fresca
## 1587               Grande      Sabores Regular                 Joya
## 1588               Grande      Sabores Regular                 Joya
## 1589               Grande      Sabores Regular         Manzana Lift
## 1590               Grande      Sabores Regular         Manzana Lift
## 1591               Grande      Sabores Regular         Manzana Lift
## 1592               Grande      Sabores Regular         Manzana Lift
## 1593               Grande      Sabores Regular               Senzao
## 1594               Grande      Sabores Regular        Sidral Mundet
## 1595               Grande      Sabores Regular        Sidral Mundet
## 1596               Grande      Sabores Regular        Sidral Mundet
## 1597               Grande      Sabores Regular               Sprite
## 1598               Grande      Sabores Regular               Sprite
## 1599               Grande      Sabores Regular               Sprite
## 1600               Grande      Sabores Regular               Sprite
## 1601               Grande      Sabores Regular               Sprite
## 1602               Grande      Sabores Regular               Sprite
## 1603               Grande      Sabores Regular               Sprite
## 1604               Grande           Té Regular             Fuze Tea
## 1605               Grande         Agua Mineral    Ciel Mineralizada
## 1606               Grande         Agua Mineral    Ciel Mineralizada
## 1607               Grande         Agua Mineral      Topo Chico A.M.
## 1608               Grande      Agua Purificada Ciel Agua Purificada
## 1609               Grande      Agua Purificada Ciel Agua Purificada
## 1610               Grande      Agua Purificada Ciel Agua Purificada
## 1611               Grande     Bebidas de Fruta       Delaware Punch
## 1612               Grande     Bebidas de Fruta               Frutsi
## 1613               Grande     Bebidas de Fruta           Valle Frut
## 1614               Grande     Bebidas de Fruta           Valle Frut
## 1615               Grande          Colas Light Coca-Cola Sin Azúcar
## 1616               Grande          Colas Light Coca-Cola Sin Azúcar
## 1617               Grande          Colas Light Coca-Cola Sin Azúcar
## 1618               Grande        Colas Regular            Coca-Cola
## 1619               Grande        Colas Regular            Coca-Cola
## 1620               Grande        Colas Regular            Coca-Cola
## 1621               Grande        Colas Regular            Coca-Cola
## 1622               Grande        Colas Regular            Coca-Cola
## 1623               Grande        Colas Regular            Coca-Cola
## 1624               Grande        Colas Regular            Coca-Cola
## 1625               Grande        Colas Regular            Coca-Cola
## 1626               Grande   Isotónicos Regular             Powerade
## 1627               Grande     Jugos y Néctares            Del Valle
## 1628               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1629               Grande      Sabores Regular                Fanta
## 1630               Grande      Sabores Regular               Fresca
## 1631               Grande      Sabores Regular         Manzana Lift
## 1632               Grande      Sabores Regular        Sidral Mundet
## 1633               Grande      Sabores Regular        Sidral Mundet
## 1634               Grande      Sabores Regular               Sprite
## 1635               Grande           Té Regular             Fuze Tea
## 1636               Grande         Agua Mineral    Ciel Mineralizada
## 1637               Grande         Agua Mineral      Topo Chico A.M.
## 1638               Grande      Agua Purificada Ciel Agua Purificada
## 1639               Grande      Agua Purificada Ciel Agua Purificada
## 1640               Grande      Agua Purificada Ciel Agua Purificada
## 1641               Grande      Agua Purificada Ciel Agua Purificada
## 1642               Grande      Agua Saborizada          Ciel Exprim
## 1643               Grande      Agua Saborizada          Ciel Exprim
## 1644               Grande     Bebidas de Fruta               Bebere
## 1645               Grande     Bebidas de Fruta       Delaware Punch
## 1646               Grande     Bebidas de Fruta               Frutsi
## 1647               Grande     Bebidas de Fruta                Pulpy
## 1648               Grande     Bebidas de Fruta           Valle Frut
## 1649               Grande     Bebidas de Fruta           Valle Frut
## 1650               Grande     Bebidas de Fruta           Valle Frut
## 1651               Grande     Bebidas de Fruta           Valle Frut
## 1652               Grande      Bebidas de Soya          AdeS Frutal
## 1653               Grande  Bebidas Energeticas       Monster Energy
## 1654               Grande Cafe Listo Para Bebe         Barista Bros
## 1655               Grande          Colas Light      Coca-Cola Light
## 1656               Grande          Colas Light      Coca-Cola Light
## 1657               Grande          Colas Light      Coca-Cola Light
## 1658               Grande          Colas Light      Coca-Cola Light
## 1659               Grande          Colas Light      Coca-Cola Light
## 1660               Grande          Colas Light Coca-Cola Sin Azúcar
## 1661               Grande          Colas Light Coca-Cola Sin Azúcar
## 1662               Grande          Colas Light Coca-Cola Sin Azúcar
## 1663               Grande        Colas Regular            Coca-Cola
## 1664               Grande        Colas Regular            Coca-Cola
## 1665               Grande        Colas Regular            Coca-Cola
## 1666               Grande        Colas Regular            Coca-Cola
## 1667               Grande        Colas Regular            Coca-Cola
## 1668               Grande        Colas Regular            Coca-Cola
## 1669               Grande        Colas Regular            Coca-Cola
## 1670               Grande        Colas Regular            Coca-Cola
## 1671               Grande        Colas Regular            Coca-Cola
## 1672               Grande        Colas Regular            Coca-Cola
## 1673               Grande        Colas Regular            Coca-Cola
## 1674               Grande        Colas Regular            Coca-Cola
## 1675               Grande        Colas Regular            Coca-Cola
## 1676               Grande        Colas Regular            Coca-Cola
## 1677               Grande        Colas Regular            Coca-Cola
## 1678               Grande        Colas Regular            Coca-Cola
## 1679               Grande        Colas Regular            Coca-Cola
## 1680               Grande        Colas Regular            Coca-Cola
## 1681               Grande   Isotónicos Regular             Powerade
## 1682               Grande   Isotónicos Regular             Powerade
## 1683               Grande     Jugos y Néctares            Del Valle
## 1684               Grande     Jugos y Néctares            Del Valle
## 1685               Grande     Jugos y Néctares Del Valle NutriVeget
## 1686               Grande     Jugos y Néctares    Del Valle Reserva
## 1687               Grande     Jugos y Néctares    Del Valle Reserva
## 1688               Grande Leche UHT Especializ Santa Clara Deslacto
## 1689               Grande    Leche UHT Regular   Santa Clara Entera
## 1690               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1691               Grande        Sabores Light     Del Valle y Nada
## 1692               Grande        Sabores Light          Sprite Zero
## 1693               Grande      Sabores Regular                Fanta
## 1694               Grande      Sabores Regular                Fanta
## 1695               Grande      Sabores Regular                Fanta
## 1696               Grande      Sabores Regular                Fanta
## 1697               Grande      Sabores Regular                Fanta
## 1698               Grande      Sabores Regular                Fanta
## 1699               Grande      Sabores Regular                Fanta
## 1700               Grande      Sabores Regular                Fanta
## 1701               Grande      Sabores Regular               Fresca
## 1702               Grande      Sabores Regular               Fresca
## 1703               Grande      Sabores Regular                 Joya
## 1704               Grande      Sabores Regular         Manzana Lift
## 1705               Grande      Sabores Regular         Manzana Lift
## 1706               Grande      Sabores Regular         Manzana Lift
## 1707               Grande      Sabores Regular         Manzana Lift
## 1708               Grande      Sabores Regular               Senzao
## 1709               Grande      Sabores Regular        Sidral Mundet
## 1710               Grande      Sabores Regular        Sidral Mundet
## 1711               Grande      Sabores Regular        Sidral Mundet
## 1712               Grande      Sabores Regular        Sidral Mundet
## 1713               Grande      Sabores Regular               Sprite
## 1714               Grande      Sabores Regular               Sprite
## 1715               Grande      Sabores Regular               Sprite
## 1716               Grande      Sabores Regular               Sprite
## 1717               Grande      Sabores Regular               Sprite
## 1718               Grande      Sabores Regular               Sprite
## 1719               Grande      Sabores Regular               Sprite
## 1720               Grande      Sabores Regular               Sprite
## 1721               Grande           Té Regular             Fuze Tea
## 1722               Grande         Agua Mineral      Topo Chico A.M.
## 1723               Grande      Agua Purificada Ciel Agua Purificada
## 1724               Grande      Agua Purificada Ciel Agua Purificada
## 1725               Grande      Agua Purificada Ciel Agua Purificada
## 1726               Grande      Agua Purificada Ciel Agua Purificada
## 1727               Grande      Agua Saborizada          Ciel Exprim
## 1728               Grande      Agua Saborizada          Ciel Exprim
## 1729               Grande     Bebidas de Fruta       Delaware Punch
## 1730               Grande     Bebidas de Fruta               Frutsi
## 1731               Grande     Bebidas de Fruta                Pulpy
## 1732               Grande     Bebidas de Fruta           Valle Frut
## 1733               Grande     Bebidas de Fruta           Valle Frut
## 1734               Grande     Bebidas de Fruta           Valle Frut
## 1735               Grande     Bebidas de Fruta           Valle Frut
## 1736               Grande      Bebidas de Soya          AdeS Frutal
## 1737               Grande      Bebidas de Soya          AdeS Frutal
## 1738               Grande      Bebidas de Soya          AdeS Lácteo
## 1739               Grande  Bebidas Energeticas       Monster Energy
## 1740               Grande Cafe Listo Para Bebe         Barista Bros
## 1741               Grande          Colas Light      Coca-Cola Light
## 1742               Grande          Colas Light      Coca-Cola Light
## 1743               Grande          Colas Light      Coca-Cola Light
## 1744               Grande          Colas Light Coca-Cola Sin Azúcar
## 1745               Grande          Colas Light Coca-Cola Sin Azúcar
## 1746               Grande          Colas Light Coca-Cola Sin Azúcar
## 1747               Grande          Colas Light Coca-Cola Sin Azúcar
## 1748               Grande        Colas Regular            Coca-Cola
## 1749               Grande        Colas Regular            Coca-Cola
## 1750               Grande        Colas Regular            Coca-Cola
## 1751               Grande        Colas Regular            Coca-Cola
## 1752               Grande        Colas Regular            Coca-Cola
## 1753               Grande        Colas Regular            Coca-Cola
## 1754               Grande        Colas Regular            Coca-Cola
## 1755               Grande        Colas Regular            Coca-Cola
## 1756               Grande        Colas Regular            Coca-Cola
## 1757               Grande        Colas Regular            Coca-Cola
## 1758               Grande        Colas Regular            Coca-Cola
## 1759               Grande        Colas Regular            Coca-Cola
## 1760               Grande        Colas Regular            Coca-Cola
## 1761               Grande   Isotónicos Regular             Powerade
## 1762               Grande   Isotónicos Regular             Powerade
## 1763               Grande   Isotónicos Regular             Powerade
## 1764               Grande     Jugos y Néctares            Del Valle
## 1765               Grande     Jugos y Néctares            Del Valle
## 1766               Grande     Jugos y Néctares            Del Valle
## 1767               Grande     Jugos y Néctares Del Valle NutriForte
## 1768               Grande     Jugos y Néctares    Del Valle Reserva
## 1769               Grande     Jugos y Néctares    Del Valle Reserva
## 1770               Grande Leche UHT Especializ Santa Clara Deslacto
## 1771               Grande Leche UHT Especializ Santa Clara Deslacto
## 1772               Grande    Leche UHT Regular   Santa Clara Entera
## 1773               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1774               Grande        Sabores Light     Del Valle y Nada
## 1775               Grande        Sabores Light          Sprite Zero
## 1776               Grande      Sabores Regular     Del Valle y Nada
## 1777               Grande      Sabores Regular     Del Valle y Nada
## 1778               Grande      Sabores Regular                Fanta
## 1779               Grande      Sabores Regular                Fanta
## 1780               Grande      Sabores Regular                Fanta
## 1781               Grande      Sabores Regular                Fanta
## 1782               Grande      Sabores Regular                Fanta
## 1783               Grande      Sabores Regular                Fanta
## 1784               Grande      Sabores Regular               Fresca
## 1785               Grande      Sabores Regular               Fresca
## 1786               Grande      Sabores Regular               Fresca
## 1787               Grande      Sabores Regular                 Joya
## 1788               Grande      Sabores Regular                 Joya
## 1789               Grande      Sabores Regular         Manzana Lift
## 1790               Grande      Sabores Regular         Manzana Lift
## 1791               Grande      Sabores Regular         Manzana Lift
## 1792               Grande      Sabores Regular               Senzao
## 1793               Grande      Sabores Regular        Sidral Mundet
## 1794               Grande      Sabores Regular               Sprite
## 1795               Grande      Sabores Regular               Sprite
## 1796               Grande      Sabores Regular               Sprite
## 1797               Grande      Sabores Regular               Sprite
## 1798               Grande      Sabores Regular               Sprite
## 1799               Grande      Sabores Regular               Sprite
## 1800               Grande           Té Regular             Fuze Tea
## 1801               Grande           Té Regular             Fuze Tea
## 1802               Grande         Agua Mineral    Ciel Mineralizada
## 1803               Grande         Agua Mineral      Topo Chico A.M.
## 1804               Grande      Agua Purificada Ciel Agua Purificada
## 1805               Grande      Agua Purificada Ciel Agua Purificada
## 1806               Grande      Agua Purificada Ciel Agua Purificada
## 1807               Grande      Agua Saborizada          Ciel Exprim
## 1808               Grande     Bebidas de Fruta       Delaware Punch
## 1809               Grande     Bebidas de Fruta       Delaware Punch
## 1810               Grande     Bebidas de Fruta               Frutsi
## 1811               Grande     Bebidas de Fruta           Valle Frut
## 1812               Grande      Bebidas de Soya          AdeS Frutal
## 1813               Grande      Bebidas de Soya          AdeS Lácteo
## 1814               Grande  Bebidas Energeticas              Glacéau
## 1815               Grande  Bebidas Energeticas       Monster Energy
## 1816               Grande Cafe Listo Para Bebe         Barista Bros
## 1817               Grande          Colas Light      Coca-Cola Light
## 1818               Grande          Colas Light      Coca-Cola Light
## 1819               Grande          Colas Light      Coca-Cola Light
## 1820               Grande          Colas Light      Coca-Cola Light
## 1821               Grande          Colas Light Coca-Cola Sin Azúcar
## 1822               Grande          Colas Light Coca-Cola Sin Azúcar
## 1823               Grande          Colas Light Coca-Cola Sin Azúcar
## 1824               Grande          Colas Light Coca-Cola Sin Azúcar
## 1825               Grande        Colas Regular            Coca-Cola
## 1826               Grande        Colas Regular            Coca-Cola
## 1827               Grande        Colas Regular            Coca-Cola
## 1828               Grande        Colas Regular            Coca-Cola
## 1829               Grande        Colas Regular            Coca-Cola
## 1830               Grande        Colas Regular            Coca-Cola
## 1831               Grande        Colas Regular            Coca-Cola
## 1832               Grande        Colas Regular            Coca-Cola
## 1833               Grande        Colas Regular            Coca-Cola
## 1834               Grande        Colas Regular            Coca-Cola
## 1835               Grande        Colas Regular            Coca-Cola
## 1836               Grande        Colas Regular            Coca-Cola
## 1837               Grande        Colas Regular            Coca-Cola
## 1838               Grande   Isotónicos Regular             Powerade
## 1839               Grande   Isotónicos Regular             Powerade
## 1840               Grande     Jugos y Néctares            Del Valle
## 1841               Grande     Jugos y Néctares            Del Valle
## 1842               Grande     Jugos y Néctares    Del Valle Reserva
## 1843               Grande     Jugos y Néctares    Del Valle Reserva
## 1844               Grande Leche UHT Especializ Santa Clara Deslacto
## 1845               Grande Leche UHT Especializ Santa Clara Deslacto
## 1846               Grande    Leche UHT Regular    Santa Clara Light
## 1847               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1848               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1849               Grande        Sabores Light     Del Valle y Nada
## 1850               Grande        Sabores Light     Del Valle y Nada
## 1851               Grande        Sabores Light          Sprite Zero
## 1852               Grande      Sabores Regular     Del Valle y Nada
## 1853               Grande      Sabores Regular     Del Valle y Nada
## 1854               Grande      Sabores Regular                Fanta
## 1855               Grande      Sabores Regular                Fanta
## 1856               Grande      Sabores Regular                Fanta
## 1857               Grande      Sabores Regular                Fanta
## 1858               Grande      Sabores Regular               Fresca
## 1859               Grande      Sabores Regular               Fresca
## 1860               Grande      Sabores Regular         Manzana Lift
## 1861               Grande      Sabores Regular         Manzana Lift
## 1862               Grande      Sabores Regular         Manzana Lift
## 1863               Grande      Sabores Regular        Sidral Mundet
## 1864               Grande      Sabores Regular        Sidral Mundet
## 1865               Grande      Sabores Regular        Sidral Mundet
## 1866               Grande      Sabores Regular               Sprite
## 1867               Grande      Sabores Regular               Sprite
## 1868               Grande      Sabores Regular               Sprite
## 1869               Grande      Sabores Regular               Sprite
## 1870               Grande           Té Regular             Fuze Tea
## 1871               Grande           Té Regular             Fuze Tea
## 1872               Grande         Agua Mineral      Topo Chico A.M.
## 1873               Grande          Colas Light      Coca-Cola Light
## 1874               Grande          Colas Light Coca-Cola Sin Azúcar
## 1875               Grande          Colas Light Coca-Cola Sin Azúcar
## 1876               Grande        Colas Regular            Coca-Cola
## 1877               Grande        Colas Regular            Coca-Cola
## 1878               Grande        Colas Regular            Coca-Cola
## 1879               Grande        Colas Regular            Coca-Cola
## 1880               Grande        Colas Regular            Coca-Cola
## 1881               Grande         Agua Mineral      Topo Chico A.M.
## 1882               Grande      Agua Purificada Ciel Agua Purificada
## 1883               Grande      Agua Purificada Ciel Agua Purificada
## 1884               Grande      Agua Purificada Ciel Agua Purificada
## 1885               Grande      Agua Saborizada          Ciel Exprim
## 1886               Grande      Agua Saborizada          Ciel Exprim
## 1887               Grande     Bebidas de Fruta       Delaware Punch
## 1888               Grande     Bebidas de Fruta           Valle Frut
## 1889               Grande     Bebidas de Fruta           Valle Frut
## 1890               Grande      Bebidas de Soya          AdeS Frutal
## 1891               Grande      Bebidas de Soya          AdeS Frutal
## 1892               Grande      Bebidas de Soya          AdeS Lácteo
## 1893               Grande  Bebidas Energeticas       Monster Energy
## 1894               Grande Cafe Listo Para Bebe         Barista Bros
## 1895               Grande          Colas Light      Coca-Cola Light
## 1896               Grande          Colas Light      Coca-Cola Light
## 1897               Grande          Colas Light      Coca-Cola Light
## 1898               Grande          Colas Light      Coca-Cola Light
## 1899               Grande          Colas Light      Coca-Cola Light
## 1900               Grande          Colas Light Coca-Cola Sin Azúcar
## 1901               Grande          Colas Light Coca-Cola Sin Azúcar
## 1902               Grande          Colas Light Coca-Cola Sin Azúcar
## 1903               Grande          Colas Light Coca-Cola Sin Azúcar
## 1904               Grande        Colas Regular            Coca-Cola
## 1905               Grande        Colas Regular            Coca-Cola
## 1906               Grande        Colas Regular            Coca-Cola
## 1907               Grande        Colas Regular            Coca-Cola
## 1908               Grande        Colas Regular            Coca-Cola
## 1909               Grande        Colas Regular            Coca-Cola
## 1910               Grande        Colas Regular            Coca-Cola
## 1911               Grande        Colas Regular            Coca-Cola
## 1912               Grande        Colas Regular            Coca-Cola
## 1913               Grande        Colas Regular            Coca-Cola
## 1914               Grande        Colas Regular            Coca-Cola
## 1915               Grande        Colas Regular            Coca-Cola
## 1916               Grande        Colas Regular            Coca-Cola
## 1917               Grande   Isotónicos Regular             Powerade
## 1918               Grande   Isotónicos Regular             Powerade
## 1919               Grande     Jugos y Néctares            Del Valle
## 1920               Grande     Jugos y Néctares            Del Valle
## 1921               Grande     Jugos y Néctares Del Valle NutriForte
## 1922               Grande     Jugos y Néctares    Del Valle Reserva
## 1923               Grande Leche UHT Especializ Santa Clara Deslacto
## 1924               Grande Leche UHT Especializ Santa Clara Deslacto
## 1925               Grande    Leche UHT Regular   Santa Clara Entera
## 1926               Grande    Leche UHT Regular    Santa Clara Light
## 1927               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1928               Grande        Sabores Light     Del Valle y Nada
## 1929               Grande      Sabores Regular     Del Valle y Nada
## 1930               Grande      Sabores Regular     Del Valle y Nada
## 1931               Grande      Sabores Regular                Fanta
## 1932               Grande      Sabores Regular                Fanta
## 1933               Grande      Sabores Regular                Fanta
## 1934               Grande      Sabores Regular                Fanta
## 1935               Grande      Sabores Regular                Fanta
## 1936               Grande      Sabores Regular               Fresca
## 1937               Grande      Sabores Regular               Fresca
## 1938               Grande      Sabores Regular               Fresca
## 1939               Grande      Sabores Regular                 Joya
## 1940               Grande      Sabores Regular         Manzana Lift
## 1941               Grande      Sabores Regular               Senzao
## 1942               Grande      Sabores Regular        Sidral Mundet
## 1943               Grande      Sabores Regular               Sprite
## 1944               Grande      Sabores Regular               Sprite
## 1945               Grande      Sabores Regular               Sprite
## 1946               Grande      Sabores Regular               Sprite
## 1947               Grande           Té Regular             Fuze Tea
## 1948               Grande         Agua Mineral      Topo Chico A.M.
## 1949               Grande      Agua Purificada Ciel Agua Purificada
## 1950               Grande      Agua Purificada Ciel Agua Purificada
## 1951               Grande      Agua Purificada Ciel Agua Purificada
## 1952               Grande      Agua Saborizada          Ciel Exprim
## 1953               Grande      Agua Saborizada          Ciel Exprim
## 1954               Grande     Bebidas de Fruta       Delaware Punch
## 1955               Grande     Bebidas de Fruta               Frutsi
## 1956               Grande     Bebidas de Fruta                Pulpy
## 1957               Grande     Bebidas de Fruta           Valle Frut
## 1958               Grande     Bebidas de Fruta           Valle Frut
## 1959               Grande      Bebidas de Soya          AdeS Frutal
## 1960               Grande      Bebidas de Soya          AdeS Frutal
## 1961               Grande      Bebidas de Soya          AdeS Lácteo
## 1962               Grande  Bebidas Energeticas       Monster Energy
## 1963               Grande Cafe Listo Para Bebe         Barista Bros
## 1964               Grande          Colas Light      Coca-Cola Light
## 1965               Grande          Colas Light      Coca-Cola Light
## 1966               Grande          Colas Light      Coca-Cola Light
## 1967               Grande          Colas Light      Coca-Cola Light
## 1968               Grande          Colas Light      Coca-Cola Light
## 1969               Grande          Colas Light Coca-Cola Sin Azúcar
## 1970               Grande          Colas Light Coca-Cola Sin Azúcar
## 1971               Grande          Colas Light Coca-Cola Sin Azúcar
## 1972               Grande        Colas Regular            Coca-Cola
## 1973               Grande        Colas Regular            Coca-Cola
## 1974               Grande        Colas Regular            Coca-Cola
## 1975               Grande        Colas Regular            Coca-Cola
## 1976               Grande        Colas Regular            Coca-Cola
## 1977               Grande        Colas Regular            Coca-Cola
## 1978               Grande        Colas Regular            Coca-Cola
## 1979               Grande        Colas Regular            Coca-Cola
## 1980               Grande        Colas Regular            Coca-Cola
## 1981               Grande        Colas Regular            Coca-Cola
## 1982               Grande        Colas Regular            Coca-Cola
## 1983               Grande        Colas Regular            Coca-Cola
## 1984               Grande        Colas Regular            Coca-Cola
## 1985               Grande        Colas Regular            Coca-Cola
## 1986               Grande   Isotónicos Regular             Powerade
## 1987               Grande   Isotónicos Regular             Powerade
## 1988               Grande   Isotónicos Regular             Powerade
## 1989               Grande     Jugos y Néctares            Del Valle
## 1990               Grande     Jugos y Néctares            Del Valle
## 1991               Grande     Jugos y Néctares Del Valle NutriForte
## 1992               Grande     Jugos y Néctares    Del Valle Reserva
## 1993               Grande Leche UHT Especializ Santa Clara Deslacto
## 1994               Grande Leche UHT Especializ Santa Clara Deslacto
## 1995               Grande    Leche UHT Regular   Santa Clara Entera
## 1996               Grande    Leche UHT Regular    Santa Clara Light
## 1997               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1998               Grande Leche UHT Saborizada Santa Clara Saboriza
## 1999               Grande        Sabores Light     Del Valle y Nada
## 2000               Grande      Sabores Regular     Del Valle y Nada
## 2001               Grande      Sabores Regular                Fanta
## 2002               Grande      Sabores Regular                Fanta
## 2003               Grande      Sabores Regular                Fanta
## 2004               Grande      Sabores Regular                Fanta
## 2005               Grande      Sabores Regular                Fanta
## 2006               Grande      Sabores Regular                Fanta
## 2007               Grande      Sabores Regular               Fresca
## 2008               Grande      Sabores Regular               Fresca
## 2009               Grande      Sabores Regular               Fresca
## 2010               Grande      Sabores Regular               Fresca
## 2011               Grande      Sabores Regular                 Joya
## 2012               Grande      Sabores Regular         Manzana Lift
## 2013               Grande      Sabores Regular         Manzana Lift
## 2014               Grande      Sabores Regular               Senzao
## 2015               Grande      Sabores Regular        Sidral Mundet
## 2016               Grande      Sabores Regular        Sidral Mundet
## 2017               Grande      Sabores Regular        Sidral Mundet
## 2018               Grande      Sabores Regular        Sidral Mundet
## 2019               Grande      Sabores Regular        Sidral Mundet
## 2020               Grande      Sabores Regular               Sprite
## 2021               Grande      Sabores Regular               Sprite
## 2022               Grande      Sabores Regular               Sprite
## 2023               Grande      Sabores Regular               Sprite
## 2024               Grande      Sabores Regular               Sprite
## 2025               Grande      Sabores Regular               Sprite
## 2026               Grande      Sabores Regular               Sprite
## 2027               Grande           Té Regular             Fuze Tea
## 2028               Grande           Té Regular             Fuze Tea
## 2029               Grande         Agua Mineral      Topo Chico A.M.
## 2030               Grande      Agua Purificada Ciel Agua Purificada
## 2031               Grande      Agua Purificada Ciel Agua Purificada
## 2032               Grande      Agua Purificada Ciel Agua Purificada
## 2033               Grande     Bebidas de Fruta               Frutsi
## 2034               Grande     Bebidas de Fruta           Valle Frut
## 2035               Grande      Bebidas de Soya          AdeS Frutal
## 2036               Grande      Bebidas de Soya          AdeS Lácteo
## 2037               Grande  Bebidas Energeticas       Monster Energy
## 2038               Grande          Colas Light      Coca-Cola Light
## 2039               Grande          Colas Light      Coca-Cola Light
## 2040               Grande          Colas Light      Coca-Cola Light
## 2041               Grande          Colas Light      Coca-Cola Light
## 2042               Grande          Colas Light      Coca-Cola Light
## 2043               Grande          Colas Light      Coca-Cola Light
## 2044               Grande          Colas Light Coca-Cola Sin Azúcar
## 2045               Grande          Colas Light Coca-Cola Sin Azúcar
## 2046               Grande          Colas Light Coca-Cola Sin Azúcar
## 2047               Grande          Colas Light Coca-Cola Sin Azúcar
## 2048               Grande        Colas Regular            Coca-Cola
## 2049               Grande        Colas Regular            Coca-Cola
## 2050               Grande        Colas Regular            Coca-Cola
## 2051               Grande        Colas Regular            Coca-Cola
## 2052               Grande        Colas Regular            Coca-Cola
## 2053               Grande        Colas Regular            Coca-Cola
## 2054               Grande        Colas Regular            Coca-Cola
## 2055               Grande        Colas Regular            Coca-Cola
## 2056               Grande        Colas Regular            Coca-Cola
## 2057               Grande        Colas Regular            Coca-Cola
## 2058               Grande        Colas Regular            Coca-Cola
## 2059               Grande        Colas Regular            Coca-Cola
## 2060               Grande        Colas Regular            Coca-Cola
## 2061               Grande   Isotónicos Regular             Powerade
## 2062               Grande     Jugos y Néctares            Del Valle
## 2063               Grande     Jugos y Néctares            Del Valle
## 2064               Grande     Jugos y Néctares    Del Valle Reserva
## 2065               Grande    Leche UHT Regular   Santa Clara Entera
## 2066               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2067               Grande        Sabores Light     Del Valle y Nada
## 2068               Grande        Sabores Light          Sprite Zero
## 2069               Grande      Sabores Regular     Del Valle y Nada
## 2070               Grande      Sabores Regular                Fanta
## 2071               Grande      Sabores Regular                Fanta
## 2072               Grande      Sabores Regular         Manzana Lift
## 2073               Grande      Sabores Regular               Senzao
## 2074               Grande      Sabores Regular        Sidral Mundet
## 2075               Grande      Sabores Regular        Sidral Mundet
## 2076               Grande      Sabores Regular               Sprite
## 2077               Grande      Sabores Regular               Sprite
## 2078               Grande      Sabores Regular               Sprite
## 2079               Grande           Té Regular             Fuze Tea
## 2080               Grande         Agua Mineral      Topo Chico A.M.
## 2081               Grande      Agua Purificada Ciel Agua Purificada
## 2082               Grande      Agua Purificada Ciel Agua Purificada
## 2083               Grande      Agua Purificada Ciel Agua Purificada
## 2084               Grande     Bebidas de Fruta           Valle Frut
## 2085               Grande      Bebidas de Soya          AdeS Frutal
## 2086               Grande  Bebidas Energeticas       Monster Energy
## 2087               Grande          Colas Light      Coca-Cola Light
## 2088               Grande          Colas Light      Coca-Cola Light
## 2089               Grande          Colas Light      Coca-Cola Light
## 2090               Grande          Colas Light Coca-Cola Sin Azúcar
## 2091               Grande          Colas Light Coca-Cola Sin Azúcar
## 2092               Grande          Colas Light Coca-Cola Sin Azúcar
## 2093               Grande        Colas Regular            Coca-Cola
## 2094               Grande        Colas Regular            Coca-Cola
## 2095               Grande        Colas Regular            Coca-Cola
## 2096               Grande        Colas Regular            Coca-Cola
## 2097               Grande        Colas Regular            Coca-Cola
## 2098               Grande        Colas Regular            Coca-Cola
## 2099               Grande        Colas Regular            Coca-Cola
## 2100               Grande        Colas Regular            Coca-Cola
## 2101               Grande        Colas Regular            Coca-Cola
## 2102               Grande        Colas Regular            Coca-Cola
## 2103               Grande        Colas Regular            Coca-Cola
## 2104               Grande        Colas Regular            Coca-Cola
## 2105               Grande   Isotónicos Regular             Powerade
## 2106               Grande   Isotónicos Regular             Powerade
## 2107               Grande     Jugos y Néctares            Del Valle
## 2108               Grande     Jugos y Néctares            Del Valle
## 2109               Grande     Jugos y Néctares    Del Valle Reserva
## 2110               Grande Leche UHT Especializ Santa Clara Deslacto
## 2111               Grande    Leche UHT Regular   Santa Clara Entera
## 2112               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2113               Grande        Sabores Light          Sprite Zero
## 2114               Grande      Sabores Regular     Del Valle y Nada
## 2115               Grande      Sabores Regular     Del Valle y Nada
## 2116               Grande      Sabores Regular                Fanta
## 2117               Grande      Sabores Regular                Fanta
## 2118               Grande      Sabores Regular               Fresca
## 2119               Grande      Sabores Regular               Fresca
## 2120               Grande      Sabores Regular                 Joya
## 2121               Grande      Sabores Regular         Manzana Lift
## 2122               Grande      Sabores Regular         Manzana Lift
## 2123               Grande      Sabores Regular        Sidral Mundet
## 2124               Grande      Sabores Regular        Sidral Mundet
## 2125               Grande      Sabores Regular        Sidral Mundet
## 2126               Grande      Sabores Regular               Sprite
## 2127               Grande      Sabores Regular               Sprite
## 2128               Grande           Té Regular             Fuze Tea
## 2129               Grande         Agua Mineral      Topo Chico A.M.
## 2130               Grande         Agua Mineral      Topo Chico A.M.
## 2131               Grande      Agua Purificada Ciel Agua Purificada
## 2132               Grande      Agua Purificada Ciel Agua Purificada
## 2133               Grande      Agua Purificada Ciel Agua Purificada
## 2134               Grande      Agua Saborizada          Ciel Exprim
## 2135               Grande      Agua Saborizada          Ciel Exprim
## 2136               Grande     Bebidas de Fruta       Delaware Punch
## 2137               Grande     Bebidas de Fruta               Frutsi
## 2138               Grande     Bebidas de Fruta                Pulpy
## 2139               Grande     Bebidas de Fruta           Valle Frut
## 2140               Grande     Bebidas de Fruta           Valle Frut
## 2141               Grande      Bebidas de Soya          AdeS Frutal
## 2142               Grande      Bebidas de Soya          AdeS Lácteo
## 2143               Grande  Bebidas Energeticas       Monster Energy
## 2144               Grande Cafe Listo Para Bebe         Barista Bros
## 2145               Grande          Colas Light      Coca-Cola Light
## 2146               Grande          Colas Light      Coca-Cola Light
## 2147               Grande          Colas Light      Coca-Cola Light
## 2148               Grande          Colas Light      Coca-Cola Light
## 2149               Grande          Colas Light      Coca-Cola Light
## 2150               Grande          Colas Light      Coca-Cola Light
## 2151               Grande          Colas Light      Coca-Cola Light
## 2152               Grande          Colas Light Coca-Cola Sin Azúcar
## 2153               Grande          Colas Light Coca-Cola Sin Azúcar
## 2154               Grande          Colas Light Coca-Cola Sin Azúcar
## 2155               Grande          Colas Light Coca-Cola Sin Azúcar
## 2156               Grande          Colas Light Coca-Cola Sin Azúcar
## 2157               Grande        Colas Regular            Coca-Cola
## 2158               Grande        Colas Regular            Coca-Cola
## 2159               Grande        Colas Regular            Coca-Cola
## 2160               Grande        Colas Regular            Coca-Cola
## 2161               Grande        Colas Regular            Coca-Cola
## 2162               Grande        Colas Regular            Coca-Cola
## 2163               Grande        Colas Regular            Coca-Cola
## 2164               Grande        Colas Regular            Coca-Cola
## 2165               Grande        Colas Regular            Coca-Cola
## 2166               Grande        Colas Regular            Coca-Cola
## 2167               Grande        Colas Regular            Coca-Cola
## 2168               Grande        Colas Regular            Coca-Cola
## 2169               Grande        Colas Regular            Coca-Cola
## 2170               Grande        Colas Regular            Coca-Cola
## 2171               Grande        Colas Regular            Coca-Cola
## 2172               Grande   Isotónicos Regular             Powerade
## 2173               Grande   Isotónicos Regular             Powerade
## 2174               Grande     Jugos y Néctares            Del Valle
## 2175               Grande     Jugos y Néctares            Del Valle
## 2176               Grande     Jugos y Néctares            Del Valle
## 2177               Grande     Jugos y Néctares Del Valle NutriForte
## 2178               Grande     Jugos y Néctares Del Valle NutriVeget
## 2179               Grande     Jugos y Néctares    Del Valle Reserva
## 2180               Grande Leche UHT Especializ Santa Clara Deslacto
## 2181               Grande Leche UHT Especializ Santa Clara Deslacto
## 2182               Grande    Leche UHT Regular   Santa Clara Entera
## 2183               Grande    Leche UHT Regular    Santa Clara Light
## 2184               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2185               Grande        Sabores Light     Del Valle y Nada
## 2186               Grande        Sabores Light          Sprite Zero
## 2187               Grande      Sabores Regular     Del Valle y Nada
## 2188               Grande      Sabores Regular                Fanta
## 2189               Grande      Sabores Regular                Fanta
## 2190               Grande      Sabores Regular                Fanta
## 2191               Grande      Sabores Regular                Fanta
## 2192               Grande      Sabores Regular                Fanta
## 2193               Grande      Sabores Regular                Fanta
## 2194               Grande      Sabores Regular                Fanta
## 2195               Grande      Sabores Regular               Fresca
## 2196               Grande      Sabores Regular               Fresca
## 2197               Grande      Sabores Regular               Fresca
## 2198               Grande      Sabores Regular               Fresca
## 2199               Grande      Sabores Regular                 Joya
## 2200               Grande      Sabores Regular         Manzana Lift
## 2201               Grande      Sabores Regular         Manzana Lift
## 2202               Grande      Sabores Regular               Senzao
## 2203               Grande      Sabores Regular        Sidral Mundet
## 2204               Grande      Sabores Regular        Sidral Mundet
## 2205               Grande      Sabores Regular        Sidral Mundet
## 2206               Grande      Sabores Regular               Sprite
## 2207               Grande      Sabores Regular               Sprite
## 2208               Grande      Sabores Regular               Sprite
## 2209               Grande      Sabores Regular               Sprite
## 2210               Grande      Sabores Regular               Sprite
## 2211               Grande      Sabores Regular               Sprite
## 2212               Grande           Té Regular             Fuze Tea
## 2213               Grande           Té Regular             Fuze Tea
## 2214               Grande         Agua Mineral      Topo Chico A.M.
## 2215               Grande         Agua Mineral      Topo Chico A.M.
## 2216               Grande      Agua Purificada Ciel Agua Purificada
## 2217               Grande      Agua Purificada Ciel Agua Purificada
## 2218               Grande      Agua Purificada Ciel Agua Purificada
## 2219               Grande      Agua Purificada Ciel Agua Purificada
## 2220               Grande      Agua Saborizada          Ciel Exprim
## 2221               Grande      Agua Saborizada          Ciel Exprim
## 2222               Grande      Agua Saborizada            Ciel Mini
## 2223               Grande     Bebidas de Fruta       Delaware Punch
## 2224               Grande     Bebidas de Fruta               Frutsi
## 2225               Grande     Bebidas de Fruta                Pulpy
## 2226               Grande     Bebidas de Fruta           Valle Frut
## 2227               Grande     Bebidas de Fruta           Valle Frut
## 2228               Grande     Bebidas de Fruta           Valle Frut
## 2229               Grande     Bebidas de Fruta           Valle Frut
## 2230               Grande     Bebidas de Fruta           Valle Frut
## 2231               Grande      Bebidas de Soya          AdeS Frutal
## 2232               Grande      Bebidas de Soya          AdeS Frutal
## 2233               Grande      Bebidas de Soya          AdeS Lácteo
## 2234               Grande  Bebidas Energeticas                 Burn
## 2235               Grande  Bebidas Energeticas              Glacéau
## 2236               Grande  Bebidas Energeticas       Monster Energy
## 2237               Grande          Colas Light      Coca-Cola Light
## 2238               Grande          Colas Light      Coca-Cola Light
## 2239               Grande          Colas Light      Coca-Cola Light
## 2240               Grande          Colas Light      Coca-Cola Light
## 2241               Grande          Colas Light      Coca-Cola Light
## 2242               Grande          Colas Light      Coca-Cola Light
## 2243               Grande          Colas Light      Coca-Cola Light
## 2244               Grande          Colas Light      Coca-Cola Light
## 2245               Grande          Colas Light      Coca-Cola Light
## 2246               Grande          Colas Light      Coca-Cola Light
## 2247               Grande          Colas Light      Coca-Cola Light
## 2248               Grande          Colas Light Coca-Cola Sin Azúcar
## 2249               Grande          Colas Light Coca-Cola Sin Azúcar
## 2250               Grande          Colas Light Coca-Cola Sin Azúcar
## 2251               Grande          Colas Light Coca-Cola Sin Azúcar
## 2252               Grande          Colas Light Coca-Cola Sin Azúcar
## 2253               Grande        Colas Regular            Coca-Cola
## 2254               Grande        Colas Regular            Coca-Cola
## 2255               Grande        Colas Regular            Coca-Cola
## 2256               Grande        Colas Regular            Coca-Cola
## 2257               Grande        Colas Regular            Coca-Cola
## 2258               Grande        Colas Regular            Coca-Cola
## 2259               Grande        Colas Regular            Coca-Cola
## 2260               Grande        Colas Regular            Coca-Cola
## 2261               Grande        Colas Regular            Coca-Cola
## 2262               Grande        Colas Regular            Coca-Cola
## 2263               Grande        Colas Regular            Coca-Cola
## 2264               Grande        Colas Regular            Coca-Cola
## 2265               Grande        Colas Regular            Coca-Cola
## 2266               Grande        Colas Regular            Coca-Cola
## 2267               Grande        Colas Regular            Coca-Cola
## 2268               Grande        Colas Regular            Coca-Cola
## 2269               Grande   Isotónicos Regular             Powerade
## 2270               Grande   Isotónicos Regular             Powerade
## 2271               Grande     Jugos y Néctares            Del Valle
## 2272               Grande     Jugos y Néctares            Del Valle
## 2273               Grande     Jugos y Néctares            Del Valle
## 2274               Grande     Jugos y Néctares            Del Valle
## 2275               Grande     Jugos y Néctares            Del Valle
## 2276               Grande     Jugos y Néctares     Del Valle Blends
## 2277               Grande     Jugos y Néctares Del Valle NutriForte
## 2278               Grande     Jugos y Néctares    Del Valle Reserva
## 2279               Grande     Jugos y Néctares    Del Valle Reserva
## 2280               Grande Leche UHT Especializ Santa Clara Deslacto
## 2281               Grande Leche UHT Especializ Santa Clara Deslacto
## 2282               Grande    Leche UHT Regular   Santa Clara Entera
## 2283               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2284               Grande        Sabores Light     Del Valle y Nada
## 2285               Grande        Sabores Light     Del Valle y Nada
## 2286               Grande        Sabores Light          Sprite Zero
## 2287               Grande      Sabores Regular     Del Valle y Nada
## 2288               Grande      Sabores Regular     Del Valle y Nada
## 2289               Grande      Sabores Regular                Fanta
## 2290               Grande      Sabores Regular                Fanta
## 2291               Grande      Sabores Regular                Fanta
## 2292               Grande      Sabores Regular                Fanta
## 2293               Grande      Sabores Regular                Fanta
## 2294               Grande      Sabores Regular                Fanta
## 2295               Grande      Sabores Regular                Fanta
## 2296               Grande      Sabores Regular               Fresca
## 2297               Grande      Sabores Regular               Fresca
## 2298               Grande      Sabores Regular               Fresca
## 2299               Grande      Sabores Regular               Fresca
## 2300               Grande      Sabores Regular                 Joya
## 2301               Grande      Sabores Regular                 Joya
## 2302               Grande      Sabores Regular         Manzana Lift
## 2303               Grande      Sabores Regular         Manzana Lift
## 2304               Grande      Sabores Regular         Manzana Lift
## 2305               Grande      Sabores Regular               Senzao
## 2306               Grande      Sabores Regular        Sidral Mundet
## 2307               Grande      Sabores Regular        Sidral Mundet
## 2308               Grande      Sabores Regular        Sidral Mundet
## 2309               Grande      Sabores Regular        Sidral Mundet
## 2310               Grande      Sabores Regular        Sidral Mundet
## 2311               Grande      Sabores Regular               Sprite
## 2312               Grande      Sabores Regular               Sprite
## 2313               Grande      Sabores Regular               Sprite
## 2314               Grande      Sabores Regular               Sprite
## 2315               Grande      Sabores Regular               Sprite
## 2316               Grande      Sabores Regular               Sprite
## 2317               Grande      Sabores Regular               Sprite
## 2318               Grande           Té Regular             Fuze Tea
## 2319               Grande           Té Regular             Fuze Tea
## 2320               Grande         Agua Mineral    Ciel Mineralizada
## 2321               Grande         Agua Mineral      Topo Chico A.M.
## 2322               Grande      Agua Purificada Ciel Agua Purificada
## 2323               Grande      Agua Purificada Ciel Agua Purificada
## 2324               Grande      Agua Purificada Ciel Agua Purificada
## 2325               Grande      Agua Saborizada          Ciel Exprim
## 2326               Grande      Agua Saborizada          Ciel Exprim
## 2327               Grande     Bebidas de Fruta       Delaware Punch
## 2328               Grande     Bebidas de Fruta       Delaware Punch
## 2329               Grande     Bebidas de Fruta               Frutsi
## 2330               Grande     Bebidas de Fruta                Pulpy
## 2331               Grande     Bebidas de Fruta           Valle Frut
## 2332               Grande     Bebidas de Fruta           Valle Frut
## 2333               Grande     Bebidas de Fruta           Valle Frut
## 2334               Grande     Bebidas de Fruta           Valle Frut
## 2335               Grande      Bebidas de Soya          AdeS Frutal
## 2336               Grande      Bebidas de Soya          AdeS Frutal
## 2337               Grande  Bebidas Energeticas                 Burn
## 2338               Grande  Bebidas Energeticas                 Burn
## 2339               Grande  Bebidas Energeticas       Monster Energy
## 2340               Grande Cafe Listo Para Bebe         Barista Bros
## 2341               Grande          Colas Light      Coca-Cola Light
## 2342               Grande          Colas Light      Coca-Cola Light
## 2343               Grande          Colas Light      Coca-Cola Light
## 2344               Grande          Colas Light      Coca-Cola Light
## 2345               Grande          Colas Light      Coca-Cola Light
## 2346               Grande          Colas Light      Coca-Cola Light
## 2347               Grande          Colas Light  Coca-Cola Light Sin
## 2348               Grande          Colas Light Coca-Cola Sin Azúcar
## 2349               Grande        Colas Regular            Coca-Cola
## 2350               Grande        Colas Regular            Coca-Cola
## 2351               Grande        Colas Regular            Coca-Cola
## 2352               Grande        Colas Regular            Coca-Cola
## 2353               Grande        Colas Regular            Coca-Cola
## 2354               Grande        Colas Regular            Coca-Cola
## 2355               Grande        Colas Regular            Coca-Cola
## 2356               Grande        Colas Regular            Coca-Cola
## 2357               Grande        Colas Regular            Coca-Cola
## 2358               Grande        Colas Regular            Coca-Cola
## 2359               Grande        Colas Regular            Coca-Cola
## 2360               Grande        Colas Regular            Coca-Cola
## 2361               Grande        Colas Regular            Coca-Cola
## 2362               Grande        Colas Regular            Coca-Cola
## 2363               Grande        Colas Regular            Coca-Cola
## 2364               Grande        Colas Regular            Coca-Cola
## 2365               Grande        Colas Regular            Coca-Cola
## 2366               Grande   Isotónicos Regular             Powerade
## 2367               Grande   Isotónicos Regular             Powerade
## 2368               Grande     Jugos y Néctares            Del Valle
## 2369               Grande     Jugos y Néctares            Del Valle
## 2370               Grande     Jugos y Néctares            Del Valle
## 2371               Grande     Jugos y Néctares Del Valle NutriVeget
## 2372               Grande     Jugos y Néctares    Del Valle Reserva
## 2373               Grande     Jugos y Néctares    Del Valle Reserva
## 2374               Grande Leche UHT Especializ Santa Clara Deslacto
## 2375               Grande Leche UHT Especializ Santa Clara Deslacto
## 2376               Grande    Leche UHT Regular   Santa Clara Entera
## 2377               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2378               Grande        Sabores Light     Del Valle y Nada
## 2379               Grande        Sabores Light          Sprite Zero
## 2380               Grande      Sabores Regular     Del Valle y Nada
## 2381               Grande      Sabores Regular                Fanta
## 2382               Grande      Sabores Regular                Fanta
## 2383               Grande      Sabores Regular                Fanta
## 2384               Grande      Sabores Regular                Fanta
## 2385               Grande      Sabores Regular                Fanta
## 2386               Grande      Sabores Regular               Fresca
## 2387               Grande      Sabores Regular               Fresca
## 2388               Grande      Sabores Regular               Fresca
## 2389               Grande      Sabores Regular               Fresca
## 2390               Grande      Sabores Regular               Fresca
## 2391               Grande      Sabores Regular                 Joya
## 2392               Grande      Sabores Regular                 Joya
## 2393               Grande      Sabores Regular         Manzana Lift
## 2394               Grande      Sabores Regular         Manzana Lift
## 2395               Grande      Sabores Regular         Manzana Lift
## 2396               Grande      Sabores Regular         Manzana Lift
## 2397               Grande      Sabores Regular               Senzao
## 2398               Grande      Sabores Regular        Sidral Mundet
## 2399               Grande      Sabores Regular        Sidral Mundet
## 2400               Grande      Sabores Regular        Sidral Mundet
## 2401               Grande      Sabores Regular               Sprite
## 2402               Grande      Sabores Regular               Sprite
## 2403               Grande      Sabores Regular               Sprite
## 2404               Grande      Sabores Regular               Sprite
## 2405               Grande      Sabores Regular               Sprite
## 2406               Grande      Sabores Regular               Sprite
## 2407               Grande      Sabores Regular               Sprite
## 2408               Grande           Té Regular             Fuze Tea
## 2409               Grande           Té Regular             Fuze Tea
## 2410               Grande           Té Regular             Fuze Tea
## 2411               Grande         Agua Mineral      Topo Chico A.M.
## 2412               Grande      Agua Purificada Ciel Agua Purificada
## 2413               Grande      Agua Purificada Ciel Agua Purificada
## 2414               Grande      Agua Purificada Ciel Agua Purificada
## 2415               Grande      Agua Saborizada          Ciel Exprim
## 2416               Grande      Agua Saborizada          Ciel Exprim
## 2417               Grande     Bebidas de Fruta                Pulpy
## 2418               Grande     Bebidas de Fruta           Valle Frut
## 2419               Grande     Bebidas de Fruta           Valle Frut
## 2420               Grande      Bebidas de Soya          AdeS Frutal
## 2421               Grande      Bebidas de Soya          AdeS Lácteo
## 2422               Grande  Bebidas Energeticas       Monster Energy
## 2423               Grande Cafe Listo Para Bebe         Barista Bros
## 2424               Grande          Colas Light      Coca-Cola Light
## 2425               Grande          Colas Light      Coca-Cola Light
## 2426               Grande          Colas Light      Coca-Cola Light
## 2427               Grande          Colas Light      Coca-Cola Light
## 2428               Grande          Colas Light      Coca-Cola Light
## 2429               Grande          Colas Light      Coca-Cola Light
## 2430               Grande          Colas Light      Coca-Cola Light
## 2431               Grande          Colas Light Coca-Cola Sin Azúcar
## 2432               Grande          Colas Light Coca-Cola Sin Azúcar
## 2433               Grande          Colas Light Coca-Cola Sin Azúcar
## 2434               Grande          Colas Light Coca-Cola Sin Azúcar
## 2435               Grande        Colas Regular            Coca-Cola
## 2436               Grande        Colas Regular            Coca-Cola
## 2437               Grande        Colas Regular            Coca-Cola
## 2438               Grande        Colas Regular            Coca-Cola
## 2439               Grande        Colas Regular            Coca-Cola
## 2440               Grande        Colas Regular            Coca-Cola
## 2441               Grande        Colas Regular            Coca-Cola
## 2442               Grande        Colas Regular            Coca-Cola
## 2443               Grande        Colas Regular            Coca-Cola
## 2444               Grande        Colas Regular            Coca-Cola
## 2445               Grande        Colas Regular            Coca-Cola
## 2446               Grande        Colas Regular            Coca-Cola
## 2447               Grande        Colas Regular            Coca-Cola
## 2448               Grande        Colas Regular            Coca-Cola
## 2449               Grande        Colas Regular            Coca-Cola
## 2450               Grande        Colas Regular            Coca-Cola
## 2451               Grande   Isotónicos Regular             Powerade
## 2452               Grande   Isotónicos Regular             Powerade
## 2453               Grande     Jugos y Néctares            Del Valle
## 2454               Grande     Jugos y Néctares            Del Valle
## 2455               Grande     Jugos y Néctares            Del Valle
## 2456               Grande     Jugos y Néctares    Del Valle Reserva
## 2457               Grande Leche UHT Especializ Santa Clara Deslacto
## 2458               Grande    Leche UHT Regular   Santa Clara Entera
## 2459               Grande    Leche UHT Regular    Santa Clara Light
## 2460               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2461               Grande        Sabores Light     Del Valle y Nada
## 2462               Grande        Sabores Light          Sprite Zero
## 2463               Grande      Sabores Regular     Del Valle y Nada
## 2464               Grande      Sabores Regular                Fanta
## 2465               Grande      Sabores Regular                Fanta
## 2466               Grande      Sabores Regular               Fresca
## 2467               Grande      Sabores Regular        Sidral Mundet
## 2468               Grande      Sabores Regular        Sidral Mundet
## 2469               Grande      Sabores Regular        Sidral Mundet
## 2470               Grande      Sabores Regular               Sprite
## 2471               Grande      Sabores Regular               Sprite
## 2472               Grande      Sabores Regular               Sprite
## 2473               Grande      Sabores Regular               Sprite
## 2474               Grande           Té Regular             Fuze Tea
## 2475               Grande         Agua Mineral      Topo Chico A.M.
## 2476               Grande      Agua Purificada Ciel Agua Purificada
## 2477               Grande      Agua Purificada Ciel Agua Purificada
## 2478               Grande     Bebidas de Fruta               Frutsi
## 2479               Grande     Bebidas de Fruta           Valle Frut
## 2480               Grande     Bebidas de Fruta           Valle Frut
## 2481               Grande      Bebidas de Soya          AdeS Lácteo
## 2482               Grande  Bebidas Energeticas       Monster Energy
## 2483               Grande          Colas Light      Coca-Cola Light
## 2484               Grande          Colas Light      Coca-Cola Light
## 2485               Grande          Colas Light      Coca-Cola Light
## 2486               Grande          Colas Light      Coca-Cola Light
## 2487               Grande          Colas Light      Coca-Cola Light
## 2488               Grande          Colas Light Coca-Cola Sin Azúcar
## 2489               Grande          Colas Light Coca-Cola Sin Azúcar
## 2490               Grande          Colas Light Coca-Cola Sin Azúcar
## 2491               Grande        Colas Regular            Coca-Cola
## 2492               Grande        Colas Regular            Coca-Cola
## 2493               Grande        Colas Regular            Coca-Cola
## 2494               Grande        Colas Regular            Coca-Cola
## 2495               Grande        Colas Regular            Coca-Cola
## 2496               Grande        Colas Regular            Coca-Cola
## 2497               Grande        Colas Regular            Coca-Cola
## 2498               Grande        Colas Regular            Coca-Cola
## 2499               Grande        Colas Regular            Coca-Cola
## 2500               Grande        Colas Regular            Coca-Cola
## 2501               Grande        Colas Regular            Coca-Cola
## 2502               Grande        Colas Regular            Coca-Cola
## 2503               Grande        Colas Regular            Coca-Cola
## 2504               Grande        Colas Regular            Coca-Cola
## 2505               Grande        Colas Regular            Coca-Cola
## 2506               Grande   Isotónicos Regular             Powerade
## 2507               Grande   Isotónicos Regular             Powerade
## 2508               Grande     Jugos y Néctares            Del Valle
## 2509               Grande     Jugos y Néctares            Del Valle
## 2510               Grande     Jugos y Néctares            Del Valle
## 2511               Grande     Jugos y Néctares Del Valle NutriForte
## 2512               Grande     Jugos y Néctares    Del Valle Reserva
## 2513               Grande     Jugos y Néctares    Del Valle Reserva
## 2514               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2515               Grande        Sabores Light     Del Valle y Nada
## 2516               Grande        Sabores Light     Del Valle y Nada
## 2517               Grande      Sabores Regular     Del Valle y Nada
## 2518               Grande      Sabores Regular     Del Valle y Nada
## 2519               Grande      Sabores Regular     Del Valle y Nada
## 2520               Grande      Sabores Regular                Fanta
## 2521               Grande      Sabores Regular                Fanta
## 2522               Grande      Sabores Regular                Fanta
## 2523               Grande      Sabores Regular                Fanta
## 2524               Grande      Sabores Regular                Fanta
## 2525               Grande      Sabores Regular               Fresca
## 2526               Grande      Sabores Regular               Fresca
## 2527               Grande      Sabores Regular               Fresca
## 2528               Grande      Sabores Regular         Manzana Lift
## 2529               Grande      Sabores Regular         Manzana Lift
## 2530               Grande      Sabores Regular        Sidral Mundet
## 2531               Grande      Sabores Regular        Sidral Mundet
## 2532               Grande      Sabores Regular        Sidral Mundet
## 2533               Grande      Sabores Regular        Sidral Mundet
## 2534               Grande      Sabores Regular               Sprite
## 2535               Grande      Sabores Regular               Sprite
## 2536               Grande      Sabores Regular               Sprite
## 2537               Grande      Sabores Regular               Sprite
## 2538               Grande      Sabores Regular               Sprite
## 2539               Grande           Té Regular             Fuze Tea
## 2540               Grande           Té Regular             Fuze Tea
## 2541               Grande         Agua Mineral    Ciel Mineralizada
## 2542               Grande         Agua Mineral      Topo Chico A.M.
## 2543               Grande      Agua Purificada Ciel Agua Purificada
## 2544               Grande      Agua Purificada Ciel Agua Purificada
## 2545               Grande      Agua Saborizada          Ciel Exprim
## 2546               Grande      Agua Saborizada          Ciel Exprim
## 2547               Grande     Bebidas de Fruta       Delaware Punch
## 2548               Grande     Bebidas de Fruta                Pulpy
## 2549               Grande     Bebidas de Fruta           Valle Frut
## 2550               Grande     Bebidas de Fruta           Valle Frut
## 2551               Grande      Bebidas de Soya          AdeS Lácteo
## 2552               Grande  Bebidas Energeticas       Monster Energy
## 2553               Grande Cafe Listo Para Bebe         Barista Bros
## 2554               Grande          Colas Light      Coca-Cola Light
## 2555               Grande          Colas Light      Coca-Cola Light
## 2556               Grande          Colas Light      Coca-Cola Light
## 2557               Grande          Colas Light      Coca-Cola Light
## 2558               Grande          Colas Light      Coca-Cola Light
## 2559               Grande          Colas Light      Coca-Cola Light
## 2560               Grande          Colas Light      Coca-Cola Light
## 2561               Grande          Colas Light      Coca-Cola Light
## 2562               Grande          Colas Light Coca-Cola Sin Azúcar
## 2563               Grande          Colas Light Coca-Cola Sin Azúcar
## 2564               Grande          Colas Light Coca-Cola Sin Azúcar
## 2565               Grande          Colas Light Coca-Cola Sin Azúcar
## 2566               Grande          Colas Light Coca-Cola Sin Azúcar
## 2567               Grande        Colas Regular            Coca-Cola
## 2568               Grande        Colas Regular            Coca-Cola
## 2569               Grande        Colas Regular            Coca-Cola
## 2570               Grande        Colas Regular            Coca-Cola
## 2571               Grande        Colas Regular            Coca-Cola
## 2572               Grande        Colas Regular            Coca-Cola
## 2573               Grande        Colas Regular            Coca-Cola
## 2574               Grande        Colas Regular            Coca-Cola
## 2575               Grande        Colas Regular            Coca-Cola
## 2576               Grande        Colas Regular            Coca-Cola
## 2577               Grande        Colas Regular            Coca-Cola
## 2578               Grande        Colas Regular            Coca-Cola
## 2579               Grande        Colas Regular            Coca-Cola
## 2580               Grande        Colas Regular            Coca-Cola
## 2581               Grande        Colas Regular            Coca-Cola
## 2582               Grande        Colas Regular            Coca-Cola
## 2583               Grande   Isotónicos Regular             Powerade
## 2584               Grande   Isotónicos Regular             Powerade
## 2585               Grande     Jugos y Néctares            Del Valle
## 2586               Grande     Jugos y Néctares            Del Valle
## 2587               Grande     Jugos y Néctares            Del Valle
## 2588               Grande     Jugos y Néctares            Del Valle
## 2589               Grande     Jugos y Néctares Del Valle NutriVeget
## 2590               Grande     Jugos y Néctares    Del Valle Reserva
## 2591               Grande     Jugos y Néctares    Del Valle Reserva
## 2592               Grande    Leche UHT Regular   Santa Clara Entera
## 2593               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2594               Grande        Sabores Light     Del Valle y Nada
## 2595               Grande        Sabores Light          Sprite Zero
## 2596               Grande      Sabores Regular                Fanta
## 2597               Grande      Sabores Regular                Fanta
## 2598               Grande      Sabores Regular                Fanta
## 2599               Grande      Sabores Regular                Fanta
## 2600               Grande      Sabores Regular                Fanta
## 2601               Grande      Sabores Regular               Fresca
## 2602               Grande      Sabores Regular               Fresca
## 2603               Grande      Sabores Regular               Fresca
## 2604               Grande      Sabores Regular         Manzana Lift
## 2605               Grande      Sabores Regular         Manzana Lift
## 2606               Grande      Sabores Regular         Manzana Lift
## 2607               Grande      Sabores Regular               Senzao
## 2608               Grande      Sabores Regular        Sidral Mundet
## 2609               Grande      Sabores Regular        Sidral Mundet
## 2610               Grande      Sabores Regular               Sprite
## 2611               Grande      Sabores Regular               Sprite
## 2612               Grande      Sabores Regular               Sprite
## 2613               Grande      Sabores Regular               Sprite
## 2614               Grande      Sabores Regular               Sprite
## 2615               Grande      Sabores Regular               Sprite
## 2616               Grande           Té Regular             Fuze Tea
## 2617               Grande         Agua Mineral    Ciel Mineralizada
## 2618               Grande         Agua Mineral      Topo Chico A.M.
## 2619               Grande      Agua Purificada Ciel Agua Purificada
## 2620               Grande      Agua Purificada Ciel Agua Purificada
## 2621               Grande      Agua Purificada Ciel Agua Purificada
## 2622               Grande      Agua Saborizada          Ciel Exprim
## 2623               Grande      Agua Saborizada          Ciel Exprim
## 2624               Grande     Bebidas de Fruta       Delaware Punch
## 2625               Grande     Bebidas de Fruta               Frutsi
## 2626               Grande     Bebidas de Fruta                Pulpy
## 2627               Grande     Bebidas de Fruta           Valle Frut
## 2628               Grande     Bebidas de Fruta           Valle Frut
## 2629               Grande      Bebidas de Soya          AdeS Frutal
## 2630               Grande      Bebidas de Soya          AdeS Frutal
## 2631               Grande      Bebidas de Soya          AdeS Lácteo
## 2632               Grande  Bebidas Energeticas                 Burn
## 2633               Grande  Bebidas Energeticas       Monster Energy
## 2634               Grande          Colas Light      Coca-Cola Light
## 2635               Grande          Colas Light      Coca-Cola Light
## 2636               Grande          Colas Light      Coca-Cola Light
## 2637               Grande          Colas Light Coca-Cola Sin Azúcar
## 2638               Grande          Colas Light Coca-Cola Sin Azúcar
## 2639               Grande          Colas Light Coca-Cola Sin Azúcar
## 2640               Grande          Colas Light Coca-Cola Sin Azúcar
## 2641               Grande        Colas Regular            Coca-Cola
## 2642               Grande        Colas Regular            Coca-Cola
## 2643               Grande        Colas Regular            Coca-Cola
## 2644               Grande        Colas Regular            Coca-Cola
## 2645               Grande        Colas Regular            Coca-Cola
## 2646               Grande        Colas Regular            Coca-Cola
## 2647               Grande        Colas Regular            Coca-Cola
## 2648               Grande        Colas Regular            Coca-Cola
## 2649               Grande        Colas Regular            Coca-Cola
## 2650               Grande        Colas Regular            Coca-Cola
## 2651               Grande        Colas Regular            Coca-Cola
## 2652               Grande        Colas Regular            Coca-Cola
## 2653               Grande        Colas Regular            Coca-Cola
## 2654               Grande        Colas Regular            Coca-Cola
## 2655               Grande        Colas Regular            Coca-Cola
## 2656               Grande        Colas Regular            Coca-Cola
## 2657               Grande        Colas Regular            Coca-Cola
## 2658               Grande        Colas Regular            Coca-Cola
## 2659               Grande   Isotónicos Regular             Powerade
## 2660               Grande   Isotónicos Regular             Powerade
## 2661               Grande   Isotónicos Regular             Powerade
## 2662               Grande     Jugos y Néctares            Del Valle
## 2663               Grande     Jugos y Néctares            Del Valle
## 2664               Grande     Jugos y Néctares Del Valle NutriForte
## 2665               Grande     Jugos y Néctares    Del Valle Reserva
## 2666               Grande Leche UHT Especializ Santa Clara Deslacto
## 2667               Grande Leche UHT Especializ Santa Clara Deslacto
## 2668               Grande    Leche UHT Regular   Santa Clara Entera
## 2669               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2670               Grande        Sabores Light     Del Valle y Nada
## 2671               Grande        Sabores Light          Sprite Zero
## 2672               Grande      Sabores Regular     Del Valle y Nada
## 2673               Grande      Sabores Regular                Fanta
## 2674               Grande      Sabores Regular                Fanta
## 2675               Grande      Sabores Regular                Fanta
## 2676               Grande      Sabores Regular                Fanta
## 2677               Grande      Sabores Regular                Fanta
## 2678               Grande      Sabores Regular               Fresca
## 2679               Grande      Sabores Regular               Fresca
## 2680               Grande      Sabores Regular               Fresca
## 2681               Grande      Sabores Regular                 Joya
## 2682               Grande      Sabores Regular         Manzana Lift
## 2683               Grande      Sabores Regular         Manzana Lift
## 2684               Grande      Sabores Regular               Senzao
## 2685               Grande      Sabores Regular        Sidral Mundet
## 2686               Grande      Sabores Regular        Sidral Mundet
## 2687               Grande      Sabores Regular               Sprite
## 2688               Grande      Sabores Regular               Sprite
## 2689               Grande      Sabores Regular               Sprite
## 2690               Grande      Sabores Regular               Sprite
## 2691               Grande      Sabores Regular               Sprite
## 2692               Grande      Sabores Regular               Sprite
## 2693               Grande           Té Regular             Fuze Tea
## 2694               Grande         Agua Mineral    Ciel Mineralizada
## 2695               Grande         Agua Mineral      Topo Chico A.M.
## 2696               Grande      Agua Purificada Ciel Agua Purificada
## 2697               Grande      Agua Purificada Ciel Agua Purificada
## 2698               Grande     Bebidas de Fruta       Delaware Punch
## 2699               Grande      Bebidas de Soya          AdeS Frutal
## 2700               Grande      Bebidas de Soya          AdeS Lácteo
## 2701               Grande          Colas Light      Coca-Cola Light
## 2702               Grande          Colas Light      Coca-Cola Light
## 2703               Grande          Colas Light      Coca-Cola Light
## 2704               Grande          Colas Light Coca-Cola Sin Azúcar
## 2705               Grande        Colas Regular            Coca-Cola
## 2706               Grande        Colas Regular            Coca-Cola
## 2707               Grande        Colas Regular            Coca-Cola
## 2708               Grande        Colas Regular            Coca-Cola
## 2709               Grande        Colas Regular            Coca-Cola
## 2710               Grande        Colas Regular            Coca-Cola
## 2711               Grande        Colas Regular            Coca-Cola
## 2712               Grande        Colas Regular            Coca-Cola
## 2713               Grande        Colas Regular            Coca-Cola
## 2714               Grande        Colas Regular            Coca-Cola
## 2715               Grande   Isotónicos Regular             Powerade
## 2716               Grande     Jugos y Néctares            Del Valle
## 2717               Grande     Jugos y Néctares    Del Valle Reserva
## 2718               Grande Leche UHT Especializ Santa Clara Deslacto
## 2719               Grande Leche UHT Especializ Santa Clara Deslacto
## 2720               Grande    Leche UHT Regular   Santa Clara Entera
## 2721               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2722               Grande        Sabores Light     Del Valle y Nada
## 2723               Grande        Sabores Light          Sprite Zero
## 2724               Grande      Sabores Regular                Fanta
## 2725               Grande      Sabores Regular                Fanta
## 2726               Grande      Sabores Regular               Fresca
## 2727               Grande      Sabores Regular               Sprite
## 2728               Grande      Sabores Regular               Sprite
## 2729               Grande           Té Regular             Fuze Tea
## 2730               Grande         Agua Mineral      Topo Chico A.M.
## 2731               Grande      Agua Purificada Ciel Agua Purificada
## 2732               Grande      Agua Purificada Ciel Agua Purificada
## 2733               Grande      Agua Purificada Ciel Agua Purificada
## 2734               Grande      Agua Purificada Ciel Agua Purificada
## 2735               Grande      Agua Saborizada          Ciel Exprim
## 2736               Grande      Agua Saborizada          Ciel Exprim
## 2737               Grande     Bebidas de Fruta           Valle Frut
## 2738               Grande     Bebidas de Fruta           Valle Frut
## 2739               Grande      Bebidas de Soya          AdeS Frutal
## 2740               Grande      Bebidas de Soya          AdeS Lácteo
## 2741               Grande  Bebidas Energeticas       Monster Energy
## 2742               Grande          Colas Light      Coca-Cola Light
## 2743               Grande          Colas Light      Coca-Cola Light
## 2744               Grande          Colas Light      Coca-Cola Light
## 2745               Grande          Colas Light      Coca-Cola Light
## 2746               Grande          Colas Light      Coca-Cola Light
## 2747               Grande          Colas Light      Coca-Cola Light
## 2748               Grande          Colas Light      Coca-Cola Light
## 2749               Grande          Colas Light Coca-Cola Sin Azúcar
## 2750               Grande        Colas Regular            Coca-Cola
## 2751               Grande        Colas Regular            Coca-Cola
## 2752               Grande        Colas Regular            Coca-Cola
## 2753               Grande        Colas Regular            Coca-Cola
## 2754               Grande        Colas Regular            Coca-Cola
## 2755               Grande        Colas Regular            Coca-Cola
## 2756               Grande        Colas Regular            Coca-Cola
## 2757               Grande        Colas Regular            Coca-Cola
## 2758               Grande        Colas Regular            Coca-Cola
## 2759               Grande        Colas Regular            Coca-Cola
## 2760               Grande        Colas Regular            Coca-Cola
## 2761               Grande        Colas Regular            Coca-Cola
## 2762               Grande        Colas Regular            Coca-Cola
## 2763               Grande   Isotónicos Regular             Powerade
## 2764               Grande   Isotónicos Regular             Powerade
## 2765               Grande     Jugos y Néctares            Del Valle
## 2766               Grande     Jugos y Néctares            Del Valle
## 2767               Grande     Jugos y Néctares    Del Valle Reserva
## 2768               Grande Leche UHT Especializ Santa Clara Deslacto
## 2769               Grande    Leche UHT Regular   Santa Clara Entera
## 2770               Grande    Leche UHT Regular    Santa Clara Light
## 2771               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2772               Grande        Sabores Light     Del Valle y Nada
## 2773               Grande        Sabores Light          Sprite Zero
## 2774               Grande        Sabores Light          Sprite Zero
## 2775               Grande      Sabores Regular                Fanta
## 2776               Grande      Sabores Regular                Fanta
## 2777               Grande      Sabores Regular                Fanta
## 2778               Grande      Sabores Regular                Fanta
## 2779               Grande      Sabores Regular                Fanta
## 2780               Grande      Sabores Regular               Fresca
## 2781               Grande      Sabores Regular               Fresca
## 2782               Grande      Sabores Regular               Fresca
## 2783               Grande      Sabores Regular               Fresca
## 2784               Grande      Sabores Regular                 Joya
## 2785               Grande      Sabores Regular         Manzana Lift
## 2786               Grande      Sabores Regular         Manzana Lift
## 2787               Grande      Sabores Regular         Manzana Lift
## 2788               Grande      Sabores Regular               Senzao
## 2789               Grande      Sabores Regular        Sidral Mundet
## 2790               Grande      Sabores Regular        Sidral Mundet
## 2791               Grande      Sabores Regular        Sidral Mundet
## 2792               Grande      Sabores Regular        Sidral Mundet
## 2793               Grande      Sabores Regular               Sprite
## 2794               Grande      Sabores Regular               Sprite
## 2795               Grande      Sabores Regular               Sprite
## 2796               Grande      Sabores Regular               Sprite
## 2797               Grande      Sabores Regular               Sprite
## 2798               Grande           Té Regular             Fuze Tea
## 2799               Grande           Té Regular             Fuze Tea
## 2800               Grande         Agua Mineral    Ciel Mineralizada
## 2801               Grande         Agua Mineral      Topo Chico A.M.
## 2802               Grande      Agua Purificada Ciel Agua Purificada
## 2803               Grande      Agua Purificada Ciel Agua Purificada
## 2804               Grande      Agua Purificada Ciel Agua Purificada
## 2805               Grande      Agua Purificada Ciel Agua Purificada
## 2806               Grande      Agua Saborizada          Ciel Exprim
## 2807               Grande      Agua Saborizada          Ciel Exprim
## 2808               Grande      Agua Saborizada          Ciel Exprim
## 2809               Grande     Bebidas de Fruta       Delaware Punch
## 2810               Grande     Bebidas de Fruta               Frutsi
## 2811               Grande     Bebidas de Fruta                Pulpy
## 2812               Grande     Bebidas de Fruta           Valle Frut
## 2813               Grande     Bebidas de Fruta           Valle Frut
## 2814               Grande     Bebidas de Fruta           Valle Frut
## 2815               Grande      Bebidas de Soya          AdeS Frutal
## 2816               Grande      Bebidas de Soya          AdeS Frutal
## 2817               Grande      Bebidas de Soya          AdeS Lácteo
## 2818               Grande  Bebidas Energeticas                 Burn
## 2819               Grande  Bebidas Energeticas                 Burn
## 2820               Grande  Bebidas Energeticas              Glacéau
## 2821               Grande  Bebidas Energeticas       Monster Energy
## 2822               Grande Cafe Listo Para Bebe         Barista Bros
## 2823               Grande          Colas Light      Coca-Cola Light
## 2824               Grande          Colas Light      Coca-Cola Light
## 2825               Grande          Colas Light      Coca-Cola Light
## 2826               Grande          Colas Light      Coca-Cola Light
## 2827               Grande          Colas Light      Coca-Cola Light
## 2828               Grande          Colas Light      Coca-Cola Light
## 2829               Grande          Colas Light      Coca-Cola Light
## 2830               Grande          Colas Light      Coca-Cola Light
## 2831               Grande          Colas Light Coca-Cola Sin Azúcar
## 2832               Grande          Colas Light Coca-Cola Sin Azúcar
## 2833               Grande          Colas Light Coca-Cola Sin Azúcar
## 2834               Grande          Colas Light Coca-Cola Sin Azúcar
## 2835               Grande          Colas Light Coca-Cola Sin Azúcar
## 2836               Grande          Colas Light Coca-Cola Sin Azúcar
## 2837               Grande          Colas Light Coca-Cola Sin Azúcar
## 2838               Grande        Colas Regular            Coca-Cola
## 2839               Grande        Colas Regular            Coca-Cola
## 2840               Grande        Colas Regular            Coca-Cola
## 2841               Grande        Colas Regular            Coca-Cola
## 2842               Grande        Colas Regular            Coca-Cola
## 2843               Grande        Colas Regular            Coca-Cola
## 2844               Grande        Colas Regular            Coca-Cola
## 2845               Grande        Colas Regular            Coca-Cola
## 2846               Grande        Colas Regular            Coca-Cola
## 2847               Grande        Colas Regular            Coca-Cola
## 2848               Grande        Colas Regular            Coca-Cola
## 2849               Grande        Colas Regular            Coca-Cola
## 2850               Grande        Colas Regular            Coca-Cola
## 2851               Grande        Colas Regular            Coca-Cola
## 2852               Grande        Colas Regular            Coca-Cola
## 2853               Grande        Colas Regular            Coca-Cola
## 2854               Grande        Colas Regular            Coca-Cola
## 2855               Grande        Colas Regular            Coca-Cola
## 2856               Grande   Isotónicos Regular             Powerade
## 2857               Grande   Isotónicos Regular             Powerade
## 2858               Grande     Jugos y Néctares            Del Valle
## 2859               Grande     Jugos y Néctares            Del Valle
## 2860               Grande     Jugos y Néctares            Del Valle
## 2861               Grande     Jugos y Néctares Del Valle NutriVeget
## 2862               Grande     Jugos y Néctares    Del Valle Reserva
## 2863               Grande     Jugos y Néctares    Del Valle Reserva
## 2864               Grande Leche UHT Especializ Santa Clara Deslacto
## 2865               Grande Leche UHT Especializ Santa Clara Deslacto
## 2866               Grande    Leche UHT Regular   Santa Clara Entera
## 2867               Grande    Leche UHT Regular    Santa Clara Light
## 2868               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2869               Grande        Sabores Light     Del Valle y Nada
## 2870               Grande        Sabores Light     Del Valle y Nada
## 2871               Grande        Sabores Light          Sprite Zero
## 2872               Grande      Sabores Regular     Del Valle y Nada
## 2873               Grande      Sabores Regular     Del Valle y Nada
## 2874               Grande      Sabores Regular                Fanta
## 2875               Grande      Sabores Regular                Fanta
## 2876               Grande      Sabores Regular                Fanta
## 2877               Grande      Sabores Regular                Fanta
## 2878               Grande      Sabores Regular                Fanta
## 2879               Grande      Sabores Regular               Fresca
## 2880               Grande      Sabores Regular               Fresca
## 2881               Grande      Sabores Regular               Fresca
## 2882               Grande      Sabores Regular               Fresca
## 2883               Grande      Sabores Regular                 Joya
## 2884               Grande      Sabores Regular         Manzana Lift
## 2885               Grande      Sabores Regular         Manzana Lift
## 2886               Grande      Sabores Regular         Manzana Lift
## 2887               Grande      Sabores Regular               Senzao
## 2888               Grande      Sabores Regular        Sidral Mundet
## 2889               Grande      Sabores Regular        Sidral Mundet
## 2890               Grande      Sabores Regular        Sidral Mundet
## 2891               Grande      Sabores Regular        Sidral Mundet
## 2892               Grande      Sabores Regular               Sprite
## 2893               Grande      Sabores Regular               Sprite
## 2894               Grande      Sabores Regular               Sprite
## 2895               Grande      Sabores Regular               Sprite
## 2896               Grande      Sabores Regular               Sprite
## 2897               Grande      Sabores Regular               Sprite
## 2898               Grande      Sabores Regular               Sprite
## 2899               Grande           Té Regular             Fuze Tea
## 2900               Grande           Té Regular             Fuze Tea
## 2901               Grande         Agua Mineral      Topo Chico A.M.
## 2902               Grande      Agua Purificada Ciel Agua Purificada
## 2903               Grande      Agua Purificada Ciel Agua Purificada
## 2904               Grande      Agua Saborizada          Ciel Exprim
## 2905               Grande     Bebidas de Fruta       Delaware Punch
## 2906               Grande     Bebidas de Fruta               Frutsi
## 2907               Grande     Bebidas de Fruta           Valle Frut
## 2908               Grande      Bebidas de Soya          AdeS Frutal
## 2909               Grande      Bebidas de Soya          AdeS Lácteo
## 2910               Grande  Bebidas Energeticas       Monster Energy
## 2911               Grande          Colas Light      Coca-Cola Light
## 2912               Grande          Colas Light      Coca-Cola Light
## 2913               Grande          Colas Light Coca-Cola Sin Azúcar
## 2914               Grande          Colas Light Coca-Cola Sin Azúcar
## 2915               Grande        Colas Regular            Coca-Cola
## 2916               Grande        Colas Regular            Coca-Cola
## 2917               Grande        Colas Regular            Coca-Cola
## 2918               Grande        Colas Regular            Coca-Cola
## 2919               Grande        Colas Regular            Coca-Cola
## 2920               Grande        Colas Regular            Coca-Cola
## 2921               Grande        Colas Regular            Coca-Cola
## 2922               Grande        Colas Regular            Coca-Cola
## 2923               Grande        Colas Regular            Coca-Cola
## 2924               Grande   Isotónicos Regular             Powerade
## 2925               Grande     Jugos y Néctares            Del Valle
## 2926               Grande     Jugos y Néctares            Del Valle
## 2927               Grande     Jugos y Néctares    Del Valle Reserva
## 2928               Grande    Leche UHT Regular   Santa Clara Entera
## 2929               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2930               Grande        Sabores Light     Del Valle y Nada
## 2931               Grande           Té Regular             Fuze Tea
## 2932               Grande         Agua Mineral      Topo Chico A.M.
## 2933               Grande      Agua Purificada Ciel Agua Purificada
## 2934               Grande      Agua Purificada Ciel Agua Purificada
## 2935               Grande      Agua Purificada Ciel Agua Purificada
## 2936               Grande     Bebidas de Fruta               Frutsi
## 2937               Grande     Bebidas de Fruta           Valle Frut
## 2938               Grande      Bebidas de Soya          AdeS Lácteo
## 2939               Grande          Colas Light      Coca-Cola Light
## 2940               Grande          Colas Light      Coca-Cola Light
## 2941               Grande          Colas Light      Coca-Cola Light
## 2942               Grande          Colas Light      Coca-Cola Light
## 2943               Grande          Colas Light      Coca-Cola Light
## 2944               Grande          Colas Light      Coca-Cola Light
## 2945               Grande          Colas Light      Coca-Cola Light
## 2946               Grande          Colas Light      Coca-Cola Light
## 2947               Grande          Colas Light Coca-Cola Sin Azúcar
## 2948               Grande          Colas Light Coca-Cola Sin Azúcar
## 2949               Grande          Colas Light Coca-Cola Sin Azúcar
## 2950               Grande          Colas Light Coca-Cola Sin Azúcar
## 2951               Grande        Colas Regular            Coca-Cola
## 2952               Grande        Colas Regular            Coca-Cola
## 2953               Grande        Colas Regular            Coca-Cola
## 2954               Grande        Colas Regular            Coca-Cola
## 2955               Grande        Colas Regular            Coca-Cola
## 2956               Grande        Colas Regular            Coca-Cola
## 2957               Grande        Colas Regular            Coca-Cola
## 2958               Grande        Colas Regular            Coca-Cola
## 2959               Grande        Colas Regular            Coca-Cola
## 2960               Grande        Colas Regular            Coca-Cola
## 2961               Grande        Colas Regular            Coca-Cola
## 2962               Grande        Colas Regular            Coca-Cola
## 2963               Grande        Colas Regular            Coca-Cola
## 2964               Grande        Colas Regular            Coca-Cola
## 2965               Grande        Colas Regular            Coca-Cola
## 2966               Grande        Colas Regular            Coca-Cola
## 2967               Grande   Isotónicos Regular             Powerade
## 2968               Grande   Isotónicos Regular             Powerade
## 2969               Grande     Jugos y Néctares            Del Valle
## 2970               Grande     Jugos y Néctares            Del Valle
## 2971               Grande Leche UHT Saborizada Santa Clara Saboriza
## 2972               Grande        Sabores Light     Del Valle y Nada
## 2973               Grande      Sabores Regular               Fresca
## 2974               Grande      Sabores Regular                 Joya
## 2975               Grande           Té Regular             Fuze Tea
## 2976               Grande         Agua Mineral    Ciel Mineralizada
## 2977               Grande         Agua Mineral      Topo Chico A.M.
## 2978               Grande         Agua Mineral      Topo Chico A.M.
## 2979               Grande      Agua Purificada Ciel Agua Purificada
## 2980               Grande      Agua Purificada Ciel Agua Purificada
## 2981               Grande      Agua Purificada Ciel Agua Purificada
## 2982               Grande      Agua Saborizada          Ciel Exprim
## 2983               Grande      Agua Saborizada          Ciel Exprim
## 2984               Grande     Bebidas de Fruta       Delaware Punch
## 2985               Grande     Bebidas de Fruta       Delaware Punch
## 2986               Grande     Bebidas de Fruta               Frutsi
## 2987               Grande     Bebidas de Fruta                Pulpy
## 2988               Grande     Bebidas de Fruta           Valle Frut
## 2989               Grande     Bebidas de Fruta           Valle Frut
## 2990               Grande     Bebidas de Fruta           Valle Frut
## 2991               Grande     Bebidas de Fruta           Valle Frut
## 2992               Grande      Bebidas de Soya          AdeS Frutal
## 2993               Grande      Bebidas de Soya          AdeS Frutal
## 2994               Grande  Bebidas Energeticas       Monster Energy
## 2995               Grande Cafe Listo Para Bebe         Barista Bros
## 2996               Grande          Colas Light      Coca-Cola Light
## 2997               Grande          Colas Light      Coca-Cola Light
## 2998               Grande          Colas Light      Coca-Cola Light
## 2999               Grande          Colas Light      Coca-Cola Light
## 3000               Grande          Colas Light      Coca-Cola Light
## 3001               Grande          Colas Light      Coca-Cola Light
## 3002               Grande          Colas Light      Coca-Cola Light
## 3003               Grande          Colas Light Coca-Cola Sin Azúcar
## 3004               Grande          Colas Light Coca-Cola Sin Azúcar
## 3005               Grande          Colas Light Coca-Cola Sin Azúcar
## 3006               Grande          Colas Light Coca-Cola Sin Azúcar
## 3007               Grande        Colas Regular            Coca-Cola
## 3008               Grande        Colas Regular            Coca-Cola
## 3009               Grande        Colas Regular            Coca-Cola
## 3010               Grande        Colas Regular            Coca-Cola
## 3011               Grande        Colas Regular            Coca-Cola
## 3012               Grande        Colas Regular            Coca-Cola
## 3013               Grande        Colas Regular            Coca-Cola
## 3014               Grande        Colas Regular            Coca-Cola
## 3015               Grande        Colas Regular            Coca-Cola
## 3016               Grande        Colas Regular            Coca-Cola
## 3017               Grande        Colas Regular            Coca-Cola
## 3018               Grande        Colas Regular            Coca-Cola
## 3019               Grande        Colas Regular            Coca-Cola
## 3020               Grande        Colas Regular            Coca-Cola
## 3021               Grande        Colas Regular            Coca-Cola
## 3022               Grande        Colas Regular            Coca-Cola
## 3023               Grande   Isotónicos Regular             Powerade
## 3024               Grande   Isotónicos Regular             Powerade
## 3025               Grande     Jugos y Néctares            Del Valle
## 3026               Grande     Jugos y Néctares            Del Valle
## 3027               Grande     Jugos y Néctares            Del Valle
## 3028               Grande     Jugos y Néctares Del Valle NutriVeget
## 3029               Grande     Jugos y Néctares    Del Valle Reserva
## 3030               Grande     Jugos y Néctares    Del Valle Reserva
## 3031               Grande Leche UHT Especializ Santa Clara Deslacto
## 3032               Grande Leche UHT Especializ Santa Clara Deslacto
## 3033               Grande    Leche UHT Regular   Santa Clara Entera
## 3034               Grande    Leche UHT Regular    Santa Clara Light
## 3035               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3036               Grande        Sabores Light     Del Valle y Nada
## 3037               Grande        Sabores Light     Del Valle y Nada
## 3038               Grande        Sabores Light          Sprite Zero
## 3039               Grande      Sabores Regular     Del Valle y Nada
## 3040               Grande      Sabores Regular     Del Valle y Nada
## 3041               Grande      Sabores Regular                Fanta
## 3042               Grande      Sabores Regular                Fanta
## 3043               Grande      Sabores Regular                Fanta
## 3044               Grande      Sabores Regular                Fanta
## 3045               Grande      Sabores Regular                Fanta
## 3046               Grande      Sabores Regular                Fanta
## 3047               Grande      Sabores Regular               Fresca
## 3048               Grande      Sabores Regular               Fresca
## 3049               Grande      Sabores Regular               Fresca
## 3050               Grande      Sabores Regular               Fresca
## 3051               Grande      Sabores Regular               Fresca
## 3052               Grande      Sabores Regular                 Joya
## 3053               Grande      Sabores Regular                 Joya
## 3054               Grande      Sabores Regular         Manzana Lift
## 3055               Grande      Sabores Regular         Manzana Lift
## 3056               Grande      Sabores Regular         Manzana Lift
## 3057               Grande      Sabores Regular         Manzana Lift
## 3058               Grande      Sabores Regular               Senzao
## 3059               Grande      Sabores Regular        Sidral Mundet
## 3060               Grande      Sabores Regular        Sidral Mundet
## 3061               Grande      Sabores Regular        Sidral Mundet
## 3062               Grande      Sabores Regular        Sidral Mundet
## 3063               Grande      Sabores Regular        Sidral Mundet
## 3064               Grande      Sabores Regular               Sprite
## 3065               Grande      Sabores Regular               Sprite
## 3066               Grande      Sabores Regular               Sprite
## 3067               Grande      Sabores Regular               Sprite
## 3068               Grande      Sabores Regular               Sprite
## 3069               Grande      Sabores Regular               Sprite
## 3070               Grande      Sabores Regular               Sprite
## 3071               Grande           Té Regular             Fuze Tea
## 3072               Grande           Té Regular             Fuze Tea
## 3073               Grande           Té Regular             Fuze Tea
## 3074               Grande         Agua Mineral      Topo Chico A.M.
## 3075               Grande      Agua Purificada Ciel Agua Purificada
## 3076               Grande      Agua Purificada Ciel Agua Purificada
## 3077               Grande      Agua Purificada Ciel Agua Purificada
## 3078               Grande      Agua Saborizada          Ciel Exprim
## 3079               Grande      Agua Saborizada          Ciel Exprim
## 3080               Grande     Bebidas de Fruta       Delaware Punch
## 3081               Grande     Bebidas de Fruta               Frutsi
## 3082               Grande     Bebidas de Fruta           Valle Frut
## 3083               Grande     Bebidas de Fruta           Valle Frut
## 3084               Grande      Bebidas de Soya          AdeS Frutal
## 3085               Grande      Bebidas de Soya          AdeS Lácteo
## 3086               Grande          Colas Light      Coca-Cola Light
## 3087               Grande          Colas Light      Coca-Cola Light
## 3088               Grande          Colas Light      Coca-Cola Light
## 3089               Grande          Colas Light      Coca-Cola Light
## 3090               Grande          Colas Light Coca-Cola Sin Azúcar
## 3091               Grande          Colas Light Coca-Cola Sin Azúcar
## 3092               Grande        Colas Regular            Coca-Cola
## 3093               Grande        Colas Regular            Coca-Cola
## 3094               Grande        Colas Regular            Coca-Cola
## 3095               Grande        Colas Regular            Coca-Cola
## 3096               Grande        Colas Regular            Coca-Cola
## 3097               Grande        Colas Regular            Coca-Cola
## 3098               Grande        Colas Regular            Coca-Cola
## 3099               Grande        Colas Regular            Coca-Cola
## 3100               Grande        Colas Regular            Coca-Cola
## 3101               Grande        Colas Regular            Coca-Cola
## 3102               Grande   Isotónicos Regular             Powerade
## 3103               Grande   Isotónicos Regular             Powerade
## 3104               Grande   Isotónicos Regular             Powerade
## 3105               Grande     Jugos y Néctares            Del Valle
## 3106               Grande     Jugos y Néctares            Del Valle
## 3107               Grande     Jugos y Néctares            Del Valle
## 3108               Grande    Leche UHT Regular   Santa Clara Entera
## 3109               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3110               Grande        Sabores Light     Del Valle y Nada
## 3111               Grande        Sabores Light          Sprite Zero
## 3112               Grande      Sabores Regular                Fanta
## 3113               Grande      Sabores Regular                Fanta
## 3114               Grande      Sabores Regular               Fresca
## 3115               Grande      Sabores Regular               Fresca
## 3116               Grande      Sabores Regular               Fresca
## 3117               Grande      Sabores Regular                 Joya
## 3118               Grande      Sabores Regular         Manzana Lift
## 3119               Grande      Sabores Regular         Manzana Lift
## 3120               Grande      Sabores Regular        Sidral Mundet
## 3121               Grande      Sabores Regular               Sprite
## 3122               Grande      Sabores Regular               Sprite
## 3123               Grande           Té Regular             Fuze Tea
## 3124               Grande           Té Regular             Fuze Tea
## 3125               Grande         Agua Mineral      Topo Chico A.M.
## 3126               Grande      Agua Purificada Ciel Agua Purificada
## 3127               Grande      Agua Purificada Ciel Agua Purificada
## 3128               Grande      Agua Purificada Ciel Agua Purificada
## 3129               Grande     Bebidas de Fruta       Delaware Punch
## 3130               Grande     Bebidas de Fruta               Frutsi
## 3131               Grande     Bebidas de Fruta                Pulpy
## 3132               Grande     Bebidas de Fruta           Valle Frut
## 3133               Grande      Bebidas de Soya          AdeS Frutal
## 3134               Grande      Bebidas de Soya          AdeS Lácteo
## 3135               Grande  Bebidas Energeticas              Glacéau
## 3136               Grande  Bebidas Energeticas       Monster Energy
## 3137               Grande Cafe Listo Para Bebe         Barista Bros
## 3138               Grande          Colas Light      Coca-Cola Light
## 3139               Grande          Colas Light      Coca-Cola Light
## 3140               Grande          Colas Light      Coca-Cola Light
## 3141               Grande          Colas Light      Coca-Cola Light
## 3142               Grande          Colas Light      Coca-Cola Light
## 3143               Grande          Colas Light      Coca-Cola Light
## 3144               Grande          Colas Light      Coca-Cola Light
## 3145               Grande          Colas Light Coca-Cola Sin Azúcar
## 3146               Grande          Colas Light Coca-Cola Sin Azúcar
## 3147               Grande          Colas Light Coca-Cola Sin Azúcar
## 3148               Grande          Colas Light Coca-Cola Sin Azúcar
## 3149               Grande          Colas Light Coca-Cola Sin Azúcar
## 3150               Grande        Colas Regular            Coca-Cola
## 3151               Grande        Colas Regular            Coca-Cola
## 3152               Grande        Colas Regular            Coca-Cola
## 3153               Grande        Colas Regular            Coca-Cola
## 3154               Grande        Colas Regular            Coca-Cola
## 3155               Grande        Colas Regular            Coca-Cola
## 3156               Grande        Colas Regular            Coca-Cola
## 3157               Grande        Colas Regular            Coca-Cola
## 3158               Grande        Colas Regular            Coca-Cola
## 3159               Grande        Colas Regular            Coca-Cola
## 3160               Grande        Colas Regular            Coca-Cola
## 3161               Grande        Colas Regular            Coca-Cola
## 3162               Grande        Colas Regular            Coca-Cola
## 3163               Grande        Colas Regular            Coca-Cola
## 3164               Grande        Colas Regular            Coca-Cola
## 3165               Grande   Isotónicos Regular             Powerade
## 3166               Grande   Isotónicos Regular             Powerade
## 3167               Grande     Jugos y Néctares            Del Valle
## 3168               Grande     Jugos y Néctares            Del Valle
## 3169               Grande     Jugos y Néctares            Del Valle
## 3170               Grande     Jugos y Néctares            Del Valle
## 3171               Grande     Jugos y Néctares Del Valle NutriForte
## 3172               Grande     Jugos y Néctares    Del Valle Reserva
## 3173               Grande Leche UHT Especializ Santa Clara Deslacto
## 3174               Grande    Leche UHT Regular   Santa Clara Entera
## 3175               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3176               Grande        Sabores Light     Del Valle y Nada
## 3177               Grande        Sabores Light     Del Valle y Nada
## 3178               Grande        Sabores Light          Sprite Zero
## 3179               Grande      Sabores Regular     Del Valle y Nada
## 3180               Grande      Sabores Regular                Fanta
## 3181               Grande      Sabores Regular                Fanta
## 3182               Grande      Sabores Regular                Fanta
## 3183               Grande      Sabores Regular                Fanta
## 3184               Grande      Sabores Regular               Fresca
## 3185               Grande      Sabores Regular                 Joya
## 3186               Grande      Sabores Regular         Manzana Lift
## 3187               Grande      Sabores Regular         Manzana Lift
## 3188               Grande      Sabores Regular               Senzao
## 3189               Grande      Sabores Regular        Sidral Mundet
## 3190               Grande      Sabores Regular        Sidral Mundet
## 3191               Grande      Sabores Regular        Sidral Mundet
## 3192               Grande      Sabores Regular        Sidral Mundet
## 3193               Grande      Sabores Regular               Sprite
## 3194               Grande      Sabores Regular               Sprite
## 3195               Grande      Sabores Regular               Sprite
## 3196               Grande      Sabores Regular               Sprite
## 3197               Grande           Té Regular             Fuze Tea
## 3198               Grande         Agua Mineral    Ciel Mineralizada
## 3199               Grande         Agua Mineral      Topo Chico A.M.
## 3200               Grande      Agua Purificada Ciel Agua Purificada
## 3201               Grande      Agua Purificada Ciel Agua Purificada
## 3202               Grande      Agua Purificada Ciel Agua Purificada
## 3203               Grande      Agua Saborizada          Ciel Exprim
## 3204               Grande      Agua Saborizada          Ciel Exprim
## 3205               Grande     Bebidas de Fruta       Delaware Punch
## 3206               Grande     Bebidas de Fruta               Frutsi
## 3207               Grande     Bebidas de Fruta                Pulpy
## 3208               Grande     Bebidas de Fruta           Valle Frut
## 3209               Grande     Bebidas de Fruta           Valle Frut
## 3210               Grande      Bebidas de Soya          AdeS Frutal
## 3211               Grande      Bebidas de Soya          AdeS Lácteo
## 3212               Grande  Bebidas Energeticas       Monster Energy
## 3213               Grande          Colas Light      Coca-Cola Light
## 3214               Grande          Colas Light      Coca-Cola Light
## 3215               Grande          Colas Light      Coca-Cola Light
## 3216               Grande          Colas Light      Coca-Cola Light
## 3217               Grande          Colas Light      Coca-Cola Light
## 3218               Grande          Colas Light      Coca-Cola Light
## 3219               Grande          Colas Light Coca-Cola Sin Azúcar
## 3220               Grande          Colas Light Coca-Cola Sin Azúcar
## 3221               Grande          Colas Light Coca-Cola Sin Azúcar
## 3222               Grande          Colas Light Coca-Cola Sin Azúcar
## 3223               Grande          Colas Light Coca-Cola Sin Azúcar
## 3224               Grande        Colas Regular            Coca-Cola
## 3225               Grande        Colas Regular            Coca-Cola
## 3226               Grande        Colas Regular            Coca-Cola
## 3227               Grande        Colas Regular            Coca-Cola
## 3228               Grande        Colas Regular            Coca-Cola
## 3229               Grande        Colas Regular            Coca-Cola
## 3230               Grande        Colas Regular            Coca-Cola
## 3231               Grande        Colas Regular            Coca-Cola
## 3232               Grande        Colas Regular            Coca-Cola
## 3233               Grande        Colas Regular            Coca-Cola
## 3234               Grande        Colas Regular            Coca-Cola
## 3235               Grande        Colas Regular            Coca-Cola
## 3236               Grande        Colas Regular            Coca-Cola
## 3237               Grande        Colas Regular            Coca-Cola
## 3238               Grande        Colas Regular            Coca-Cola
## 3239               Grande        Colas Regular            Coca-Cola
## 3240               Grande   Isotónicos Regular             Powerade
## 3241               Grande   Isotónicos Regular             Powerade
## 3242               Grande     Jugos y Néctares            Del Valle
## 3243               Grande     Jugos y Néctares            Del Valle
## 3244               Grande     Jugos y Néctares            Del Valle
## 3245               Grande     Jugos y Néctares            Del Valle
## 3246               Grande     Jugos y Néctares Del Valle NutriForte
## 3247               Grande     Jugos y Néctares    Del Valle Reserva
## 3248               Grande     Jugos y Néctares    Del Valle Reserva
## 3249               Grande Leche UHT Especializ Santa Clara Deslacto
## 3250               Grande    Leche UHT Regular   Santa Clara Entera
## 3251               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3252               Grande        Sabores Light     Del Valle y Nada
## 3253               Grande        Sabores Light          Sprite Zero
## 3254               Grande      Sabores Regular     Del Valle y Nada
## 3255               Grande      Sabores Regular     Del Valle y Nada
## 3256               Grande      Sabores Regular                Fanta
## 3257               Grande      Sabores Regular                Fanta
## 3258               Grande      Sabores Regular                Fanta
## 3259               Grande      Sabores Regular               Fresca
## 3260               Grande      Sabores Regular                 Joya
## 3261               Grande      Sabores Regular                 Joya
## 3262               Grande      Sabores Regular               Senzao
## 3263               Grande      Sabores Regular        Sidral Mundet
## 3264               Grande      Sabores Regular        Sidral Mundet
## 3265               Grande      Sabores Regular        Sidral Mundet
## 3266               Grande      Sabores Regular               Sprite
## 3267               Grande      Sabores Regular               Sprite
## 3268               Grande      Sabores Regular               Sprite
## 3269               Grande      Sabores Regular               Sprite
## 3270               Grande      Sabores Regular               Sprite
## 3271               Grande           Té Regular             Fuze Tea
## 3272               Grande           Té Regular             Fuze Tea
## 3273               Grande         Agua Mineral    Ciel Mineralizada
## 3274               Grande         Agua Mineral      Topo Chico A.M.
## 3275               Grande      Agua Purificada Ciel Agua Purificada
## 3276               Grande      Agua Purificada Ciel Agua Purificada
## 3277               Grande      Agua Purificada Ciel Agua Purificada
## 3278               Grande      Agua Purificada Ciel Agua Purificada
## 3279               Grande      Agua Purificada Ciel Agua Purificada
## 3280               Grande      Agua Saborizada          Ciel Exprim
## 3281               Grande      Agua Saborizada          Ciel Exprim
## 3282               Grande      Agua Saborizada          Ciel Exprim
## 3283               Grande      Agua Saborizada            Ciel Mini
## 3284               Grande     Bebidas de Fruta       Delaware Punch
## 3285               Grande     Bebidas de Fruta       Delaware Punch
## 3286               Grande     Bebidas de Fruta               Frutsi
## 3287               Grande     Bebidas de Fruta                Pulpy
## 3288               Grande     Bebidas de Fruta           Valle Frut
## 3289               Grande     Bebidas de Fruta           Valle Frut
## 3290               Grande     Bebidas de Fruta           Valle Frut
## 3291               Grande      Bebidas de Soya          AdeS Frutal
## 3292               Grande      Bebidas de Soya          AdeS Frutal
## 3293               Grande      Bebidas de Soya          AdeS Lácteo
## 3294               Grande  Bebidas Energeticas              Glacéau
## 3295               Grande  Bebidas Energeticas       Monster Energy
## 3296               Grande Cafe Listo Para Bebe         Barista Bros
## 3297               Grande          Colas Light      Coca-Cola Light
## 3298               Grande          Colas Light      Coca-Cola Light
## 3299               Grande          Colas Light      Coca-Cola Light
## 3300               Grande          Colas Light      Coca-Cola Light
## 3301               Grande          Colas Light      Coca-Cola Light
## 3302               Grande          Colas Light      Coca-Cola Light
## 3303               Grande          Colas Light      Coca-Cola Light
## 3304               Grande          Colas Light      Coca-Cola Light
## 3305               Grande          Colas Light Coca-Cola Sin Azúcar
## 3306               Grande          Colas Light Coca-Cola Sin Azúcar
## 3307               Grande          Colas Light Coca-Cola Sin Azúcar
## 3308               Grande          Colas Light Coca-Cola Sin Azúcar
## 3309               Grande          Colas Light Coca-Cola Sin Azúcar
## 3310               Grande        Colas Regular            Coca-Cola
## 3311               Grande        Colas Regular            Coca-Cola
## 3312               Grande        Colas Regular            Coca-Cola
## 3313               Grande        Colas Regular            Coca-Cola
## 3314               Grande        Colas Regular            Coca-Cola
## 3315               Grande        Colas Regular            Coca-Cola
## 3316               Grande        Colas Regular            Coca-Cola
## 3317               Grande        Colas Regular            Coca-Cola
## 3318               Grande        Colas Regular            Coca-Cola
## 3319               Grande        Colas Regular            Coca-Cola
## 3320               Grande        Colas Regular            Coca-Cola
## 3321               Grande        Colas Regular            Coca-Cola
## 3322               Grande        Colas Regular            Coca-Cola
## 3323               Grande        Colas Regular            Coca-Cola
## 3324               Grande        Colas Regular            Coca-Cola
## 3325               Grande        Colas Regular            Coca-Cola
## 3326               Grande        Colas Regular            Coca-Cola
## 3327               Grande   Isotónicos Regular             Powerade
## 3328               Grande   Isotónicos Regular             Powerade
## 3329               Grande     Jugos y Néctares            Del Valle
## 3330               Grande     Jugos y Néctares            Del Valle
## 3331               Grande     Jugos y Néctares            Del Valle
## 3332               Grande     Jugos y Néctares            Del Valle
## 3333               Grande     Jugos y Néctares            Del Valle
## 3334               Grande     Jugos y Néctares            Del Valle
## 3335               Grande     Jugos y Néctares Del Valle NutriForte
## 3336               Grande     Jugos y Néctares Del Valle NutriVeget
## 3337               Grande     Jugos y Néctares    Del Valle Reserva
## 3338               Grande     Jugos y Néctares    Del Valle Reserva
## 3339               Grande Leche UHT Especializ Santa Clara Deslacto
## 3340               Grande Leche UHT Especializ Santa Clara Deslacto
## 3341               Grande    Leche UHT Regular   Santa Clara Entera
## 3342               Grande    Leche UHT Regular    Santa Clara Light
## 3343               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3344               Grande        Sabores Light     Del Valle y Nada
## 3345               Grande        Sabores Light          Sprite Zero
## 3346               Grande      Sabores Regular     Del Valle y Nada
## 3347               Grande      Sabores Regular                Fanta
## 3348               Grande      Sabores Regular                Fanta
## 3349               Grande      Sabores Regular                Fanta
## 3350               Grande      Sabores Regular                Fanta
## 3351               Grande      Sabores Regular                Fanta
## 3352               Grande      Sabores Regular                Fanta
## 3353               Grande      Sabores Regular                Fanta
## 3354               Grande      Sabores Regular               Fresca
## 3355               Grande      Sabores Regular               Fresca
## 3356               Grande      Sabores Regular               Fresca
## 3357               Grande      Sabores Regular               Fresca
## 3358               Grande      Sabores Regular                 Joya
## 3359               Grande      Sabores Regular                 Joya
## 3360               Grande      Sabores Regular         Manzana Lift
## 3361               Grande      Sabores Regular         Manzana Lift
## 3362               Grande      Sabores Regular         Manzana Lift
## 3363               Grande      Sabores Regular               Senzao
## 3364               Grande      Sabores Regular        Sidral Mundet
## 3365               Grande      Sabores Regular        Sidral Mundet
## 3366               Grande      Sabores Regular        Sidral Mundet
## 3367               Grande      Sabores Regular        Sidral Mundet
## 3368               Grande      Sabores Regular               Sprite
## 3369               Grande      Sabores Regular               Sprite
## 3370               Grande      Sabores Regular               Sprite
## 3371               Grande      Sabores Regular               Sprite
## 3372               Grande      Sabores Regular               Sprite
## 3373               Grande      Sabores Regular               Sprite
## 3374               Grande      Sabores Regular               Sprite
## 3375               Grande      Sabores Regular               Sprite
## 3376               Grande           Té Regular             Fuze Tea
## 3377               Grande           Té Regular             Fuze Tea
## 3378               Grande           Té Regular             Fuze Tea
## 3379               Grande         Agua Mineral      Topo Chico A.M.
## 3380               Grande      Agua Purificada Ciel Agua Purificada
## 3381               Grande      Agua Purificada Ciel Agua Purificada
## 3382               Grande      Agua Purificada Ciel Agua Purificada
## 3383               Grande      Agua Saborizada          Ciel Exprim
## 3384               Grande      Bebidas de Soya          AdeS Frutal
## 3385               Grande      Bebidas de Soya          AdeS Frutal
## 3386               Grande      Bebidas de Soya          AdeS Lácteo
## 3387               Grande  Bebidas Energeticas       Monster Energy
## 3388               Grande          Colas Light      Coca-Cola Light
## 3389               Grande          Colas Light      Coca-Cola Light
## 3390               Grande          Colas Light      Coca-Cola Light
## 3391               Grande          Colas Light      Coca-Cola Light
## 3392               Grande          Colas Light      Coca-Cola Light
## 3393               Grande          Colas Light Coca-Cola Sin Azúcar
## 3394               Grande          Colas Light Coca-Cola Sin Azúcar
## 3395               Grande          Colas Light Coca-Cola Sin Azúcar
## 3396               Grande        Colas Regular            Coca-Cola
## 3397               Grande        Colas Regular            Coca-Cola
## 3398               Grande        Colas Regular            Coca-Cola
## 3399               Grande        Colas Regular            Coca-Cola
## 3400               Grande        Colas Regular            Coca-Cola
## 3401               Grande        Colas Regular            Coca-Cola
## 3402               Grande        Colas Regular            Coca-Cola
## 3403               Grande        Colas Regular            Coca-Cola
## 3404               Grande        Colas Regular            Coca-Cola
## 3405               Grande        Colas Regular            Coca-Cola
## 3406               Grande        Colas Regular            Coca-Cola
## 3407               Grande        Colas Regular            Coca-Cola
## 3408               Grande        Colas Regular            Coca-Cola
## 3409               Grande     Jugos y Néctares            Del Valle
## 3410               Grande     Jugos y Néctares            Del Valle
## 3411               Grande     Jugos y Néctares            Del Valle
## 3412               Grande     Jugos y Néctares Del Valle NutriForte
## 3413               Grande     Jugos y Néctares Del Valle NutriVeget
## 3414               Grande Leche UHT Especializ Santa Clara Deslacto
## 3415               Grande Leche UHT Especializ Santa Clara Deslacto
## 3416               Grande    Leche UHT Regular   Santa Clara Entera
## 3417               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3418               Grande        Sabores Light     Del Valle y Nada
## 3419               Grande        Sabores Light          Sprite Zero
## 3420               Grande      Sabores Regular                Fanta
## 3421               Grande      Sabores Regular                Fanta
## 3422               Grande      Sabores Regular                Fanta
## 3423               Grande      Sabores Regular               Fresca
## 3424               Grande      Sabores Regular               Fresca
## 3425               Grande      Sabores Regular               Fresca
## 3426               Grande      Sabores Regular                 Joya
## 3427               Grande      Sabores Regular         Manzana Lift
## 3428               Grande      Sabores Regular               Senzao
## 3429               Grande      Sabores Regular        Sidral Mundet
## 3430               Grande      Sabores Regular        Sidral Mundet
## 3431               Grande      Sabores Regular               Sprite
## 3432               Grande      Sabores Regular               Sprite
## 3433               Grande      Sabores Regular               Sprite
## 3434               Grande           Té Regular             Fuze Tea
## 3435               Grande         Agua Mineral      Topo Chico A.M.
## 3436               Grande         Agua Mineral      Topo Chico A.M.
## 3437               Grande      Agua Purificada Ciel Agua Purificada
## 3438               Grande      Agua Purificada Ciel Agua Purificada
## 3439               Grande      Agua Purificada Ciel Agua Purificada
## 3440               Grande      Agua Saborizada          Ciel Exprim
## 3441               Grande      Agua Saborizada          Ciel Exprim
## 3442               Grande     Bebidas de Fruta       Delaware Punch
## 3443               Grande     Bebidas de Fruta           Valle Frut
## 3444               Grande     Bebidas de Fruta           Valle Frut
## 3445               Grande     Bebidas de Fruta           Valle Frut
## 3446               Grande      Bebidas de Soya          AdeS Lácteo
## 3447               Grande  Bebidas Energeticas       Monster Energy
## 3448               Grande Cafe Listo Para Bebe         Barista Bros
## 3449               Grande          Colas Light      Coca-Cola Light
## 3450               Grande          Colas Light      Coca-Cola Light
## 3451               Grande          Colas Light      Coca-Cola Light
## 3452               Grande          Colas Light      Coca-Cola Light
## 3453               Grande          Colas Light      Coca-Cola Light
## 3454               Grande          Colas Light Coca-Cola Sin Azúcar
## 3455               Grande          Colas Light Coca-Cola Sin Azúcar
## 3456               Grande          Colas Light Coca-Cola Sin Azúcar
## 3457               Grande          Colas Light Coca-Cola Sin Azúcar
## 3458               Grande        Colas Regular            Coca-Cola
## 3459               Grande        Colas Regular            Coca-Cola
## 3460               Grande        Colas Regular            Coca-Cola
## 3461               Grande        Colas Regular            Coca-Cola
## 3462               Grande        Colas Regular            Coca-Cola
## 3463               Grande        Colas Regular            Coca-Cola
## 3464               Grande        Colas Regular            Coca-Cola
## 3465               Grande        Colas Regular            Coca-Cola
## 3466               Grande        Colas Regular            Coca-Cola
## 3467               Grande        Colas Regular            Coca-Cola
## 3468               Grande        Colas Regular            Coca-Cola
## 3469               Grande        Colas Regular            Coca-Cola
## 3470               Grande   Isotónicos Regular             Powerade
## 3471               Grande   Isotónicos Regular             Powerade
## 3472               Grande     Jugos y Néctares            Del Valle
## 3473               Grande     Jugos y Néctares            Del Valle
## 3474               Grande     Jugos y Néctares            Del Valle
## 3475               Grande     Jugos y Néctares Del Valle NutriForte
## 3476               Grande     Jugos y Néctares Del Valle NutriVeget
## 3477               Grande     Jugos y Néctares    Del Valle Reserva
## 3478               Grande     Jugos y Néctares    Del Valle Reserva
## 3479               Grande Leche UHT Especializ Santa Clara Deslacto
## 3480               Grande Leche UHT Especializ Santa Clara Deslacto
## 3481               Grande    Leche UHT Regular   Santa Clara Entera
## 3482               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3483               Grande        Sabores Light     Del Valle y Nada
## 3484               Grande        Sabores Light     Del Valle y Nada
## 3485               Grande        Sabores Light          Sprite Zero
## 3486               Grande      Sabores Regular     Del Valle y Nada
## 3487               Grande      Sabores Regular                Fanta
## 3488               Grande      Sabores Regular                Fanta
## 3489               Grande      Sabores Regular                Fanta
## 3490               Grande      Sabores Regular                Fanta
## 3491               Grande      Sabores Regular                Fanta
## 3492               Grande      Sabores Regular               Fresca
## 3493               Grande      Sabores Regular               Fresca
## 3494               Grande      Sabores Regular               Fresca
## 3495               Grande      Sabores Regular                 Joya
## 3496               Grande      Sabores Regular         Manzana Lift
## 3497               Grande      Sabores Regular         Manzana Lift
## 3498               Grande      Sabores Regular               Senzao
## 3499               Grande      Sabores Regular        Sidral Mundet
## 3500               Grande      Sabores Regular        Sidral Mundet
## 3501               Grande      Sabores Regular        Sidral Mundet
## 3502               Grande      Sabores Regular        Sidral Mundet
## 3503               Grande      Sabores Regular               Sprite
## 3504               Grande      Sabores Regular               Sprite
## 3505               Grande      Sabores Regular               Sprite
## 3506               Grande      Sabores Regular               Sprite
## 3507               Grande      Sabores Regular               Sprite
## 3508               Grande           Té Regular             Fuze Tea
## 3509               Grande         Agua Mineral      Topo Chico A.M.
## 3510               Grande      Agua Purificada Ciel Agua Purificada
## 3511               Grande      Agua Purificada Ciel Agua Purificada
## 3512               Grande      Agua Purificada Ciel Agua Purificada
## 3513               Grande      Agua Saborizada          Ciel Exprim
## 3514               Grande      Agua Saborizada          Ciel Exprim
## 3515               Grande      Agua Saborizada            Ciel Mini
## 3516               Grande     Bebidas de Fruta               Bebere
## 3517               Grande     Bebidas de Fruta       Delaware Punch
## 3518               Grande     Bebidas de Fruta               Frutsi
## 3519               Grande     Bebidas de Fruta                Pulpy
## 3520               Grande     Bebidas de Fruta           Valle Frut
## 3521               Grande     Bebidas de Fruta           Valle Frut
## 3522               Grande     Bebidas de Fruta           Valle Frut
## 3523               Grande  Bebidas Energeticas       Monster Energy
## 3524               Grande          Colas Light      Coca-Cola Light
## 3525               Grande          Colas Light      Coca-Cola Light
## 3526               Grande          Colas Light      Coca-Cola Light
## 3527               Grande          Colas Light Coca-Cola Sin Azúcar
## 3528               Grande          Colas Light Coca-Cola Sin Azúcar
## 3529               Grande          Colas Light Coca-Cola Sin Azúcar
## 3530               Grande          Colas Light Coca-Cola Sin Azúcar
## 3531               Grande          Colas Light Coca-Cola Sin Azúcar
## 3532               Grande          Colas Light Coca-Cola Sin Azúcar
## 3533               Grande        Colas Regular            Coca-Cola
## 3534               Grande        Colas Regular            Coca-Cola
## 3535               Grande        Colas Regular            Coca-Cola
## 3536               Grande        Colas Regular            Coca-Cola
## 3537               Grande        Colas Regular            Coca-Cola
## 3538               Grande        Colas Regular            Coca-Cola
## 3539               Grande        Colas Regular            Coca-Cola
## 3540               Grande        Colas Regular            Coca-Cola
## 3541               Grande        Colas Regular            Coca-Cola
## 3542               Grande        Colas Regular            Coca-Cola
## 3543               Grande        Colas Regular            Coca-Cola
## 3544               Grande        Colas Regular            Coca-Cola
## 3545               Grande        Colas Regular            Coca-Cola
## 3546               Grande   Isotónicos Regular             Powerade
## 3547               Grande   Isotónicos Regular             Powerade
## 3548               Grande     Jugos y Néctares            Del Valle
## 3549               Grande     Jugos y Néctares            Del Valle
## 3550               Grande     Jugos y Néctares Del Valle NutriForte
## 3551               Grande     Jugos y Néctares    Del Valle Reserva
## 3552               Grande     Jugos y Néctares    Del Valle Reserva
## 3553               Grande Leche UHT Especializ Santa Clara Deslacto
## 3554               Grande Leche UHT Especializ Santa Clara Deslacto
## 3555               Grande    Leche UHT Regular   Santa Clara Entera
## 3556               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3557               Grande        Sabores Light     Del Valle y Nada
## 3558               Grande        Sabores Light     Del Valle y Nada
## 3559               Grande        Sabores Light          Sprite Zero
## 3560               Grande      Sabores Regular     Del Valle y Nada
## 3561               Grande      Sabores Regular                Fanta
## 3562               Grande      Sabores Regular                Fanta
## 3563               Grande      Sabores Regular                Fanta
## 3564               Grande      Sabores Regular                Fanta
## 3565               Grande      Sabores Regular                Fanta
## 3566               Grande      Sabores Regular                Fanta
## 3567               Grande      Sabores Regular               Fresca
## 3568               Grande      Sabores Regular               Fresca
## 3569               Grande      Sabores Regular                 Joya
## 3570               Grande      Sabores Regular         Manzana Lift
## 3571               Grande      Sabores Regular         Manzana Lift
## 3572               Grande      Sabores Regular         Manzana Lift
## 3573               Grande      Sabores Regular        Sidral Mundet
## 3574               Grande      Sabores Regular        Sidral Mundet
## 3575               Grande      Sabores Regular        Sidral Mundet
## 3576               Grande      Sabores Regular        Sidral Mundet
## 3577               Grande      Sabores Regular               Sprite
## 3578               Grande      Sabores Regular               Sprite
## 3579               Grande      Sabores Regular               Sprite
## 3580               Grande      Sabores Regular               Sprite
## 3581               Grande      Sabores Regular               Sprite
## 3582               Grande           Té Regular             Fuze Tea
## 3583               Grande           Té Regular             Fuze Tea
## 3584               Grande           Té Regular             Fuze Tea
## 3585               Grande         Agua Mineral      Topo Chico A.M.
## 3586               Grande         Agua Mineral      Topo Chico A.M.
## 3587               Grande      Agua Purificada Ciel Agua Purificada
## 3588               Grande      Agua Purificada Ciel Agua Purificada
## 3589               Grande      Agua Purificada Ciel Agua Purificada
## 3590               Grande      Agua Purificada Ciel Agua Purificada
## 3591               Grande      Agua Saborizada          Ciel Exprim
## 3592               Grande      Agua Saborizada          Ciel Exprim
## 3593               Grande     Bebidas de Fruta       Delaware Punch
## 3594               Grande     Bebidas de Fruta               Frutsi
## 3595               Grande     Bebidas de Fruta           Valle Frut
## 3596               Grande     Bebidas de Fruta           Valle Frut
## 3597               Grande     Bebidas de Fruta           Valle Frut
## 3598               Grande     Bebidas de Fruta           Valle Frut
## 3599               Grande      Bebidas de Soya          AdeS Frutal
## 3600               Grande      Bebidas de Soya          AdeS Frutal
## 3601               Grande      Bebidas de Soya          AdeS Lácteo
## 3602               Grande  Bebidas Energeticas              Glacéau
## 3603               Grande  Bebidas Energeticas       Monster Energy
## 3604               Grande Cafe Listo Para Bebe         Barista Bros
## 3605               Grande          Colas Light      Coca-Cola Light
## 3606               Grande          Colas Light      Coca-Cola Light
## 3607               Grande          Colas Light      Coca-Cola Light
## 3608               Grande          Colas Light      Coca-Cola Light
## 3609               Grande          Colas Light      Coca-Cola Light
## 3610               Grande          Colas Light      Coca-Cola Light
## 3611               Grande          Colas Light      Coca-Cola Light
## 3612               Grande          Colas Light Coca-Cola Sin Azúcar
## 3613               Grande          Colas Light Coca-Cola Sin Azúcar
## 3614               Grande          Colas Light Coca-Cola Sin Azúcar
## 3615               Grande          Colas Light Coca-Cola Sin Azúcar
## 3616               Grande          Colas Light Coca-Cola Sin Azúcar
## 3617               Grande          Colas Light Coca-Cola Sin Azúcar
## 3618               Grande          Colas Light Coca-Cola Sin Azúcar
## 3619               Grande        Colas Regular            Coca-Cola
## 3620               Grande        Colas Regular            Coca-Cola
## 3621               Grande        Colas Regular            Coca-Cola
## 3622               Grande        Colas Regular            Coca-Cola
## 3623               Grande        Colas Regular            Coca-Cola
## 3624               Grande        Colas Regular            Coca-Cola
## 3625               Grande        Colas Regular            Coca-Cola
## 3626               Grande        Colas Regular            Coca-Cola
## 3627               Grande        Colas Regular            Coca-Cola
## 3628               Grande        Colas Regular            Coca-Cola
## 3629               Grande        Colas Regular            Coca-Cola
## 3630               Grande        Colas Regular            Coca-Cola
## 3631               Grande        Colas Regular            Coca-Cola
## 3632               Grande        Colas Regular            Coca-Cola
## 3633               Grande        Colas Regular            Coca-Cola
## 3634               Grande        Colas Regular            Coca-Cola
## 3635               Grande        Colas Regular            Coca-Cola
## 3636               Grande   Isotónicos Regular             Powerade
## 3637               Grande   Isotónicos Regular             Powerade
## 3638               Grande     Jugos y Néctares            Del Valle
## 3639               Grande     Jugos y Néctares            Del Valle
## 3640               Grande     Jugos y Néctares            Del Valle
## 3641               Grande     Jugos y Néctares Del Valle NutriForte
## 3642               Grande     Jugos y Néctares    Del Valle Reserva
## 3643               Grande     Jugos y Néctares    Del Valle Reserva
## 3644               Grande Leche UHT Especializ Santa Clara Deslacto
## 3645               Grande Leche UHT Especializ Santa Clara Deslacto
## 3646               Grande    Leche UHT Regular   Santa Clara Entera
## 3647               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3648               Grande        Sabores Light     Del Valle y Nada
## 3649               Grande        Sabores Light     Del Valle y Nada
## 3650               Grande        Sabores Light          Sprite Zero
## 3651               Grande      Sabores Regular     Del Valle y Nada
## 3652               Grande      Sabores Regular     Del Valle y Nada
## 3653               Grande      Sabores Regular                Fanta
## 3654               Grande      Sabores Regular                Fanta
## 3655               Grande      Sabores Regular                Fanta
## 3656               Grande      Sabores Regular                Fanta
## 3657               Grande      Sabores Regular                Fanta
## 3658               Grande      Sabores Regular                Fanta
## 3659               Grande      Sabores Regular               Fresca
## 3660               Grande      Sabores Regular               Fresca
## 3661               Grande      Sabores Regular               Fresca
## 3662               Grande      Sabores Regular                 Joya
## 3663               Grande      Sabores Regular         Manzana Lift
## 3664               Grande      Sabores Regular         Manzana Lift
## 3665               Grande      Sabores Regular         Manzana Lift
## 3666               Grande      Sabores Regular         Manzana Lift
## 3667               Grande      Sabores Regular               Senzao
## 3668               Grande      Sabores Regular        Sidral Mundet
## 3669               Grande      Sabores Regular        Sidral Mundet
## 3670               Grande      Sabores Regular        Sidral Mundet
## 3671               Grande      Sabores Regular               Sprite
## 3672               Grande      Sabores Regular               Sprite
## 3673               Grande      Sabores Regular               Sprite
## 3674               Grande      Sabores Regular               Sprite
## 3675               Grande      Sabores Regular               Sprite
## 3676               Grande      Sabores Regular               Sprite
## 3677               Grande      Sabores Regular               Sprite
## 3678               Grande           Té Regular             Fuze Tea
## 3679               Grande           Té Regular             Fuze Tea
## 3680               Grande         Agua Mineral    Ciel Mineralizada
## 3681               Grande         Agua Mineral      Topo Chico A.M.
## 3682               Grande         Agua Mineral      Topo Chico A.M.
## 3683               Grande      Agua Purificada Ciel Agua Purificada
## 3684               Grande      Agua Purificada Ciel Agua Purificada
## 3685               Grande      Agua Purificada Ciel Agua Purificada
## 3686               Grande      Agua Saborizada          Ciel Exprim
## 3687               Grande      Agua Saborizada          Ciel Exprim
## 3688               Grande     Bebidas de Fruta       Delaware Punch
## 3689               Grande     Bebidas de Fruta               Frutsi
## 3690               Grande     Bebidas de Fruta           Valle Frut
## 3691               Grande     Bebidas de Fruta           Valle Frut
## 3692               Grande     Bebidas de Fruta           Valle Frut
## 3693               Grande  Bebidas Energeticas       Monster Energy
## 3694               Grande Cafe Listo Para Bebe         Barista Bros
## 3695               Grande          Colas Light      Coca-Cola Light
## 3696               Grande          Colas Light      Coca-Cola Light
## 3697               Grande          Colas Light      Coca-Cola Light
## 3698               Grande          Colas Light      Coca-Cola Light
## 3699               Grande          Colas Light      Coca-Cola Light
## 3700               Grande          Colas Light Coca-Cola Sin Azúcar
## 3701               Grande          Colas Light Coca-Cola Sin Azúcar
## 3702               Grande          Colas Light Coca-Cola Sin Azúcar
## 3703               Grande          Colas Light Coca-Cola Sin Azúcar
## 3704               Grande          Colas Light Coca-Cola Sin Azúcar
## 3705               Grande        Colas Regular            Coca-Cola
## 3706               Grande        Colas Regular            Coca-Cola
## 3707               Grande        Colas Regular            Coca-Cola
## 3708               Grande        Colas Regular            Coca-Cola
## 3709               Grande        Colas Regular            Coca-Cola
## 3710               Grande        Colas Regular            Coca-Cola
## 3711               Grande        Colas Regular            Coca-Cola
## 3712               Grande        Colas Regular            Coca-Cola
## 3713               Grande        Colas Regular            Coca-Cola
## 3714               Grande        Colas Regular            Coca-Cola
## 3715               Grande        Colas Regular            Coca-Cola
## 3716               Grande        Colas Regular            Coca-Cola
## 3717               Grande        Colas Regular            Coca-Cola
## 3718               Grande        Colas Regular            Coca-Cola
## 3719               Grande        Colas Regular            Coca-Cola
## 3720               Grande        Colas Regular            Coca-Cola
## 3721               Grande   Isotónicos Regular             Powerade
## 3722               Grande   Isotónicos Regular             Powerade
## 3723               Grande     Jugos y Néctares            Del Valle
## 3724               Grande     Jugos y Néctares            Del Valle
## 3725               Grande     Jugos y Néctares            Del Valle
## 3726               Grande     Jugos y Néctares            Del Valle
## 3727               Grande     Jugos y Néctares            Del Valle
## 3728               Grande     Jugos y Néctares    Del Valle Reserva
## 3729               Grande Leche UHT Especializ Santa Clara Deslacto
## 3730               Grande Leche UHT Especializ Santa Clara Deslacto
## 3731               Grande    Leche UHT Regular   Santa Clara Entera
## 3732               Grande    Leche UHT Regular    Santa Clara Light
## 3733               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3734               Grande        Sabores Light     Del Valle y Nada
## 3735               Grande        Sabores Light          Sprite Zero
## 3736               Grande      Sabores Regular     Del Valle y Nada
## 3737               Grande      Sabores Regular                Fanta
## 3738               Grande      Sabores Regular                Fanta
## 3739               Grande      Sabores Regular                Fanta
## 3740               Grande      Sabores Regular                Fanta
## 3741               Grande      Sabores Regular                Fanta
## 3742               Grande      Sabores Regular                Fanta
## 3743               Grande      Sabores Regular                Fanta
## 3744               Grande      Sabores Regular               Fresca
## 3745               Grande      Sabores Regular               Fresca
## 3746               Grande      Sabores Regular                 Joya
## 3747               Grande      Sabores Regular         Manzana Lift
## 3748               Grande      Sabores Regular         Manzana Lift
## 3749               Grande      Sabores Regular         Manzana Lift
## 3750               Grande      Sabores Regular         Manzana Lift
## 3751               Grande      Sabores Regular               Senzao
## 3752               Grande      Sabores Regular        Sidral Mundet
## 3753               Grande      Sabores Regular        Sidral Mundet
## 3754               Grande      Sabores Regular        Sidral Mundet
## 3755               Grande      Sabores Regular        Sidral Mundet
## 3756               Grande      Sabores Regular        Sidral Mundet
## 3757               Grande      Sabores Regular               Sprite
## 3758               Grande      Sabores Regular               Sprite
## 3759               Grande      Sabores Regular               Sprite
## 3760               Grande      Sabores Regular               Sprite
## 3761               Grande      Sabores Regular               Sprite
## 3762               Grande      Sabores Regular               Sprite
## 3763               Grande      Sabores Regular               Sprite
## 3764               Grande      Sabores Regular               Sprite
## 3765               Grande           Té Regular             Fuze Tea
## 3766               Grande         Agua Mineral      Topo Chico A.M.
## 3767               Grande         Agua Mineral      Topo Chico A.M.
## 3768               Grande      Agua Purificada Ciel Agua Purificada
## 3769               Grande      Agua Purificada Ciel Agua Purificada
## 3770               Grande      Agua Purificada Ciel Agua Purificada
## 3771               Grande      Agua Saborizada          Ciel Exprim
## 3772               Grande     Bebidas de Fruta       Delaware Punch
## 3773               Grande      Bebidas de Soya          AdeS Frutal
## 3774               Grande  Bebidas Energeticas                 Burn
## 3775               Grande  Bebidas Energeticas              Glacéau
## 3776               Grande  Bebidas Energeticas       Monster Energy
## 3777               Grande          Colas Light      Coca-Cola Light
## 3778               Grande          Colas Light      Coca-Cola Light
## 3779               Grande          Colas Light      Coca-Cola Light
## 3780               Grande          Colas Light      Coca-Cola Light
## 3781               Grande          Colas Light      Coca-Cola Light
## 3782               Grande          Colas Light      Coca-Cola Light
## 3783               Grande          Colas Light Coca-Cola Sin Azúcar
## 3784               Grande          Colas Light Coca-Cola Sin Azúcar
## 3785               Grande          Colas Light Coca-Cola Sin Azúcar
## 3786               Grande        Colas Regular            Coca-Cola
## 3787               Grande        Colas Regular            Coca-Cola
## 3788               Grande        Colas Regular            Coca-Cola
## 3789               Grande        Colas Regular            Coca-Cola
## 3790               Grande        Colas Regular            Coca-Cola
## 3791               Grande        Colas Regular            Coca-Cola
## 3792               Grande        Colas Regular            Coca-Cola
## 3793               Grande        Colas Regular            Coca-Cola
## 3794               Grande        Colas Regular            Coca-Cola
## 3795               Grande        Colas Regular            Coca-Cola
## 3796               Grande        Colas Regular            Coca-Cola
## 3797               Grande        Colas Regular            Coca-Cola
## 3798               Grande   Isotónicos Regular             Powerade
## 3799               Grande     Jugos y Néctares            Del Valle
## 3800               Grande     Jugos y Néctares            Del Valle
## 3801               Grande     Jugos y Néctares            Del Valle
## 3802               Grande     Jugos y Néctares Del Valle NutriForte
## 3803               Grande        Sabores Light     Del Valle y Nada
## 3804               Grande        Sabores Light          Sprite Zero
## 3805               Grande      Sabores Regular     Del Valle y Nada
## 3806               Grande      Sabores Regular     Del Valle y Nada
## 3807               Grande      Sabores Regular                Fanta
## 3808               Grande      Sabores Regular                Fanta
## 3809               Grande      Sabores Regular                Fanta
## 3810               Grande      Sabores Regular                Fanta
## 3811               Grande      Sabores Regular               Fresca
## 3812               Grande      Sabores Regular               Fresca
## 3813               Grande      Sabores Regular               Fresca
## 3814               Grande      Sabores Regular                 Joya
## 3815               Grande      Sabores Regular         Manzana Lift
## 3816               Grande      Sabores Regular         Manzana Lift
## 3817               Grande      Sabores Regular         Manzana Lift
## 3818               Grande      Sabores Regular         Manzana Lift
## 3819               Grande      Sabores Regular               Senzao
## 3820               Grande      Sabores Regular        Sidral Mundet
## 3821               Grande      Sabores Regular        Sidral Mundet
## 3822               Grande      Sabores Regular        Sidral Mundet
## 3823               Grande      Sabores Regular               Sprite
## 3824               Grande      Sabores Regular               Sprite
## 3825               Grande      Sabores Regular               Sprite
## 3826               Grande      Sabores Regular               Sprite
## 3827               Grande      Sabores Regular               Sprite
## 3828               Grande           Té Regular             Fuze Tea
## 3829               Grande         Agua Mineral      Topo Chico A.M.
## 3830               Grande      Agua Purificada Ciel Agua Purificada
## 3831               Grande      Agua Purificada Ciel Agua Purificada
## 3832               Grande      Agua Purificada Ciel Agua Purificada
## 3833               Grande      Agua Saborizada          Ciel Exprim
## 3834               Grande      Agua Saborizada          Ciel Exprim
## 3835               Grande     Bebidas de Fruta       Delaware Punch
## 3836               Grande     Bebidas de Fruta           Valle Frut
## 3837               Grande     Bebidas de Fruta           Valle Frut
## 3838               Grande      Bebidas de Soya          AdeS Frutal
## 3839               Grande      Bebidas de Soya          AdeS Lácteo
## 3840               Grande          Colas Light      Coca-Cola Light
## 3841               Grande          Colas Light      Coca-Cola Light
## 3842               Grande          Colas Light      Coca-Cola Light
## 3843               Grande          Colas Light      Coca-Cola Light
## 3844               Grande          Colas Light      Coca-Cola Light
## 3845               Grande          Colas Light Coca-Cola Sin Azúcar
## 3846               Grande          Colas Light Coca-Cola Sin Azúcar
## 3847               Grande          Colas Light Coca-Cola Sin Azúcar
## 3848               Grande          Colas Light Coca-Cola Sin Azúcar
## 3849               Grande        Colas Regular            Coca-Cola
## 3850               Grande        Colas Regular            Coca-Cola
## 3851               Grande        Colas Regular            Coca-Cola
## 3852               Grande        Colas Regular            Coca-Cola
## 3853               Grande        Colas Regular            Coca-Cola
## 3854               Grande        Colas Regular            Coca-Cola
## 3855               Grande        Colas Regular            Coca-Cola
## 3856               Grande        Colas Regular            Coca-Cola
## 3857               Grande        Colas Regular            Coca-Cola
## 3858               Grande        Colas Regular            Coca-Cola
## 3859               Grande        Colas Regular            Coca-Cola
## 3860               Grande        Colas Regular            Coca-Cola
## 3861               Grande   Isotónicos Regular             Powerade
## 3862               Grande   Isotónicos Regular             Powerade
## 3863               Grande     Jugos y Néctares            Del Valle
## 3864               Grande     Jugos y Néctares            Del Valle
## 3865               Grande     Jugos y Néctares            Del Valle
## 3866               Grande     Jugos y Néctares            Del Valle
## 3867               Grande Leche UHT Especializ Santa Clara Deslacto
## 3868               Grande Leche UHT Especializ Santa Clara Deslacto
## 3869               Grande    Leche UHT Regular   Santa Clara Entera
## 3870               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3871               Grande        Sabores Light     Del Valle y Nada
## 3872               Grande        Sabores Light     Del Valle y Nada
## 3873               Grande        Sabores Light          Sprite Zero
## 3874               Grande      Sabores Regular     Del Valle y Nada
## 3875               Grande      Sabores Regular                Fanta
## 3876               Grande      Sabores Regular                Fanta
## 3877               Grande      Sabores Regular                Fanta
## 3878               Grande      Sabores Regular                Fanta
## 3879               Grande      Sabores Regular                Fanta
## 3880               Grande      Sabores Regular                Fanta
## 3881               Grande      Sabores Regular               Fresca
## 3882               Grande      Sabores Regular               Fresca
## 3883               Grande      Sabores Regular               Fresca
## 3884               Grande      Sabores Regular                 Joya
## 3885               Grande      Sabores Regular         Manzana Lift
## 3886               Grande      Sabores Regular         Manzana Lift
## 3887               Grande      Sabores Regular         Manzana Lift
## 3888               Grande      Sabores Regular         Manzana Lift
## 3889               Grande      Sabores Regular        Sidral Mundet
## 3890               Grande      Sabores Regular        Sidral Mundet
## 3891               Grande      Sabores Regular               Sprite
## 3892               Grande      Sabores Regular               Sprite
## 3893               Grande      Sabores Regular               Sprite
## 3894               Grande      Sabores Regular               Sprite
## 3895               Grande      Sabores Regular               Sprite
## 3896               Grande      Sabores Regular               Sprite
## 3897               Grande      Sabores Regular               Sprite
## 3898               Grande           Té Regular             Fuze Tea
## 3899               Grande         Agua Mineral      Topo Chico A.M.
## 3900               Grande         Agua Mineral      Topo Chico A.M.
## 3901               Grande      Agua Purificada Ciel Agua Purificada
## 3902               Grande      Agua Purificada Ciel Agua Purificada
## 3903               Grande      Agua Purificada Ciel Agua Purificada
## 3904               Grande     Bebidas de Fruta       Delaware Punch
## 3905               Grande     Bebidas de Fruta       Delaware Punch
## 3906               Grande     Bebidas de Fruta               Frutsi
## 3907               Grande          Colas Light      Coca-Cola Light
## 3908               Grande          Colas Light      Coca-Cola Light
## 3909               Grande          Colas Light      Coca-Cola Light
## 3910               Grande          Colas Light      Coca-Cola Light
## 3911               Grande          Colas Light Coca-Cola Sin Azúcar
## 3912               Grande          Colas Light Coca-Cola Sin Azúcar
## 3913               Grande          Colas Light Coca-Cola Sin Azúcar
## 3914               Grande        Colas Regular            Coca-Cola
## 3915               Grande        Colas Regular            Coca-Cola
## 3916               Grande        Colas Regular            Coca-Cola
## 3917               Grande        Colas Regular            Coca-Cola
## 3918               Grande        Colas Regular            Coca-Cola
## 3919               Grande        Colas Regular            Coca-Cola
## 3920               Grande        Colas Regular            Coca-Cola
## 3921               Grande        Colas Regular            Coca-Cola
## 3922               Grande        Colas Regular            Coca-Cola
## 3923               Grande        Colas Regular            Coca-Cola
## 3924               Grande        Colas Regular            Coca-Cola
## 3925               Grande     Jugos y Néctares            Del Valle
## 3926               Grande     Jugos y Néctares            Del Valle
## 3927               Grande     Jugos y Néctares    Del Valle Reserva
## 3928               Grande     Jugos y Néctares    Del Valle Reserva
## 3929               Grande Leche UHT Especializ Santa Clara Deslacto
## 3930               Grande    Leche UHT Regular   Santa Clara Entera
## 3931               Grande    Leche UHT Regular    Santa Clara Light
## 3932               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3933               Grande      Sabores Regular     Del Valle y Nada
## 3934               Grande      Sabores Regular                Fanta
## 3935               Grande      Sabores Regular               Fresca
## 3936               Grande      Sabores Regular        Sidral Mundet
## 3937               Grande      Sabores Regular               Sprite
## 3938               Grande      Sabores Regular               Sprite
## 3939               Grande           Té Regular             Fuze Tea
## 3940               Grande         Agua Mineral    Ciel Mineralizada
## 3941               Grande         Agua Mineral      Topo Chico A.M.
## 3942               Grande      Agua Purificada Ciel Agua Purificada
## 3943               Grande      Agua Purificada Ciel Agua Purificada
## 3944               Grande      Agua Purificada Ciel Agua Purificada
## 3945               Grande      Agua Purificada Ciel Agua Purificada
## 3946               Grande      Agua Saborizada          Ciel Exprim
## 3947               Grande      Agua Saborizada          Ciel Exprim
## 3948               Grande     Bebidas de Fruta       Delaware Punch
## 3949               Grande     Bebidas de Fruta               Frutsi
## 3950               Grande     Bebidas de Fruta                Pulpy
## 3951               Grande     Bebidas de Fruta           Valle Frut
## 3952               Grande     Bebidas de Fruta           Valle Frut
## 3953               Grande     Bebidas de Fruta           Valle Frut
## 3954               Grande      Bebidas de Soya          AdeS Lácteo
## 3955               Grande  Bebidas Energeticas       Monster Energy
## 3956               Grande          Colas Light      Coca-Cola Light
## 3957               Grande          Colas Light      Coca-Cola Light
## 3958               Grande          Colas Light      Coca-Cola Light
## 3959               Grande          Colas Light Coca-Cola Sin Azúcar
## 3960               Grande          Colas Light Coca-Cola Sin Azúcar
## 3961               Grande          Colas Light Coca-Cola Sin Azúcar
## 3962               Grande        Colas Regular            Coca-Cola
## 3963               Grande        Colas Regular            Coca-Cola
## 3964               Grande        Colas Regular            Coca-Cola
## 3965               Grande        Colas Regular            Coca-Cola
## 3966               Grande        Colas Regular            Coca-Cola
## 3967               Grande        Colas Regular            Coca-Cola
## 3968               Grande        Colas Regular            Coca-Cola
## 3969               Grande        Colas Regular            Coca-Cola
## 3970               Grande        Colas Regular            Coca-Cola
## 3971               Grande        Colas Regular            Coca-Cola
## 3972               Grande        Colas Regular            Coca-Cola
## 3973               Grande        Colas Regular            Coca-Cola
## 3974               Grande   Isotónicos Regular             Powerade
## 3975               Grande   Isotónicos Regular             Powerade
## 3976               Grande     Jugos y Néctares            Del Valle
## 3977               Grande     Jugos y Néctares            Del Valle
## 3978               Grande     Jugos y Néctares Del Valle NutriForte
## 3979               Grande     Jugos y Néctares    Del Valle Reserva
## 3980               Grande Leche UHT Especializ Santa Clara Deslacto
## 3981               Grande    Leche UHT Regular   Santa Clara Entera
## 3982               Grande Leche UHT Saborizada Santa Clara Saboriza
## 3983               Grande        Sabores Light     Del Valle y Nada
## 3984               Grande        Sabores Light          Sprite Zero
## 3985               Grande      Sabores Regular                Fanta
## 3986               Grande      Sabores Regular                Fanta
## 3987               Grande      Sabores Regular                Fanta
## 3988               Grande      Sabores Regular                Fanta
## 3989               Grande      Sabores Regular                Fanta
## 3990               Grande      Sabores Regular                Fanta
## 3991               Grande      Sabores Regular               Fresca
## 3992               Grande      Sabores Regular               Fresca
## 3993               Grande      Sabores Regular               Fresca
## 3994               Grande      Sabores Regular         Manzana Lift
## 3995               Grande      Sabores Regular         Manzana Lift
## 3996               Grande      Sabores Regular         Manzana Lift
## 3997               Grande      Sabores Regular         Manzana Lift
## 3998               Grande      Sabores Regular        Sidral Mundet
## 3999               Grande      Sabores Regular        Sidral Mundet
##          Presentacion     Tamaño Retornable_NR Enero Febrero Marzo Abril Mayo
## 1           600 ml NR Individual No Retornable     1      NA    NA     1    1
## 2         1.5 Lts. NR   Familiar No Retornable    NA       2     5     2    2
## 3           600 ml NR Individual No Retornable     1       3     3     3    4
## 4        1 Ltro. N.R. Individual No Retornable     8       2    23    13   21
## 5         1.5 Lts. NR Individual No Retornable    13      13    25    22   29
## 6           5 Lts. NR   Familiar No Retornable     4       7    14    14   11
## 7           600 ml NR Individual No Retornable    NA      NA     3     5    3
## 8        1 Ltro. N.R. Individual No Retornable     1       1    NA     1   NA
## 9           600 ml NR Individual No Retornable     1       1    NA     1   NA
## 10     250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 11          600 ml NR Individual No Retornable     1       1    NA     1    1
## 12     250 ml. NR PET Individual No Retornable     1       1     2    NA    2
## 13       1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 14      12 Oz. NR Pet Individual No Retornable     1       1     2     2    1
## 15          2 Lts. NR   Familiar No Retornable     8       8    11    11    8
## 16          600 ml NR Individual No Retornable     1       1     1     1    1
## 17       200 ml Tetra Individual No Retornable     1       1     1     3    1
## 18    946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 19    946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 20        Lata 16 Oz. Individual No Retornable     2       1     3     2    3
## 21       1 Ltro. N.R.   Familiar No Retornable    17      13    15    15   15
## 22          2 Lts. NR   Familiar No Retornable    37      34    42    28   48
## 23      235 ml NR Vid Individual No Retornable     2       2     3     1    2
## 24   500 ml NR Vidrio Individual No Retornable     6      11     8    11    6
## 25               Lata Individual No Retornable    NA       2    NA     2   NA
## 26        1.5 Lts. NR   Familiar No Retornable     4       2     2     2    6
## 27          2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 28        2.5 Lts. NR   Familiar No Retornable     4       4    NA    NA    4
## 29   500 ml NR Vidrio Individual No Retornable     4       4     6     6   13
## 30        1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 31       1.250 Lts NR   Familiar No Retornable    26      26    40    37   34
## 32        1.5 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 33       1.5 Lts. Ret   Familiar    Retornable     3       3    NA     3   NA
## 34       1.750 Lts NR   Familiar No Retornable    NA      17    15    12   15
## 35      12 Oz. NR Pet Individual No Retornable     6       5     6     3    8
## 36         12 Oz. Ret Individual    Retornable     3       9     5     5    6
## 37          2 Lts. NR   Familiar No Retornable    NA      31    14    23   48
## 38        2.5 Lts. NR   Familiar No Retornable     4      63    42    39   92
## 39   2.5 Lts. Ret Pet   Familiar    Retornable    53      35    53    46   32
## 40      235 ml NR Vid Individual No Retornable    11      11    14     8   11
## 41   500 ml NR Vidrio Individual No Retornable    17      17    25    19   23
## 42         500 ml Ret Individual    Retornable    32      30    49    44   46
## 43          600 ml NR Individual No Retornable     8       5    13     8   13
## 44               Lata Individual No Retornable     2       2     2     2    3
## 45        Lata 16 Oz. Individual No Retornable     2      NA    NA     2    2
## 46        Lata 235 ml Individual No Retornable     1       1     1     1    1
## 47       1 Ltro. N.R. Individual No Retornable     1       1     2     3    4
## 48          600 ml NR Individual No Retornable     1       1     3     2    3
## 49       250 ml Tetra Individual No Retornable     5       0     5     4    4
## 50      413 ml NR VId Individual No Retornable     3       4     5     2    5
## 51    946 ml NR Tetra Individual No Retornable     6       2     6    10   12
## 52        Lata 335 ml Individual No Retornable     0       1     1     1    1
## 53       1 Ltro. N.R.   Familiar No Retornable     4       4     4     4    2
## 54      237 ml NR Pet Individual No Retornable    NA       0     0     1   NA
## 55      1 Ltro. Tetra   Familiar No Retornable     1      NA     2     1   NA
## 56      1 Ltro. Tetra   Familiar No Retornable     1       1     1     2   NA
## 57      1 Ltro. Tetra   Familiar No Retornable     4       6     2     2    4
## 58       200 ml Tetra Individual No Retornable     4       2     5     3    3
## 59        1.5 Lts. NR   Familiar No Retornable     2      NA     2     4    8
## 60          600 ml NR Individual No Retornable     4       4     5     1    4
## 61          600 ml NR Individual No Retornable    NA       4     1     3    5
## 62        1.5 Lts. NR   Familiar No Retornable    13       4     8     2   NA
## 63          600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 64         12 Oz. Ret Individual    Retornable     2      NA    NA     2   NA
## 65          2 Lts. NR   Familiar No Retornable    11       6    11     8    8
## 66     250 ml. NR PET Individual No Retornable     1       1     1    NA    1
## 67         500 ml Ret Individual    Retornable     1       4    NA     2   NA
## 68          600 ml NR Individual No Retornable     1       5     3     3    3
## 69        Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 70          2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    3
## 71         500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 72          600 ml NR Individual No Retornable     1       1    NA    NA    2
## 73        Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 74     250 ml. NR PET Individual No Retornable     1       1     1    NA    1
## 75         500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 76          600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 77          600 ml NR Individual No Retornable    NA       1     1     3    1
## 78          2 Lts. NR   Familiar No Retornable    20      11    14    14   14
## 79          600 ml NR Individual No Retornable     3      NA     1     3   NA
## 80        Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 81          2 Lts. NR   Familiar No Retornable    14       8    11    11   20
## 82     250 ml. NR PET Individual No Retornable     1       1     1    NA    1
## 83         500 ml Ret Individual    Retornable     1      NA    NA     2   NA
## 84          600 ml NR Individual No Retornable     3       3     3     1    8
## 85        Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 86          600 ml NR Individual No Retornable     7       4     6     4    5
## 87          600 ml NR Individual No Retornable    NA       3    NA     1    1
## 88       1 Ltro. N.R. Individual No Retornable     8       2     6     6    4
## 89        1.5 Lts. NR Individual No Retornable     6       3     6    22   13
## 90          5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 91          600 ml NR Individual No Retornable     3       3     3    NA    3
## 92       1 Ltro. N.R. Individual No Retornable     1       1    NA     1    1
## 93          600 ml NR Individual No Retornable     1       1     1     1    1
## 94          600 ml NR Individual No Retornable     1      NA    NA     1    1
## 95     250 ml. NR PET Individual No Retornable     1       1    NA    NA    1
## 96          400 ml NR Individual No Retornable    NA      NA     1     1   NA
## 97       1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 98          2 Lts. NR   Familiar No Retornable     3       3     8     6    3
## 99    946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 100       Lata 450 ml Individual No Retornable    NA      NA    NA    NA    1
## 101       Lata 16 Oz. Individual No Retornable     0       0     0    NA    0
## 102      1 Ltro. N.R.   Familiar No Retornable     8       2     6     2    4
## 103         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 104       2.5 Lts. NR   Familiar No Retornable     4       4     7     4    4
## 105  500 ml NR Vidrio Individual No Retornable    11       4     6     8   15
## 106         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 107         2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    1
## 108  500 ml NR Vidrio Individual No Retornable     4       3     2     6    2
## 109        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 110       Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 111       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 112      1.250 Lts NR   Familiar No Retornable     8      11    11     8   13
## 113       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 114      1.5 Lts. Ret   Familiar    Retornable    41      32    51    44   44
## 115      1.750 Lts NR   Familiar No Retornable     2       7     2     2    2
## 116     12 Oz. NR Pet Individual No Retornable     6      14     5     6    3
## 117       2.5 Lts. NR   Familiar No Retornable     7      14    18    14   25
## 118  2.5 Lts. Ret Pet   Familiar    Retornable    88      35    77    74   81
## 119     235 ml NR Vid Individual No Retornable     2       2     2     2    3
## 120    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 121     500 ml NR PET Individual No Retornable     8       6     6     2    4
## 122  500 ml NR Vidrio Individual No Retornable     2       4    13    15   11
## 123        500 ml Ret Individual    Retornable    66      72    74    87   80
## 124         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 125              Lata Individual No Retornable     2       0     3     3   NA
## 126       Lata 16 Oz. Individual No Retornable    NA       2     2     2    2
## 127       Lata 235 ml Individual No Retornable    NA       1     1     2    1
## 128      1 Ltro. N.R. Individual No Retornable     1       3     1     1    1
## 129         600 ml NR Individual No Retornable     1       1     1     1    1
## 130     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA    1
## 131      250 ml Tetra Individual No Retornable     2       3     2     3    2
## 132     413 ml NR VId Individual No Retornable     8       6     6     5    3
## 133      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 134     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 135      1 Ltro. N.R.   Familiar No Retornable     2       1    NA    NA   NA
## 136     1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 137     1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 138     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1    1
## 139     1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 140      200 ml Tetra Individual No Retornable     1       2     1     1    1
## 141         600 ml NR Individual No Retornable    NA       1     1     1    1
## 142         600 ml NR Individual No Retornable     2       2     1     2    2
## 143         600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 144       1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 145         2 Lts. NR   Familiar No Retornable     4       6     6     3    3
## 146    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 147         400 ml NR Individual No Retornable     1       0    NA     0    0
## 148        500 ml Ret Individual    Retornable     7       5     6     4    5
## 149         600 ml NR Individual No Retornable     2       3     1     1    2
## 150         2 Lts. NR   Familiar No Retornable     1      NA    NA     3   NA
## 151         400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 152        500 ml Ret Individual    Retornable     1       1    NA     2    5
## 153         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 154         2 Lts. NR   Familiar No Retornable    NA       6     3     6    6
## 155         400 ml NR Individual No Retornable     0       0    NA     0    0
## 156        500 ml Ret Individual    Retornable     1       1    NA     2    1
## 157         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 158         600 ml NR Individual No Retornable     3       2     4     2    3
## 159         2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 160        500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 161      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA    2
## 162       1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2    4
## 163         2 Lts. NR   Familiar No Retornable     4      NA     3     6    3
## 164       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 165    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 166         400 ml NR Individual No Retornable     1      NA     1    NA    0
## 167        500 ml Ret Individual    Retornable     5       3     2     8    9
## 168         600 ml NR Individual No Retornable     1       2     3     1    4
## 169       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 170     413 ml NR VId Individual No Retornable    NA      NA     0    NA   NA
## 171         600 ml NR Individual No Retornable     1       1     1     1    1
## 172         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 173         600 ml NR Individual No Retornable    NA      NA     1     1    1
## 174      1 Ltro. N.R. Individual No Retornable    15      13    21    17   21
## 175       1.5 Lts. NR Individual No Retornable    13       6    29    22   29
## 176         600 ml NR Individual No Retornable     8       5     5    10   10
## 177      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 178         600 ml NR Individual No Retornable     1       1     1     1    1
## 179    250 ml. NR PET Individual No Retornable     1       1     1     1    2
## 180         600 ml NR Individual No Retornable     1       3     3     1    1
## 181    250 ml. NR PET Individual No Retornable     3       1     3     2    2
## 182         400 ml NR Individual No Retornable     0       1     1     1    1
## 183      1 Ltro. N.R.   Familiar No Retornable     2       1     1     1   NA
## 184      1 Ltro. N.R. Individual No Retornable     2      NA     4    NA    2
## 185     12 Oz. NR Pet Individual No Retornable     2       1     2     2    2
## 186         2 Lts. NR   Familiar No Retornable     8       6    14     8    8
## 187      200 ml Tetra Individual No Retornable     1       1     2     1    1
## 188   946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA    1
## 189       Lata 235 ml Individual No Retornable     0      NA     0     0    0
## 190       Lata 450 ml Individual No Retornable     1      NA     1    NA    1
## 191       Lata 16 Oz. Individual No Retornable    NA      NA     0     0    0
## 192      1 Ltro. N.R.   Familiar No Retornable    11       8    11    13   15
## 193         2 Lts. NR   Familiar No Retornable     3       6     8     6    6
## 194     235 ml NR Vid Individual No Retornable     3       2     3     1    2
## 195  500 ml NR Vidrio Individual No Retornable     8       8    15    11   13
## 196       1.5 Lts. NR   Familiar No Retornable    11       8    11    11    8
## 197         2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   11
## 198  500 ml NR Vidrio Individual No Retornable     8       8     6     8   11
## 199       Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 200       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 201      1.250 Lts NR   Familiar No Retornable    37      34    53    40   48
## 202       1.5 Lts. NR   Familiar No Retornable    25      10    NA    NA   NA
## 203      1.5 Lts. Ret   Familiar    Retornable    25      22    35    29   35
## 204      1.750 Lts NR   Familiar No Retornable    NA       5    20    17   22
## 205     12 Oz. NR Pet Individual No Retornable     9       9    14     3   12
## 206        12 Oz. Ret Individual    Retornable    12       5     5     5    6
## 207       2.5 Lts. NR   Familiar No Retornable    92      28    60    63   70
## 208  2.5 Lts. Ret Pet   Familiar    Retornable   120      49    99    88  120
## 209     235 ml NR Vid Individual No Retornable     5       7     6     6    7
## 210     500 ml NR PET Individual No Retornable    NA      NA    NA     6   NA
## 211  500 ml NR Vidrio Individual No Retornable    27      19    30    17   30
## 212        500 ml Ret Individual    Retornable    49      51    59    44   68
## 213              Lata Individual No Retornable     3       2     4     5    5
## 214       Lata 16 Oz. Individual No Retornable     2       2     2     4    4
## 215       Lata 235 ml Individual No Retornable     2       3     7     2    5
## 216      1 Ltro. N.R. Individual No Retornable     2       1     3     2    5
## 217         600 ml NR Individual No Retornable     2       1     1     3    5
## 218     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 219      250 ml Tetra Individual No Retornable     1       1     0     0    1
## 220     413 ml NR VId Individual No Retornable     8       7    13     9    9
## 221     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 222      1 Ltro. N.R.   Familiar No Retornable     2       3     4     4    4
## 223     237 ml NR Pet Individual No Retornable     1       1     1     1    1
## 224     1 Ltro. Tetra   Familiar No Retornable     4       2     3     5    5
## 225     1 Ltro. Tetra   Familiar No Retornable     2       3     4     2    2
## 226     1 Ltro. Tetra   Familiar No Retornable     3       3     2     2    2
## 227     1 Ltro. Tetra   Familiar No Retornable     2       1     2     1    2
## 228      200 ml Tetra Individual No Retornable     3       3     3     3    4
## 229       1.5 Lts. NR   Familiar No Retornable     2       8     4     2   11
## 230         600 ml NR Individual No Retornable     2       2     6     4    5
## 231         600 ml NR Individual No Retornable     4       4     4     6    8
## 232       1.5 Lts. NR   Familiar No Retornable     4       2     4     2   NA
## 233         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 234       1.5 Lts. NR   Familiar No Retornable     2       2     4     2    4
## 235         2 Lts. NR   Familiar No Retornable     6       3     6     6    6
## 236    250 ml. NR PET Individual No Retornable     1       1     2     1    2
## 237         400 ml NR Individual No Retornable     1       2     1     1    1
## 238        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 239         600 ml NR Individual No Retornable     2       1     1     1    1
## 240         2 Lts. NR   Familiar No Retornable    NA      NA     1     1   NA
## 241        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 242         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 243    250 ml. NR PET Individual No Retornable     1       1     2     1    2
## 244         400 ml NR Individual No Retornable     1       1     1     1    1
## 245        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 246         600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 247         2 Lts. NR   Familiar No Retornable     8       6     6     8    6
## 248         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 249        500 ml Ret Individual    Retornable     8       6     4     4    6
## 250         600 ml NR Individual No Retornable     1       1     1     1    1
## 251       1.5 Lts. NR   Familiar No Retornable     6       8     4     6    4
## 252         2 Lts. NR   Familiar No Retornable     8       6     8     8    8
## 253    250 ml. NR PET Individual No Retornable     2       1     2     2    2
## 254         400 ml NR Individual No Retornable     1       1     1     1    1
## 255        500 ml Ret Individual    Retornable     6       2     2     4    4
## 256         600 ml NR Individual No Retornable     4       2     3     2    3
## 257      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 258         600 ml NR Individual No Retornable     4       3     3     5    6
## 259         600 ml NR Individual No Retornable     1      NA     3     1    1
## 260      1 Ltro. N.R. Individual No Retornable     2       2     2     8   11
## 261       1.5 Lts. NR Individual No Retornable     6       3     3    10   19
## 262     355 Ml NR Pet Individual No Retornable    NA      NA     2    NA   NA
## 263         600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 264      1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 265         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 266    300 ML. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 267    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 268         600 ml NR Individual No Retornable     1       1     2     1   NA
## 269    250 ml. NR PET Individual No Retornable     2       1     1     1    2
## 270      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 271      1 Ltro. N.R. Individual No Retornable     2       2    NA     2   NA
## 272     12 Oz. NR Pet Individual No Retornable     1      NA    NA    NA    1
## 273         2 Lts. NR   Familiar No Retornable     8       6    NA     6    3
## 274      200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 275   946 ml NR Tetra   Familiar No Retornable    NA       0     1    NA   NA
## 276   946 ml NR Tetra   Familiar No Retornable    NA      NA     0    NA   NA
## 277       Lata 16 Oz. Individual No Retornable    NA      NA     1     2    0
## 278    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 279      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 280  500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    2
## 281         2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    1
## 282  500 ml NR Vidrio Individual No Retornable     7       1     4     4   NA
## 283       Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 284       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 285      1.250 Lts NR   Familiar No Retornable    NA      NA     3     5    8
## 286      1.5 Lts. Ret   Familiar    Retornable    38      48    51    63   51
## 287      1.750 Lts NR   Familiar No Retornable    17      20    12    17   12
## 288     12 Oz. NR Pet Individual No Retornable     2       3     5     5   NA
## 289       2.5 Lts. NR   Familiar No Retornable    18      18    14    21   21
## 290  2.5 Lts. Ret Pet   Familiar    Retornable    56      49    67    60   70
## 291     235 ml NR Vid Individual No Retornable     3       1     3     3    4
## 292    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 293     500 ml NR PET Individual No Retornable     4       6     4     6    4
## 294  500 ml NR Vidrio Individual No Retornable     8       6     6     6    8
## 295        500 ml Ret Individual    Retornable    25      27    40    36   44
## 296         600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 297              Lata Individual No Retornable     2      NA     3     3    3
## 298       Lata 16 Oz. Individual No Retornable    NA       2    NA     2    4
## 299       Lata 235 ml Individual No Retornable     2       1     2     2   NA
## 300      1 Ltro. N.R. Individual No Retornable    NA       1     3    NA    3
## 301     500 ml NR PET Individual No Retornable    NA      NA     1     1    2
## 302         600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 303     237 ml NR Pet Individual No Retornable    NA       1     3     2    2
## 304      250 ml Tetra Individual No Retornable     1       1     1     1    1
## 305    250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 306     413 ml NR VId Individual No Retornable     3       3     3    NA    3
## 307      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 308     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 309      1 Ltro. N.R.   Familiar No Retornable     4       1     2     2    3
## 310     237 ml NR Pet Individual No Retornable     1       1     1     1    1
## 311     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 312      200 ml Tetra Individual No Retornable     1       1     0     1    2
## 313         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 314         2 Lts. NR   Familiar No Retornable    NA       6     3     6    8
## 315         400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 316        500 ml Ret Individual    Retornable     1       1     1     1    3
## 317         2 Lts. NR   Familiar No Retornable    NA      NA    NA     8   NA
## 318         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 319        500 ml Ret Individual    Retornable     1       1     1     1    1
## 320         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 321         2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 322         400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 323        500 ml Ret Individual    Retornable     1       1     1     1    1
## 324         2 Lts. NR   Familiar No Retornable     3       3     6     6    6
## 325         400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 326        500 ml Ret Individual    Retornable     1       1     1     1    1
## 327     413 ml NR VId Individual No Retornable     0      NA     0    NA   NA
## 328         600 ml NR Individual No Retornable     1       2     1     1   NA
## 329         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 330       1.5 Lts. NR   Familiar No Retornable    NA       2     2     2    2
## 331         600 ml NR Individual No Retornable    NA       4     8     4    5
## 332      1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 333       1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 334         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 335      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 336         600 ml NR Individual No Retornable     1       1     1     1    1
## 337         600 ml NR Individual No Retornable     1      NA     1     1    3
## 338    250 ml. NR PET Individual No Retornable    NA       1    NA     1    1
## 339         400 ml NR Individual No Retornable    NA      NA     2     3   NA
## 340      1 Ltro. N.R.   Familiar No Retornable     1      NA     1    NA    1
## 341      1 Ltro. N.R. Individual No Retornable    NA       2    NA     2   NA
## 342         2 Lts. NR   Familiar No Retornable     6      11     3     8    8
## 343       Lata 235 ml Individual No Retornable     0       0     0    NA    0
## 344       Lata 450 ml Individual No Retornable     1      NA     1    NA    1
## 345       Lata 16 Oz. Individual No Retornable     0       0     2     1    2
## 346      1 Ltro. N.R.   Familiar No Retornable    13      13    23    19   23
## 347        12 Oz. Ret Individual    Retornable     5       3    NA     5    9
## 348         2 Lts. NR   Familiar No Retornable    31      23    25    17   20
## 349     235 ml NR Vid Individual No Retornable     3       2     3     3    4
## 350  500 ml NR Vidrio Individual No Retornable     6      11     8     8   13
## 351       1.5 Lts. NR   Familiar No Retornable    13      13    15    11   NA
## 352         2 Lts. NR   Familiar No Retornable    NA      NA    NA     8   31
## 353       2.5 Lts. NR   Familiar No Retornable    NA      NA     4     7   NA
## 354     235 ml NR Vid Individual No Retornable     1       1    NA    NA   NA
## 355  500 ml NR Vidrio Individual No Retornable     4       6     8     4    6
## 356       Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 357       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 358      1.250 Lts NR   Familiar No Retornable    32      32    32    34   37
## 359       1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 360      1.5 Lts. Ret   Familiar    Retornable    16      19    16    25   25
## 361      1.750 Lts NR   Familiar No Retornable    47      44    47    44   59
## 362     12 Oz. NR Pet Individual No Retornable     3       6     8     5    3
## 363        12 Oz. Ret Individual    Retornable     6       3     3    12    8
## 364       2.5 Lts. NR   Familiar No Retornable    53      49    28    46   63
## 365  2.5 Lts. Ret Pet   Familiar    Retornable    46      49    77    60   77
## 366     235 ml NR Vid Individual No Retornable     5       6     9     9    6
## 367     500 ml NR PET Individual No Retornable     6       8    11     6    6
## 368  500 ml NR Vidrio Individual No Retornable    36      34    44    21   46
## 369        500 ml Ret Individual    Retornable    25      36    42    53   44
## 370       6.5 Oz. Ret Individual    Retornable     1      NA     1     1   NA
## 371         600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 372              Lata Individual No Retornable     2       3     3     2    5
## 373       Lata 235 ml Individual No Retornable     1       2     6    NA    1
## 374      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 375         600 ml NR Individual No Retornable     1       1     1     1    1
## 376     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA    0
## 377      250 ml Tetra Individual No Retornable     0       0     0     0    0
## 378     413 ml NR VId Individual No Retornable    10      12    14    13   13
## 379      1 Ltro. N.R.   Familiar No Retornable     2       3     4     4    1
## 380     237 ml NR Pet Individual No Retornable    NA       1     0     1    1
## 381     1 Ltro. Tetra   Familiar No Retornable     2       1     2     1    3
## 382     1 Ltro. Tetra   Familiar No Retornable     1      NA     3     1    2
## 383     1 Ltro. Tetra   Familiar No Retornable     5       3     2     2    3
## 384     1 Ltro. Tetra   Familiar No Retornable     3       1     1     1    3
## 385      200 ml Tetra Individual No Retornable     4       4     5     3    4
## 386       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    2
## 387         600 ml NR Individual No Retornable     1       3     4     1    3
## 388         600 ml NR Individual No Retornable     1       2     3     3    6
## 389       1.5 Lts. NR   Familiar No Retornable     4       2     4     2   NA
## 390         600 ml NR Individual No Retornable     1       1    NA     1   NA
## 391       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 392         2 Lts. NR   Familiar No Retornable    NA       6     3     6   NA
## 393    250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 394        500 ml Ret Individual    Retornable     1       1    NA     1    1
## 395         600 ml NR Individual No Retornable     1       1     1     3    4
## 396       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 397         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 398        500 ml Ret Individual    Retornable     1       1     2     1    1
## 399       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 400        500 ml Ret Individual    Retornable     1       1    NA     1    1
## 401         600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 402         600 ml NR Individual No Retornable    NA       1     1     1    4
## 403         2 Lts. NR   Familiar No Retornable     8      NA     6     6    3
## 404        500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 405         600 ml NR Individual No Retornable    NA       1    NA     1    1
## 406       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 407       1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2   NA
## 408         2 Lts. NR   Familiar No Retornable     6       3    NA     6    8
## 409    250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 410         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 411        500 ml Ret Individual    Retornable     1       1    NA     1    1
## 412         600 ml NR Individual No Retornable     3       1     3     3    4
## 413       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 414      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1    1
## 415     413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 416         600 ml NR Individual No Retornable     3      11     4     6   10
## 417         600 ml NR Individual No Retornable    NA       1    NA     3    2
## 418      1 Ltro. N.R. Individual No Retornable     2       3     4     2    4
## 419       1.5 Lts. NR Individual No Retornable     6       5     6     3   10
## 420         600 ml NR Individual No Retornable     3      NA     3     5    8
## 421      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 422         600 ml NR Individual No Retornable     1       1     1     1    1
## 423    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 424         600 ml NR Individual No Retornable     3       2     1     1    1
## 425    250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 426         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 427      1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 428      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    4
## 429     12 Oz. NR Pet Individual No Retornable     4       2     2     2    3
## 430         2 Lts. NR   Familiar No Retornable     6       3     6     6    8
## 431         600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 432      200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 433   946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 434       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 435    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 436      1 Ltro. N.R.   Familiar No Retornable    17      11    17    21   17
## 437         2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 438       2.5 Lts. NR   Familiar No Retornable    18      18     4    18   25
## 439     235 ml NR Vid Individual No Retornable     8       6     8     6    6
## 440  500 ml NR Vidrio Individual No Retornable    17      15    15    11   15
## 441       1.5 Lts. NR   Familiar No Retornable     6       4     6     2   NA
## 442         2 Lts. NR   Familiar No Retornable    NA      NA    NA     8    8
## 443  500 ml NR Vidrio Individual No Retornable     1       3     4     5    5
## 444       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 445      1.250 Lts NR   Familiar No Retornable    32      26    26    24   24
## 446      1.5 Lts. Ret   Familiar    Retornable    51      32    79    29   57
## 447      1.750 Lts NR   Familiar No Retornable     7      17    22    15   17
## 448     12 Oz. NR Pet Individual No Retornable     8       6     5    11    8
## 449        12 Oz. Ret Individual    Retornable     9      14    11    14   12
## 450         2 Lts. NR   Familiar No Retornable     8      11     6     8    6
## 451       2.5 Lts. NR   Familiar No Retornable    28      18    35    21   32
## 452  2.5 Lts. Ret Pet   Familiar    Retornable   106     113   155   148  148
## 453     235 ml NR Vid Individual No Retornable     6       6     7     5    5
## 454     500 ml NR PET Individual No Retornable     8       6     4     4   NA
## 455  500 ml NR Vidrio Individual No Retornable    11       8    15     6   17
## 456        500 ml Ret Individual    Retornable    53      70    59    72   78
## 457         600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 458              Lata Individual No Retornable    NA      NA    NA    NA    1
## 459       Lata 235 ml Individual No Retornable     2      NA     1     1    2
## 460      1 Ltro. N.R. Individual No Retornable     1       1     1     2    3
## 461     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 462         600 ml NR Individual No Retornable     1       2     1     3    3
## 463     237 ml NR Pet Individual No Retornable    NA      NA     1    NA   NA
## 464      250 ml Tetra Individual No Retornable     0       0     0     0    0
## 465    250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 466     413 ml NR VId Individual No Retornable     4       1     4     3    4
## 467      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 468     1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 469     1 Ltro. Tetra   Familiar No Retornable     1      NA    NA     1    2
## 470     1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA    8
## 471     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    3
## 472      200 ml Tetra Individual No Retornable     1       1     0     1    0
## 473         600 ml NR Individual No Retornable    NA      NA     1     1    1
## 474         600 ml NR Individual No Retornable     1       1     3    NA    1
## 475         600 ml NR Individual No Retornable     1       1    NA     1    1
## 476       1.5 Lts. NR   Familiar No Retornable    NA       2     2     2   NA
## 477         2 Lts. NR   Familiar No Retornable     3       6     8     3    6
## 478    250 ml. NR PET Individual No Retornable     1       2     2     1    1
## 479         400 ml NR Individual No Retornable     0      NA     0     1    2
## 480        500 ml Ret Individual    Retornable     1       1     1     2    2
## 481         600 ml NR Individual No Retornable     2       2     3     2    2
## 482       Lata 235 ml Individual No Retornable     0      NA    NA    NA    0
## 483         2 Lts. NR   Familiar No Retornable     4      NA     4     6   11
## 484         400 ml NR Individual No Retornable    NA      NA     0     1    0
## 485        500 ml Ret Individual    Retornable     1       1     1    NA   NA
## 486         600 ml NR Individual No Retornable     2      NA     1     1    2
## 487       Lata 235 ml Individual No Retornable     0      NA    NA    NA    0
## 488         2 Lts. NR   Familiar No Retornable     6       3    NA     6    3
## 489    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 490         400 ml NR Individual No Retornable     0      NA     0     1    1
## 491        500 ml Ret Individual    Retornable     1       1     1    NA   NA
## 492         600 ml NR Individual No Retornable     1       1     1     1    2
## 493      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 494         2 Lts. NR   Familiar No Retornable     8      NA     3     8   NA
## 495    250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 496         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 497         600 ml NR Individual No Retornable    NA      NA     1     1   NA
## 498       Lata 235 ml Individual No Retornable     0      NA    NA    NA    0
## 499       1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA    2
## 500         2 Lts. NR   Familiar No Retornable     8       6     8    11    3
## 501    250 ml. NR PET Individual No Retornable     1       2     1     1    1
## 502         400 ml NR Individual No Retornable     0      NA     0     1    2
## 503        500 ml Ret Individual    Retornable     1       1     1     2    4
## 504         600 ml NR Individual No Retornable     2       1     2     3    2
## 505              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 506       Lata 235 ml Individual No Retornable     0      NA    NA    NA    0
## 507     413 ml NR VId Individual No Retornable     0      NA     0    NA   NA
## 508         600 ml NR Individual No Retornable    10       8    10     4   10
## 509         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 510         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 511      1 Ltro. N.R. Individual No Retornable    NA       2     2    NA    2
## 512       1.5 Lts. NR Individual No Retornable    NA       3     3    NA    3
## 513         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 514      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 515         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 516    250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 517      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 518         2 Lts. NR   Familiar No Retornable     3       6    NA    NA   NA
## 519      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 520   946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 521   946 ml NR Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 522    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 523      1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 524  500 ml NR Vidrio Individual No Retornable     4       4     2     4   NA
## 525              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 526       1.5 Lts. NR   Familiar No Retornable     2      NA     1    NA    1
## 527         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 528  500 ml NR Vidrio Individual No Retornable     1      NA    NA    NA   NA
## 529       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 530      1.250 Lts NR   Familiar No Retornable    NA       8    11    13   11
## 531       1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 532      1.5 Lts. Ret   Familiar    Retornable     3       3    NA    NA   NA
## 533      1.750 Lts NR   Familiar No Retornable     5       7     5     2   NA
## 534     12 Oz. NR Pet Individual No Retornable     5      NA     3     2    2
## 535       2.5 Lts. NR   Familiar No Retornable     4       4     4     7   NA
## 536  2.5 Lts. Ret Pet   Familiar    Retornable    11      21    28    35   21
## 537     235 ml NR Vid Individual No Retornable     2       1     3     4    2
## 538     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 539  500 ml NR Vidrio Individual No Retornable     4       4    11    11   19
## 540        500 ml Ret Individual    Retornable     4      13    15    34   66
## 541         600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 542              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 543       Lata 235 ml Individual No Retornable    NA       1     1    NA   NA
## 544      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 545         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 546      250 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 547     413 ml NR VId Individual No Retornable     1       5     1     1   NA
## 548      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 549     1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 550      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 551         600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 552       1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 553         2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 554    250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 555         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 556        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 557         600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 558         2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 559        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 560         600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 561         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 562        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 563         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 564        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 565         2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 566       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 567         2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 568         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 569        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 570         600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 571         600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 572         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 573      1 Ltro. N.R. Individual No Retornable     4      15    15    21   23
## 574       1.5 Lts. NR Individual No Retornable    10       3    16    29   41
## 575         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 576      1 Ltro. N.R. Individual No Retornable     1       1     1     1   NA
## 577         600 ml NR Individual No Retornable     1       1     1     1   NA
## 578         600 ml NR Individual No Retornable     1       1     1     1    3
## 579         400 ml NR Individual No Retornable    NA      NA     2     3   NA
## 580      1 Ltro. N.R.   Familiar No Retornable     1       1     1     1   NA
## 581         2 Lts. NR   Familiar No Retornable     6       3     6     6    3
## 582       Lata 16 Oz. Individual No Retornable    NA      NA     0     1   NA
## 583      1 Ltro. N.R.   Familiar No Retornable     8      11    11    15   15
## 584       2.5 Lts. NR   Familiar No Retornable     7      14    14     7   11
## 585     235 ml NR Vid Individual No Retornable     2       1     4     2    3
## 586  500 ml NR Vidrio Individual No Retornable     4       4     4     8   11
## 587       1.5 Lts. NR   Familiar No Retornable     4       8     3    NA   NA
## 588         2 Lts. NR   Familiar No Retornable    NA      NA    NA     8   11
## 589       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     4   NA
## 590  500 ml NR Vidrio Individual No Retornable     2       3     3     3    4
## 591       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 592      1.250 Lts NR   Familiar No Retornable    29      34    42    48   45
## 593       1.5 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 594      1.5 Lts. Ret   Familiar    Retornable    16      13    16    16   22
## 595      1.750 Lts NR   Familiar No Retornable    NA      22    35    27   17
## 596     12 Oz. NR Pet Individual No Retornable     2      NA     3    NA    3
## 597       2.5 Lts. NR   Familiar No Retornable    14      35    32    49   35
## 598  2.5 Lts. Ret Pet   Familiar    Retornable    53      81    92   130  155
## 599     235 ml NR Vid Individual No Retornable     6       7     7     8   10
## 600     500 ml NR PET Individual No Retornable     2       2     2     2    4
## 601  500 ml NR Vidrio Individual No Retornable    13      19    21    13   32
## 602        500 ml Ret Individual    Retornable    51      59    85    85   87
## 603         600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 604       Lata 16 Oz. Individual No Retornable     6       6     6     4    4
## 605       Lata 235 ml Individual No Retornable     3       4     4     3    2
## 606      1 Ltro. N.R. Individual No Retornable     1       1     1     1   NA
## 607         600 ml NR Individual No Retornable     1       1     1     1   NA
## 608      250 ml Tetra Individual No Retornable     0       0     0     0   NA
## 609     413 ml NR VId Individual No Retornable    11      11    11    17   17
## 610      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 611     1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA    1
## 612     1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1   NA
## 613     1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 614     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 615      200 ml Tetra Individual No Retornable     0       0     0     0    0
## 616       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     4   NA
## 617         600 ml NR Individual No Retornable    NA       1     2     2    1
## 618         600 ml NR Individual No Retornable     1       1     1     2    1
## 619       1.5 Lts. NR   Familiar No Retornable     2      NA     4     2   NA
## 620         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 621       1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 622         2 Lts. NR   Familiar No Retornable     8       6    11    11    8
## 623    250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 624         400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 625        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 626         600 ml NR Individual No Retornable     1       3     3     4    5
## 627        500 ml Ret Individual    Retornable     3      NA     1     1    1
## 628         2 Lts. NR   Familiar No Retornable     8       6     6    17   14
## 629        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 630         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 631         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 632         400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 633        500 ml Ret Individual    Retornable     2       2     2    NA   NA
## 634         600 ml NR Individual No Retornable    NA       3     2     2    4
## 635       1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 636         2 Lts. NR   Familiar No Retornable     3       3     8     6   11
## 637    250 ml. NR PET Individual No Retornable    NA       1     1    NA   NA
## 638        500 ml Ret Individual    Retornable     1       2     3     1    1
## 639         600 ml NR Individual No Retornable     2       3     3     3    4
## 640     413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 641         600 ml NR Individual No Retornable     4       1     4     4    6
## 642         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 643         600 ml NR Individual No Retornable    NA      NA    NA     1    3
## 644      1 Ltro. N.R. Individual No Retornable     8       4     6    19    4
## 645       1.5 Lts. NR Individual No Retornable    13       3    10    10   13
## 646         600 ml NR Individual No Retornable    NA      NA    NA    NA    5
## 647      1 Ltro. N.R. Individual No Retornable     1       1     1     2    1
## 648         600 ml NR Individual No Retornable     1       1     1     1    1
## 649         600 ml NR Individual No Retornable     1       1    NA     1    2
## 650    250 ml. NR PET Individual No Retornable     2      NA     1     1    1
## 651         400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 652      1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 653     12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 654         2 Lts. NR   Familiar No Retornable     3       3     6     3    3
## 655      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 656   946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 657       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 658       Lata 16 Oz. Individual No Retornable    NA      NA     0    NA    1
## 659    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 660      1 Ltro. N.R.   Familiar No Retornable     4       2     4     4    4
## 661  500 ml NR Vidrio Individual No Retornable     2       4     2     6    2
## 662       1.5 Lts. NR   Familiar No Retornable     2      NA     3     3    3
## 663         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 664     235 ml NR Vid Individual No Retornable    NA       2    NA     1    1
## 665  500 ml NR Vidrio Individual No Retornable     1       1     1     1    1
## 666        500 ml Ret Individual    Retornable     6       2     6     2   NA
## 667              Lata Individual No Retornable    NA      NA     0     0   NA
## 668       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 669      1.250 Lts NR   Familiar No Retornable    11       8     8    11   11
## 670      1.5 Lts. Ret   Familiar    Retornable    25      19    29    32   32
## 671      1.750 Lts NR   Familiar No Retornable     7      10    17    15   20
## 672     12 Oz. NR Pet Individual No Retornable     3       2     3     8    6
## 673       2.5 Lts. NR   Familiar No Retornable    25      14    35    35   32
## 674  2.5 Lts. Ret Pet   Familiar    Retornable    14      35    67    81   77
## 675     235 ml NR Vid Individual No Retornable     1       3     4     3    4
## 676    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 677     500 ml NR PET Individual No Retornable     2       2     6     6    8
## 678  500 ml NR Vidrio Individual No Retornable     6       8    13    11   11
## 679        500 ml Ret Individual    Retornable    40      19    44    38   49
## 680              Lata Individual No Retornable    NA      NA     1     2    1
## 681       Lata 16 Oz. Individual No Retornable    NA      NA     2     2    2
## 682       Lata 235 ml Individual No Retornable     1      NA     1    NA    1
## 683      1 Ltro. N.R. Individual No Retornable     1       1     3     2    3
## 684     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 685         600 ml NR Individual No Retornable     1       1     1     1    4
## 686     237 ml NR Pet Individual No Retornable    NA       0     1     1    1
## 687      250 ml Tetra Individual No Retornable     0       0     0     0    0
## 688    250 ML. NR VID Individual No Retornable     2      NA    NA    NA   NA
## 689     413 ml NR VId Individual No Retornable     3       2     3     2    3
## 690      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 691      1 Ltro. N.R.   Familiar No Retornable     3      NA    NA    NA    3
## 692     237 ml NR Pet Individual No Retornable     0       0    NA     1   NA
## 693     1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 694     1 Ltro. Tetra   Familiar No Retornable    NA      NA     1     1    1
## 695      200 ml Tetra Individual No Retornable     0       1     0     0    1
## 696         600 ml NR Individual No Retornable    NA      NA     2     1    2
## 697       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 698         600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 699       1.5 Lts. NR   Familiar No Retornable     2      NA     4    NA   NA
## 700         2 Lts. NR   Familiar No Retornable     6       3     3     3    3
## 701    250 ml. NR PET Individual No Retornable     1      NA     2     1    1
## 702         400 ml NR Individual No Retornable     1       0    NA     1   NA
## 703        500 ml Ret Individual    Retornable     2       2     2    NA    2
## 704         600 ml NR Individual No Retornable    NA       1     1     1    3
## 705         2 Lts. NR   Familiar No Retornable    NA       1     3     1   NA
## 706       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 707    250 ml. NR PET Individual No Retornable     1      NA     2     2    1
## 708         400 ml NR Individual No Retornable     1       1     2     1    0
## 709         600 ml NR Individual No Retornable     1       1     2     1    3
## 710       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 711         2 Lts. NR   Familiar No Retornable     6       3     6    11    3
## 712       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 713         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 714        500 ml Ret Individual    Retornable     4      NA     4     4    4
## 715         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 716       1.5 Lts. NR   Familiar No Retornable    NA       2     4     2    2
## 717         2 Lts. NR   Familiar No Retornable     3      NA     3     3    6
## 718    250 ml. NR PET Individual No Retornable     2       2     3     2    3
## 719         400 ml NR Individual No Retornable     1       1     1     2    0
## 720        500 ml Ret Individual    Retornable     2       2     2     2    2
## 721         600 ml NR Individual No Retornable     1       2     2     3    4
## 722     413 ml NR VId Individual No Retornable    NA      NA     0    NA   NA
## 723         600 ml NR Individual No Retornable     1       1     1     1    1
## 724         600 ml NR Individual No Retornable    NA      NA    NA     3    1
## 725      1 Ltro. N.R. Individual No Retornable     2       2     4     6   11
## 726       1.5 Lts. NR Individual No Retornable     3       3     6    10   10
## 727         600 ml NR Individual No Retornable    NA       3     3     3    8
## 728      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 729         600 ml NR Individual No Retornable     1       1     1     1    1
## 730    250 ml. NR PET Individual No Retornable     0       1    NA     1    1
## 731      1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA   NA
## 732      1 Ltro. N.R. Individual No Retornable    NA       2     2     4    2
## 733         2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 734      200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 735   946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 736       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 737    250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 738      1 Ltro. N.R.   Familiar No Retornable    13      27    23    15   30
## 739        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 740         2 Lts. NR   Familiar No Retornable    17      23    17    17   23
## 741        2 Lts. Ret   Familiar    Retornable     3       3     3     3   NA
## 742       2.5 Lts. NR   Familiar No Retornable    14      25    14    18   21
## 743     235 ml NR Vid Individual No Retornable     3       5     4     3    6
## 744         400 ml NR Individual No Retornable     3       2     3     2    5
## 745  500 ml NR Vidrio Individual No Retornable    21      25    32    13   36
## 746         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 747              Lata Individual No Retornable    NA       2     3    NA    3
## 748       1.5 Lts. NR   Familiar No Retornable    13      NA     2    NA   NA
## 749       2.5 Lts. NR   Familiar No Retornable    NA      18    21    18   21
## 750     235 ml NR Vid Individual No Retornable    NA       3     5     2    4
## 751  500 ml NR Vidrio Individual No Retornable     4       8     6     6   13
## 752        500 ml Ret Individual    Retornable     2       2     2     4    6
## 753       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 754      1.250 Lts NR   Familiar No Retornable    NA      21    32    29   48
## 755       1.5 Lts. NR   Familiar No Retornable    38      19    NA    NA   NA
## 756      1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 757      1.750 Lts NR   Familiar No Retornable    NA      12    32    27   59
## 758     12 Oz. NR Pet Individual No Retornable     5       6     5     5    6
## 759        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 760       2.5 Lts. NR   Familiar No Retornable     7      49    46    46   67
## 761  2.5 Lts. Ret Pet   Familiar    Retornable    25      63    56    63   85
## 762     235 ml NR Vid Individual No Retornable     9      14    10     8   15
## 763  500 ml NR Vidrio Individual No Retornable    30      40    42    32   49
## 764        500 ml Ret Individual    Retornable    32      42    21    36   55
## 765         600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 766              Lata Individual No Retornable     3       2     2     2    2
## 767       Lata 16 Oz. Individual No Retornable     4       2     2     2    2
## 768       Lata 235 ml Individual No Retornable     1       1     1     1    1
## 769      1 Ltro. N.R. Individual No Retornable     1       2     1     1    1
## 770         600 ml NR Individual No Retornable     1       1     1     1    1
## 771     237 ml NR Pet Individual No Retornable    NA      NA     0    NA   NA
## 772      250 ml Tetra Individual No Retornable     2       0     0     0    0
## 773     413 ml NR VId Individual No Retornable     1       1     1     1    1
## 774     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 775     237 ml NR Pet Individual No Retornable     0       0    NA    NA   NA
## 776     1 Ltro. Tetra   Familiar No Retornable     3       3     2     2    4
## 777     1 Ltro. Tetra   Familiar No Retornable     4       3     2     1    1
## 778     1 Ltro. Tetra   Familiar No Retornable     2       4     1     3    3
## 779     1 Ltro. Tetra   Familiar No Retornable     2       1     2     1    1
## 780      200 ml Tetra Individual No Retornable     0       1     1     0    0
## 781       1.5 Lts. NR   Familiar No Retornable     2       4     2     4    6
## 782         600 ml NR Individual No Retornable     1       2     2     3    3
## 783         600 ml NR Individual No Retornable     1       1    NA     1    1
## 784       1.5 Lts. NR   Familiar No Retornable    NA       4     2     2   NA
## 785         600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 786       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 787         2 Lts. NR   Familiar No Retornable    NA      NA     6     3    6
## 788    250 ml. NR PET Individual No Retornable     1       1    NA     1    1
## 789        500 ml Ret Individual    Retornable     2       4     2    NA    2
## 790         600 ml NR Individual No Retornable     2       1     2     1    2
## 791       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 792         2 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 793       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 794         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 795         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 796         600 ml NR Individual No Retornable    NA       1     1     1    2
## 797         2 Lts. NR   Familiar No Retornable     3       6     6     8   11
## 798        500 ml Ret Individual    Retornable     2       4    NA     2    2
## 799       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 800       1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 801         2 Lts. NR   Familiar No Retornable     3       3     6     8    8
## 802    250 ml. NR PET Individual No Retornable    NA       1     1     1    2
## 803         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 804        500 ml Ret Individual    Retornable     4       2     2     2    2
## 805         600 ml NR Individual No Retornable     1       1     1     3    3
## 806       Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 807     413 ml NR VId Individual No Retornable     1      NA    NA    NA   NA
## 808         600 ml NR Individual No Retornable     4       3     3     4    7
## 809       1.5 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 810  12 Oz. NR Vidrio Individual No Retornable    NA      NA     1    NA    1
## 811         600 ml NR Individual No Retornable     1       4     3     3    4
## 812      1 Ltro. N.R. Individual No Retornable     4      17    89     2    8
## 813       1.5 Lts. NR Individual No Retornable    13      19   149     3    3
## 814         5 Lts. NR   Familiar No Retornable    NA       4     7    NA    4
## 815         600 ml NR Individual No Retornable     3      10    15     3   10
## 816      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 817       1.5 Lts. NR Individual No Retornable    NA      NA     5     5   NA
## 818         600 ml NR Individual No Retornable    NA       1     1     1    1
## 819         600 ml NR Individual No Retornable     1       1     1     2    2
## 820    250 ml. NR PET Individual No Retornable     2       4     4    NA    4
## 821         400 ml NR Individual No Retornable     1       1     1    NA    1
## 822      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 823      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 824         2 Lts. NR   Familiar No Retornable     8       6     8     8    6
## 825      200 ml Tetra Individual No Retornable     1       2     1     4    1
## 826   946 ml NR Tetra   Familiar No Retornable     2       3    NA     2    3
## 827   946 ml NR Tetra   Familiar No Retornable     4       2    NA     2    4
## 828     500 ml NR PET Individual No Retornable    NA      NA     1     1    1
## 829       Lata 16 Oz. Individual No Retornable     1       1     1     1    2
## 830      1 Ltro. N.R.   Familiar No Retornable    11      13    23    13   21
## 831        12 Oz. Ret Individual    Retornable    NA       2     2    NA   NA
## 832         2 Lts. NR   Familiar No Retornable    NA       6     6    11    8
## 833       2.5 Lts. NR   Familiar No Retornable    25      25    25    18   18
## 834     235 ml NR Vid Individual No Retornable     3       3     3     2    2
## 835  500 ml NR Vidrio Individual No Retornable     6       6     8     4    6
## 836              Lata Individual No Retornable     0       1     1     2    1
## 837       1.5 Lts. NR   Familiar No Retornable     4       2    11     6    2
## 838         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    8
## 839       2.5 Lts. NR   Familiar No Retornable    14      11    18    18   18
## 840     235 ml NR Vid Individual No Retornable    NA      NA    NA     2    1
## 841  500 ml NR Vidrio Individual No Retornable     4       4     7    11    4
## 842        500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 843       Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 844       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 845      1.250 Lts NR   Familiar No Retornable    40      45    53    55   79
## 846       1.5 Lts. NR   Familiar No Retornable    38      NA    NA    NA   NA
## 847      1.5 Lts. Ret   Familiar    Retornable    NA      16    13    10   19
## 848      1.750 Lts NR   Familiar No Retornable    NA      17    17    12   17
## 849     12 Oz. NR Pet Individual No Retornable     8       9    12     9   17
## 850        12 Oz. Ret Individual    Retornable     5       6     5     5    8
## 851         2 Lts. NR   Familiar No Retornable     3      11     6    NA   NA
## 852        2 Lts. Ret   Familiar    Retornable    11      25    14     8    3
## 853       2.5 Lts. NR   Familiar No Retornable    60      77    67    74   92
## 854  2.5 Lts. Ret Pet   Familiar    Retornable   113      25    63    67  106
## 855     235 ml NR Vid Individual No Retornable     7       8     9     8    9
## 856     500 ml NR PET Individual No Retornable     2       4     8     6    6
## 857  500 ml NR Vidrio Individual No Retornable    23      44    15    23   36
## 858        500 ml Ret Individual    Retornable    63      49    85    70   82
## 859       6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 860         600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 861              Lata Individual No Retornable     2       5     3     3    3
## 862       Lata 16 Oz. Individual No Retornable    NA       2     2     4    4
## 863       Lata 235 ml Individual No Retornable     2       2     3     2   NA
## 864      1 Ltro. N.R. Individual No Retornable    NA       2     3     2    5
## 865     500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 866         600 ml NR Individual No Retornable    NA       1     2     3    2
## 867      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    3
## 868      250 ml Tetra Individual No Retornable    NA       0     0     0    0
## 869     413 ml NR VId Individual No Retornable     4       3     4     2    4
## 870     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 871      1 Ltro. N.R.   Familiar No Retornable    NA      NA     1    NA    2
## 872     237 ml NR Pet Individual No Retornable    NA      NA     0    NA   NA
## 873     1 Ltro. Tetra   Familiar No Retornable     5       4     4     2    3
## 874     1 Ltro. Tetra   Familiar No Retornable     7       5     4     4    3
## 875     1 Ltro. Tetra   Familiar No Retornable     6       4     5     2    3
## 876     1 Ltro. Tetra   Familiar No Retornable     2       2     2     1    1
## 877      200 ml Tetra Individual No Retornable     4       5     7     5    3
## 878       1.5 Lts. NR   Familiar No Retornable    NA       2     2     4    6
## 879         600 ml NR Individual No Retornable    NA       3     2     3    2
## 880         600 ml NR Individual No Retornable     2       4     1     3    3
## 881       1.5 Lts. NR   Familiar No Retornable     2       4     6     4   NA
## 882         600 ml NR Individual No Retornable     1       1    NA     1   NA
## 883       1.5 Lts. NR   Familiar No Retornable     2       4     4     4    2
## 884         2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 885    250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 886        500 ml Ret Individual    Retornable    NA      NA     1    NA    3
## 887         600 ml NR Individual No Retornable     1       4     1     1    3
## 888       Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 889         2 Lts. NR   Familiar No Retornable    NA       6     3     3   11
## 890        500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 891         600 ml NR Individual No Retornable     1       1     1    NA    1
## 892       Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 893       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 894         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 895       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    2
## 896        500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 897         600 ml NR Individual No Retornable    NA       1     1     1   NA
## 898         600 ml NR Individual No Retornable     1       3     2    NA    3
## 899       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 900         2 Lts. NR   Familiar No Retornable     6       6     6     6    8
## 901        500 ml Ret Individual    Retornable    NA       2    NA     2   NA
## 902         600 ml NR Individual No Retornable    NA       1     1     1    1
## 903       Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 904       1.5 Lts. NR   Familiar No Retornable     2       4     6     6    4
## 905         2 Lts. NR   Familiar No Retornable    NA       6     8     3    8
## 906        500 ml Ret Individual    Retornable    NA       2     1     2    3
## 907         600 ml NR Individual No Retornable     1       4     3     4    4
## 908       Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 909      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    1
## 910         600 ml NR Individual No Retornable     7      10    13     4   14
## 911         600 ml NR Individual No Retornable     1      NA    NA     1    1
## 912       1.5 Lts. NR   Familiar No Retornable    NA       2     2     3    2
## 913         600 ml NR Individual No Retornable    NA       3     1     4    1
## 914      1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 915       1.5 Lts. NR Individual No Retornable    32      35    51    29   38
## 916         600 ml NR Individual No Retornable     8      13     8     8    3
## 917      1 Ltro. N.R. Individual No Retornable     1       2     2     2    4
## 918         600 ml NR Individual No Retornable     1       1     1     1    2
## 919    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    2
## 920    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 921         600 ml NR Individual No Retornable     2       4     3     3    3
## 922    250 ml. NR PET Individual No Retornable     1      NA     1     1    1
## 923         400 ml NR Individual No Retornable    NA      NA    NA     1    3
## 924      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 925      1 Ltro. N.R. Individual No Retornable     4       4     4     6    6
## 926     12 Oz. NR Pet Individual No Retornable     2      NA     2     2    1
## 927         2 Lts. NR   Familiar No Retornable     3       3     3     8    6
## 928      200 ml Tetra Individual No Retornable     3       3     3     2    4
## 929   946 ml NR Tetra   Familiar No Retornable     4       0    NA     1    1
## 930   946 ml NR Tetra   Familiar No Retornable     6      NA    NA    NA   NA
## 931     500 ml NR PET Individual No Retornable     1       2    NA     2    1
## 932       Lata 16 Oz. Individual No Retornable     1       1     2     1    4
## 933    250 ml. NR PET Individual No Retornable    NA       1     0    NA   NA
## 934      1 Ltro. N.R.   Familiar No Retornable    19      30    25    25   23
## 935        12 Oz. Ret Individual    Retornable     3       2     5     6    5
## 936         2 Lts. NR   Familiar No Retornable    17      23     6    23   20
## 937        2 Lts. Ret   Familiar    Retornable     8      17    20     6    3
## 938       2.5 Lts. NR   Familiar No Retornable     4      11     7     7   NA
## 939     235 ml NR Vid Individual No Retornable     1       3     4     1    3
## 940  500 ml NR Vidrio Individual No Retornable    13      15    21    19   21
## 941         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 942              Lata Individual No Retornable    NA       2     3     2    2
## 943       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 944       1.5 Lts. NR   Familiar No Retornable     4       6     4    NA   11
## 945         2 Lts. NR   Familiar No Retornable    NA      NA    NA    17    6
## 946       2.5 Lts. NR   Familiar No Retornable    18      18    25    28   25
## 947     235 ml NR Vid Individual No Retornable     5       5     3     5    4
## 948  500 ml NR Vidrio Individual No Retornable    13      15    15    11   15
## 949        500 ml Ret Individual    Retornable     2      NA    NA     2   NA
## 950       Lata 235 ml Individual No Retornable    NA       1    NA    NA    2
## 951       1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 952      1.250 Lts NR   Familiar No Retornable    50      53    55    61   77
## 953       1.5 Lts. NR   Familiar No Retornable    10      NA    NA    NA   NA
## 954      1.5 Lts. Ret   Familiar    Retornable     3      10    10     3   10
## 955      1.750 Lts NR   Familiar No Retornable    30      32    30    42   37
## 956     12 Oz. NR Pet Individual No Retornable    11      12    12     6    9
## 957        12 Oz. Ret Individual    Retornable     5       3    NA     8    3
## 958         2 Lts. NR   Familiar No Retornable    25      31    37    39   42
## 959        2 Lts. Ret   Familiar    Retornable     6       3     6     6   NA
## 960       2.5 Lts. NR   Familiar No Retornable    70      39    63    81   95
## 961  2.5 Lts. Ret Pet   Familiar    Retornable    63      74    74    99   77
## 962     235 ml NR Vid Individual No Retornable    10       9     8     9   10
## 963    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 964     500 ml NR PET Individual No Retornable    11      11    13     6   15
## 965  500 ml NR Vidrio Individual No Retornable    13      61    40    42   49
## 966        500 ml Ret Individual    Retornable    53      59    78    57   57
## 967       6.5 Oz. Ret Individual    Retornable     1       2    NA     2   NA
## 968         600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 969              Lata Individual No Retornable     3       3     6     5    5
## 970       Lata 16 Oz. Individual No Retornable     2       2     2     2    4
## 971       Lata 235 ml Individual No Retornable     1       3    NA     1    1
## 972      1 Ltro. N.R. Individual No Retornable     1       1     5    13   10
## 973         600 ml NR Individual No Retornable     1       1     5     5    4
## 974      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    3
## 975     237 ml NR Pet Individual No Retornable    NA       3     3     2    3
## 976      250 ml Tetra Individual No Retornable     4       3     2     4    1
## 977    250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 978     413 ml NR VId Individual No Retornable     7      14    12    10   12
## 979   946 ml NR Tetra Individual No Retornable    NA      NA    NA     2   NA
## 980       Lata 335 ml Individual No Retornable     0      NA    NA    NA   NA
## 981      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 982     237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 983      1 Ltro. N.R.   Familiar No Retornable     1       4     6     6    3
## 984     237 ml NR Pet Individual No Retornable     1       0     1     1    1
## 985     1 Ltro. Tetra   Familiar No Retornable     1       3     1     3    4
## 986     1 Ltro. Tetra   Familiar No Retornable     5       2     4     3    4
## 987     1 Ltro. Tetra   Familiar No Retornable    13       6    11    10   13
## 988     1 Ltro. Tetra   Familiar No Retornable     1       2     4     2    3
## 989      200 ml Tetra Individual No Retornable     6       5     3     5    3
## 990       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 991         600 ml NR Individual No Retornable     3       6     7     8    9
## 992       1.5 Lts. NR   Familiar No Retornable    NA      NA     6     6    6
## 993         600 ml NR Individual No Retornable     3       6     6     8    7
## 994              Lata Individual No Retornable    NA      NA     3     2   NA
## 995       1.5 Lts. NR   Familiar No Retornable     4      NA    NA     2   NA
## 996         600 ml NR Individual No Retornable     3       1    NA     1   NA
## 997      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2   NA
## 998       1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA    2
## 999         2 Lts. NR   Familiar No Retornable     8       6     6     3    8
## 1000   250 ml. NR PET Individual No Retornable     1       1    NA     1    1
## 1001       500 ml Ret Individual    Retornable    NA       2     2     2   NA
## 1002        600 ml NR Individual No Retornable     3       3     4     3    4
## 1003      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 1004        2 Lts. NR   Familiar No Retornable    NA       1     1    NA    1
## 1005       500 ml Ret Individual    Retornable    NA      NA     2     2    2
## 1006        600 ml NR Individual No Retornable     1       1     2     3    2
## 1007      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 1008      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1009        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1010      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1011   250 ml. NR PET Individual No Retornable    NA       1     1    NA   NA
## 1012       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1013        600 ml NR Individual No Retornable     1       1     1     1    1
## 1014        600 ml NR Individual No Retornable     3       5     4     4    4
## 1015        2 Lts. NR   Familiar No Retornable     6       6     8    11    8
## 1016       500 ml Ret Individual    Retornable     4       2     2     4    2
## 1017        600 ml NR Individual No Retornable     1       4     1     3    1
## 1018      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 1019     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2   NA
## 1020      1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2   NA
## 1021        2 Lts. NR   Familiar No Retornable     8       8     8     6    8
## 1022   250 ml. NR PET Individual No Retornable     1       1     2     1    1
## 1023       500 ml Ret Individual    Retornable     2       2    NA     2   NA
## 1024        600 ml NR Individual No Retornable     4       6     4     6    4
## 1025      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 1026     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 1027    413 ml NR VId Individual No Retornable     2      NA    NA    NA   NA
## 1028        600 ml NR Individual No Retornable     2       5     4     5    4
## 1029        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1030     1 Ltro. N.R. Individual No Retornable     2       2     2    NA    2
## 1031      1.5 Lts. NR Individual No Retornable     6       3     3    NA    6
## 1032        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1033     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    1
## 1034        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1035     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA    NA    1
## 1036        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 1037     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1038  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1039      Lata 16 Oz. Individual No Retornable    NA      NA     0    NA   NA
## 1040     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1041 500 ml NR Vidrio Individual No Retornable     2       2     4     2    2
## 1042      1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA    2
## 1043        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    1
## 1044    235 ml NR Vid Individual No Retornable     1      NA     1    NA   NA
## 1045 500 ml NR Vidrio Individual No Retornable     3       1    NA    NA    2
## 1046      Lata 235 ml Individual No Retornable    NA      NA     1     2   NA
## 1047      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1048     1.5 Lts. Ret   Familiar    Retornable    48      63    63    63   73
## 1049     1.750 Lts NR   Familiar No Retornable    10      17    22    20   17
## 1050    12 Oz. NR Pet Individual No Retornable    NA       2     2    NA   NA
## 1051      2.5 Lts. NR   Familiar No Retornable    28      32    35    21   18
## 1052 2.5 Lts. Ret Pet   Familiar    Retornable    49      63    81    77  109
## 1053    235 ml NR Vid Individual No Retornable     1       1     2     2    2
## 1054 500 ml NR Vidrio Individual No Retornable    11      11    15     8   13
## 1055       500 ml Ret Individual    Retornable    46      55    59    61   72
## 1056        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 1057             Lata Individual No Retornable     2      NA     2     2   NA
## 1058      Lata 16 Oz. Individual No Retornable    NA       2    NA     2    2
## 1059      Lata 235 ml Individual No Retornable     3       4     6    10    3
## 1060     1 Ltro. N.R. Individual No Retornable    NA       2    NA     2    2
## 1061    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1062        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 1063     250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1064   250 ML. NR VID Individual No Retornable     0      NA    NA    NA   NA
## 1065    413 ml NR VId Individual No Retornable     3       5     3     1    1
## 1066     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1067    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1068    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1069     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1070        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1071        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1072      1.5 Lts. NR   Familiar No Retornable     6       4     6     6   15
## 1073   250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 1074       500 ml Ret Individual    Retornable     1       5     1     4    4
## 1075        600 ml NR Individual No Retornable     3       1     1     3    3
## 1076      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1077      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 1078        2 Lts. NR   Familiar No Retornable     3       6    11    14   11
## 1079       500 ml Ret Individual    Retornable     1       3     1    NA    4
## 1080        600 ml NR Individual No Retornable    NA       1     2     1    2
## 1081      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1082      1.5 Lts. NR   Familiar No Retornable     4       6     6     4    6
## 1083       500 ml Ret Individual    Retornable     3       3     3     4    2
## 1084        600 ml NR Individual No Retornable     1       3     1     1    3
## 1085      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1086       500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 1087      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1088      1.5 Lts. NR   Familiar No Retornable     2       2     6     2    4
## 1089     1.750 Lts NR   Familiar No Retornable    NA      NA    NA    NA    2
## 1090        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 1091   250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 1092        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 1093       500 ml Ret Individual    Retornable     3       1     3    NA    4
## 1094        600 ml NR Individual No Retornable     1       1     2     1    2
## 1095      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1096        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 1097        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1098     1 Ltro. N.R. Individual No Retornable     4       3     2    11    6
## 1099      1.5 Lts. NR Individual No Retornable     6       5     3     3   10
## 1100        600 ml NR Individual No Retornable     3       3     3     5    3
## 1101     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1102        600 ml NR Individual No Retornable     1       1     1     1    1
## 1103   250 ml. NR PET Individual No Retornable     0      NA     1    NA    1
## 1104        400 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1105     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 1106        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 1107     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1108      Lata 16 Oz. Individual No Retornable    NA       0    NA    NA   NA
## 1109     1 Ltro. N.R.   Familiar No Retornable     6       6     6     4    2
## 1110    235 ml NR Vid Individual No Retornable    NA      NA     1     1   NA
## 1111 500 ml NR Vidrio Individual No Retornable     2       4     4     4    6
## 1112 500 ml NR Vidrio Individual No Retornable     2       1     2     5    5
## 1113      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 1114     1.250 Lts NR   Familiar No Retornable    13      13    11    11   21
## 1115      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1116     1.5 Lts. Ret   Familiar    Retornable    25      29    29    19   29
## 1117     1.750 Lts NR   Familiar No Retornable    10      10    10     7   15
## 1118    12 Oz. NR Pet Individual No Retornable     6       5     5     6    6
## 1119      2.5 Lts. NR   Familiar No Retornable    53       4     4    14   21
## 1120 2.5 Lts. Ret Pet   Familiar    Retornable    42       4    28    32   53
## 1121    235 ml NR Vid Individual No Retornable     3       1     4     2    3
## 1122    500 ml NR PET Individual No Retornable     4       2     6     6   13
## 1123 500 ml NR Vidrio Individual No Retornable     4      21     8     6   21
## 1124       500 ml Ret Individual    Retornable    55      38    61    55   57
## 1125        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 1126             Lata Individual No Retornable     2       1     3     2    2
## 1127      Lata 16 Oz. Individual No Retornable     2       2     4    NA    4
## 1128      Lata 235 ml Individual No Retornable     2       2     2     3    2
## 1129     1 Ltro. N.R. Individual No Retornable     1       1     1     1    4
## 1130    500 ml NR PET Individual No Retornable    NA       1     1     2    1
## 1131        600 ml NR Individual No Retornable     1       1     1     1    1
## 1132     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 1133    413 ml NR VId Individual No Retornable     4       3     3     3    5
## 1134     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1135     1 Ltro. N.R.   Familiar No Retornable     3      NA    NA     2    2
## 1136    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1137    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1     1    2
## 1138     200 ml Tetra Individual No Retornable     1       0     0     0    0
## 1139        600 ml NR Individual No Retornable     1       1     4     1    2
## 1140        600 ml NR Individual No Retornable     1       1     1     1   NA
## 1141      1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 1142        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1143        400 ml NR Individual No Retornable    NA       2     1     1    1
## 1144       500 ml Ret Individual    Retornable     6       6     6     2    8
## 1145        600 ml NR Individual No Retornable     2       1     3     2    3
## 1146      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 1147        2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 1148      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 1149        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1150        400 ml NR Individual No Retornable     1       1     1    NA    0
## 1151        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1152      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1153        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1154        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1155       500 ml Ret Individual    Retornable     4       6     4     8    4
## 1156      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 1157      1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2    2
## 1158        2 Lts. NR   Familiar No Retornable    NA       3    NA     1    3
## 1159        400 ml NR Individual No Retornable     0       1     0     1    1
## 1160       500 ml Ret Individual    Retornable     2       4     2     2    6
## 1161        600 ml NR Individual No Retornable     2       1     3     2    2
## 1162      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 1163        600 ml NR Individual No Retornable     1       1     1     1    3
## 1164        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 1165        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1166      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 1167        600 ml NR Individual No Retornable    NA      NA    NA     1    4
## 1168     1 Ltro. N.R. Individual No Retornable     4       2    13     8   15
## 1169      1.5 Lts. NR Individual No Retornable     6       3    13    10   25
## 1170        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1171        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 1172     1 Ltro. N.R. Individual No Retornable     1       1     1     1    5
## 1173      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   10
## 1174        600 ml NR Individual No Retornable     1       1     1     1    1
## 1175        600 ml NR Individual No Retornable     1       1     2     3    3
## 1176   250 ml. NR PET Individual No Retornable    NA      NA     3    NA    1
## 1177        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1178     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1   NA
## 1179     1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA    4
## 1180        2 Lts. NR   Familiar No Retornable     3       3     3     3    6
## 1181        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1182     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1183  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    4
## 1184  946 ml NR Tetra   Familiar No Retornable     2      NA    NA    NA   NA
## 1185    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1186      Lata 16 Oz. Individual No Retornable     1      NA    NA    NA    1
## 1187   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1188     1 Ltro. N.R.   Familiar No Retornable    19      23    21    25   25
## 1189       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1190        2 Lts. NR   Familiar No Retornable     3       6     6    NA    6
## 1191       2 Lts. Ret   Familiar    Retornable    11       8    11    11    3
## 1192    235 ml NR Vid Individual No Retornable     1       2     1     1    2
## 1193 500 ml NR Vidrio Individual No Retornable    13       8    13     8   17
## 1194             Lata Individual No Retornable    NA      NA    NA    NA    2
## 1195      1.5 Lts. NR   Familiar No Retornable    NA      NA     2     2   NA
## 1196        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1197    235 ml NR Vid Individual No Retornable    NA      NA    NA     1    2
## 1198 500 ml NR Vidrio Individual No Retornable     4       4     4     4    8
## 1199      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1200      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1201     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 1202     1.250 Lts NR   Familiar No Retornable    26      32    40    48   63
## 1203      1.5 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 1204     1.5 Lts. Ret   Familiar    Retornable    19      19    22    25   48
## 1205     1.750 Lts NR   Familiar No Retornable    NA       5     2     2   37
## 1206    12 Oz. NR Pet Individual No Retornable     6       6     9     5    9
## 1207       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1208       2 Lts. Ret   Familiar    Retornable    11       8    14    11   NA
## 1209      2.5 Lts. NR   Familiar No Retornable    35      60    85    70   95
## 1210 2.5 Lts. Ret Pet   Familiar    Retornable     4      21    35    42   85
## 1211    235 ml NR Vid Individual No Retornable     7       8     7    11    9
## 1212    500 ml NR PET Individual No Retornable    13      11    17    11   13
## 1213 500 ml NR Vidrio Individual No Retornable    27      27    34    17   49
## 1214       500 ml Ret Individual    Retornable    44      53    61    55  104
## 1215        600 ml NR Individual No Retornable    NA      NA    NA    13   NA
## 1216             Lata Individual No Retornable     3       5     2    NA    8
## 1217      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    6
## 1218      Lata 235 ml Individual No Retornable     3       3     2     3    8
## 1219     1 Ltro. N.R. Individual No Retornable     1       2     4     3    4
## 1220        600 ml NR Individual No Retornable     1       1     2     1    4
## 1221     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 1222    413 ml NR VId Individual No Retornable     0       2     3     1   11
## 1223    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1224     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1225    1 Ltro. Tetra   Familiar No Retornable     2       1     3     2    2
## 1226    1 Ltro. Tetra   Familiar No Retornable     2      NA     3     1   NA
## 1227    1 Ltro. Tetra   Familiar No Retornable     2       1    NA    NA    1
## 1228    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1229     200 ml Tetra Individual No Retornable     1       0     1     1    1
## 1230      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1231        600 ml NR Individual No Retornable     1       3     5     5    4
## 1232        600 ml NR Individual No Retornable     1       1     4     4    3
## 1233      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 1234        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1235      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 1236        2 Lts. NR   Familiar No Retornable     3      NA     3     3   11
## 1237   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 1238        400 ml NR Individual No Retornable     1       1     1     2    1
## 1239       500 ml Ret Individual    Retornable     2       1     2     2    3
## 1240        600 ml NR Individual No Retornable     1       1     3     3    3
## 1241             Lata Individual No Retornable    NA      NA    NA    NA    0
## 1242      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1243        2 Lts. NR   Familiar No Retornable    NA      NA     1     6   11
## 1244        400 ml NR Individual No Retornable     1       1     1     2    1
## 1245       500 ml Ret Individual    Retornable     2       1     2     2    3
## 1246        600 ml NR Individual No Retornable     1       1     2     3    4
## 1247             Lata Individual No Retornable    NA      NA    NA    NA    0
## 1248      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1249        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1250   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1251        400 ml NR Individual No Retornable     1       1     1     2    1
## 1252       500 ml Ret Individual    Retornable     2       1     2     2    3
## 1253        600 ml NR Individual No Retornable     2       1     1     3    2
## 1254             Lata Individual No Retornable    NA      NA    NA    NA    0
## 1255        600 ml NR Individual No Retornable     1       1     3     3    3
## 1256        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    8
## 1257        400 ml NR Individual No Retornable     0       0     0    NA   NA
## 1258        600 ml NR Individual No Retornable     3       1     1    NA    3
## 1259      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1260      1.5 Lts. NR   Familiar No Retornable    NA      NA     2     2   NA
## 1261        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   11
## 1262   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1263        400 ml NR Individual No Retornable     1       1     1     2    1
## 1264       500 ml Ret Individual    Retornable     2       1     2     2    3
## 1265        600 ml NR Individual No Retornable     1       1     3     3    4
## 1266             Lata Individual No Retornable    NA      NA    NA    NA    0
## 1267      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1268     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 1269        600 ml NR Individual No Retornable     1       1     3     1   10
## 1270        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1271        600 ml NR Individual No Retornable     1       1     4     3    4
## 1272     1 Ltro. N.R. Individual No Retornable    19      23    30    32   23
## 1273      1.5 Lts. NR Individual No Retornable    16      19    22    32   32
## 1274        600 ml NR Individual No Retornable    10      10    15    10   18
## 1275     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1276        600 ml NR Individual No Retornable     1       1     1     1    1
## 1277        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1278   250 ml. NR PET Individual No Retornable     1       2     1     1    1
## 1279        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1280     1 Ltro. N.R. Individual No Retornable     2       2     4     4    6
## 1281    12 Oz. NR Pet Individual No Retornable     2       1     2     2    2
## 1282        2 Lts. NR   Familiar No Retornable    11      11    14    11   11
## 1283        600 ml NR Individual No Retornable     1       1     3     3    3
## 1284    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1285      Lata 16 Oz. Individual No Retornable     1       1     2     2    1
## 1286   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 1287     1 Ltro. N.R.   Familiar No Retornable     8       8    15    11   11
## 1288       2 Lts. Ret   Familiar    Retornable     6       3     6     8    3
## 1289      2.5 Lts. NR   Familiar No Retornable    11      11    11    14   18
## 1290    235 ml NR Vid Individual No Retornable     2       1     3     1    1
## 1291 500 ml NR Vidrio Individual No Retornable     6      11    13     8   15
## 1292      1.5 Lts. NR   Familiar No Retornable     4       4     4     2    2
## 1293        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1294    235 ml NR Vid Individual No Retornable     2       1     1     2    3
## 1295 500 ml NR Vidrio Individual No Retornable     6       6     6     4    6
## 1296      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1297     1.250 Lts NR   Familiar No Retornable    18      21    32    26   24
## 1298     1.5 Lts. Ret   Familiar    Retornable    13      10    13    10   13
## 1299     1.750 Lts NR   Familiar No Retornable    27      27    32    25   32
## 1300    12 Oz. NR Pet Individual No Retornable    15      15    18    15   17
## 1301       2 Lts. Ret   Familiar    Retornable     3       3     6     8    3
## 1302      2.5 Lts. NR   Familiar No Retornable    14      28    35    35   35
## 1303 2.5 Lts. Ret Pet   Familiar    Retornable    25      32    42    49   70
## 1304    235 ml NR Vid Individual No Retornable     5       5     5     5    6
## 1305    500 ml NR PET Individual No Retornable     6      11    11    13    6
## 1306 500 ml NR Vidrio Individual No Retornable    34      34    42    30   40
## 1307       500 ml Ret Individual    Retornable    36      32    42    55   57
## 1308             Lata Individual No Retornable     3      NA     3     2    3
## 1309      Lata 235 ml Individual No Retornable     2       2     3     2    2
## 1310     1 Ltro. N.R. Individual No Retornable     2       3     2     4    5
## 1311    500 ml NR PET Individual No Retornable     1       1     2     2    3
## 1312        600 ml NR Individual No Retornable     1       2     2     1    3
## 1313     250 ml Tetra Individual No Retornable     3       2     1     1    1
## 1314    413 ml NR VId Individual No Retornable     4       5     6     5    5
## 1315     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1316     1 Ltro. N.R.   Familiar No Retornable     3       2     3     2    3
## 1317    237 ml NR Pet Individual No Retornable    NA      NA     0    NA    0
## 1318    1 Ltro. Tetra   Familiar No Retornable     1       1     1     2    1
## 1319    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1320     200 ml Tetra Individual No Retornable     1       2     2     2    2
## 1321        600 ml NR Individual No Retornable     1       1     3     2    2
## 1322        600 ml NR Individual No Retornable     2       3     3     2    3
## 1323      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 1324        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1325      1.5 Lts. NR   Familiar No Retornable     4       2     6     4    4
## 1326        400 ml NR Individual No Retornable     1       1     2     1    2
## 1327       500 ml Ret Individual    Retornable     1       1     2     1    2
## 1328        600 ml NR Individual No Retornable     3       1     3     3    3
## 1329        2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 1330        400 ml NR Individual No Retornable     0       1     1     1    1
## 1331       500 ml Ret Individual    Retornable     1       1     2     1    2
## 1332        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1333   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 1334        400 ml NR Individual No Retornable     2       1     2     1    2
## 1335       500 ml Ret Individual    Retornable     1       1     2     1    2
## 1336        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1337        600 ml NR Individual No Retornable     2       3     4     4    4
## 1338        2 Lts. NR   Familiar No Retornable     6       8     6     6    8
## 1339       500 ml Ret Individual    Retornable     2       2     2     2    2
## 1340        600 ml NR Individual No Retornable     3       1     1     1    1
## 1341      1.5 Lts. NR   Familiar No Retornable     2       6     4     2    4
## 1342        2 Lts. NR   Familiar No Retornable    11       6     8    11    8
## 1343   250 ml. NR PET Individual No Retornable     1       1     1     1    2
## 1344        400 ml NR Individual No Retornable     2       2     3     2    2
## 1345       500 ml Ret Individual    Retornable     3       3     6     1    2
## 1346        600 ml NR Individual No Retornable     3       3     6     4    5
## 1347      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1348     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 1349        600 ml NR Individual No Retornable     4       4     6     4    5
## 1350      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1351        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1352     1 Ltro. N.R. Individual No Retornable     4       2     4     8    2
## 1353      1.5 Lts. NR Individual No Retornable    NA      NA     6    NA   NA
## 1354        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1355        600 ml NR Individual No Retornable     1       1     1     1    1
## 1356   250 ml. NR PET Individual No Retornable    NA       1     2     1    2
## 1357     1 Ltro. N.R. Individual No Retornable     4      NA     6     4    2
## 1358    12 Oz. NR Pet Individual No Retornable     2       1     2     2    3
## 1359        2 Lts. NR   Familiar No Retornable     8       3     6     3    6
## 1360      Lata 235 ml Individual No Retornable     0       0     0    NA   NA
## 1361      Lata 450 ml Individual No Retornable     1       1     1    NA   NA
## 1362      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1363   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1364     1 Ltro. N.R.   Familiar No Retornable    13      11    15    13   11
## 1365        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 1366    235 ml NR Vid Individual No Retornable     1       1     2     1    2
## 1367 500 ml NR Vidrio Individual No Retornable     4       8    11     6    6
## 1368      1.5 Lts. NR   Familiar No Retornable     4       6     6     4    4
## 1369        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1370 500 ml NR Vidrio Individual No Retornable     4      NA    NA    NA   NA
## 1371      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 1372      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1373     1.250 Lts NR   Familiar No Retornable    21      29    40    32   26
## 1374      1.5 Lts. NR   Familiar No Retornable    32      13    NA    NA   NA
## 1375     1.5 Lts. Ret   Familiar    Retornable    60      41    63    82   79
## 1376     1.750 Lts NR   Familiar No Retornable    NA      17    42    44   47
## 1377    12 Oz. NR Pet Individual No Retornable     8       5     9     3    8
## 1378        2 Lts. NR   Familiar No Retornable     6       6     6     6    3
## 1379      2.5 Lts. NR   Familiar No Retornable    39      21    39    25   28
## 1380 2.5 Lts. Ret Pet   Familiar    Retornable   123     109   162   148  144
## 1381    235 ml NR Vid Individual No Retornable     6       6     7     9    8
## 1382    500 ml NR PET Individual No Retornable     8      13    11    11   13
## 1383 500 ml NR Vidrio Individual No Retornable    21      17    30    27   32
## 1384       500 ml Ret Individual    Retornable    87      87   114   114  104
## 1385             Lata Individual No Retornable     3       2     3     2    3
## 1386      Lata 16 Oz. Individual No Retornable     2       4    NA     4   NA
## 1387      Lata 235 ml Individual No Retornable     5       6     8     6    6
## 1388     1 Ltro. N.R. Individual No Retornable     2       2     1     3    3
## 1389        600 ml NR Individual No Retornable     1       1     1     1    2
## 1390    413 ml NR VId Individual No Retornable     4       3     7     5   10
## 1391    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1392     1 Ltro. N.R.   Familiar No Retornable     1       1     2     3    1
## 1393    237 ml NR Pet Individual No Retornable     1       1     1     1    1
## 1394     200 ml Tetra Individual No Retornable     2       1     1     2    2
## 1395        600 ml NR Individual No Retornable    NA       1    NA     1    1
## 1396      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1397        2 Lts. NR   Familiar No Retornable     6      NA     3     6    6
## 1398        400 ml NR Individual No Retornable     2       1     0     2    3
## 1399       500 ml Ret Individual    Retornable     1       1     3     1    3
## 1400        600 ml NR Individual No Retornable     1      NA     1    NA    2
## 1401        2 Lts. NR   Familiar No Retornable     3      NA     3     3   NA
## 1402        400 ml NR Individual No Retornable     0       0     1     1    2
## 1403       500 ml Ret Individual    Retornable     1       1     3     1    3
## 1404        600 ml NR Individual No Retornable     1       1    NA     1   NA
## 1405        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1406        400 ml NR Individual No Retornable     1       1     2     1    2
## 1407       500 ml Ret Individual    Retornable     1       1     3     1    3
## 1408        600 ml NR Individual No Retornable    NA       1     1     1   NA
## 1409        600 ml NR Individual No Retornable    NA       1     1     1    1
## 1410        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 1411        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1412       500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 1413        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1414        2 Lts. NR   Familiar No Retornable     3      NA     3     3    6
## 1415        400 ml NR Individual No Retornable     2       1     1     2    2
## 1416       500 ml Ret Individual    Retornable     1       1     3     5    3
## 1417        600 ml NR Individual No Retornable     1       1     1     1    2
## 1418        600 ml NR Individual No Retornable     1       1     3     3    8
## 1419        600 ml NR Individual No Retornable     1       1    NA    NA    1
## 1420      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1421        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 1422     1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 1423      1.5 Lts. NR Individual No Retornable     3      13     3     6    6
## 1424        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1425        600 ml NR Individual No Retornable    NA       3    NA    NA    3
## 1426     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1427      1.5 Lts. NR Individual No Retornable    NA      NA     2    NA   NA
## 1428        600 ml NR Individual No Retornable     1       1     1     1    1
## 1429   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1430        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 1431   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 1432        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1433     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1   NA
## 1434     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA    2
## 1435        2 Lts. NR   Familiar No Retornable     3       3     3     6    3
## 1436     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1437  946 ml NR Tetra   Familiar No Retornable     6       2    NA    50   NA
## 1438    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1439      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1440   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1441     1 Ltro. N.R.   Familiar No Retornable    15       8     8     6    8
## 1442        2 Lts. NR   Familiar No Retornable     6      NA     3     3    6
## 1443    235 ml NR Vid Individual No Retornable     3       3     3     3    6
## 1444 500 ml NR Vidrio Individual No Retornable    15       8    11     6   11
## 1445             Lata Individual No Retornable     0      NA    NA    NA   NA
## 1446      1.5 Lts. NR   Familiar No Retornable    NA       2     2    NA   NA
## 1447        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1448 500 ml NR Vidrio Individual No Retornable     4       2     2     6    4
## 1449       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1450      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1451     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA    NA   NA
## 1452     1.250 Lts NR   Familiar No Retornable    26      37    45    42   32
## 1453      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1454     1.5 Lts. Ret   Familiar    Retornable    41      35    44    32   41
## 1455     1.750 Lts NR   Familiar No Retornable     2       2     2     2    2
## 1456    12 Oz. NR Pet Individual No Retornable     9       3     6     3    5
## 1457       12 Oz. Ret Individual    Retornable     5       6     3     6    2
## 1458        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 1459      2.5 Lts. NR   Familiar No Retornable    39      46    39    25   35
## 1460 2.5 Lts. Ret Pet   Familiar    Retornable   106      92   120   123  134
## 1461    235 ml NR Vid Individual No Retornable     5       7     9     6    7
## 1462   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1463    500 ml NR PET Individual No Retornable     4       8     4     6    4
## 1464 500 ml NR Vidrio Individual No Retornable    21      27    30    34   32
## 1465       500 ml Ret Individual    Retornable    72      74    93    76   93
## 1466      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 1467        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 1468             Lata Individual No Retornable     3      NA     3     2    2
## 1469      Lata 16 Oz. Individual No Retornable     2      NA     2     2    2
## 1470      Lata 235 ml Individual No Retornable     2      NA     1     1    1
## 1471     1 Ltro. N.R. Individual No Retornable     2       2     3     1    3
## 1472        600 ml NR Individual No Retornable     1       1     1     1    3
## 1473     250 ml Tetra Individual No Retornable     2       0     0     0    2
## 1474    413 ml NR VId Individual No Retornable     2       0     1     3    3
## 1475      Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1476     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA    3
## 1477    237 ml NR Pet Individual No Retornable     1      NA    NA    NA   NA
## 1478    1 Ltro. Tetra   Familiar No Retornable     3       2     4     1    2
## 1479    1 Ltro. Tetra   Familiar No Retornable     3       2     4     1    2
## 1480    1 Ltro. Tetra   Familiar No Retornable     2       2     3     1    1
## 1481    1 Ltro. Tetra   Familiar No Retornable     3      NA     2     1    1
## 1482     200 ml Tetra Individual No Retornable     2       0     1     1    0
## 1483        600 ml NR Individual No Retornable     1       3     1     1    1
## 1484        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1485        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1486      1.5 Lts. NR   Familiar No Retornable     2       4     2     2    2
## 1487        2 Lts. NR   Familiar No Retornable     8       6     3     6   NA
## 1488   250 ml. NR PET Individual No Retornable     1       1    NA     1    1
## 1489        400 ml NR Individual No Retornable     1       1     0     1   NA
## 1490       500 ml Ret Individual    Retornable     1      NA     2     2    2
## 1491        600 ml NR Individual No Retornable     4       3     3     1    2
## 1492             Lata Individual No Retornable     0      NA     0    NA   NA
## 1493      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 1494      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 1495        2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 1496       500 ml Ret Individual    Retornable     1       2    NA    NA   NA
## 1497             Lata Individual No Retornable     0      NA     0    NA   NA
## 1498      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 1499   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1500       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1501        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1502             Lata Individual No Retornable     0      NA     0    NA   NA
## 1503        600 ml NR Individual No Retornable     1       3     1     3    1
## 1504        2 Lts. NR   Familiar No Retornable     6      NA     3    NA   NA
## 1505       500 ml Ret Individual    Retornable     4       2     4     6    4
## 1506      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 1507      1.5 Lts. NR   Familiar No Retornable     2       2     4     4   NA
## 1508        2 Lts. NR   Familiar No Retornable    NA       6    NA     6    3
## 1509   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 1510        400 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1511       500 ml Ret Individual    Retornable     3      NA     2     2    2
## 1512        600 ml NR Individual No Retornable     3       3     3     1    2
## 1513             Lata Individual No Retornable     0      NA     0    NA   NA
## 1514      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 1515     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 1516    413 ml NR VId Individual No Retornable     1      NA    NA    NA   NA
## 1517        600 ml NR Individual No Retornable     2       1     3     1    4
## 1518        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 1519        600 ml NR Individual No Retornable    NA       1    NA     3    3
## 1520     1 Ltro. N.R. Individual No Retornable     4       2     2     8    2
## 1521      1.5 Lts. NR Individual No Retornable     6       3     3     3    3
## 1522        600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 1523     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1524        600 ml NR Individual No Retornable     1       1     1     1    1
## 1525   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1526        600 ml NR Individual No Retornable     3       2     2     3    4
## 1527   250 ml. NR PET Individual No Retornable    NA       2    NA    NA    1
## 1528     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 1529    12 Oz. NR Pet Individual No Retornable     2       1    NA    NA    1
## 1530        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 1531     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1532      Lata 16 Oz. Individual No Retornable     1       0    NA     0    1
## 1533   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1534     1 Ltro. N.R.   Familiar No Retornable     8       6    11     6   13
## 1535        2 Lts. NR   Familiar No Retornable     3       8     8     8    8
## 1536      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 1537    235 ml NR Vid Individual No Retornable     5       2     3     4    5
## 1538 500 ml NR Vidrio Individual No Retornable    15      11    17    13   15
## 1539             Lata Individual No Retornable     1       1     1     2    2
## 1540      1.5 Lts. NR   Familiar No Retornable     4       2     4    NA    6
## 1541        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1542    235 ml NR Vid Individual No Retornable     2       2     3     1    3
## 1543 500 ml NR Vidrio Individual No Retornable    11       6     8     8   13
## 1544       500 ml Ret Individual    Retornable     2       2    NA    NA   NA
## 1545      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1546     1.250 Lts NR   Familiar No Retornable    16      11    16    16   21
## 1547      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1548     1.5 Lts. Ret   Familiar    Retornable     3       3    13     3    6
## 1549     1.750 Lts NR   Familiar No Retornable     7       7    10    10   12
## 1550    12 Oz. NR Pet Individual No Retornable     8       8     8     6    8
## 1551      2.5 Lts. NR   Familiar No Retornable    14      25    25    18   28
## 1552 2.5 Lts. Ret Pet   Familiar    Retornable     7      11    11    11    7
## 1553    235 ml NR Vid Individual No Retornable    13      16    13    14   15
## 1554    500 ml NR PET Individual No Retornable     8       8     6     4    8
## 1555 500 ml NR Vidrio Individual No Retornable    51      53    44    38   63
## 1556       500 ml Ret Individual    Retornable    66      63    80    87  110
## 1557        600 ml NR Individual No Retornable     5       8     5     8    8
## 1558             Lata Individual No Retornable     3       2     3     3    5
## 1559      Lata 16 Oz. Individual No Retornable     4       2     2     4    4
## 1560      Lata 235 ml Individual No Retornable     3       4     4     4    5
## 1561     1 Ltro. N.R. Individual No Retornable     2       1     1     1    2
## 1562        600 ml NR Individual No Retornable     1       1     1     1    3
## 1563    237 ml NR Pet Individual No Retornable    NA       1    NA     0    1
## 1564     250 ml Tetra Individual No Retornable     2       0     0     0   NA
## 1565   250 ML. NR VID Individual No Retornable     2      NA    NA    NA   NA
## 1566    413 ml NR VId Individual No Retornable     5       3     4     3    7
## 1567    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1568     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     2    2
## 1569    237 ml NR Pet Individual No Retornable     1       0    NA     1    1
## 1570    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1571    1 Ltro. Tetra   Familiar No Retornable     1       1     1    NA    1
## 1572     200 ml Tetra Individual No Retornable     0       0     0     0    1
## 1573        600 ml NR Individual No Retornable     1       2     3     4    5
## 1574        600 ml NR Individual No Retornable     3       2     1     3    3
## 1575        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1576      1.5 Lts. NR   Familiar No Retornable    NA       2     2    NA    2
## 1577        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1578   250 ml. NR PET Individual No Retornable     1       1     1     1   NA
## 1579        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1580       500 ml Ret Individual    Retornable     2       5     1     5    3
## 1581        600 ml NR Individual No Retornable     2       3     4     3    4
## 1582      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 1583        2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 1584       500 ml Ret Individual    Retornable     2       1     1     1    3
## 1585        600 ml NR Individual No Retornable     1       1     1     1    3
## 1586      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 1587      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1588        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1589        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1590   250 ml. NR PET Individual No Retornable    NA      NA     1     1   NA
## 1591       500 ml Ret Individual    Retornable     2       1     1     1    3
## 1592        600 ml NR Individual No Retornable     2       1     1     2    2
## 1593        600 ml NR Individual No Retornable     1       2     4     2    3
## 1594        2 Lts. NR   Familiar No Retornable     3      NA     3    NA   NA
## 1595        600 ml NR Individual No Retornable     1      NA    NA     1   NA
## 1596      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 1597      1.5 Lts. NR   Familiar No Retornable     2      NA    NA     2   NA
## 1598        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 1599   250 ml. NR PET Individual No Retornable     1      NA    NA     1    1
## 1600        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1601       500 ml Ret Individual    Retornable     4       3     1     1    3
## 1602        600 ml NR Individual No Retornable     4       3     3     3    4
## 1603      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 1604        600 ml NR Individual No Retornable     1       2     4     4    7
## 1605       12 Oz. Ret Individual    Retornable     2      NA    NA     2   NA
## 1606        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1607        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1608     1 Ltro. N.R. Individual No Retornable    NA      NA     2     2   NA
## 1609      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1610        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1611        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1612   250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 1613     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 1614    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1615        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 1616 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1617      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1618     1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1619     1.5 Lts. Ret   Familiar    Retornable     6       6     3     6    6
## 1620 2.5 Lts. Ret Pet   Familiar    Retornable    32      14    35    32   28
## 1621    235 ml NR Vid Individual No Retornable     1       1     2     2    2
## 1622   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1623 500 ml NR Vidrio Individual No Retornable     2      NA    NA    NA   NA
## 1624       500 ml Ret Individual    Retornable     6       4     6     8   13
## 1625      6.5 Oz. Ret Individual    Retornable    NA      NA    NA     1   NA
## 1626        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1627    413 ml NR VId Individual No Retornable     2      NA     3    NA   NA
## 1628     200 ml Tetra Individual No Retornable     0      NA    NA     0    1
## 1629       500 ml Ret Individual    Retornable     6       3     2    NA    1
## 1630       500 ml Ret Individual    Retornable    NA       1    NA    NA    1
## 1631       500 ml Ret Individual    Retornable    NA       1    NA    NA    1
## 1632        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 1633       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1634       500 ml Ret Individual    Retornable    NA       1     2    NA    1
## 1635   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1636        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1637        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1638     1 Ltro. N.R. Individual No Retornable    13       4     6    13    6
## 1639      1.5 Lts. NR Individual No Retornable    13      22    19    22   22
## 1640        5 Lts. NR   Familiar No Retornable     4       4    14     7    4
## 1641        600 ml NR Individual No Retornable    NA       3    NA     3    5
## 1642     1 Ltro. N.R. Individual No Retornable     1       1     1    NA    1
## 1643        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1644        473 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1645   250 ml. NR PET Individual No Retornable     1      NA    NA     1   NA
## 1646   250 ml. NR PET Individual No Retornable     1       3     3     3    2
## 1647        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1648     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 1649     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1650    12 Oz. NR Pet Individual No Retornable    NA      NA     1    NA   NA
## 1651        2 Lts. NR   Familiar No Retornable     3       3     3     6    3
## 1652     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1653      Lata 16 Oz. Individual No Retornable     1       0     2     2    2
## 1654   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1655     1 Ltro. N.R.   Familiar No Retornable     6       4     6    11    6
## 1656       12 Oz. Ret Individual    Retornable     3       2     2    NA   NA
## 1657       2 Lts. Ret   Familiar    Retornable     8       3     6     6    3
## 1658    235 ml NR Vid Individual No Retornable     1       1     1    NA    1
## 1659 500 ml NR Vidrio Individual No Retornable     6       4     4     2    4
## 1660    235 ml NR Vid Individual No Retornable     2       3     2     3    1
## 1661 500 ml NR Vidrio Individual No Retornable     2       2     2    NA    2
## 1662       500 ml Ret Individual    Retornable     4       2     4     2    2
## 1663      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1664     1.250 Lts NR   Familiar No Retornable    13      13    13    16   13
## 1665      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1666     1.5 Lts. Ret   Familiar    Retornable    25      16    22    19   16
## 1667     1.750 Lts NR   Familiar No Retornable    12      15     2    12   10
## 1668    12 Oz. NR Pet Individual No Retornable     3       3     3     2    2
## 1669       12 Oz. Ret Individual    Retornable     2       2     2    NA    2
## 1670      2.5 Lts. NR   Familiar No Retornable    56       4     4     4   21
## 1671 2.5 Lts. Ret Pet   Familiar    Retornable     7      60    11    35   28
## 1672    235 ml NR Vid Individual No Retornable     5       6     6     6    3
## 1673   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1674    500 ml NR PET Individual No Retornable     2       4     2     2    4
## 1675 500 ml NR Vidrio Individual No Retornable    21      17    19    23   21
## 1676       500 ml Ret Individual    Retornable    68      15    44    40   49
## 1677      6.5 Oz. Ret Individual    Retornable     2      NA     1    NA    1
## 1678             Lata Individual No Retornable    NA      NA    NA     2    2
## 1679      Lata 16 Oz. Individual No Retornable    NA       2    NA    NA    2
## 1680      Lata 235 ml Individual No Retornable    NA       1    NA    NA    1
## 1681     1 Ltro. N.R. Individual No Retornable     1       1     1    NA    1
## 1682        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1683     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1684    413 ml NR VId Individual No Retornable     3       1     3     0    1
## 1685    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1686     1 Ltro. N.R.   Familiar No Retornable     4       3     2     3    2
## 1687    237 ml NR Pet Individual No Retornable     0       0     0     0    1
## 1688    1 Ltro. Tetra   Familiar No Retornable    NA       1     1    NA   NA
## 1689    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA    1
## 1690     200 ml Tetra Individual No Retornable     2       2     1     2    1
## 1691        600 ml NR Individual No Retornable     1       2     2     1    1
## 1692        600 ml NR Individual No Retornable     1      NA     1     2    2
## 1693     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA    2
## 1694      1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 1695        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 1696      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1697   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 1698        400 ml NR Individual No Retornable     0       1     0     1    0
## 1699       500 ml Ret Individual    Retornable     4      NA     2     4   NA
## 1700        600 ml NR Individual No Retornable     1       2     3     1    2
## 1701        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1702       500 ml Ret Individual    Retornable    NA       2    NA    NA    2
## 1703        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1704      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1705        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1706       500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 1707        600 ml NR Individual No Retornable    NA       1     1     1    1
## 1708        600 ml NR Individual No Retornable     2       1     1     2    2
## 1709        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 1710        400 ml NR Individual No Retornable    NA       0     0     1    0
## 1711       500 ml Ret Individual    Retornable    NA       2    NA     4    2
## 1712        600 ml NR Individual No Retornable    NA      NA     1    NA    3
## 1713     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 1714      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    2
## 1715        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    6
## 1716      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1717   250 ml. NR PET Individual No Retornable     1      NA     1    NA    1
## 1718        400 ml NR Individual No Retornable     1       0     0     0    1
## 1719       500 ml Ret Individual    Retornable     2      NA     2     2   NA
## 1720        600 ml NR Individual No Retornable     3       1     2     2    1
## 1721        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1722        600 ml NR Individual No Retornable    NA       1    NA     3    3
## 1723     1 Ltro. N.R. Individual No Retornable     2       5     2    15    2
## 1724      1.5 Lts. NR Individual No Retornable     3       5     3    44    3
## 1725        5 Lts. NR   Familiar No Retornable    NA      NA     7    NA    7
## 1726        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 1727     1 Ltro. N.R. Individual No Retornable     2       1     1     1    1
## 1728        600 ml NR Individual No Retornable     1       1     1     1    1
## 1729        600 ml NR Individual No Retornable    NA      NA     3    NA    1
## 1730   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1731        400 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1732     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1   NA
## 1733     1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA    2
## 1734    12 Oz. NR Pet Individual No Retornable    NA      NA     2    NA   NA
## 1735        2 Lts. NR   Familiar No Retornable     3       3     3     3    6
## 1736     200 ml Tetra Individual No Retornable     0       1    NA    NA    0
## 1737  946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1738  946 ml NR Tetra   Familiar No Retornable    NA       2    NA    NA   NA
## 1739      Lata 16 Oz. Individual No Retornable     0      NA    NA    NA    1
## 1740   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1741     1 Ltro. N.R.   Familiar No Retornable     2       2     2     2    2
## 1742    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 1743 500 ml NR Vidrio Individual No Retornable    13      11    13    11   11
## 1744      1.5 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 1745        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    1
## 1746    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA    1
## 1747 500 ml NR Vidrio Individual No Retornable     2       2     1     2    5
## 1748      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1749     1.250 Lts NR   Familiar No Retornable     8      21    26    16   24
## 1750     1.5 Lts. Ret   Familiar    Retornable    13      10    13    13   22
## 1751     1.750 Lts NR   Familiar No Retornable    17      17    22    15   25
## 1752    12 Oz. NR Pet Individual No Retornable     6       6     6     8    9
## 1753      2.5 Lts. NR   Familiar No Retornable    46      53    70    60   74
## 1754 2.5 Lts. Ret Pet   Familiar    Retornable    49      81    95   102  137
## 1755    235 ml NR Vid Individual No Retornable     3       3     5     4    3
## 1756 500 ml NR Vidrio Individual No Retornable    40      36    42    21   42
## 1757       500 ml Ret Individual    Retornable    91     104   137   110  123
## 1758        600 ml NR Individual No Retornable    NA      NA    NA    20   NA
## 1759             Lata Individual No Retornable     1       0    NA     2    3
## 1760      Lata 16 Oz. Individual No Retornable     2       2    NA     2   NA
## 1761     1 Ltro. N.R. Individual No Retornable     1       3     1     1    1
## 1762    500 ml NR PET Individual No Retornable    NA       1    NA    NA    1
## 1763        600 ml NR Individual No Retornable     1       3     1     1    3
## 1764     250 ml Tetra Individual No Retornable     1       0     0     0    0
## 1765   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 1766    413 ml NR VId Individual No Retornable     2       0     2     3    2
## 1767     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1768     1 Ltro. N.R.   Familiar No Retornable     3      NA     1     1    2
## 1769    237 ml NR Pet Individual No Retornable     0      NA    NA     0    1
## 1770    1 Ltro. Tetra   Familiar No Retornable    NA       1     1     1   NA
## 1771    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1772    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1773     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1774        600 ml NR Individual No Retornable     1       1     1     1    2
## 1775        600 ml NR Individual No Retornable     1      NA     1     2    3
## 1776      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1777        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1778      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 1779        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 1780   250 ml. NR PET Individual No Retornable     1       1     1    NA    1
## 1781        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 1782       500 ml Ret Individual    Retornable     1       3     1     1    2
## 1783        600 ml NR Individual No Retornable     4       4     5     3    4
## 1784        2 Lts. NR   Familiar No Retornable     1       1     1     1   NA
## 1785       500 ml Ret Individual    Retornable     1       1     1     1    2
## 1786        600 ml NR Individual No Retornable    NA      NA     2     1   NA
## 1787      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1788        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1789   250 ml. NR PET Individual No Retornable    NA      NA     1    NA    1
## 1790       500 ml Ret Individual    Retornable     1       1     1     1    2
## 1791        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1792        600 ml NR Individual No Retornable     2       1     1     4    1
## 1793        600 ml NR Individual No Retornable     3       2     3     3    1
## 1794      1.5 Lts. NR   Familiar No Retornable     2       2    NA     2    2
## 1795        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1796   250 ml. NR PET Individual No Retornable     1      NA     1    NA    1
## 1797        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1798       500 ml Ret Individual    Retornable     1       3     1     1    2
## 1799        600 ml NR Individual No Retornable     4       2     3     2    3
## 1800     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 1801        600 ml NR Individual No Retornable     1       1     1     1    1
## 1802        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1803        600 ml NR Individual No Retornable    NA       3     3     1    4
## 1804     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     8   NA
## 1805      1.5 Lts. NR Individual No Retornable     6      NA     3    NA    3
## 1806        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 1807     1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 1808   250 ml. NR PET Individual No Retornable    NA       1     1    NA    1
## 1809        600 ml NR Individual No Retornable     3       3     1     3    3
## 1810   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1811        2 Lts. NR   Familiar No Retornable    11      11    17    11   11
## 1812     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 1813  946 ml NR Tetra   Familiar No Retornable     4       2    NA    NA   NA
## 1814    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1815      Lata 16 Oz. Individual No Retornable     1       1     1     0    0
## 1816   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 1817     1 Ltro. N.R.   Familiar No Retornable    11       6     8    13    8
## 1818        2 Lts. NR   Familiar No Retornable     8       6     6    11    8
## 1819    235 ml NR Vid Individual No Retornable     1       1     1     2    2
## 1820 500 ml NR Vidrio Individual No Retornable     6       6    11    11    8
## 1821      1.5 Lts. NR   Familiar No Retornable     4       6     4    NA   NA
## 1822        2 Lts. NR   Familiar No Retornable    NA      NA    NA    14   11
## 1823    235 ml NR Vid Individual No Retornable     1      NA     1    NA    1
## 1824 500 ml NR Vidrio Individual No Retornable     4       4     4     4    4
## 1825      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 1826     1.250 Lts NR   Familiar No Retornable    24      18    26    26   32
## 1827     1.5 Lts. Ret   Familiar    Retornable    19      25    22    35   25
## 1828     1.750 Lts NR   Familiar No Retornable    25      37    37    42   47
## 1829    12 Oz. NR Pet Individual No Retornable     3       5     6     3    6
## 1830      2.5 Lts. NR   Familiar No Retornable    21      53    39    56   74
## 1831 2.5 Lts. Ret Pet   Familiar    Retornable    99     102    81   123  120
## 1832    235 ml NR Vid Individual No Retornable     6       4     6     8    7
## 1833    500 ml NR PET Individual No Retornable    13      11    13    13   21
## 1834 500 ml NR Vidrio Individual No Retornable    19      13    19    19   25
## 1835       500 ml Ret Individual    Retornable    42      32    51    53   57
## 1836             Lata Individual No Retornable     2       3     3     5    5
## 1837      Lata 235 ml Individual No Retornable     4       6     3     3    5
## 1838     1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    4
## 1839        600 ml NR Individual No Retornable    NA      NA     1     1    3
## 1840     250 ml Tetra Individual No Retornable     2       2     2    NA   NA
## 1841    413 ml NR VId Individual No Retornable     7      11    16    13   16
## 1842     1 Ltro. N.R.   Familiar No Retornable     5       2     4     3    4
## 1843    237 ml NR Pet Individual No Retornable     0       1     0     1   NA
## 1844    1 Ltro. Tetra   Familiar No Retornable     1       2     2     5   NA
## 1845    1 Ltro. Tetra   Familiar No Retornable    NA       2     1     2    2
## 1846    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1847     200 ml Tetra Individual No Retornable     3       2     3     2    2
## 1848   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 1849      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    2
## 1850        600 ml NR Individual No Retornable     1       1     3     2    5
## 1851        600 ml NR Individual No Retornable     1       3     1     2    4
## 1852      1.5 Lts. NR   Familiar No Retornable     2       2     4    NA   NA
## 1853        600 ml NR Individual No Retornable    NA       3     1     1   NA
## 1854        2 Lts. NR   Familiar No Retornable     6       6    NA     6    6
## 1855   250 ml. NR PET Individual No Retornable     1       1    NA     1    1
## 1856        600 ml NR Individual No Retornable     1       3     2     3    4
## 1857             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1858        2 Lts. NR   Familiar No Retornable    NA       1    NA     3   NA
## 1859             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1860        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 1861   250 ml. NR PET Individual No Retornable     1      NA     1     1    1
## 1862             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1863        2 Lts. NR   Familiar No Retornable    NA       6     8     3   14
## 1864   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 1865        600 ml NR Individual No Retornable     3      NA     3    NA    5
## 1866        2 Lts. NR   Familiar No Retornable     6      14    14    11   17
## 1867   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 1868        600 ml NR Individual No Retornable     3       4     7     4    6
## 1869             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1870    413 ml NR VId Individual No Retornable     3       3     1    NA   NA
## 1871        600 ml NR Individual No Retornable     7       9     8    10    8
## 1872        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1873 500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 1874        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1875      Lata 235 ml Individual No Retornable    NA       1    NA    NA    0
## 1876    12 Oz. NR Pet Individual No Retornable     3      NA     2     5   NA
## 1877      2.5 Lts. NR   Familiar No Retornable    11      11    18     7   14
## 1878    235 ml NR Vid Individual No Retornable     1       1    NA    NA    2
## 1879 500 ml NR Vidrio Individual No Retornable     2       4     2    NA    2
## 1880       500 ml Ret Individual    Retornable     6      11    13    15    4
## 1881        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1882     1 Ltro. N.R. Individual No Retornable     2       3    11    11    2
## 1883      1.5 Lts. NR Individual No Retornable     6       5     6     3    3
## 1884        600 ml NR Individual No Retornable     3      NA    NA    NA    5
## 1885     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1886        600 ml NR Individual No Retornable     1       1     1     1    1
## 1887        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1888     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 1889        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 1890     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1891  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1892  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1893      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1894   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1895     1 Ltro. N.R.   Familiar No Retornable    13       6    11     8   11
## 1896        2 Lts. NR   Familiar No Retornable     8      NA     6     3    8
## 1897    235 ml NR Vid Individual No Retornable     5       3     4     4    3
## 1898 500 ml NR Vidrio Individual No Retornable    17      11    13    11   19
## 1899        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1900        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1901    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA    1
## 1902 500 ml NR Vidrio Individual No Retornable     1       1     1     1    1
## 1903      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 1904     1.250 Lts NR   Familiar No Retornable    16      16    16    13   18
## 1905     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1906     1.750 Lts NR   Familiar No Retornable     2       2     2     2    2
## 1907    12 Oz. NR Pet Individual No Retornable    11       6     6     5    5
## 1908       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 1909        2 Lts. NR   Familiar No Retornable    11       3     3     6   23
## 1910      2.5 Lts. NR   Familiar No Retornable     4       4     4     4    4
## 1911 2.5 Lts. Ret Pet   Familiar    Retornable    70       4    21    25   18
## 1912    235 ml NR Vid Individual No Retornable     4       3     4     4    5
## 1913 500 ml NR Vidrio Individual No Retornable    27      19    21     4   17
## 1914       500 ml Ret Individual    Retornable    55      44    44    44   66
## 1915        600 ml NR Individual No Retornable    NA      NA    NA    13    8
## 1916      Lata 235 ml Individual No Retornable    NA      NA    NA     2   NA
## 1917     1 Ltro. N.R. Individual No Retornable     1       2     1     1    1
## 1918        600 ml NR Individual No Retornable     1       1     1     1    1
## 1919     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 1920    413 ml NR VId Individual No Retornable     0       0     0     0    4
## 1921     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1922    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA    0
## 1923    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1924    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1   NA
## 1925    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1     1    1
## 1926    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1927     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1928        600 ml NR Individual No Retornable     1      NA     1     1    1
## 1929      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1930        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1931      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 1932   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 1933        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 1934       500 ml Ret Individual    Retornable     1       2     1     2    5
## 1935        600 ml NR Individual No Retornable     1       1     3     1    1
## 1936        2 Lts. NR   Familiar No Retornable     1       1     1     1    1
## 1937       500 ml Ret Individual    Retornable     1      NA     1    NA    1
## 1938        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1939        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1940       500 ml Ret Individual    Retornable     1      NA     1    NA    1
## 1941        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1942        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1943      1.5 Lts. NR   Familiar No Retornable     2       2    NA     2    2
## 1944        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1945       500 ml Ret Individual    Retornable     1       2     1     2    1
## 1946        600 ml NR Individual No Retornable     1       1     3     1    1
## 1947        600 ml NR Individual No Retornable     1       1     1     1    3
## 1948        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1949     1 Ltro. N.R. Individual No Retornable     2       5    21     2    2
## 1950      1.5 Lts. NR Individual No Retornable     3       5    51     3    3
## 1951        600 ml NR Individual No Retornable    NA       3     3    NA   NA
## 1952     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1953        600 ml NR Individual No Retornable     2       1     1     1    1
## 1954        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1955   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 1956        400 ml NR Individual No Retornable    NA      NA     1     0   NA
## 1957     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 1958        2 Lts. NR   Familiar No Retornable     3       3     3     3    6
## 1959     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1960  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1961  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1962      Lata 16 Oz. Individual No Retornable    NA       0    NA     0   NA
## 1963   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1964     1 Ltro. N.R.   Familiar No Retornable     8       8    13     6   11
## 1965        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1966    235 ml NR Vid Individual No Retornable     1       2     1     2    1
## 1967 500 ml NR Vidrio Individual No Retornable     8       6     6     8    6
## 1968        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1969        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1970 500 ml NR Vidrio Individual No Retornable     1       1     1     4    2
## 1971      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 1972     1.250 Lts NR   Familiar No Retornable    13       5    16     8   13
## 1973     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1974     1.750 Lts NR   Familiar No Retornable     2       2     2     2    2
## 1975        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 1976      2.5 Lts. NR   Familiar No Retornable     7      11    14    14   11
## 1977 2.5 Lts. Ret Pet   Familiar    Retornable   102      28    56    63   88
## 1978    235 ml NR Vid Individual No Retornable     5       5     5     4    7
## 1979   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1980    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1981 500 ml NR Vidrio Individual No Retornable    13      11    15     4   15
## 1982       500 ml Ret Individual    Retornable    55      46    59    72   89
## 1983        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 1984             Lata Individual No Retornable     3       3     2     1    2
## 1985      Lata 235 ml Individual No Retornable    NA      NA     1     2   NA
## 1986     1 Ltro. N.R. Individual No Retornable     1       3     1     4    2
## 1987    500 ml NR PET Individual No Retornable    NA       1     1     1    1
## 1988        600 ml NR Individual No Retornable     1       3     2     3    1
## 1989     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 1990    413 ml NR VId Individual No Retornable     1       1     5     2    2
## 1991     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 1992     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1993    1 Ltro. Tetra   Familiar No Retornable     1      NA     2     1    2
## 1994    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1995    1 Ltro. Tetra   Familiar No Retornable     2       3     4     3    2
## 1996    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 1997     200 ml Tetra Individual No Retornable     3       3     2     1    2
## 1998   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 1999        600 ml NR Individual No Retornable     1      NA     1     1    1
## 2000        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 2001      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA    2
## 2002        2 Lts. NR   Familiar No Retornable     1       3     4     1    1
## 2003   250 ml. NR PET Individual No Retornable     2       1     1    NA   NA
## 2004       500 ml Ret Individual    Retornable     1       1     1     1    1
## 2005        600 ml NR Individual No Retornable     2       1     2     1    3
## 2006      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2007        2 Lts. NR   Familiar No Retornable     4      NA     2     1    1
## 2008       500 ml Ret Individual    Retornable     1       1     1     1    1
## 2009        600 ml NR Individual No Retornable     1      NA     2    NA    1
## 2010      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2011        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2012       500 ml Ret Individual    Retornable     1       1     1     1    1
## 2013        600 ml NR Individual No Retornable     2      NA     1     1    1
## 2014        600 ml NR Individual No Retornable    NA      NA     1     1    2
## 2015      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2016        2 Lts. NR   Familiar No Retornable     1      NA     1     1    1
## 2017   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 2018        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 2019      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2020      1.5 Lts. NR   Familiar No Retornable    NA       2     2     2   NA
## 2021        2 Lts. NR   Familiar No Retornable     1       3     6     4    1
## 2022   250 ml. NR PET Individual No Retornable     1       1     1    NA   NA
## 2023        400 ml NR Individual No Retornable    NA      NA     0     0    0
## 2024       500 ml Ret Individual    Retornable     1       1     1     1    1
## 2025        600 ml NR Individual No Retornable     3       1     3     1    2
## 2026      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2027    413 ml NR VId Individual No Retornable    NA      NA     1    NA   NA
## 2028        600 ml NR Individual No Retornable     1       1     1     1    3
## 2029        600 ml NR Individual No Retornable     3       4     3     5    4
## 2030     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA    2
## 2031      1.5 Lts. NR Individual No Retornable     3       3    NA    NA    3
## 2032        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2033   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2034        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 2035  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2036  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2037      Lata 16 Oz. Individual No Retornable     1       1    NA     0   NA
## 2038     1 Ltro. N.R.   Familiar No Retornable     6       2     4     2    6
## 2039        2 Lts. NR   Familiar No Retornable    14       8     8     6   14
## 2040      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2041    235 ml NR Vid Individual No Retornable     1       2     1     1    2
## 2042 500 ml NR Vidrio Individual No Retornable     6       6     6     6    6
## 2043             Lata Individual No Retornable     1       2     2     1    2
## 2044        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2045    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 2046 500 ml NR Vidrio Individual No Retornable     2       2     4     4    2
## 2047             Lata Individual No Retornable     1       0     1     0    1
## 2048     1.250 Lts NR   Familiar No Retornable    16      21    26    16   26
## 2049      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2050     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2051     1.750 Lts NR   Familiar No Retornable    20      20    25    20   30
## 2052    12 Oz. NR Pet Individual No Retornable     5       5     6     8    6
## 2053      2.5 Lts. NR   Familiar No Retornable    49      32    42    39   56
## 2054 2.5 Lts. Ret Pet   Familiar    Retornable    39      28    39    39   42
## 2055    235 ml NR Vid Individual No Retornable     9      10    10    11   12
## 2056 500 ml NR Vidrio Individual No Retornable    23      23    27    13   34
## 2057       500 ml Ret Individual    Retornable    15      19    27    23   32
## 2058        600 ml NR Individual No Retornable    NA      NA    NA    13   NA
## 2059             Lata Individual No Retornable     3       1     3     2    3
## 2060      Lata 235 ml Individual No Retornable     2       2     1     3    2
## 2061        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2062     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2063    413 ml NR VId Individual No Retornable    NA      NA     1    NA   NA
## 2064     1 Ltro. N.R.   Familiar No Retornable     1       2     2     1    1
## 2065    1 Ltro. Tetra   Familiar No Retornable     3       2     2     1    1
## 2066     200 ml Tetra Individual No Retornable     1       0     1     1    0
## 2067        600 ml NR Individual No Retornable    NA      NA    NA     1    2
## 2068        600 ml NR Individual No Retornable     1       1     2     2    1
## 2069        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2070   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 2071        600 ml NR Individual No Retornable     1       1     3     1    1
## 2072   250 ml. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2073        600 ml NR Individual No Retornable     1       1     1     1    1
## 2074        2 Lts. NR   Familiar No Retornable     3      NA     3     3   NA
## 2075        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2076        2 Lts. NR   Familiar No Retornable     3       3     3     6    3
## 2077   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2078        600 ml NR Individual No Retornable     2       1     3     3    2
## 2079        600 ml NR Individual No Retornable     3       3     3     5    6
## 2080        600 ml NR Individual No Retornable    NA      NA    NA     1    4
## 2081     1 Ltro. N.R. Individual No Retornable     4       2    17    NA    2
## 2082      1.5 Lts. NR Individual No Retornable     6       3    48    NA    3
## 2083        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2084        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2085     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2086      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2087     1 Ltro. N.R.   Familiar No Retornable    13       2     8    11    8
## 2088    235 ml NR Vid Individual No Retornable     2       3     2     3    2
## 2089 500 ml NR Vidrio Individual No Retornable     6       6     8    11    6
## 2090        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 2091 500 ml NR Vidrio Individual No Retornable    NA      NA     2     3    2
## 2092      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 2093     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA    NA   NA
## 2094     1.250 Lts NR   Familiar No Retornable    18      18    24    32   34
## 2095    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2096      2.5 Lts. NR   Familiar No Retornable    46      42    NA    49   53
## 2097 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA     4   NA
## 2098    235 ml NR Vid Individual No Retornable     4       5     3     5    2
## 2099   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2100 500 ml NR Vidrio Individual No Retornable    17      15    19    13   23
## 2101       500 ml Ret Individual    Retornable    23      32    25    34   63
## 2102        600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 2103             Lata Individual No Retornable     2       2     2     0   NA
## 2104      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 2105    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 2106        600 ml NR Individual No Retornable    NA      NA    NA     3    5
## 2107     250 ml Tetra Individual No Retornable     2       2     2    NA   NA
## 2108    413 ml NR VId Individual No Retornable     0      NA    NA     3    9
## 2109     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    1
## 2110    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2111    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2112     200 ml Tetra Individual No Retornable     0       0     0    NA    0
## 2113        600 ml NR Individual No Retornable     2       1     1     4    2
## 2114      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 2115        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2116        2 Lts. NR   Familiar No Retornable     3       6     6     8    3
## 2117        600 ml NR Individual No Retornable     2       2     2     4    3
## 2118        2 Lts. NR   Familiar No Retornable     1       1     3     6    8
## 2119        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2120      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2121        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 2122        600 ml NR Individual No Retornable     1       1     1     1    1
## 2123      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2124        2 Lts. NR   Familiar No Retornable     3       3     6     3    8
## 2125        600 ml NR Individual No Retornable    NA      NA     1     3   NA
## 2126        2 Lts. NR   Familiar No Retornable     6       6     6    11    6
## 2127        600 ml NR Individual No Retornable     3       3     4     4    7
## 2128        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2129      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 2130        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 2131     1 Ltro. N.R. Individual No Retornable     2      59     2    NA    2
## 2132      1.5 Lts. NR Individual No Retornable     6       3     3    NA    3
## 2133        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2134     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA    1
## 2135        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 2136        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2137   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2138        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2139     1 Ltro. N.R.   Familiar No Retornable    NA       1     1    NA    1
## 2140        2 Lts. NR   Familiar No Retornable     6       3     3    NA    3
## 2141  946 ml NR Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2142  946 ml NR Tetra   Familiar No Retornable     1       3     1    NA   NA
## 2143      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2144   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2145     1 Ltro. N.R.   Familiar No Retornable    34      32    42    30   36
## 2146        2 Lts. NR   Familiar No Retornable    31      28    23    28   28
## 2147    235 ml NR Vid Individual No Retornable     2       1     3     3    3
## 2148        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2149 500 ml NR Vidrio Individual No Retornable    11      17    17    19   23
## 2150        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2151             Lata Individual No Retornable     2       2     2     3    2
## 2152      1.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 2153        2 Lts. NR   Familiar No Retornable    NA      NA    NA    28   18
## 2154      2.5 Lts. NR   Familiar No Retornable    25       4    18    NA   NA
## 2155    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 2156 500 ml NR Vidrio Individual No Retornable    11       8     6     8   11
## 2157      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2158     1.250 Lts NR   Familiar No Retornable    82      82    63    79   98
## 2159     1.5 Lts. Ret   Familiar    Retornable    NA       3     3     3    6
## 2160     1.750 Lts NR   Familiar No Retornable     7       2     2     2    2
## 2161    12 Oz. NR Pet Individual No Retornable    14      21    32    23   27
## 2162        2 Lts. NR   Familiar No Retornable    65      37    37    39   42
## 2163      2.5 Lts. NR   Familiar No Retornable    77      67    49    77  120
## 2164 2.5 Lts. Ret Pet   Familiar    Retornable   130      35    92   120  141
## 2165    235 ml NR Vid Individual No Retornable     9       9    13    13   16
## 2166    500 ml NR PET Individual No Retornable    NA      NA    NA     4   NA
## 2167 500 ml NR Vidrio Individual No Retornable    38      70    46    32   61
## 2168       500 ml Ret Individual    Retornable    46      49    53    49   55
## 2169        600 ml NR Individual No Retornable    NA      NA    NA    28   NA
## 2170             Lata Individual No Retornable     5       5     8     8    6
## 2171      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2172     1 Ltro. N.R. Individual No Retornable    NA       2     1    NA    2
## 2173        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 2174     250 ml Tetra Individual No Retornable     1       0     0    NA    0
## 2175   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 2176    413 ml NR VId Individual No Retornable     3       5     2     3    5
## 2177     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2178    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2179     1 Ltro. N.R.   Familiar No Retornable     1       3    NA    NA    1
## 2180    1 Ltro. Tetra   Familiar No Retornable     4       1     2     1    1
## 2181    1 Ltro. Tetra   Familiar No Retornable     2       1    NA     1    2
## 2182    1 Ltro. Tetra   Familiar No Retornable     3       1     1    NA    4
## 2183    1 Ltro. Tetra   Familiar No Retornable     2      NA    NA    NA    1
## 2184     200 ml Tetra Individual No Retornable     4       2     3     1    4
## 2185        600 ml NR Individual No Retornable    NA       2     4     2    3
## 2186        600 ml NR Individual No Retornable     3       3     3     5    1
## 2187        600 ml NR Individual No Retornable     1      NA    NA    NA    3
## 2188      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2189        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2190   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 2191        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2192       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 2193        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 2194      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2195        2 Lts. NR   Familiar No Retornable     6       3    NA     3    8
## 2196       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 2197        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2198      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2199        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2200       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 2201        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2202        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2203        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 2204        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2205      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2206      1.5 Lts. NR   Familiar No Retornable    NA       2     2    NA    2
## 2207        2 Lts. NR   Familiar No Retornable     6       3     6     3    8
## 2208        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2209       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 2210        600 ml NR Individual No Retornable     5       5    10    10    6
## 2211      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2212    413 ml NR VId Individual No Retornable    NA       0    NA    NA   NA
## 2213        600 ml NR Individual No Retornable     4       6     7     5   11
## 2214      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2215        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 2216     1 Ltro. N.R. Individual No Retornable     2      87     2     6   15
## 2217      1.5 Lts. NR Individual No Retornable     3      82     3    NA   44
## 2218   300 ML. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2219        600 ml NR Individual No Retornable    NA      15    NA    NA   10
## 2220     1 Ltro. N.R. Individual No Retornable     1       1     1    NA    1
## 2221        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2222   300 ML. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2223        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 2224   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2225        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2226     1 Ltro. N.R.   Familiar No Retornable     1       1     2    NA   NA
## 2227     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 2228    12 Oz. NR Pet Individual No Retornable    NA      NA     2    NA   NA
## 2229        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 2230        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2231     200 ml Tetra Individual No Retornable     1      NA     0    NA   NA
## 2232  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2233  946 ml NR Tetra   Familiar No Retornable     4      NA     1    NA   NA
## 2234      Lata 450 ml Individual No Retornable     1      NA    NA    NA   NA
## 2235    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2236      Lata 16 Oz. Individual No Retornable    NA      NA     1    NA    0
## 2237     1 Ltro. N.R.   Familiar No Retornable     6       4     4    NA    4
## 2238       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 2239        2 Lts. NR   Familiar No Retornable     8       6     8    NA    3
## 2240       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     3   NA
## 2241      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 2242    235 ml NR Vid Individual No Retornable     2       2     3    NA    2
## 2243        400 ml NR Individual No Retornable     2       2    NA    NA   NA
## 2244 500 ml NR Vidrio Individual No Retornable    15      19    25    NA   11
## 2245        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2246             Lata Individual No Retornable     0      NA     1    NA    1
## 2247      Lata 235 ml Individual No Retornable    NA      NA     1    NA    1
## 2248      1.5 Lts. NR   Familiar No Retornable     2       4     6    NA   NA
## 2249        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 2250      2.5 Lts. NR   Familiar No Retornable     4       4     7    NA   NA
## 2251    235 ml NR Vid Individual No Retornable     2       2     2    NA   NA
## 2252 500 ml NR Vidrio Individual No Retornable     6       6     8    NA    2
## 2253     1.250 Lts NR   Familiar No Retornable    11      11    16    NA    5
## 2254     1.5 Lts. Ret   Familiar    Retornable    13      35    35    10   13
## 2255     1.750 Lts NR   Familiar No Retornable     7      12    10    NA    5
## 2256    12 Oz. NR Pet Individual No Retornable     2       5     6    NA   NA
## 2257        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2258      2.5 Lts. NR   Familiar No Retornable    53      56    39     4   25
## 2259 2.5 Lts. Ret Pet   Familiar    Retornable     4      28    32     4   14
## 2260    235 ml NR Vid Individual No Retornable     4       6     6     1    2
## 2261   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2262    500 ml NR PET Individual No Retornable     6       4     8     2    4
## 2263 500 ml NR Vidrio Individual No Retornable    27      17    32     2   15
## 2264       500 ml Ret Individual    Retornable    36      42    27    15   30
## 2265        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2266             Lata Individual No Retornable     0       3     3    NA   NA
## 2267      Lata 16 Oz. Individual No Retornable     2       2     2    NA    2
## 2268      Lata 235 ml Individual No Retornable     1       1     2    NA   NA
## 2269     1 Ltro. N.R. Individual No Retornable     1       2     1    NA    1
## 2270        600 ml NR Individual No Retornable     2       3     1    NA    1
## 2271     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 2272    237 ml NR Pet Individual No Retornable    NA       1    NA    NA   NA
## 2273     250 ml Tetra Individual No Retornable     2       3     2    NA    0
## 2274   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 2275    413 ml NR VId Individual No Retornable     9       2     3    NA    2
## 2276        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2277     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2278     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 2279    237 ml NR Pet Individual No Retornable    NA       0    NA    NA    0
## 2280    1 Ltro. Tetra   Familiar No Retornable     1       2     5    NA    1
## 2281    1 Ltro. Tetra   Familiar No Retornable     6       3     5    NA    2
## 2282    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 2283     200 ml Tetra Individual No Retornable     1       1     1    NA    0
## 2284      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA    4
## 2285        600 ml NR Individual No Retornable     1       2     3    NA    2
## 2286        600 ml NR Individual No Retornable     1       1     2    NA    2
## 2287      1.5 Lts. NR   Familiar No Retornable     4      NA     2    NA   NA
## 2288        600 ml NR Individual No Retornable     2       1    NA    NA   NA
## 2289      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA    2
## 2290        2 Lts. NR   Familiar No Retornable    NA       3     6    NA    1
## 2291   250 ml. NR PET Individual No Retornable    NA       1     2    NA   NA
## 2292        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2293       500 ml Ret Individual    Retornable     2       2     2    NA    3
## 2294        600 ml NR Individual No Retornable     2       1     1    NA    1
## 2295      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2296        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    1
## 2297       500 ml Ret Individual    Retornable     2       2     2    NA    1
## 2298        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 2299      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2300      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2301        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2302   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2303       500 ml Ret Individual    Retornable     2       2     2    NA    1
## 2304        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2305        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 2306        2 Lts. NR   Familiar No Retornable     3       6     8    NA    6
## 2307   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 2308       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2309        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2310      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2311      1.5 Lts. NR   Familiar No Retornable    NA       2     2    NA   NA
## 2312        2 Lts. NR   Familiar No Retornable     6       3     8    NA    9
## 2313   250 ml. NR PET Individual No Retornable     1       1     1    NA   NA
## 2314        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 2315       500 ml Ret Individual    Retornable     2       2     2    NA    5
## 2316        600 ml NR Individual No Retornable     3       3     4    NA    1
## 2317      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2318    413 ml NR VId Individual No Retornable     0      NA     0    NA   NA
## 2319        600 ml NR Individual No Retornable     5       1     3    NA    1
## 2320        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2321        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2322     1 Ltro. N.R. Individual No Retornable    19      21    38    49   36
## 2323      1.5 Lts. NR Individual No Retornable    22      25    41    57   63
## 2324        600 ml NR Individual No Retornable    13      13    18    25   18
## 2325     1 Ltro. N.R. Individual No Retornable     1       1     2     1    1
## 2326        600 ml NR Individual No Retornable     1       1     1     1    1
## 2327   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2328        600 ml NR Individual No Retornable     4       3     3     3    5
## 2329   250 ml. NR PET Individual No Retornable     1       4     3     4    4
## 2330        400 ml NR Individual No Retornable    NA      NA     1     2   NA
## 2331     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2332     1 Ltro. N.R. Individual No Retornable     2       2     4     6    6
## 2333    12 Oz. NR Pet Individual No Retornable     1       2     2     2    3
## 2334        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 2335     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 2336  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2337      Lata 235 ml Individual No Retornable     0       0     1     1    1
## 2338      Lata 450 ml Individual No Retornable     1       1     1     2    1
## 2339      Lata 16 Oz. Individual No Retornable     1       1     1     2    2
## 2340   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 2341     1 Ltro. N.R.   Familiar No Retornable    17      15    23    25   25
## 2342        2 Lts. NR   Familiar No Retornable    20      11    20    20   28
## 2343    235 ml NR Vid Individual No Retornable     4       3     5     4    4
## 2344 500 ml NR Vidrio Individual No Retornable    19      23    21    25   25
## 2345        600 ml NR Individual No Retornable    10       5     8     8    3
## 2346             Lata Individual No Retornable     5       2     3     2    3
## 2347        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2348 500 ml NR Vidrio Individual No Retornable    12      13    15    13   17
## 2349      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2350     1.250 Lts NR   Familiar No Retornable    45      40    48    55   55
## 2351      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2352     1.5 Lts. Ret   Familiar    Retornable    16      16    19    16   22
## 2353     1.750 Lts NR   Familiar No Retornable    NA       2     2     2    2
## 2354        2 Lts. NR   Familiar No Retornable    23      11    25    20   28
## 2355      2.5 Lts. NR   Familiar No Retornable    21      39    39    35   46
## 2356 2.5 Lts. Ret Pet   Familiar    Retornable     4      14    28    39   28
## 2357    235 ml NR Vid Individual No Retornable     8       6     7     9   10
## 2358   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2359    500 ml NR PET Individual No Retornable    17      13    13    13   17
## 2360 500 ml NR Vidrio Individual No Retornable    40      38    42    30   44
## 2361       500 ml Ret Individual    Retornable    42      51    63    78   89
## 2362        600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 2363             Lata Individual No Retornable     5       5     6     5    9
## 2364      Lata 16 Oz. Individual No Retornable     4       2     4     4    6
## 2365      Lata 235 ml Individual No Retornable     6       5     6     9    6
## 2366     1 Ltro. N.R. Individual No Retornable     1       1     1     1    6
## 2367        600 ml NR Individual No Retornable     2       1     4     7    7
## 2368    237 ml NR Pet Individual No Retornable    NA      NA     0    NA    1
## 2369     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 2370    413 ml NR VId Individual No Retornable     5       5     7     7   10
## 2371    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2372     1 Ltro. N.R.   Familiar No Retornable     2       2     2     3    2
## 2373    237 ml NR Pet Individual No Retornable     2       2     2     2    2
## 2374    1 Ltro. Tetra   Familiar No Retornable     5       1     2     2    1
## 2375    1 Ltro. Tetra   Familiar No Retornable    10       7     5     7    6
## 2376    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2377     200 ml Tetra Individual No Retornable     0       1     0     0    0
## 2378        600 ml NR Individual No Retornable     3       1     5     3    4
## 2379        600 ml NR Individual No Retornable     1       2     3     2    3
## 2380        600 ml NR Individual No Retornable     1       1     1     1   NA
## 2381      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA    2
## 2382        2 Lts. NR   Familiar No Retornable     6       6     3     8    8
## 2383       500 ml Ret Individual    Retornable     2       2     3     4    5
## 2384        600 ml NR Individual No Retornable     4       3     3     4    3
## 2385      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2386        2 Lts. NR   Familiar No Retornable    NA       3     1    NA   NA
## 2387        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2388       500 ml Ret Individual    Retornable     2       2     3     4    5
## 2389        600 ml NR Individual No Retornable     1       1     1     3    3
## 2390      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2391      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2392        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2393        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 2394   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2395       500 ml Ret Individual    Retornable     2       2     3     4    5
## 2396        600 ml NR Individual No Retornable     3      NA     3     3    3
## 2397        600 ml NR Individual No Retornable    NA       1    NA     2    3
## 2398        2 Lts. NR   Familiar No Retornable     8       6     8     8    8
## 2399        600 ml NR Individual No Retornable    NA       1    NA    NA    3
## 2400      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2401      1.5 Lts. NR   Familiar No Retornable     2       2    NA     2   NA
## 2402        2 Lts. NR   Familiar No Retornable     8       3     8     8   11
## 2403   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 2404        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2405       500 ml Ret Individual    Retornable     2       2     3     4    5
## 2406        600 ml NR Individual No Retornable     4       4     3     4    5
## 2407      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2408     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 2409    413 ml NR VId Individual No Retornable     1      NA    NA    NA   NA
## 2410        600 ml NR Individual No Retornable    10      10    10    12   11
## 2411        600 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 2412     1 Ltro. N.R. Individual No Retornable     4       2     2    NA    2
## 2413      1.5 Lts. NR Individual No Retornable    19       3     3    NA    3
## 2414        5 Lts. NR   Familiar No Retornable    NA      NA    NA     4   NA
## 2415     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 2416        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2417        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 2418     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA   NA
## 2419        2 Lts. NR   Familiar No Retornable     3       3     3    NA   NA
## 2420  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    7
## 2421  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 2422      Lata 16 Oz. Individual No Retornable    NA      NA     0    NA   NA
## 2423   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 2424     1 Ltro. N.R.   Familiar No Retornable    11       8    11    11   NA
## 2425        2 Lts. NR   Familiar No Retornable     3       6     6     3   NA
## 2426       2 Lts. Ret   Familiar    Retornable     6       8    11     6   NA
## 2427    235 ml NR Vid Individual No Retornable     5       2     5     2   NA
## 2428 500 ml NR Vidrio Individual No Retornable    13      11    11    11   NA
## 2429             Lata Individual No Retornable     0       0    NA     0   NA
## 2430      Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 2431      2.5 Lts. NR   Familiar No Retornable    NA       4    NA     4   NA
## 2432    235 ml NR Vid Individual No Retornable     2       1     1     2   NA
## 2433 500 ml NR Vidrio Individual No Retornable     3      NA     2     4   NA
## 2434      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 2435     1.250 Lts NR   Familiar No Retornable    26      21    24    24   NA
## 2436      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2437     1.5 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 2438     1.750 Lts NR   Familiar No Retornable     5       5     2     2   NA
## 2439    12 Oz. NR Pet Individual No Retornable    NA       2    NA    NA   NA
## 2440        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    3
## 2441       2 Lts. Ret   Familiar    Retornable    11      14     8     8   NA
## 2442      2.5 Lts. NR   Familiar No Retornable    63      NA     4    28   NA
## 2443 2.5 Lts. Ret Pet   Familiar    Retornable    21      11    25    18   NA
## 2444    235 ml NR Vid Individual No Retornable     6       7     8     6   NA
## 2445    500 ml NR PET Individual No Retornable     2       2    NA    NA    2
## 2446 500 ml NR Vidrio Individual No Retornable    17      21    17    11    2
## 2447       500 ml Ret Individual    Retornable    19      15    17    15   11
## 2448        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 2449             Lata Individual No Retornable    NA       1     1     1    0
## 2450      Lata 235 ml Individual No Retornable     2      NA     1     2   NA
## 2451     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 2452        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2453     250 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 2454    413 ml NR VId Individual No Retornable     1       3     2     3    3
## 2455  946 ml NR Tetra Individual No Retornable     2       2    NA    NA   NA
## 2456     1 Ltro. N.R.   Familiar No Retornable     2      NA     1    NA   NA
## 2457    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    3
## 2458    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2459    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 2460     200 ml Tetra Individual No Retornable     0      NA    NA     0    7
## 2461        600 ml NR Individual No Retornable     1       1     1     1   NA
## 2462        600 ml NR Individual No Retornable     1       3     1     2   NA
## 2463      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 2464        600 ml NR Individual No Retornable     1       2     3     2   NA
## 2465      Lata 235 ml Individual No Retornable     0      NA     0    NA   NA
## 2466      Lata 235 ml Individual No Retornable     0      NA     0    NA   NA
## 2467        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2468       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 2469      Lata 235 ml Individual No Retornable     0      NA     0    NA   NA
## 2470        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2471       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 2472        600 ml NR Individual No Retornable     1       2     1     1   NA
## 2473      Lata 235 ml Individual No Retornable     0      NA     0    NA   NA
## 2474        600 ml NR Individual No Retornable     2       1     3     3    3
## 2475        600 ml NR Individual No Retornable    NA       1    NA     1    2
## 2476     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA    2
## 2477      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA    3
## 2478   250 ml. NR PET Individual No Retornable    NA      NA     3    NA   NA
## 2479     1 Ltro. N.R.   Familiar No Retornable     1       1    NA    NA   NA
## 2480        2 Lts. NR   Familiar No Retornable     6       3     3     3    3
## 2481     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2482      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2483     1 Ltro. N.R.   Familiar No Retornable     4       4     8     6    6
## 2484        2 Lts. NR   Familiar No Retornable    14       6     8     6   11
## 2485      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2486    235 ml NR Vid Individual No Retornable     1       1     1     1    2
## 2487 500 ml NR Vidrio Individual No Retornable     2       6     6     4    6
## 2488      1.5 Lts. NR   Familiar No Retornable    NA       2     2    NA   NA
## 2489        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 2490 500 ml NR Vidrio Individual No Retornable     2       4     2     2    2
## 2491     1.250 Lts NR   Familiar No Retornable     3      13    32    16   29
## 2492      1.5 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 2493     1.5 Lts. Ret   Familiar    Retornable    NA       3    NA    NA    3
## 2494     1.750 Lts NR   Familiar No Retornable     5      30    42    32   47
## 2495    12 Oz. NR Pet Individual No Retornable    NA      NA     2     6    8
## 2496       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2497      2.5 Lts. NR   Familiar No Retornable     4      35    49    18   35
## 2498 2.5 Lts. Ret Pet   Familiar    Retornable   236     271   359   285  313
## 2499    235 ml NR Vid Individual No Retornable    NA      NA     2     3    4
## 2500    500 ml NR PET Individual No Retornable     4      NA    NA    NA   NA
## 2501 500 ml NR Vidrio Individual No Retornable    15      23    30    21   27
## 2502       500 ml Ret Individual    Retornable    68      61    80    82   99
## 2503        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2504             Lata Individual No Retornable    NA      NA    NA     2    5
## 2505      Lata 235 ml Individual No Retornable     1       3     1     2    3
## 2506     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 2507        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2508     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    1
## 2509     250 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2510    413 ml NR VId Individual No Retornable     1       2    NA     2    3
## 2511     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2512     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2513    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2514     200 ml Tetra Individual No Retornable     1       4     5     2    3
## 2515        600 ml NR Individual No Retornable     1       3     3     3    2
## 2516      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2517      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 2518        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2519      Lata 235 ml Individual No Retornable     1      NA     1    NA   NA
## 2520      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2521        2 Lts. NR   Familiar No Retornable     8       6    11     3    7
## 2522       500 ml Ret Individual    Retornable    NA       1    NA    NA   NA
## 2523        600 ml NR Individual No Retornable     3       1     2     1    3
## 2524      Lata 235 ml Individual No Retornable     0       1     0     0    0
## 2525        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 2526       500 ml Ret Individual    Retornable    NA       1    NA    NA   NA
## 2527      Lata 235 ml Individual No Retornable     0       1     0     0    0
## 2528       500 ml Ret Individual    Retornable    NA       1    NA    NA   NA
## 2529        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2530        2 Lts. NR   Familiar No Retornable    NA      NA     3     6    7
## 2531       500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 2532        600 ml NR Individual No Retornable     3       2     3     1    3
## 2533      Lata 235 ml Individual No Retornable     0       1     0     0    0
## 2534      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 2535        2 Lts. NR   Familiar No Retornable     3      NA     6     3    1
## 2536       500 ml Ret Individual    Retornable    NA       1    NA    NA    2
## 2537        600 ml NR Individual No Retornable     1       2     2     1    3
## 2538      Lata 235 ml Individual No Retornable     0       1     0     0    0
## 2539    413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 2540        600 ml NR Individual No Retornable     6       4     5     5   11
## 2541        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2542        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 2543     1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 2544      1.5 Lts. NR Individual No Retornable     3       3     3    NA   NA
## 2545     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2546        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2547        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2548        400 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 2549     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2550        2 Lts. NR   Familiar No Retornable     6      NA     6     3   11
## 2551  946 ml NR Tetra   Familiar No Retornable     0       2    NA    NA   NA
## 2552      Lata 16 Oz. Individual No Retornable     0       0     0     0   NA
## 2553   250 ml. NR PET Individual No Retornable    NA      NA     1    NA    0
## 2554     1 Ltro. N.R.   Familiar No Retornable     8       2     2     4   13
## 2555        2 Lts. NR   Familiar No Retornable    14      20    17    14   31
## 2556       2 Lts. Ret   Familiar    Retornable    14      14    17    20    3
## 2557    235 ml NR Vid Individual No Retornable     2       1     2     1    2
## 2558 500 ml NR Vidrio Individual No Retornable     6       8     8     6    8
## 2559        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2560             Lata Individual No Retornable    NA       2    NA    NA   NA
## 2561      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 2562      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 2563        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2564      2.5 Lts. NR   Familiar No Retornable     4      NA    11     4    4
## 2565    235 ml NR Vid Individual No Retornable    NA      NA     2     1    1
## 2566 500 ml NR Vidrio Individual No Retornable     8       6     6     6    8
## 2567      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2568     1 Ltro. N.R.   Familiar No Retornable    13      NA    NA    NA   NA
## 2569     1.250 Lts NR   Familiar No Retornable    42      53    61    66   58
## 2570     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2571     1.750 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2572    12 Oz. NR Pet Individual No Retornable     9       6     8     9    6
## 2573        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    6
## 2574      2.5 Lts. NR   Familiar No Retornable    63      35    46    56   63
## 2575 2.5 Lts. Ret Pet   Familiar    Retornable    28      18    21    25   35
## 2576    235 ml NR Vid Individual No Retornable    10      11    11    12    9
## 2577    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   21
## 2578 500 ml NR Vidrio Individual No Retornable    42      23    44    30   42
## 2579       500 ml Ret Individual    Retornable    46      51    59    59   46
## 2580        600 ml NR Individual No Retornable    NA      NA    NA    13   NA
## 2581             Lata Individual No Retornable     3       5     3     2    5
## 2582      Lata 235 ml Individual No Retornable     1       1     1     3    3
## 2583     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2584        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2585    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2586     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2587   250 ML. NR VID Individual No Retornable     0      NA    NA    NA   NA
## 2588    413 ml NR VId Individual No Retornable     8       7     5     3    5
## 2589    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2590     1 Ltro. N.R.   Familiar No Retornable     2      NA     1    NA    1
## 2591    237 ml NR Pet Individual No Retornable     1      NA    NA    NA    0
## 2592    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2593     200 ml Tetra Individual No Retornable    NA       1     1    NA    1
## 2594        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2595        600 ml NR Individual No Retornable     4       5     3     4    4
## 2596     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2     2    2
## 2597      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2598        2 Lts. NR   Familiar No Retornable     3       6     8     6   NA
## 2599       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2600        600 ml NR Individual No Retornable     4       4     5     3    4
## 2601     1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA   NA
## 2602        2 Lts. NR   Familiar No Retornable     6      NA     3     3   NA
## 2603        600 ml NR Individual No Retornable     3       1     4     2    1
## 2604     1 Ltro. N.R.   Familiar No Retornable    NA       2     4    NA   NA
## 2605        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2606        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2607        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2608        2 Lts. NR   Familiar No Retornable     6       8     6     6    8
## 2609        600 ml NR Individual No Retornable     1      NA     4     5    1
## 2610     1 Ltro. N.R.   Familiar No Retornable     4       2     6     4    4
## 2611      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2612        2 Lts. NR   Familiar No Retornable     6       8     8     8   14
## 2613        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2614       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2615        600 ml NR Individual No Retornable     4       3     5     5    4
## 2616        600 ml NR Individual No Retornable     1       1     2     3    2
## 2617        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2618        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2619     1 Ltro. N.R. Individual No Retornable     2       2     2    NA    2
## 2620      1.5 Lts. NR Individual No Retornable     3       3     3    NA    3
## 2621        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2622     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA    1
## 2623        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 2624        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2625   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2626        400 ml NR Individual No Retornable    NA      NA     3     2   NA
## 2627     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA    1
## 2628        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    3
## 2629     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2630  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 2631  946 ml NR Tetra   Familiar No Retornable    NA      NA     3     1   NA
## 2632      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 2633      Lata 16 Oz. Individual No Retornable    NA      NA    NA     2   NA
## 2634     1 Ltro. N.R.   Familiar No Retornable     2      NA     6     6    4
## 2635       2 Lts. Ret   Familiar    Retornable    NA       3     3     3   NA
## 2636 500 ml NR Vidrio Individual No Retornable     2       2     6     2    4
## 2637      1.5 Lts. NR   Familiar No Retornable     2      NA     3     2    4
## 2638        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2639    235 ml NR Vid Individual No Retornable     1      NA     1     1   NA
## 2640 500 ml NR Vidrio Individual No Retornable     3      NA    NA    NA    1
## 2641      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2642     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA    NA   NA
## 2643     1.250 Lts NR   Familiar No Retornable    13      24    26    24   32
## 2644      1.5 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 2645     1.5 Lts. Ret   Familiar    Retornable    10      10     6    16   16
## 2646     1.750 Lts NR   Familiar No Retornable     2      10    17    12   17
## 2647    12 Oz. NR Pet Individual No Retornable    11      14    12     6   11
## 2648       12 Oz. Ret Individual    Retornable     2       2    NA    NA   NA
## 2649      2.5 Lts. NR   Familiar No Retornable    21      18    28    35   21
## 2650 2.5 Lts. Ret Pet   Familiar    Retornable    42      46    92    88  123
## 2651    235 ml NR Vid Individual No Retornable     3       4     4     4    6
## 2652    500 ml NR PET Individual No Retornable    NA       2    NA     4    4
## 2653 500 ml NR Vidrio Individual No Retornable    13      19    36    17   25
## 2654       500 ml Ret Individual    Retornable    34      32    44    49   57
## 2655        600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 2656             Lata Individual No Retornable     2       3     2     3    3
## 2657      Lata 16 Oz. Individual No Retornable     2       2     4     2    6
## 2658      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 2659     1 Ltro. N.R. Individual No Retornable     1       4     3     5    7
## 2660    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2661        600 ml NR Individual No Retornable     1       1    NA    NA    1
## 2662     250 ml Tetra Individual No Retornable     0      NA    NA    NA    0
## 2663    413 ml NR VId Individual No Retornable     9       9    12     9    9
## 2664     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2665     1 Ltro. N.R.   Familiar No Retornable     1      NA     1    NA    1
## 2666    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2667    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2668    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2669     200 ml Tetra Individual No Retornable     0      NA     0    NA    0
## 2670        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 2671        600 ml NR Individual No Retornable     1      NA     2     1    2
## 2672        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2673      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 2674        2 Lts. NR   Familiar No Retornable     1       1     1     1    2
## 2675        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2676       500 ml Ret Individual    Retornable     3       1     2     2    3
## 2677        600 ml NR Individual No Retornable     1       1     2     2    2
## 2678        2 Lts. NR   Familiar No Retornable     1       1     2     1    2
## 2679       500 ml Ret Individual    Retornable     1       1     2     2    3
## 2680        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 2681        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2682       500 ml Ret Individual    Retornable     1       1     2     2    3
## 2683        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2684        600 ml NR Individual No Retornable     1       3     1     1    1
## 2685        2 Lts. NR   Familiar No Retornable     4       4     4     1    2
## 2686        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2687      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA   NA
## 2688        2 Lts. NR   Familiar No Retornable     1       4     1     1    2
## 2689   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2690        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2691       500 ml Ret Individual    Retornable     3       1     2     2    3
## 2692        600 ml NR Individual No Retornable     1       1     2     2    3
## 2693        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2694        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2695        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2696     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 2697      1.5 Lts. NR Individual No Retornable     3       3    NA    NA   NA
## 2698        600 ml NR Individual No Retornable     1      NA     1     1   NA
## 2699     200 ml Tetra Individual No Retornable    NA       0    NA     1   NA
## 2700  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 2701     1 Ltro. N.R.   Familiar No Retornable     2       2     2     2    2
## 2702        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2703 500 ml NR Vidrio Individual No Retornable     6       2     6    11   11
## 2704      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 2705     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    NA    5
## 2706      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2707     1.750 Lts NR   Familiar No Retornable     5       7    12     7    2
## 2708    12 Oz. NR Pet Individual No Retornable     3       8     2     3    6
## 2709      2.5 Lts. NR   Familiar No Retornable     7      11    14    11   21
## 2710 2.5 Lts. Ret Pet   Familiar    Retornable     7      NA     7     7    7
## 2711    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2712 500 ml NR Vidrio Individual No Retornable    13      11    11     2   19
## 2713       500 ml Ret Individual    Retornable    19      13    23    11   30
## 2714        600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 2715        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2716     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2717    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2718    1 Ltro. Tetra   Familiar No Retornable     1       1     1     1    1
## 2719    1 Ltro. Tetra   Familiar No Retornable     3       2     2    NA   NA
## 2720    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2721     200 ml Tetra Individual No Retornable    NA       0    NA    NA    0
## 2722        600 ml NR Individual No Retornable    NA       1     1    NA   NA
## 2723        600 ml NR Individual No Retornable     1      NA     1     1    1
## 2724        2 Lts. NR   Familiar No Retornable    NA       3    NA     3    3
## 2725        600 ml NR Individual No Retornable    NA       1    NA     1    3
## 2726        2 Lts. NR   Familiar No Retornable     6      NA     3     6    3
## 2727       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2728        600 ml NR Individual No Retornable     1      NA     1     1   NA
## 2729        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 2730        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2731     1 Ltro. N.R. Individual No Retornable    23      15    NA    NA    2
## 2732      1.5 Lts. NR Individual No Retornable    16       3    NA    NA   NA
## 2733        5 Lts. NR   Familiar No Retornable     7       7    NA    NA   NA
## 2734        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2735     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2736        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2737     1 Ltro. N.R.   Familiar No Retornable     2       1     1     3    3
## 2738        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2739     200 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2740  946 ml NR Tetra   Familiar No Retornable     2      NA     2    NA   NA
## 2741      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    0
## 2742     1 Ltro. N.R.   Familiar No Retornable     6       6     8     8   11
## 2743        2 Lts. NR   Familiar No Retornable    11      14    20    14   25
## 2744      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 2745    235 ml NR Vid Individual No Retornable     3       4     3     3    4
## 2746        400 ml NR Individual No Retornable     3       3     2     3    5
## 2747 500 ml NR Vidrio Individual No Retornable     6       8     8     4   11
## 2748             Lata Individual No Retornable     3       2     2     2    3
## 2749 500 ml NR Vidrio Individual No Retornable     4       4     4     2    8
## 2750      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2751     1.250 Lts NR   Familiar No Retornable    16      24    24    24   29
## 2752     1.750 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2753    12 Oz. NR Pet Individual No Retornable     5       5     3     5    5
## 2754      2.5 Lts. NR   Familiar No Retornable    39      32    39    32   49
## 2755 2.5 Lts. Ret Pet   Familiar    Retornable    25      32    46    35   42
## 2756    235 ml NR Vid Individual No Retornable     5       4     6     5    5
## 2757   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2758    500 ml NR PET Individual No Retornable     4       8     8     4    4
## 2759 500 ml NR Vidrio Individual No Retornable    15      11    19     4   17
## 2760       500 ml Ret Individual    Retornable    17      23    25    36   32
## 2761             Lata Individual No Retornable    NA      NA    NA     2   NA
## 2762      Lata 235 ml Individual No Retornable     3       2     2     2    3
## 2763     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2764        600 ml NR Individual No Retornable    NA      NA     2     4    3
## 2765     250 ml Tetra Individual No Retornable     0      NA     0    NA   NA
## 2766    413 ml NR VId Individual No Retornable    NA      NA    NA     3    4
## 2767    237 ml NR Pet Individual No Retornable     0      NA    NA    NA   NA
## 2768    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2769    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 2770    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA    1
## 2771     200 ml Tetra Individual No Retornable     0      NA    NA     2    2
## 2772        600 ml NR Individual No Retornable    NA      NA    NA     2    2
## 2773      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2774        600 ml NR Individual No Retornable     2       3     2     3    3
## 2775        2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 2776   250 ml. NR PET Individual No Retornable     1       1     1     1    2
## 2777       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 2778        600 ml NR Individual No Retornable     3       1     2     3    3
## 2779      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2780        2 Lts. NR   Familiar No Retornable    NA       3     3     6    3
## 2781       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 2782        600 ml NR Individual No Retornable     1       1     1    NA    2
## 2783      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2784        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2785      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2786       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 2787        600 ml NR Individual No Retornable     1       1     3     1   NA
## 2788        600 ml NR Individual No Retornable     3       1     3     3    1
## 2789        2 Lts. NR   Familiar No Retornable     6       6     6     8    6
## 2790       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2791        600 ml NR Individual No Retornable    NA      NA    NA     3    1
## 2792      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2793        2 Lts. NR   Familiar No Retornable     6       6    14     8   11
## 2794   250 ml. NR PET Individual No Retornable     2       1     2     2    2
## 2795       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 2796        600 ml NR Individual No Retornable     3       1     4     3    3
## 2797      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2798    413 ml NR VId Individual No Retornable     1       0     2    NA   NA
## 2799        600 ml NR Individual No Retornable    NA      NA    NA     2    3
## 2800        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2801        600 ml NR Individual No Retornable     1      NA     1     3    1
## 2802     1 Ltro. N.R. Individual No Retornable     2       2    13     2    6
## 2803      1.5 Lts. NR Individual No Retornable     6       6    10    19   16
## 2804        5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 2805        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2806     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 2807      1.5 Lts. NR Individual No Retornable     2      NA     2     3    5
## 2808        600 ml NR Individual No Retornable     1       1     1     1    1
## 2809        600 ml NR Individual No Retornable     1       1     1     1    2
## 2810   250 ml. NR PET Individual No Retornable     1      NA    NA     2   NA
## 2811        400 ml NR Individual No Retornable    NA      NA     1     0    0
## 2812     1 Ltro. N.R.   Familiar No Retornable     1      NA     1     1    1
## 2813    12 Oz. NR Pet Individual No Retornable    NA       1     1    NA   NA
## 2814        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 2815     200 ml Tetra Individual No Retornable    NA       1    NA    NA   NA
## 2816  946 ml NR Tetra   Familiar No Retornable     1       1     2     1   NA
## 2817  946 ml NR Tetra   Familiar No Retornable     0       1    NA     0   NA
## 2818      Lata 235 ml Individual No Retornable     0       0    NA     0    0
## 2819      Lata 450 ml Individual No Retornable    NA       1     1     1    1
## 2820    500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 2821      Lata 16 Oz. Individual No Retornable     1       1    NA     1    1
## 2822   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2823     1 Ltro. N.R.   Familiar No Retornable    17      13    19    25   30
## 2824       12 Oz. Ret Individual    Retornable    NA       3    NA     2    2
## 2825        2 Lts. NR   Familiar No Retornable    17      14    20     6   14
## 2826       2 Lts. Ret   Familiar    Retornable    23      20    20    25    3
## 2827    235 ml NR Vid Individual No Retornable     2       1     2     4    2
## 2828 500 ml NR Vidrio Individual No Retornable     6       6     6     4    6
## 2829        600 ml NR Individual No Retornable    NA       3     3     3    3
## 2830             Lata Individual No Retornable    NA       2    NA     2   NA
## 2831      1.5 Lts. NR   Familiar No Retornable     2       6     8     8    4
## 2832        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2833      2.5 Lts. NR   Familiar No Retornable     7      11    11    18   18
## 2834    235 ml NR Vid Individual No Retornable     1       2     2     3    2
## 2835 500 ml NR Vidrio Individual No Retornable     2       2     6     2    4
## 2836       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 2837      Lata 235 ml Individual No Retornable    NA       1     2    NA   NA
## 2838      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2839     1.250 Lts NR   Familiar No Retornable    40      40    37    37   45
## 2840     1.5 Lts. Ret   Familiar    Retornable     6      10     6     3   13
## 2841     1.750 Lts NR   Familiar No Retornable     7      10    12    10   17
## 2842    12 Oz. NR Pet Individual No Retornable     2       2    NA     2    3
## 2843       12 Oz. Ret Individual    Retornable     6       6     8     6    9
## 2844        2 Lts. NR   Familiar No Retornable    11       3     8    11    8
## 2845       2 Lts. Ret   Familiar    Retornable     3       6    11     6    3
## 2846      2.5 Lts. NR   Familiar No Retornable    49      NA    11    21   35
## 2847 2.5 Lts. Ret Pet   Familiar    Retornable    49      35    46    53   46
## 2848    235 ml NR Vid Individual No Retornable     3       6     6     7    6
## 2849    500 ml NR PET Individual No Retornable     4       6     4     4    6
## 2850 500 ml NR Vidrio Individual No Retornable    23      23    23    23   25
## 2851       500 ml Ret Individual    Retornable    32      34    36    49   51
## 2852        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 2853             Lata Individual No Retornable     2       3     3     2    3
## 2854      Lata 16 Oz. Individual No Retornable     2      NA     2     2    2
## 2855      Lata 235 ml Individual No Retornable     4       3     5     1    2
## 2856     1 Ltro. N.R. Individual No Retornable     1       1     1     1    3
## 2857        600 ml NR Individual No Retornable     1       1     1     2    1
## 2858    237 ml NR Pet Individual No Retornable    NA       1     0    NA    1
## 2859     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 2860    413 ml NR VId Individual No Retornable     3       3     5     3    3
## 2861    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2862     1 Ltro. N.R.   Familiar No Retornable    NA       3     1     2    2
## 2863    237 ml NR Pet Individual No Retornable    NA      NA     0    NA    0
## 2864    1 Ltro. Tetra   Familiar No Retornable    NA       1     1    NA    1
## 2865    1 Ltro. Tetra   Familiar No Retornable     2       2     2     1   NA
## 2866    1 Ltro. Tetra   Familiar No Retornable     4       2     3     1    3
## 2867    1 Ltro. Tetra   Familiar No Retornable     2       2     1     2    1
## 2868     200 ml Tetra Individual No Retornable     1       2     2     1    2
## 2869      1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2    2
## 2870        600 ml NR Individual No Retornable     1       2     1     4    1
## 2871        600 ml NR Individual No Retornable     9       4     6    11   10
## 2872      1.5 Lts. NR   Familiar No Retornable    NA      NA     2     2   NA
## 2873        600 ml NR Individual No Retornable     2       1     5     3    1
## 2874      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 2875   250 ml. NR PET Individual No Retornable    NA       1    NA    NA    1
## 2876       500 ml Ret Individual    Retornable     2       1    NA     2    1
## 2877        600 ml NR Individual No Retornable     1       1     1     1    2
## 2878      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 2879        2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 2880       500 ml Ret Individual    Retornable    NA       1     2    NA    1
## 2881        600 ml NR Individual No Retornable     1       1     1     1    1
## 2882      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 2883        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2884   250 ml. NR PET Individual No Retornable     1      NA    NA     1    1
## 2885       500 ml Ret Individual    Retornable    NA       1    NA    NA    1
## 2886        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2887        600 ml NR Individual No Retornable     3       4     3     3    3
## 2888        2 Lts. NR   Familiar No Retornable    NA       3    NA     3    6
## 2889       500 ml Ret Individual    Retornable     2      NA     2    NA   NA
## 2890        600 ml NR Individual No Retornable     1      NA     1     1    1
## 2891      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 2892      1.5 Lts. NR   Familiar No Retornable     2      NA    NA     2    2
## 2893        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 2894   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2895        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2896       500 ml Ret Individual    Retornable     2       1    NA     2    1
## 2897        600 ml NR Individual No Retornable     2       1     3     2    2
## 2898      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 2899    413 ml NR VId Individual No Retornable     1      NA     0    NA   NA
## 2900        600 ml NR Individual No Retornable     2       1     1     2    2
## 2901        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2902     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 2903      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA    3
## 2904     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2905        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2906   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2907    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2908  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   11
## 2909  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2910      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    1
## 2911     1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 2912 500 ml NR Vidrio Individual No Retornable     6       4     4     4    6
## 2913        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 2914 500 ml NR Vidrio Individual No Retornable     1       1     1    NA    1
## 2915     1.250 Lts NR   Familiar No Retornable    11      11    13    16   18
## 2916     1.5 Lts. Ret   Familiar    Retornable    19      16    22    10   19
## 2917     1.750 Lts NR   Familiar No Retornable    NA      NA     2    NA   NA
## 2918    12 Oz. NR Pet Individual No Retornable     6       9     9    11    5
## 2919      2.5 Lts. NR   Familiar No Retornable    18       7    14    14   11
## 2920 2.5 Lts. Ret Pet   Familiar    Retornable    53      53    56    60   56
## 2921    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 2922 500 ml NR Vidrio Individual No Retornable    11       8    15    15   15
## 2923       500 ml Ret Individual    Retornable    23      23    34    27   34
## 2924     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2925     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2926    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 2927     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2928    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 2929     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 2930        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 2931        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2932        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 2933     1 Ltro. N.R. Individual No Retornable     2       2    17    NA    2
## 2934      1.5 Lts. NR Individual No Retornable     3       3    48    NA    3
## 2935        600 ml NR Individual No Retornable     3      NA     3     3   NA
## 2936   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 2937        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 2938  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2939     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 2940       12 Oz. Ret Individual    Retornable     2      NA     2    NA    2
## 2941        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 2942       2 Lts. Ret   Familiar    Retornable     3      NA    NA     3   NA
## 2943      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 2944    235 ml NR Vid Individual No Retornable     3      NA     2    NA    1
## 2945        400 ml NR Individual No Retornable     3       7     5     3    3
## 2946 500 ml NR Vidrio Individual No Retornable     2      11     8     6   11
## 2947      1.5 Lts. NR   Familiar No Retornable    NA       1     4    NA   NA
## 2948        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 2949    235 ml NR Vid Individual No Retornable     4       7     6     6    6
## 2950 500 ml NR Vidrio Individual No Retornable     4       3     5     2    4
## 2951      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 2952     1.250 Lts NR   Familiar No Retornable    16      18    24    24   32
## 2953     1.5 Lts. Ret   Familiar    Retornable    16      19    16    19   16
## 2954     1.750 Lts NR   Familiar No Retornable    NA      NA     2     2    2
## 2955    12 Oz. NR Pet Individual No Retornable     3       8     3     5   11
## 2956        2 Lts. NR   Familiar No Retornable     8       3     8    11   14
## 2957      2.5 Lts. NR   Familiar No Retornable    14      14    25    21   32
## 2958 2.5 Lts. Ret Pet   Familiar    Retornable    70      56    74    81  123
## 2959    235 ml NR Vid Individual No Retornable     5       6     6     6    8
## 2960 500 ml NR Vidrio Individual No Retornable     8      15    15     8   15
## 2961       500 ml Ret Individual    Retornable    21      27    36    46   59
## 2962      6.5 Oz. Ret Individual    Retornable     2      NA     2     2    3
## 2963        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 2964             Lata Individual No Retornable    NA       3     2     3    2
## 2965      Lata 16 Oz. Individual No Retornable     2       2     4     2    4
## 2966      Lata 235 ml Individual No Retornable     1       2     2     2    2
## 2967     1 Ltro. N.R. Individual No Retornable     1       2     2     2    2
## 2968        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2969     250 ml Tetra Individual No Retornable    NA      NA     0    NA   NA
## 2970    413 ml NR VId Individual No Retornable     3       3     2     1    5
## 2971     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2972        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2973        2 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 2974        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2975        600 ml NR Individual No Retornable     3       3     4     3    4
## 2976        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2977      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 2978        600 ml NR Individual No Retornable    NA      NA    NA     1    3
## 2979     1 Ltro. N.R. Individual No Retornable     2       2     2    NA   15
## 2980      1.5 Lts. NR Individual No Retornable     3       3     3    NA   44
## 2981        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 2982     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 2983        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2984   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 2985        600 ml NR Individual No Retornable     2       1     3    NA    3
## 2986   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2987        400 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 2988     1 Ltro. N.R.   Familiar No Retornable    NA       1     2    NA    1
## 2989     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 2990        2 Lts. NR   Familiar No Retornable     3       3     3     3    6
## 2991        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 2992     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2993  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA     4    2
## 2994      Lata 16 Oz. Individual No Retornable    NA       0     0     1    1
## 2995   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2996     1 Ltro. N.R.   Familiar No Retornable     6       6     8    13   17
## 2997     1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2998        2 Lts. NR   Familiar No Retornable     8       6     8     6   17
## 2999       2 Lts. Ret   Familiar    Retornable    20       8    23    20    6
## 3000    235 ml NR Vid Individual No Retornable     2       2     2     2    1
## 3001        400 ml NR Individual No Retornable    NA       2     2    NA   NA
## 3002 500 ml NR Vidrio Individual No Retornable    13      11    13    13   25
## 3003      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA    2
## 3004        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3005 500 ml NR Vidrio Individual No Retornable     4       1     4     4    6
## 3006      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 3007      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3008     1.250 Lts NR   Familiar No Retornable    29      21    32    16   37
## 3009      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3010     1.5 Lts. Ret   Familiar    Retornable    10      13    10    10   16
## 3011     1.750 Lts NR   Familiar No Retornable     2       2     5     5    5
## 3012    12 Oz. NR Pet Individual No Retornable     8       5     8     6    9
## 3013      2.5 Lts. NR   Familiar No Retornable    46      39     4    25   35
## 3014 2.5 Lts. Ret Pet   Familiar    Retornable    46      85    53    81  116
## 3015    235 ml NR Vid Individual No Retornable     5       5     5     4    9
## 3016    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 3017 500 ml NR Vidrio Individual No Retornable     6      21    36    27   34
## 3018       500 ml Ret Individual    Retornable   108      13    44    44   85
## 3019        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 3020             Lata Individual No Retornable     2       5     3     5    8
## 3021      Lata 16 Oz. Individual No Retornable    NA      NA     4     2    6
## 3022      Lata 235 ml Individual No Retornable     3       3     6    NA    2
## 3023     1 Ltro. N.R. Individual No Retornable     1       2     2     1    4
## 3024        600 ml NR Individual No Retornable     1       2     3     1    1
## 3025    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     2   NA
## 3026     250 ml Tetra Individual No Retornable     0       0     0     0    0
## 3027    413 ml NR VId Individual No Retornable     2       2     4     0    5
## 3028    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3029     1 Ltro. N.R.   Familiar No Retornable     3       2     2     1    3
## 3030    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA    0
## 3031    1 Ltro. Tetra   Familiar No Retornable     4       6     3     3    6
## 3032    1 Ltro. Tetra   Familiar No Retornable     4       4     1     3    3
## 3033    1 Ltro. Tetra   Familiar No Retornable     2       1     1    NA    1
## 3034    1 Ltro. Tetra   Familiar No Retornable    NA       2    NA     1    1
## 3035     200 ml Tetra Individual No Retornable     2       1     1     1    0
## 3036      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    8
## 3037        600 ml NR Individual No Retornable     1       2     5    NA    1
## 3038        600 ml NR Individual No Retornable     5      NA     3    NA    4
## 3039      1.5 Lts. NR   Familiar No Retornable     4      NA     4     2   NA
## 3040        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3041      1.5 Lts. NR   Familiar No Retornable     4      NA     2     4    4
## 3042        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3043   250 ml. NR PET Individual No Retornable     1      NA     1     1    1
## 3044       500 ml Ret Individual    Retornable     2      NA     2    NA   NA
## 3045        600 ml NR Individual No Retornable     3       1     3     1    4
## 3046      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3047      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 3048        2 Lts. NR   Familiar No Retornable    NA      NA     3     4    6
## 3049       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 3050        600 ml NR Individual No Retornable     2       1     2     1    3
## 3051      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3052      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3053        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3054      1.5 Lts. NR   Familiar No Retornable    NA      NA     2     4    2
## 3055   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 3056       500 ml Ret Individual    Retornable    NA      NA     2     2   NA
## 3057        600 ml NR Individual No Retornable     1      NA     3     1   NA
## 3058        600 ml NR Individual No Retornable     3       2     1     2    3
## 3059      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3060        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3061       500 ml Ret Individual    Retornable    NA       2     2     2    2
## 3062        600 ml NR Individual No Retornable     1      NA    NA     3    1
## 3063      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3064      1.5 Lts. NR   Familiar No Retornable    NA       2    NA     6    4
## 3065        2 Lts. NR   Familiar No Retornable     3       3    NA    NA   NA
## 3066   250 ml. NR PET Individual No Retornable     1      NA     1     1    1
## 3067        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3068       500 ml Ret Individual    Retornable     2       2     2     2    4
## 3069        600 ml NR Individual No Retornable     3       2     3     1    5
## 3070      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3071     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 3072    413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 3073        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3074        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3075     1 Ltro. N.R. Individual No Retornable     8       2    17    NA    2
## 3076      1.5 Lts. NR Individual No Retornable    13       3    48    NA    3
## 3077        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 3078     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3079        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3080        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3081   250 ml. NR PET Individual No Retornable     1      NA     1    NA    1
## 3082     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA   NA
## 3083        600 ml NR Individual No Retornable     1       1     1     1    3
## 3084     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3085  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3086     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 3087      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 3088    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 3089 500 ml NR Vidrio Individual No Retornable     2       6     4     4    2
## 3090 500 ml NR Vidrio Individual No Retornable     1      NA     2    NA   NA
## 3091      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3092     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3093     1.5 Lts. Ret   Familiar    Retornable     6       3     3     3    3
## 3094     1.750 Lts NR   Familiar No Retornable    NA       2     2    NA   NA
## 3095      2.5 Lts. NR   Familiar No Retornable     4       7    21    18   14
## 3096 2.5 Lts. Ret Pet   Familiar    Retornable    25      21    11    32   25
## 3097    235 ml NR Vid Individual No Retornable     1      NA    NA     1    1
## 3098 500 ml NR Vidrio Individual No Retornable    13      11    19     6   13
## 3099       500 ml Ret Individual    Retornable    32      34    40    36   40
## 3100        600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 3101      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 3102     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3103    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 3104        600 ml NR Individual No Retornable     1       1     2     4    3
## 3105     250 ml Tetra Individual No Retornable     1      NA     0     1    1
## 3106   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 3107    413 ml NR VId Individual No Retornable     5       2     3     2    2
## 3108    1 Ltro. Tetra   Familiar No Retornable     2       2     4     2    5
## 3109     200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 3110        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3111        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 3112       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 3113        600 ml NR Individual No Retornable    NA       1    NA     1    1
## 3114        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3115       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 3116        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3117        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3118       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 3119        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3120        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3121       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 3122        600 ml NR Individual No Retornable    NA       1    NA     1    1
## 3123     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 3124        600 ml NR Individual No Retornable    NA       1    NA    NA    3
## 3125        600 ml NR Individual No Retornable     1      NA     3     2    1
## 3126     1 Ltro. N.R. Individual No Retornable     6       6     8     2    4
## 3127      1.5 Lts. NR Individual No Retornable     3       6     6     6    6
## 3128        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3129        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3130   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3131        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3132        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 3133  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3134  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3135    500 ml NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3136      Lata 16 Oz. Individual No Retornable    NA      NA     0    NA   NA
## 3137   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3138     1 Ltro. N.R.   Familiar No Retornable     4       2    NA     2    2
## 3139       12 Oz. Ret Individual    Retornable     2       2     3     2    3
## 3140        2 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 3141       2 Lts. Ret   Familiar    Retornable     6       6    11     8    3
## 3142    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA    1
## 3143 500 ml NR Vidrio Individual No Retornable     4       4     4     8    4
## 3144        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3145      1.5 Lts. NR   Familiar No Retornable     1      NA     1    NA   NA
## 3146        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    1
## 3147 500 ml NR Vidrio Individual No Retornable    NA      NA     2    NA    3
## 3148       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 3149        600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 3150      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3151     1.250 Lts NR   Familiar No Retornable    11      13     8     8   16
## 3152     1.5 Lts. Ret   Familiar    Retornable     3       6     6     3    3
## 3153     1.750 Lts NR   Familiar No Retornable     5       7    10     5    5
## 3154    12 Oz. NR Pet Individual No Retornable     2       3     3     5    3
## 3155        2 Lts. NR   Familiar No Retornable     6       3     6     3    3
## 3156      2.5 Lts. NR   Familiar No Retornable     4       4     7    11   11
## 3157 2.5 Lts. Ret Pet   Familiar    Retornable    42      42    53    49   77
## 3158    235 ml NR Vid Individual No Retornable    NA       1    NA     1    1
## 3159   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3160 500 ml NR Vidrio Individual No Retornable     2       4     2     2    6
## 3161       500 ml Ret Individual    Retornable     8       8     8    17   27
## 3162        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3163             Lata Individual No Retornable     1       0    NA     0    0
## 3164      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 3165     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 3166        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3167    237 ml NR Pet Individual No Retornable    NA      NA    NA     1   NA
## 3168     250 ml Tetra Individual No Retornable     0      NA     0    NA    0
## 3169   250 ML. NR VID Individual No Retornable     0      NA    NA    NA   NA
## 3170    413 ml NR VId Individual No Retornable     3       1     1     1    0
## 3171     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3172    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA    0
## 3173    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 3174    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3175     200 ml Tetra Individual No Retornable     1       1     2     1    2
## 3176      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 3177        600 ml NR Individual No Retornable     1      NA     1     2    1
## 3178        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3179        600 ml NR Individual No Retornable    NA       1    NA     3   NA
## 3180        2 Lts. NR   Familiar No Retornable    NA       3     3    NA    3
## 3181        400 ml NR Individual No Retornable     1       1    NA     0    1
## 3182       500 ml Ret Individual    Retornable    NA       1     1    NA   NA
## 3183        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3184       500 ml Ret Individual    Retornable    NA       1     1    NA   NA
## 3185        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3186        400 ml NR Individual No Retornable     0       0     0     0   NA
## 3187       500 ml Ret Individual    Retornable    NA       1     1    NA   NA
## 3188        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3189        2 Lts. NR   Familiar No Retornable     8       3    NA     3   NA
## 3190        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3191       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3192        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3193        2 Lts. NR   Familiar No Retornable     3      NA     6     3   NA
## 3194        400 ml NR Individual No Retornable     0       0     0     1    0
## 3195       500 ml Ret Individual    Retornable    NA       1     1     2   NA
## 3196        600 ml NR Individual No Retornable     1      NA     1     1    1
## 3197        600 ml NR Individual No Retornable    NA      NA    NA     1    4
## 3198        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3199        600 ml NR Individual No Retornable     1       1     3     1    3
## 3200     1 Ltro. N.R. Individual No Retornable     2       6     4     2    4
## 3201      1.5 Lts. NR Individual No Retornable     6      13    13    16   25
## 3202        600 ml NR Individual No Retornable    NA       3     3    NA   NA
## 3203     1 Ltro. N.R. Individual No Retornable    NA       1     2     1   NA
## 3204        600 ml NR Individual No Retornable    NA       1     1     1   NA
## 3205        600 ml NR Individual No Retornable     3       2     5     3    4
## 3206   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3207        400 ml NR Individual No Retornable    NA      NA     2     2   NA
## 3208     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1   NA
## 3209        2 Lts. NR   Familiar No Retornable    NA       3    14     8   11
## 3210  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3211  946 ml NR Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3212      Lata 16 Oz. Individual No Retornable    NA      NA     0    NA   NA
## 3213     1 Ltro. N.R.   Familiar No Retornable    23      21    34    25   27
## 3214        2 Lts. NR   Familiar No Retornable    20      25    28    20   34
## 3215      2.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 3216    235 ml NR Vid Individual No Retornable     3       6     9     4    5
## 3217 500 ml NR Vidrio Individual No Retornable    11      17    17    15   15
## 3218             Lata Individual No Retornable    NA       2    NA    NA   NA
## 3219      1.5 Lts. NR   Familiar No Retornable     1      NA     4     2    4
## 3220        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 3221      2.5 Lts. NR   Familiar No Retornable    18       7    21    25   21
## 3222 500 ml NR Vidrio Individual No Retornable     4       4     5     8    6
## 3223      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    1
## 3224      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3225     1.250 Lts NR   Familiar No Retornable    58      61    63    50   63
## 3226      1.5 Lts. NR   Familiar No Retornable    35      NA    NA    NA   NA
## 3227     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3   NA
## 3228     1.750 Lts NR   Familiar No Retornable    15      67    62    64   74
## 3229    12 Oz. NR Pet Individual No Retornable     5       8    11     5    6
## 3230        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3231      2.5 Lts. NR   Familiar No Retornable    32      32    46    42   42
## 3232 2.5 Lts. Ret Pet   Familiar    Retornable   127     144   148   127  137
## 3233    235 ml NR Vid Individual No Retornable     5       9    11     6   11
## 3234 500 ml NR Vidrio Individual No Retornable    27      30    46    19   34
## 3235       500 ml Ret Individual    Retornable    40      49    70    53   55
## 3236        600 ml NR Individual No Retornable    NA      NA    NA    18   NA
## 3237             Lata Individual No Retornable     2       3     2     3    2
## 3238      Lata 16 Oz. Individual No Retornable     2       2     2     6    4
## 3239      Lata 235 ml Individual No Retornable     1       1     1     2    3
## 3240     1 Ltro. N.R. Individual No Retornable    NA       1     1     2    1
## 3241        600 ml NR Individual No Retornable     1       1     1     1    1
## 3242    237 ml NR Pet Individual No Retornable    NA       2    NA    NA   NA
## 3243     250 ml Tetra Individual No Retornable    NA       0     0     0   NA
## 3244   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 3245    413 ml NR VId Individual No Retornable     5       7    11     9    7
## 3246     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3247     1 Ltro. N.R.   Familiar No Retornable     1       2     1     2    3
## 3248    237 ml NR Pet Individual No Retornable     0       1     1    NA   NA
## 3249    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1    1
## 3250    1 Ltro. Tetra   Familiar No Retornable    NA       1     1     1   NA
## 3251     200 ml Tetra Individual No Retornable     1       1     1     2    1
## 3252        600 ml NR Individual No Retornable     4       5     8     8    6
## 3253        600 ml NR Individual No Retornable     4       3     6     3    4
## 3254      1.5 Lts. NR   Familiar No Retornable     2       2     2     2   NA
## 3255        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 3256        2 Lts. NR   Familiar No Retornable    11       8    20    11   11
## 3257       500 ml Ret Individual    Retornable    NA      NA     2     2    2
## 3258        600 ml NR Individual No Retornable     2       6     5     4    8
## 3259        2 Lts. NR   Familiar No Retornable    NA      NA     1     1   NA
## 3260      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3261        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3262        600 ml NR Individual No Retornable     1       5     6     5    3
## 3263        2 Lts. NR   Familiar No Retornable    11       8    20    11   17
## 3264       500 ml Ret Individual    Retornable     2       2    NA    NA    2
## 3265        600 ml NR Individual No Retornable     4       5     6     4    5
## 3266        2 Lts. NR   Familiar No Retornable    14      20    17    20   20
## 3267   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 3268        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3269       500 ml Ret Individual    Retornable     2       2     2     2    2
## 3270        600 ml NR Individual No Retornable     5       8     4     6    6
## 3271    413 ml NR VId Individual No Retornable    NA       0    NA    NA   NA
## 3272        600 ml NR Individual No Retornable     6       5     6     3    6
## 3273        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3274        600 ml NR Individual No Retornable     5       5     6     6    8
## 3275     1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 3276      1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 3277   300 ML. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3278        5 Lts. NR   Familiar No Retornable    11      NA    NA    NA   NA
## 3279        600 ml NR Individual No Retornable    NA       3     3    NA   10
## 3280     1 Ltro. N.R. Individual No Retornable     1       1     6     1    1
## 3281      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3282        600 ml NR Individual No Retornable     1       1     1     1    1
## 3283   300 ML. NR PET Individual No Retornable     1       1    NA    NA   NA
## 3284   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 3285        600 ml NR Individual No Retornable     1       2     3     1    1
## 3286   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 3287        400 ml NR Individual No Retornable    NA       0     0     1    1
## 3288     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1    1
## 3289     1 Ltro. N.R. Individual No Retornable     2      NA     2    NA   NA
## 3290        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 3291     200 ml Tetra Individual No Retornable     1       1    NA    NA   NA
## 3292  946 ml NR Tetra   Familiar No Retornable    NA       0    NA    NA    2
## 3293  946 ml NR Tetra   Familiar No Retornable     1       0    NA    NA   NA
## 3294    500 ml NR PET Individual No Retornable     1      NA     1     1    2
## 3295      Lata 16 Oz. Individual No Retornable    NA       0     0     1    0
## 3296   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3297     1 Ltro. N.R.   Familiar No Retornable     2       6     8     8    8
## 3298        2 Lts. NR   Familiar No Retornable     3       6     3     6   11
## 3299       2 Lts. Ret   Familiar    Retornable    17      25    25    20    6
## 3300      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 3301    235 ml NR Vid Individual No Retornable     3       3     3     1    4
## 3302        400 ml NR Individual No Retornable     2       2     2     3    3
## 3303 500 ml NR Vidrio Individual No Retornable     4      11     8     6    8
## 3304             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3305      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 3306        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6    3
## 3307    235 ml NR Vid Individual No Retornable    NA       1     1     1    1
## 3308 500 ml NR Vidrio Individual No Retornable     2       2     4     6    4
## 3309       500 ml Ret Individual    Retornable    NA      NA    NA    NA    4
## 3310     1.250 Lts NR   Familiar No Retornable    13      21    21    21   29
## 3311      1.5 Lts. NR   Familiar No Retornable    10       3    NA    NA   NA
## 3312     1.5 Lts. Ret   Familiar    Retornable    13      19    16    10   16
## 3313     1.750 Lts NR   Familiar No Retornable     5      17    12    10   10
## 3314    12 Oz. NR Pet Individual No Retornable     6       6    11     5    5
## 3315        2 Lts. NR   Familiar No Retornable    11      11    11    11   11
## 3316       2 Lts. Ret   Familiar    Retornable     6      11    17    11    8
## 3317      2.5 Lts. NR   Familiar No Retornable    49       4     7    67   21
## 3318 2.5 Lts. Ret Pet   Familiar    Retornable    46       4    56    60   92
## 3319    235 ml NR Vid Individual No Retornable     4       5     6     4    6
## 3320   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3321 500 ml NR Vidrio Individual No Retornable     2       6    30    13   27
## 3322       500 ml Ret Individual    Retornable    34      44    70    42   72
## 3323        600 ml NR Individual No Retornable    NA      NA    NA    10   NA
## 3324             Lata Individual No Retornable    NA      NA    NA     3    3
## 3325      Lata 16 Oz. Individual No Retornable    NA      NA    NA     2    2
## 3326      Lata 235 ml Individual No Retornable    NA       4    NA    NA    1
## 3327     1 Ltro. N.R. Individual No Retornable     1       1     2     2    3
## 3328        600 ml NR Individual No Retornable     1       1     1     3    2
## 3329     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    4
## 3330    237 ml NR Pet Individual No Retornable    NA       1    NA     2    1
## 3331     250 ml Tetra Individual No Retornable     4       4     8     6    9
## 3332    413 ml NR VId Individual No Retornable     0       1     2     3    5
## 3333  946 ml NR Tetra Individual No Retornable     4      NA     8     6    4
## 3334      Lata 335 ml Individual No Retornable     0       1    NA     1    1
## 3335     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3336    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3337     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 3338    237 ml NR Pet Individual No Retornable     1       1     0     0    1
## 3339    1 Ltro. Tetra   Familiar No Retornable     1       3     2     1    2
## 3340    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3341    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3342    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1    1
## 3343     200 ml Tetra Individual No Retornable     2       2     2     2    4
## 3344        600 ml NR Individual No Retornable     1       2     4     3    3
## 3345        600 ml NR Individual No Retornable     1       2     2     1    3
## 3346        600 ml NR Individual No Retornable     1       1     1     3    1
## 3347      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 3348        2 Lts. NR   Familiar No Retornable    NA       3    11     8    3
## 3349   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 3350        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3351       500 ml Ret Individual    Retornable    NA       2     3    NA    6
## 3352        600 ml NR Individual No Retornable     1       1     3     3    3
## 3353      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3354        2 Lts. NR   Familiar No Retornable     3      NA    NA     6    6
## 3355       500 ml Ret Individual    Retornable    NA       2     1    NA   NA
## 3356        600 ml NR Individual No Retornable     3       3     3     2    4
## 3357      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3358      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3359        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3360   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 3361       500 ml Ret Individual    Retornable    NA      NA     3     2    2
## 3362        600 ml NR Individual No Retornable     1       1     1     1    2
## 3363        600 ml NR Individual No Retornable     2       1     3     1    2
## 3364        2 Lts. NR   Familiar No Retornable    NA       6     8     6    8
## 3365       500 ml Ret Individual    Retornable     2       2     2     4    2
## 3366        600 ml NR Individual No Retornable    NA       1     1    NA    4
## 3367      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3368     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 3369      1.5 Lts. NR   Familiar No Retornable     2       2     2     2   NA
## 3370        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6    3
## 3371   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 3372        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 3373       500 ml Ret Individual    Retornable     2      NA     5     2    6
## 3374        600 ml NR Individual No Retornable    NA      NA     3     1    4
## 3375      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3376     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 3377    413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 3378        600 ml NR Individual No Retornable     1       3     4     6    3
## 3379        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3380     1 Ltro. N.R. Individual No Retornable    NA      19    17    NA    4
## 3381      1.5 Lts. NR Individual No Retornable    NA       3    48    NA    3
## 3382        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 3383     1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 3384     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3385  946 ml NR Tetra   Familiar No Retornable     1       0     1    NA   NA
## 3386  946 ml NR Tetra   Familiar No Retornable    NA      NA     0     0   NA
## 3387      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3388     1 Ltro. N.R.   Familiar No Retornable     6       4    NA    NA   NA
## 3389        2 Lts. NR   Familiar No Retornable    NA       6     8     6    8
## 3390      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 3391    235 ml NR Vid Individual No Retornable    NA      NA     2    NA   NA
## 3392 500 ml NR Vidrio Individual No Retornable     6       2     4    NA    6
## 3393      1.5 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3394 500 ml NR Vidrio Individual No Retornable     1       2    NA    NA   NA
## 3395      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 3396     1.250 Lts NR   Familiar No Retornable     5       5    NA     5   NA
## 3397     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3398     1.750 Lts NR   Familiar No Retornable     7      12    10    12   10
## 3399    12 Oz. NR Pet Individual No Retornable    NA      NA     2     2   NA
## 3400        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3401      2.5 Lts. NR   Familiar No Retornable     4       7    14    18    7
## 3402 2.5 Lts. Ret Pet   Familiar    Retornable    NA      56    NA    NA   39
## 3403    235 ml NR Vid Individual No Retornable     5       3     5     2    3
## 3404 500 ml NR Vidrio Individual No Retornable    NA      NA    13    13   13
## 3405       500 ml Ret Individual    Retornable    19      19    21    15   19
## 3406        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 3407             Lata Individual No Retornable    NA       1     1     2    2
## 3408      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 3409     250 ml Tetra Individual No Retornable     0      NA    NA    NA    1
## 3410    413 ml NR VId Individual No Retornable     0       5     2     6    2
## 3411      Lata 335 ml Individual No Retornable     1      NA    NA    NA   NA
## 3412     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3413    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3414    1 Ltro. Tetra   Familiar No Retornable     6       2     1     1    1
## 3415    1 Ltro. Tetra   Familiar No Retornable     3       2    NA     1    1
## 3416    1 Ltro. Tetra   Familiar No Retornable     3       5     4     1    1
## 3417     200 ml Tetra Individual No Retornable    NA       1     1    NA    0
## 3418        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3419        600 ml NR Individual No Retornable    NA       1     2    NA   NA
## 3420        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 3421       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3422        600 ml NR Individual No Retornable     2       3     2     1    1
## 3423        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3424       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3425        600 ml NR Individual No Retornable    NA       1     1    NA   NA
## 3426        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3427       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3428        600 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 3429        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3430        600 ml NR Individual No Retornable     1       2    NA     1    1
## 3431        2 Lts. NR   Familiar No Retornable     3       3     3     6    6
## 3432       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3433        600 ml NR Individual No Retornable     3       1     2     2    2
## 3434        600 ml NR Individual No Retornable     1       1     8    NA    3
## 3435      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3436        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 3437     1 Ltro. N.R. Individual No Retornable     4       2     2     2    2
## 3438      1.5 Lts. NR Individual No Retornable     3      NA     3     3    3
## 3439        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3440     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 3441        600 ml NR Individual No Retornable    NA      NA     1     1   NA
## 3442        600 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 3443     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 3444     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3445        2 Lts. NR   Familiar No Retornable     3      NA     3     3    3
## 3446  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3447      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3448   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3449     1 Ltro. N.R.   Familiar No Retornable     6       2     2     2    4
## 3450      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3451    235 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 3452        400 ml NR Individual No Retornable     2      NA     2    NA   NA
## 3453 500 ml NR Vidrio Individual No Retornable     6       6     6     8    4
## 3454      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 3455        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3456    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 3457 500 ml NR Vidrio Individual No Retornable     4       5     4     4    3
## 3458     1.250 Lts NR   Familiar No Retornable     8      11    18    18   18
## 3459     1.5 Lts. Ret   Familiar    Retornable    22       3    10    13   19
## 3460     1.750 Lts NR   Familiar No Retornable    10       2     2     2   NA
## 3461    12 Oz. NR Pet Individual No Retornable     6       5     3     5    8
## 3462      2.5 Lts. NR   Familiar No Retornable    25       7    28    21   25
## 3463 2.5 Lts. Ret Pet   Familiar    Retornable    21      25    46    46   70
## 3464    235 ml NR Vid Individual No Retornable     4       3     4     6    5
## 3465    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3466 500 ml NR Vidrio Individual No Retornable     6       6     6    11   15
## 3467       500 ml Ret Individual    Retornable    27      23    30    38   51
## 3468        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3469             Lata Individual No Retornable    NA      NA    NA    NA    2
## 3470     1 Ltro. N.R. Individual No Retornable     1       2     2     3    3
## 3471        600 ml NR Individual No Retornable     3       3     1     4    4
## 3472     250 ml Tetra Individual No Retornable     0       0     0     0   NA
## 3473   250 ML. NR VID Individual No Retornable     0      NA    NA    NA   NA
## 3474    413 ml NR VId Individual No Retornable     1      NA     0     0    2
## 3475     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3476    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3477     1 Ltro. N.R.   Familiar No Retornable     1       1    NA    NA   NA
## 3478    237 ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3479    1 Ltro. Tetra   Familiar No Retornable     2       1    NA    NA   NA
## 3480    1 Ltro. Tetra   Familiar No Retornable     3       4     3     3    5
## 3481    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 3482     200 ml Tetra Individual No Retornable     0       0     0     0   NA
## 3483      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    6
## 3484        600 ml NR Individual No Retornable     1      NA     1     1   NA
## 3485        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3486      1.5 Lts. NR   Familiar No Retornable    NA       2     4     2   NA
## 3487        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3488      2.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 3489   250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3490       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3491        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3492        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 3493       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3494        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3495        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3496       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3497        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3498        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3499      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3500        2 Lts. NR   Familiar No Retornable     8       6     6     6    3
## 3501       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 3502        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3503        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3504      2.5 Lts. NR   Familiar No Retornable     4       2     4     2    5
## 3505        400 ml NR Individual No Retornable    NA      NA     1     0   NA
## 3506       500 ml Ret Individual    Retornable     1      NA     3     1    1
## 3507        600 ml NR Individual No Retornable     1       1     1     1    1
## 3508        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3509        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3510     1 Ltro. N.R. Individual No Retornable     6      10    27    19   15
## 3511      1.5 Lts. NR Individual No Retornable    16       8    60    48   19
## 3512        600 ml NR Individual No Retornable     3       8    10    10   10
## 3513     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3514        600 ml NR Individual No Retornable     1       1     1     1    1
## 3515   300 ML. NR PET Individual No Retornable     3       2     2     1    3
## 3516        473 ml NR Individual No Retornable     0       0     0     0    1
## 3517        600 ml NR Individual No Retornable     2       2     2     1    2
## 3518   250 ml. NR PET Individual No Retornable     2       2     1     1    3
## 3519        400 ml NR Individual No Retornable     1       2     1     1    1
## 3520     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 3521    12 Oz. NR Pet Individual No Retornable     1      NA     2     1    1
## 3522        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 3523      Lata 16 Oz. Individual No Retornable    NA       1    NA    NA   NA
## 3524     1 Ltro. N.R.   Familiar No Retornable    11      11     6    11   11
## 3525    235 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 3526 500 ml NR Vidrio Individual No Retornable     8       6     6     6    8
## 3527      1.5 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3528        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    1
## 3529    235 ml NR Vid Individual No Retornable    NA       3     3     2    1
## 3530 500 ml NR Vidrio Individual No Retornable     2       3     6     4    4
## 3531        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3532      Lata 235 ml Individual No Retornable    NA      NA    NA     2   NA
## 3533      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3534     1.250 Lts NR   Familiar No Retornable    24      21    21    26   32
## 3535     1.5 Lts. Ret   Familiar    Retornable    19      16    22    19   22
## 3536     1.750 Lts NR   Familiar No Retornable     2       7    10     5    7
## 3537    12 Oz. NR Pet Individual No Retornable     3       6     5     9    5
## 3538      2.5 Lts. NR   Familiar No Retornable     4       7     7     7    7
## 3539 2.5 Lts. Ret Pet   Familiar    Retornable    67      63   113    70  109
## 3540    235 ml NR Vid Individual No Retornable     4       4     3     4    6
## 3541 500 ml NR Vidrio Individual No Retornable    21      25    17    11   27
## 3542       500 ml Ret Individual    Retornable    68      59    70    66   97
## 3543        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3544      Lata 16 Oz. Individual No Retornable     2       2     2     2    6
## 3545      Lata 235 ml Individual No Retornable     3       3     2     7    4
## 3546     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3547        600 ml NR Individual No Retornable     1       1     1     1    1
## 3548     250 ml Tetra Individual No Retornable     2       2     2     2    2
## 3549    413 ml NR VId Individual No Retornable     4       2     3     3    3
## 3550     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3551     1 Ltro. N.R.   Familiar No Retornable     4       3     2     3    2
## 3552    237 ml NR Pet Individual No Retornable     0       1     0     1    0
## 3553    1 Ltro. Tetra   Familiar No Retornable     1      NA     1     1    1
## 3554    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3555    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 3556     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3557      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 3558        600 ml NR Individual No Retornable     1       1     1     2    3
## 3559        600 ml NR Individual No Retornable     1       1     1     2    1
## 3560        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3561      1.5 Lts. NR   Familiar No Retornable     2       2     4     2    2
## 3562        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3563   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 3564        400 ml NR Individual No Retornable     2       1     2     1    2
## 3565       500 ml Ret Individual    Retornable     1       1     1     1    1
## 3566        600 ml NR Individual No Retornable     2       1     1     1    1
## 3567        2 Lts. NR   Familiar No Retornable     1      NA     2     1    1
## 3568       500 ml Ret Individual    Retornable     1       1     1     1    1
## 3569        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3570        400 ml NR Individual No Retornable     2       2     1     1    1
## 3571       500 ml Ret Individual    Retornable     1       1     1     1    1
## 3572        600 ml NR Individual No Retornable     2       1     1     1   NA
## 3573        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3574        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3575       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3576        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3577      1.5 Lts. NR   Familiar No Retornable     4       2     2     2    2
## 3578        2 Lts. NR   Familiar No Retornable    NA       3     1    NA   NA
## 3579        400 ml NR Individual No Retornable     2       2     1     1    2
## 3580       500 ml Ret Individual    Retornable     1       1     1     1    1
## 3581        600 ml NR Individual No Retornable     1       1     1     1    1
## 3582     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 3583    413 ml NR VId Individual No Retornable    NA      NA     0    NA   NA
## 3584        600 ml NR Individual No Retornable     2       3     4     2    3
## 3585      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 3586        600 ml NR Individual No Retornable     1       1     3     4    4
## 3587     1 Ltro. N.R. Individual No Retornable     2       4     4     2   17
## 3588      1.5 Lts. NR Individual No Retornable     6       3     3     3   51
## 3589    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA    2
## 3590        600 ml NR Individual No Retornable    NA       3     3     3    3
## 3591     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3592        600 ml NR Individual No Retornable     1       1     1     1    1
## 3593        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 3594   250 ml. NR PET Individual No Retornable     2      NA    NA     1    3
## 3595     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    2
## 3596     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 3597    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3598        2 Lts. NR   Familiar No Retornable     3       3     3     3    6
## 3599     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3600  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 3601  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA    0
## 3602    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3603      Lata 16 Oz. Individual No Retornable    NA       0    NA     0    1
## 3604   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3605     1 Ltro. N.R.   Familiar No Retornable     4       4     2     4    4
## 3606        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3607      2.5 Lts. NR   Familiar No Retornable     4       7    11    18    7
## 3608    235 ml NR Vid Individual No Retornable     1       1     2     2    2
## 3609 500 ml NR Vidrio Individual No Retornable     6       6     8     6    8
## 3610        600 ml NR Individual No Retornable    NA      NA    NA    NA    5
## 3611             Lata Individual No Retornable    NA      NA     1    NA   NA
## 3612      1.5 Lts. NR   Familiar No Retornable     2       5     8     5    2
## 3613        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   10
## 3614    235 ml NR Vid Individual No Retornable     2       1     1     1    2
## 3615 500 ml NR Vidrio Individual No Retornable     3       2     4     3    3
## 3616       500 ml Ret Individual    Retornable     2       4     2     2    4
## 3617             Lata Individual No Retornable     2      NA    NA    NA   NA
## 3618      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 3619      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3620     1.250 Lts NR   Familiar No Retornable     5       8     8    11   16
## 3621      1.5 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3622     1.5 Lts. Ret   Familiar    Retornable     6       6    10    13   10
## 3623     1.750 Lts NR   Familiar No Retornable     2       7    12     7    2
## 3624    12 Oz. NR Pet Individual No Retornable     9       9     9     8    9
## 3625      2.5 Lts. NR   Familiar No Retornable    14      14    25    21   35
## 3626 2.5 Lts. Ret Pet   Familiar    Retornable    11       7    35    18   35
## 3627    235 ml NR Vid Individual No Retornable     7       6     7     6   10
## 3628   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3629 500 ml NR Vidrio Individual No Retornable    30      21    30    11   32
## 3630       500 ml Ret Individual    Retornable    34      32    46    46   51
## 3631      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3632        600 ml NR Individual No Retornable    NA      NA    NA    13   NA
## 3633             Lata Individual No Retornable     2       2     2     2    5
## 3634      Lata 16 Oz. Individual No Retornable     2      NA     2     2    4
## 3635      Lata 235 ml Individual No Retornable     1       1     1     3    1
## 3636     1 Ltro. N.R. Individual No Retornable     1       1     1     1    2
## 3637        600 ml NR Individual No Retornable     1       1     1     1    1
## 3638     250 ml Tetra Individual No Retornable     0       0     1     0    0
## 3639    413 ml NR VId Individual No Retornable     3       4     3     2    3
## 3640  946 ml NR Tetra Individual No Retornable     2      NA     2     2   NA
## 3641     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3642     1 Ltro. N.R.   Familiar No Retornable     2       1     1     2    2
## 3643    237 ml NR Pet Individual No Retornable     1      NA     0     0    1
## 3644    1 Ltro. Tetra   Familiar No Retornable     1       1     1    NA    1
## 3645    1 Ltro. Tetra   Familiar No Retornable     2      NA     5    NA    1
## 3646    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 3647     200 ml Tetra Individual No Retornable     1       2     1     1    2
## 3648      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 3649        600 ml NR Individual No Retornable    NA       1     3     1    1
## 3650        600 ml NR Individual No Retornable     1       1     1     3    2
## 3651      1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 3652        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3653      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3654        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 3655   250 ml. NR PET Individual No Retornable    NA      NA     1    NA    1
## 3656        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 3657       500 ml Ret Individual    Retornable    NA       3     5     2    1
## 3658        600 ml NR Individual No Retornable     3       3     2     2    3
## 3659        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    3
## 3660       500 ml Ret Individual    Retornable    NA       1     1     2    1
## 3661        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 3662        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3663        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3664   250 ml. NR PET Individual No Retornable    NA      NA     1    NA    1
## 3665       500 ml Ret Individual    Retornable    NA       1     1     2    1
## 3666        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3667        600 ml NR Individual No Retornable     2       2     2     2    5
## 3668        2 Lts. NR   Familiar No Retornable     3       3     6    NA    6
## 3669       500 ml Ret Individual    Retornable     4      NA     2     2    2
## 3670        600 ml NR Individual No Retornable     2       1     1     1    1
## 3671      1.5 Lts. NR   Familiar No Retornable    NA       2    NA     2    2
## 3672     1.750 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3673        2 Lts. NR   Familiar No Retornable    NA       3     6    NA    3
## 3674   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 3675        400 ml NR Individual No Retornable     1      NA     0     0    1
## 3676       500 ml Ret Individual    Retornable     2       3     1     2    3
## 3677        600 ml NR Individual No Retornable     4       4     3     4    6
## 3678    413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 3679        600 ml NR Individual No Retornable     6       1     4     5    5
## 3680        600 ml NR Individual No Retornable     1      NA    NA     1   NA
## 3681      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 3682        600 ml NR Individual No Retornable     3      NA     1     1    3
## 3683     1 Ltro. N.R. Individual No Retornable     2       4     4    11    8
## 3684      1.5 Lts. NR Individual No Retornable     6      10     6    13   16
## 3685        600 ml NR Individual No Retornable     5       3     8     3    5
## 3686     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1    1
## 3687        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3688        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3689   250 ml. NR PET Individual No Retornable     1       2     1     3    2
## 3690     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     1    1
## 3691     1 Ltro. N.R. Individual No Retornable     2       2     2     2   NA
## 3692        2 Lts. NR   Familiar No Retornable     3       3    NA     8    3
## 3693      Lata 16 Oz. Individual No Retornable    NA      NA     0     0    0
## 3694   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3695     1 Ltro. N.R.   Familiar No Retornable    NA       4     2     6    6
## 3696       12 Oz. Ret Individual    Retornable     2       2    NA     2    3
## 3697      2.5 Lts. NR   Familiar No Retornable    11      NA     4    NA    7
## 3698    235 ml NR Vid Individual No Retornable     1       1     3     1    2
## 3699 500 ml NR Vidrio Individual No Retornable     4       8     6     6    6
## 3700      1.5 Lts. NR   Familiar No Retornable    NA       4     2    NA    2
## 3701        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3702      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA    4
## 3703    235 ml NR Vid Individual No Retornable     1      NA    NA     1   NA
## 3704 500 ml NR Vidrio Individual No Retornable    NA       2     4     2    2
## 3705      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3706     1.250 Lts NR   Familiar No Retornable    NA       3     5     8    5
## 3707      1.5 Lts. NR   Familiar No Retornable    19       6    NA    NA   NA
## 3708     1.5 Lts. Ret   Familiar    Retornable    16      10     6     6   10
## 3709     1.750 Lts NR   Familiar No Retornable     2      12    32    22   37
## 3710    12 Oz. NR Pet Individual No Retornable     5       5     5     5    5
## 3711       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 3712      2.5 Lts. NR   Familiar No Retornable    11      14    25    14   18
## 3713 2.5 Lts. Ret Pet   Familiar    Retornable    88      70    85    81  116
## 3714    235 ml NR Vid Individual No Retornable     5       2     4     4    4
## 3715    500 ml NR PET Individual No Retornable     6       4     4     6    4
## 3716 500 ml NR Vidrio Individual No Retornable    15      15    19    13   25
## 3717       500 ml Ret Individual    Retornable    57      53    59    61   57
## 3718      6.5 Oz. Ret Individual    Retornable    NA       1     2     2    2
## 3719        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 3720             Lata Individual No Retornable     2       3     3     2    6
## 3721     1 Ltro. N.R. Individual No Retornable     1      NA     2     2    3
## 3722        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3723     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 3724     250 ml Tetra Individual No Retornable     2       1     0     0    0
## 3725   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 3726    413 ml NR VId Individual No Retornable    10       4     9    10   14
## 3727      Lata 335 ml Individual No Retornable     1       3    NA     3    0
## 3728     1 Ltro. N.R.   Familiar No Retornable     2      NA     1    NA    1
## 3729    1 Ltro. Tetra   Familiar No Retornable     2       2     2     2    1
## 3730    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 3731    1 Ltro. Tetra   Familiar No Retornable     1       2     1    NA    3
## 3732    1 Ltro. Tetra   Familiar No Retornable    NA       1     1    NA    1
## 3733     200 ml Tetra Individual No Retornable     2       2     2     2    2
## 3734        600 ml NR Individual No Retornable    NA      NA     1     1    3
## 3735        600 ml NR Individual No Retornable    NA       4     4     1    3
## 3736        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3737      1.5 Lts. NR   Familiar No Retornable     2      NA     8     2   NA
## 3738        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3739      2.5 Lts. NR   Familiar No Retornable     4       4    NA     4    4
## 3740   250 ml. NR PET Individual No Retornable     1      NA     1     1   NA
## 3741       500 ml Ret Individual    Retornable    NA       2     2    NA    2
## 3742        600 ml NR Individual No Retornable     3       1     1     3    3
## 3743      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3744        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3745      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3746        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3747      1.5 Lts. NR   Familiar No Retornable     2       2     2     4   NA
## 3748      2.5 Lts. NR   Familiar No Retornable     7      NA    NA    NA   NA
## 3749   250 ml. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3750        600 ml NR Individual No Retornable     4       3     1     3    1
## 3751        600 ml NR Individual No Retornable    NA       4     1     3    3
## 3752        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3753      2.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 3754       500 ml Ret Individual    Retornable     2      NA     2     2   NA
## 3755        600 ml NR Individual No Retornable     1       1    NA    NA    1
## 3756      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3757      1.5 Lts. NR   Familiar No Retornable     4       4     6     2    4
## 3758        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 3759      2.5 Lts. NR   Familiar No Retornable     4       4     4     7   NA
## 3760   250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 3761        400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 3762       500 ml Ret Individual    Retornable     2      NA     4     2    4
## 3763        600 ml NR Individual No Retornable     5       3     4     3    5
## 3764      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3765        600 ml NR Individual No Retornable     1       1    NA     2    1
## 3766      1.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 3767        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 3768     1 Ltro. N.R. Individual No Retornable     2       8     4    NA    6
## 3769      1.5 Lts. NR Individual No Retornable    10       6     6    NA    6
## 3770        600 ml NR Individual No Retornable     3       3    NA    NA   NA
## 3771        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3772        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3773     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3774      Lata 450 ml Individual No Retornable     1       1    NA    NA   NA
## 3775    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3776      Lata 16 Oz. Individual No Retornable     0       1    NA    NA    0
## 3777     1 Ltro. N.R.   Familiar No Retornable     2       4    NA    NA    2
## 3778        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3779      2.5 Lts. NR   Familiar No Retornable    11       7    NA    NA   NA
## 3780    235 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 3781 500 ml NR Vidrio Individual No Retornable     4       4     2    NA    4
## 3782             Lata Individual No Retornable    NA       0     0    NA   NA
## 3783        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 3784 500 ml NR Vidrio Individual No Retornable     2       2    NA    NA    1
## 3785      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3786     1.250 Lts NR   Familiar No Retornable     5       8    NA    NA    3
## 3787     1.5 Lts. Ret   Familiar    Retornable    22      22     6    NA    6
## 3788     1.750 Lts NR   Familiar No Retornable    NA       7    NA    NA   NA
## 3789    12 Oz. NR Pet Individual No Retornable     5       3    NA    NA    2
## 3790      2.5 Lts. NR   Familiar No Retornable    14       7     4    NA    7
## 3791 2.5 Lts. Ret Pet   Familiar    Retornable    21      18    14    NA   18
## 3792    235 ml NR Vid Individual No Retornable     3       2     1    NA    1
## 3793 500 ml NR Vidrio Individual No Retornable    13      11     2    NA    8
## 3794       500 ml Ret Individual    Retornable    42      34    17    NA   25
## 3795        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3796             Lata Individual No Retornable    NA       0     1    NA    3
## 3797      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 3798        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3799    237 ml NR Pet Individual No Retornable    NA       0    NA    NA   NA
## 3800     250 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 3801    413 ml NR VId Individual No Retornable     1       2    NA    NA    0
## 3802     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3803        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3804        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3805      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 3806        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3807        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    1
## 3808        400 ml NR Individual No Retornable     1       1     0    NA   NA
## 3809       500 ml Ret Individual    Retornable     1       1    NA    NA   NA
## 3810        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3811        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    1
## 3812       500 ml Ret Individual    Retornable     1       1    NA    NA   NA
## 3813        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3814        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3815        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3816        400 ml NR Individual No Retornable     1       1     1    NA   NA
## 3817       500 ml Ret Individual    Retornable     1       1    NA    NA   NA
## 3818        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 3819        600 ml NR Individual No Retornable     1       1     1    NA   NA
## 3820        2 Lts. NR   Familiar No Retornable     3       6    NA    NA    1
## 3821       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 3822        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3823        2 Lts. NR   Familiar No Retornable     3       3     3    NA    1
## 3824   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3825        400 ml NR Individual No Retornable     1       1     0    NA    0
## 3826       500 ml Ret Individual    Retornable     1       3    NA    NA   NA
## 3827        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3828        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3829        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3830     1 Ltro. N.R. Individual No Retornable     2       4     6     2    6
## 3831      1.5 Lts. NR Individual No Retornable     3       3    10     3    3
## 3832        600 ml NR Individual No Retornable     3      NA     3     3   NA
## 3833     1 Ltro. N.R. Individual No Retornable     1       1     1     1   NA
## 3834        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3835        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3836     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1   NA
## 3837        2 Lts. NR   Familiar No Retornable     3       3     3     3   NA
## 3838  946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA    0
## 3839  946 ml NR Tetra   Familiar No Retornable    NA      NA     2    NA    0
## 3840     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2    2
## 3841       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 3842    235 ml NR Vid Individual No Retornable     3       2     2     2    1
## 3843 500 ml NR Vidrio Individual No Retornable     4       4     4     2    2
## 3844             Lata Individual No Retornable    NA       1    NA    NA   NA
## 3845      1.5 Lts. NR   Familiar No Retornable     2       1     1    NA   NA
## 3846        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3847    235 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 3848 500 ml NR Vidrio Individual No Retornable     1       2     2     1    2
## 3849     1.250 Lts NR   Familiar No Retornable     5       3     3     3   NA
## 3850     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3   NA
## 3851     1.750 Lts NR   Familiar No Retornable     2       2     2     2    5
## 3852    12 Oz. NR Pet Individual No Retornable     3       3     5    NA   NA
## 3853      2.5 Lts. NR   Familiar No Retornable     4       4     4     4   11
## 3854 2.5 Lts. Ret Pet   Familiar    Retornable     7       7     4     4    7
## 3855    235 ml NR Vid Individual No Retornable     4       4     3     2    1
## 3856 500 ml NR Vidrio Individual No Retornable    13      11    11     4   11
## 3857       500 ml Ret Individual    Retornable   123      85    95   116   21
## 3858        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 3859             Lata Individual No Retornable     1      NA    NA     2   NA
## 3860      Lata 235 ml Individual No Retornable     1      NA     1    NA   NA
## 3861     1 Ltro. N.R. Individual No Retornable     1       2     2     1   NA
## 3862        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3863    237 ml NR Pet Individual No Retornable    NA      NA    NA     1    1
## 3864     250 ml Tetra Individual No Retornable     4       5     3     4   NA
## 3865    413 ml NR VId Individual No Retornable     2       1     2     1    1
## 3866    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3867    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 3868    1 Ltro. Tetra   Familiar No Retornable    NA       1     1    NA   NA
## 3869    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA    1
## 3870     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3871      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3872        600 ml NR Individual No Retornable     1      NA     1     1    1
## 3873        600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 3874        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3875      1.5 Lts. NR   Familiar No Retornable     2      NA    NA    NA    2
## 3876        2 Lts. NR   Familiar No Retornable     1       4    NA    NA   NA
## 3877   250 ml. NR PET Individual No Retornable     1       1    NA    NA   NA
## 3878       500 ml Ret Individual    Retornable     3       2     2     5   NA
## 3879        600 ml NR Individual No Retornable     1       1     1     1    3
## 3880             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3881        2 Lts. NR   Familiar No Retornable     1       1     1    NA    1
## 3882       500 ml Ret Individual    Retornable     3       2     2     3   NA
## 3883             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3884        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3885      1.5 Lts. NR   Familiar No Retornable    NA      NA     2     2    2
## 3886       500 ml Ret Individual    Retornable     3       2     2     3    2
## 3887        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3888             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3889        2 Lts. NR   Familiar No Retornable     1       1    NA    NA    3
## 3890        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 3891      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 3892        2 Lts. NR   Familiar No Retornable     1       1    NA     3   NA
## 3893   250 ml. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 3894        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3895       500 ml Ret Individual    Retornable     3       2     2     5   NA
## 3896        600 ml NR Individual No Retornable     1       1     1     1    1
## 3897             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3898        600 ml NR Individual No Retornable     2       1     1     1   NA
## 3899 12 Oz. NR Vidrio Individual No Retornable    NA       1    NA    NA   NA
## 3900        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3901     1 Ltro. N.R. Individual No Retornable    NA       4     2    NA   NA
## 3902      1.5 Lts. NR Individual No Retornable    NA       3     3    NA   NA
## 3903        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3904   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3905        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3906   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3907     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2   NA
## 3908       12 Oz. Ret Individual    Retornable     2       3     3     3    5
## 3909    235 ml NR Vid Individual No Retornable     2      NA     3     1    3
## 3910 500 ml NR Vidrio Individual No Retornable    NA       2     2    NA   NA
## 3911       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 3912    235 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 3913 500 ml NR Vidrio Individual No Retornable     1      NA     4     2   NA
## 3914     1.250 Lts NR   Familiar No Retornable     5       3     5     3    3
## 3915     1.5 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 3916    12 Oz. NR Pet Individual No Retornable     2      NA    NA    NA   NA
## 3917       12 Oz. Ret Individual    Retornable     3      NA     6    NA    5
## 3918      2.5 Lts. NR   Familiar No Retornable     4       4     4     4   NA
## 3919 2.5 Lts. Ret Pet   Familiar    Retornable    14      11    14    14   14
## 3920    235 ml NR Vid Individual No Retornable     3       4     5     5    5
## 3921 500 ml NR Vidrio Individual No Retornable     4       6     8     4    8
## 3922       500 ml Ret Individual    Retornable    25      32    38    40   36
## 3923        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3924             Lata Individual No Retornable    NA       2    NA    NA   NA
## 3925     250 ml Tetra Individual No Retornable     0       0     0     0   NA
## 3926    413 ml NR VId Individual No Retornable     0       0    NA    NA    2
## 3927     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1    NA    1
## 3928    237 ml NR Pet Individual No Retornable    NA      NA     1    NA    1
## 3929    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 3930    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1   NA
## 3931    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3932     200 ml Tetra Individual No Retornable     0       1     0     0    0
## 3933      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     4   NA
## 3934        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3935        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 3936       500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 3937       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 3938        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3939        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 3940        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3941        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 3942     1 Ltro. N.R. Individual No Retornable     2       6     2     2    2
## 3943      1.5 Lts. NR Individual No Retornable     3      10     6     3    3
## 3944        5 Lts. NR   Familiar No Retornable    NA       4    NA     4   NA
## 3945        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3946     1 Ltro. N.R. Individual No Retornable     1       1     2     1    3
## 3947        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3948        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3949   250 ml. NR PET Individual No Retornable     2       2     2     2   NA
## 3950        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3951     1 Ltro. N.R.   Familiar No Retornable     1       2     2     3    1
## 3952    12 Oz. NR Pet Individual No Retornable     2       1     1     2   NA
## 3953        2 Lts. NR   Familiar No Retornable     3       3     3     3   NA
## 3954  946 ml NR Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3955      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3956     1 Ltro. N.R.   Familiar No Retornable     2       2     4     4    2
## 3957       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3958 500 ml NR Vidrio Individual No Retornable     2       4     2     2    2
## 3959      1.5 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 3960        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    1
## 3961 500 ml NR Vidrio Individual No Retornable     1       1     1     1   NA
## 3962      1 Ltro Ret.   Familiar    Retornable    NA      NA    NA    NA   NA
## 3963     1.250 Lts NR   Familiar No Retornable     8      11    13     8    8
## 3964     1.5 Lts. Ret   Familiar    Retornable    13      10    13    10   10
## 3965     1.750 Lts NR   Familiar No Retornable     2       2     2     5   NA
## 3966    12 Oz. NR Pet Individual No Retornable     5       5     8     5    3
## 3967      2.5 Lts. NR   Familiar No Retornable    14      11    11    11   11
## 3968 2.5 Lts. Ret Pet   Familiar    Retornable   109      92    85    74   70
## 3969    235 ml NR Vid Individual No Retornable     3       1     3     2    2
## 3970 500 ml NR Vidrio Individual No Retornable     8       8    13     4    6
## 3971       500 ml Ret Individual    Retornable    53      42    44    38   36
## 3972        600 ml NR Individual No Retornable    NA      NA    NA     5   NA
## 3973      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3974     1 Ltro. N.R. Individual No Retornable     1       1     1     1   NA
## 3975        600 ml NR Individual No Retornable     2       1     1     1    1
## 3976     250 ml Tetra Individual No Retornable     4       4     2     4    4
## 3977    413 ml NR VId Individual No Retornable     3       3     5     3    2
## 3978     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3979     1 Ltro. N.R.   Familiar No Retornable    NA       1     1    NA    1
## 3980    1 Ltro. Tetra   Familiar No Retornable     2       1     1     2   NA
## 3981    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 3982     200 ml Tetra Individual No Retornable     0       1     2     1   NA
## 3983        600 ml NR Individual No Retornable     1       1     1     1    1
## 3984        600 ml NR Individual No Retornable     3       1     1     1    1
## 3985       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3986        2 Lts. NR   Familiar No Retornable     3       3     3    NA    3
## 3987   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3988        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 3989       500 ml Ret Individual    Retornable     2       1     1     1    1
## 3990        600 ml NR Individual No Retornable     3       2     1     1    1
## 3991        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA   NA
## 3992       500 ml Ret Individual    Retornable     2       1     1     1    1
## 3993        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3994      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 3995        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3996       500 ml Ret Individual    Retornable     2       1     1     1    1
## 3997        600 ml NR Individual No Retornable     2       1     1     1    1
## 3998      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3999       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
##      Junio Julio Agosto Septiembre Octubre Noviembre Diciembre
## 1       NA    NA     NA         NA      NA        NA        NA
## 2        2    NA      2         NA      NA        NA        NA
## 3        1     1      3         NA      NA        NA        NA
## 4        8    15     19         NA      NA        NA        NA
## 5       13    10     22         NA      NA        NA        NA
## 6       11     7     11         NA      NA        NA        NA
## 7        3    NA      5         NA      NA        NA        NA
## 8       NA    NA     NA         NA      NA        NA        NA
## 9       NA    NA     NA         NA      NA        NA        NA
## 10       1    NA      1         NA      NA        NA        NA
## 11      NA     1      2         NA      NA        NA        NA
## 12       1     1      1         NA      NA        NA        NA
## 13       4     2      2         NA      NA        NA        NA
## 14       1     2      1         NA      NA        NA        NA
## 15      11     6     17         NA      NA        NA        NA
## 16       1    NA      1         NA      NA        NA        NA
## 17       1    NA      2         NA      NA        NA        NA
## 18       4    NA      4         NA      NA        NA        NA
## 19       2    NA      2         NA      NA        NA        NA
## 20       2     0      2         NA      NA        NA        NA
## 21      19    13     15         NA      NA        NA        NA
## 22      34    31     48         NA      NA        NA        NA
## 23       2     2      1         NA      NA        NA        NA
## 24       6     6     11         NA      NA        NA        NA
## 25       2     2     NA         NA      NA        NA        NA
## 26      NA    NA     NA         NA      NA        NA        NA
## 27       3    NA     NA         NA      NA        NA        NA
## 28      NA    NA     NA         NA      NA        NA        NA
## 29       6     8      8         NA      NA        NA        NA
## 30      NA     2     NA         NA      NA        NA        NA
## 31      34    37     40         NA      NA        NA        NA
## 32      NA    NA     NA         NA      NA        NA        NA
## 33      NA    NA     NA         NA      NA        NA        NA
## 34      15    17     20         NA      NA        NA        NA
## 35       8     3      8         NA      NA        NA        NA
## 36       5     6     11         NA      NA        NA        NA
## 37      28    34     14         NA      NA        NA        NA
## 38      39    53     95         NA      NA        NA        NA
## 39      39    35     42         NA      NA        NA        NA
## 40       7     8      8         NA      NA        NA        NA
## 41      21    15     15         NA      NA        NA        NA
## 42      44    36     42         NA      NA        NA        NA
## 43      10    10     15         NA      NA        NA        NA
## 44       3     3      2         NA      NA        NA        NA
## 45       2    NA      2         NA      NA        NA        NA
## 46       1     2     NA         NA      NA        NA        NA
## 47      NA     4      3         NA      NA        NA        NA
## 48       3    NA      1         NA      NA        NA        NA
## 49       2     2      2         NA      NA        NA        NA
## 50       3     3      5         NA      NA        NA        NA
## 51       4     6      4         NA      NA        NA        NA
## 52       1     0      0         NA      NA        NA        NA
## 53       8    NA      3         NA      NA        NA        NA
## 54       1    NA     NA         NA      NA        NA        NA
## 55       1    NA      1         NA      NA        NA        NA
## 56       1     1      1         NA      NA        NA        NA
## 57       3     2      3         NA      NA        NA        NA
## 58       3     1      4         NA      NA        NA        NA
## 59      NA    13     11         NA      NA        NA        NA
## 60      NA     1      3         NA      NA        NA        NA
## 61       1     5      1         NA      NA        NA        NA
## 62      NA    NA     NA         NA      NA        NA        NA
## 63      NA    NA     NA         NA      NA        NA        NA
## 64      NA     2     NA         NA      NA        NA        NA
## 65       8     8     11         NA      NA        NA        NA
## 66       1     1     NA         NA      NA        NA        NA
## 67      NA    NA     NA         NA      NA        NA        NA
## 68       3     3      3         NA      NA        NA        NA
## 69      NA    NA     NA         NA      NA        NA        NA
## 70       3     3      3         NA      NA        NA        NA
## 71      NA    NA     NA         NA      NA        NA        NA
## 72      NA    NA     NA         NA      NA        NA        NA
## 73      NA    NA     NA         NA      NA        NA        NA
## 74       1     1     NA         NA      NA        NA        NA
## 75      NA    NA     NA         NA      NA        NA        NA
## 76      NA    NA      1         NA      NA        NA        NA
## 77      NA    NA     NA         NA      NA        NA        NA
## 78      14    17     11         NA      NA        NA        NA
## 79       1    NA      1         NA      NA        NA        NA
## 80      NA    NA     NA         NA      NA        NA        NA
## 81      11    11     14         NA      NA        NA        NA
## 82       1    NA      1         NA      NA        NA        NA
## 83      NA    NA     NA         NA      NA        NA        NA
## 84       1     5      3         NA      NA        NA        NA
## 85      NA    NA     NA         NA      NA        NA        NA
## 86       1     6      6         NA      NA        NA        NA
## 87       2     2      3         NA      NA        NA        NA
## 88       4     2      2         NA      NA        NA        NA
## 89      13    13      6         NA      NA        NA        NA
## 90      NA    NA     NA         NA      NA        NA        NA
## 91       5    NA      3         NA      NA        NA        NA
## 92       1     1      1         NA      NA        NA        NA
## 93       1     1      1         NA      NA        NA        NA
## 94      NA    NA     NA         NA      NA        NA        NA
## 95       1     1      1         NA      NA        NA        NA
## 96      NA    NA     NA         NA      NA        NA        NA
## 97       1     1      1         NA      NA        NA        NA
## 98       3     3      3         NA      NA        NA        NA
## 99       0     0     NA         NA      NA        NA        NA
## 100      1    NA     NA         NA      NA        NA        NA
## 101     NA    NA      0         NA      NA        NA        NA
## 102     11     4      4         NA      NA        NA        NA
## 103     NA    NA      3         NA      NA        NA        NA
## 104     11     4     NA         NA      NA        NA        NA
## 105      2     6      6         NA      NA        NA        NA
## 106      5    NA     NA         NA      NA        NA        NA
## 107      1     1      1         NA      NA        NA        NA
## 108      6     6      4         NA      NA        NA        NA
## 109     NA    NA     NA         NA      NA        NA        NA
## 110     NA    NA     NA         NA      NA        NA        NA
## 111     NA    30     27         NA      NA        NA        NA
## 112     11    13     11         NA      NA        NA        NA
## 113      3    NA     NA         NA      NA        NA        NA
## 114     51    51     29         NA      NA        NA        NA
## 115     NA     2      2         NA      NA        NA        NA
## 116      6     3      9         NA      NA        NA        NA
## 117     11    18     18         NA      NA        NA        NA
## 118     85    70     74         NA      NA        NA        NA
## 119      2     1      1         NA      NA        NA        NA
## 120     NA     1      1         NA      NA        NA        NA
## 121      8     4      2         NA      NA        NA        NA
## 122      8    15     15         NA      NA        NA        NA
## 123     78    80     70         NA      NA        NA        NA
## 124      3    NA     NA         NA      NA        NA        NA
## 125      2     3     NA         NA      NA        NA        NA
## 126      2     2      2         NA      NA        NA        NA
## 127      1     1      1         NA      NA        NA        NA
## 128      1     1      1         NA      NA        NA        NA
## 129      1     1      1         NA      NA        NA        NA
## 130     NA    NA     NA         NA      NA        NA        NA
## 131      2     1      3         NA      NA        NA        NA
## 132      8     4      5         NA      NA        NA        NA
## 133     NA     0     NA         NA      NA        NA        NA
## 134     NA     0      0         NA      NA        NA        NA
## 135     NA    NA     NA         NA      NA        NA        NA
## 136      1     1      1         NA      NA        NA        NA
## 137     NA    NA     NA         NA      NA        NA        NA
## 138     NA    NA     NA         NA      NA        NA        NA
## 139     NA    NA     NA         NA      NA        NA        NA
## 140      1     2      1         NA      NA        NA        NA
## 141      1     1      1         NA      NA        NA        NA
## 142      3     4      2         NA      NA        NA        NA
## 143     NA    NA     NA         NA      NA        NA        NA
## 144      2     2     NA         NA      NA        NA        NA
## 145      3     3      6         NA      NA        NA        NA
## 146     NA     1      1         NA      NA        NA        NA
## 147      1     1      0         NA      NA        NA        NA
## 148      4     6      5         NA      NA        NA        NA
## 149      1     1      2         NA      NA        NA        NA
## 150     NA    NA     NA         NA      NA        NA        NA
## 151     NA    NA     NA         NA      NA        NA        NA
## 152      2     2      1         NA      NA        NA        NA
## 153     NA    NA      3         NA      NA        NA        NA
## 154      3     3     NA         NA      NA        NA        NA
## 155      0     1     NA         NA      NA        NA        NA
## 156      2     4      1         NA      NA        NA        NA
## 157      1     1     NA         NA      NA        NA        NA
## 158      3     4      4         NA      NA        NA        NA
## 159     NA    NA     NA         NA      NA        NA        NA
## 160     NA    NA     NA         NA      NA        NA        NA
## 161     NA    NA     NA         NA      NA        NA        NA
## 162     NA    NA      2         NA      NA        NA        NA
## 163     NA     6      6         NA      NA        NA        NA
## 164     NA    NA     NA         NA      NA        NA        NA
## 165     NA    NA      1         NA      NA        NA        NA
## 166      0     0      1         NA      NA        NA        NA
## 167      4     8      7         NA      NA        NA        NA
## 168      3     4      3         NA      NA        NA        NA
## 169     NA     1     NA         NA      NA        NA        NA
## 170     NA    NA     NA         NA      NA        NA        NA
## 171      1     3      3         NA      NA        NA        NA
## 172     NA    NA     NA         NA      NA        NA        NA
## 173      3     1      1         NA      NA        NA        NA
## 174     19    21     19         NA      NA        NA        NA
## 175     19    22     19         NA      NA        NA        NA
## 176     NA     5      8         NA      NA        NA        NA
## 177      1     1      1         NA      NA        NA        NA
## 178      1     1      1         NA      NA        NA        NA
## 179     NA     1      1         NA      NA        NA        NA
## 180      1     1      1         NA      NA        NA        NA
## 181      2     2      2         NA      NA        NA        NA
## 182      0     2      1         NA      NA        NA        NA
## 183     NA     1     NA         NA      NA        NA        NA
## 184      2     2      2         NA      NA        NA        NA
## 185      2     1      1         NA      NA        NA        NA
## 186      6     6      8         NA      NA        NA        NA
## 187      2     1      2         NA      NA        NA        NA
## 188     NA     1     NA         NA      NA        NA        NA
## 189      0     0     NA         NA      NA        NA        NA
## 190     NA     1     NA         NA      NA        NA        NA
## 191      0     1      1         NA      NA        NA        NA
## 192     13    15     11         NA      NA        NA        NA
## 193     11     8      6         NA      NA        NA        NA
## 194      2     2      4         NA      NA        NA        NA
## 195      8    15      8         NA      NA        NA        NA
## 196      6     4     NA         NA      NA        NA        NA
## 197     14    17     39         NA      NA        NA        NA
## 198     11    11      8         NA      NA        NA        NA
## 199     NA    NA     NA         NA      NA        NA        NA
## 200     NA    25     59         NA      NA        NA        NA
## 201     55    45     48         NA      NA        NA        NA
## 202     NA    NA     NA         NA      NA        NA        NA
## 203     22    29     22         NA      NA        NA        NA
## 204     15    15     25         NA      NA        NA        NA
## 205     11    11      9         NA      NA        NA        NA
## 206      9     8      5         NA      NA        NA        NA
## 207     81    49     63         NA      NA        NA        NA
## 208     92   113    113         NA      NA        NA        NA
## 209      6     8     10         NA      NA        NA        NA
## 210      6    NA     NA         NA      NA        NA        NA
## 211     17    27     25         NA      NA        NA        NA
## 212     63    57     66         NA      NA        NA        NA
## 213      2     3      5         NA      NA        NA        NA
## 214      4     4      2         NA      NA        NA        NA
## 215      5     2      2         NA      NA        NA        NA
## 216      1     3      1         NA      NA        NA        NA
## 217      2     3      1         NA      NA        NA        NA
## 218     NA     0     NA         NA      NA        NA        NA
## 219      1     1      0         NA      NA        NA        NA
## 220      9     7      9         NA      NA        NA        NA
## 221     NA     0     NA         NA      NA        NA        NA
## 222      2     3      4         NA      NA        NA        NA
## 223      1     1      1         NA      NA        NA        NA
## 224      3     4      2         NA      NA        NA        NA
## 225      2     2      1         NA      NA        NA        NA
## 226      2     2      2         NA      NA        NA        NA
## 227      1    NA      1         NA      NA        NA        NA
## 228      4     4      4         NA      NA        NA        NA
## 229      6    13      6         NA      NA        NA        NA
## 230      6     6      6         NA      NA        NA        NA
## 231      6     7      4         NA      NA        NA        NA
## 232     NA    NA     NA         NA      NA        NA        NA
## 233     NA    NA     NA         NA      NA        NA        NA
## 234      2     4      4         NA      NA        NA        NA
## 235      6     8      6         NA      NA        NA        NA
## 236      1     1      1         NA      NA        NA        NA
## 237      1     1      1         NA      NA        NA        NA
## 238      1    NA     NA         NA      NA        NA        NA
## 239      1     1      1         NA      NA        NA        NA
## 240     NA    NA     NA         NA      NA        NA        NA
## 241      1    NA     NA         NA      NA        NA        NA
## 242      1     1     NA         NA      NA        NA        NA
## 243      1     1      1         NA      NA        NA        NA
## 244      1     0     NA         NA      NA        NA        NA
## 245      1    NA     NA         NA      NA        NA        NA
## 246      1     2     NA         NA      NA        NA        NA
## 247      8    11      8         NA      NA        NA        NA
## 248     NA     1      1         NA      NA        NA        NA
## 249      2     6      4         NA      NA        NA        NA
## 250      1     1      1         NA      NA        NA        NA
## 251      6     4      2         NA      NA        NA        NA
## 252     11    11      8         NA      NA        NA        NA
## 253      1     2      2         NA      NA        NA        NA
## 254      2     2      1         NA      NA        NA        NA
## 255      5     2      4         NA      NA        NA        NA
## 256      2     3      2         NA      NA        NA        NA
## 257     NA    NA     NA         NA      NA        NA        NA
## 258      7     5      4         NA      NA        NA        NA
## 259      1     1      1         NA      NA        NA        NA
## 260     11    15      8         NA      NA        NA        NA
## 261      3    10      6         NA      NA        NA        NA
## 262     NA    NA     NA         NA      NA        NA        NA
## 263     NA     5      8         NA      NA        NA        NA
## 264     NA    NA     NA         NA      NA        NA        NA
## 265     NA    NA     NA         NA      NA        NA        NA
## 266     NA    NA     NA         NA      NA        NA        NA
## 267     NA     1     NA         NA      NA        NA        NA
## 268     NA     1      1         NA      NA        NA        NA
## 269      1     1      2         NA      NA        NA        NA
## 270      2    NA      1         NA      NA        NA        NA
## 271     NA    NA     NA         NA      NA        NA        NA
## 272      2     1     NA         NA      NA        NA        NA
## 273     NA     3      3         NA      NA        NA        NA
## 274     NA    NA     NA         NA      NA        NA        NA
## 275      1    NA     NA         NA      NA        NA        NA
## 276     NA     0     NA         NA      NA        NA        NA
## 277     NA     0      0         NA      NA        NA        NA
## 278     NA    NA     NA         NA      NA        NA        NA
## 279     NA    NA     NA         NA      NA        NA        NA
## 280      2     4      2         NA      NA        NA        NA
## 281      1     1      1         NA      NA        NA        NA
## 282      2     2      2         NA      NA        NA        NA
## 283     NA    NA     NA         NA      NA        NA        NA
## 284     NA    34     53         NA      NA        NA        NA
## 285     13    13     11         NA      NA        NA        NA
## 286     70    51     57         NA      NA        NA        NA
## 287     12    17     12         NA      NA        NA        NA
## 288      5     5      2         NA      NA        NA        NA
## 289     11    18     18         NA      NA        NA        NA
## 290     74    81     77         NA      NA        NA        NA
## 291      3     4      1         NA      NA        NA        NA
## 292     NA    NA      3         NA      NA        NA        NA
## 293      6     6      6         NA      NA        NA        NA
## 294      6    11      6         NA      NA        NA        NA
## 295     46    38     32         NA      NA        NA        NA
## 296     NA    NA     NA         NA      NA        NA        NA
## 297     NA     2      2         NA      NA        NA        NA
## 298      2     2     NA         NA      NA        NA        NA
## 299      2    NA      2         NA      NA        NA        NA
## 300     NA     2     NA         NA      NA        NA        NA
## 301     NA     3     NA         NA      NA        NA        NA
## 302      1     2     NA         NA      NA        NA        NA
## 303      1     1      2         NA      NA        NA        NA
## 304      1    NA      1         NA      NA        NA        NA
## 305     NA    NA     NA         NA      NA        NA        NA
## 306      3     3      2         NA      NA        NA        NA
## 307     NA     1     NA         NA      NA        NA        NA
## 308     NA     1     NA         NA      NA        NA        NA
## 309      2     4      3         NA      NA        NA        NA
## 310      1     0      0         NA      NA        NA        NA
## 311     NA    NA     NA         NA      NA        NA        NA
## 312      0     0      1         NA      NA        NA        NA
## 313     NA     1     NA         NA      NA        NA        NA
## 314      3     3     11         NA      NA        NA        NA
## 315      0    NA     NA         NA      NA        NA        NA
## 316      1     1      1         NA      NA        NA        NA
## 317     NA    NA     NA         NA      NA        NA        NA
## 318      0    NA     NA         NA      NA        NA        NA
## 319      1     1      1         NA      NA        NA        NA
## 320      3    NA     NA         NA      NA        NA        NA
## 321     NA    NA      3         NA      NA        NA        NA
## 322      0    NA     NA         NA      NA        NA        NA
## 323      1     1      1         NA      NA        NA        NA
## 324      6     3      6         NA      NA        NA        NA
## 325      0    NA     NA         NA      NA        NA        NA
## 326      1     1      1         NA      NA        NA        NA
## 327     NA    NA      1         NA      NA        NA        NA
## 328      2     1     NA         NA      NA        NA        NA
## 329     NA    NA     NA         NA      NA        NA        NA
## 330     NA    NA     NA         NA      NA        NA        NA
## 331      4     4      4         NA      NA        NA        NA
## 332      2     2      2         NA      NA        NA        NA
## 333      3     3      3         NA      NA        NA        NA
## 334      3    NA     NA         NA      NA        NA        NA
## 335      1     1      1         NA      NA        NA        NA
## 336      1     1      1         NA      NA        NA        NA
## 337     NA    NA      1         NA      NA        NA        NA
## 338      1    NA      1         NA      NA        NA        NA
## 339     NA    NA     NA         NA      NA        NA        NA
## 340      1     1      1         NA      NA        NA        NA
## 341     NA    NA     NA         NA      NA        NA        NA
## 342      6     6      3         NA      NA        NA        NA
## 343      1     0      1         NA      NA        NA        NA
## 344      1     1      1         NA      NA        NA        NA
## 345      1     1      1         NA      NA        NA        NA
## 346     19    19     21         NA      NA        NA        NA
## 347      8     8      8         NA      NA        NA        NA
## 348     17    25     20         NA      NA        NA        NA
## 349      3     2      2         NA      NA        NA        NA
## 350      6    11     13         NA      NA        NA        NA
## 351     NA    NA     NA         NA      NA        NA        NA
## 352     28    34     28         NA      NA        NA        NA
## 353     NA    NA     NA         NA      NA        NA        NA
## 354     NA     1     NA         NA      NA        NA        NA
## 355      4     8      4         NA      NA        NA        NA
## 356     NA    NA     NA         NA      NA        NA        NA
## 357     NA    23     17         NA      NA        NA        NA
## 358     32    21     26         NA      NA        NA        NA
## 359     NA    NA     NA         NA      NA        NA        NA
## 360     19    13     16         NA      NA        NA        NA
## 361     52    42     42         NA      NA        NA        NA
## 362      6     5      6         NA      NA        NA        NA
## 363      5     6      8         NA      NA        NA        NA
## 364     46    49     39         NA      NA        NA        NA
## 365     74    88     63         NA      NA        NA        NA
## 366      9    12      9         NA      NA        NA        NA
## 367      6     4      4         NA      NA        NA        NA
## 368     21    30     36         NA      NA        NA        NA
## 369     59    49     49         NA      NA        NA        NA
## 370      2     1      1         NA      NA        NA        NA
## 371     NA    NA     NA         NA      NA        NA        NA
## 372      3     2      3         NA      NA        NA        NA
## 373      1    NA      2         NA      NA        NA        NA
## 374      1     1      1         NA      NA        NA        NA
## 375      1     1      1         NA      NA        NA        NA
## 376     NA    NA     NA         NA      NA        NA        NA
## 377      0     0      0         NA      NA        NA        NA
## 378     14    14     11         NA      NA        NA        NA
## 379      4     2      1         NA      NA        NA        NA
## 380     NA    NA     NA         NA      NA        NA        NA
## 381      3     3      1         NA      NA        NA        NA
## 382      1     1      1         NA      NA        NA        NA
## 383      2     3      4         NA      NA        NA        NA
## 384      1    NA      1         NA      NA        NA        NA
## 385      3     2      3         NA      NA        NA        NA
## 386      2     2      2         NA      NA        NA        NA
## 387      3     3      1         NA      NA        NA        NA
## 388      4     6      4         NA      NA        NA        NA
## 389     NA    NA     NA         NA      NA        NA        NA
## 390      1    NA     NA         NA      NA        NA        NA
## 391     NA     2     NA         NA      NA        NA        NA
## 392      6    NA      3         NA      NA        NA        NA
## 393     NA    NA     NA         NA      NA        NA        NA
## 394      1     4     NA         NA      NA        NA        NA
## 395      1     3      3         NA      NA        NA        NA
## 396      0     0      0         NA      NA        NA        NA
## 397     NA    NA      3         NA      NA        NA        NA
## 398      1    NA     NA         NA      NA        NA        NA
## 399      0     0      0         NA      NA        NA        NA
## 400      1    NA     NA         NA      NA        NA        NA
## 401     NA    NA      1         NA      NA        NA        NA
## 402      2     3      1         NA      NA        NA        NA
## 403      6     3     11         NA      NA        NA        NA
## 404     NA     2      4         NA      NA        NA        NA
## 405      3     1      3         NA      NA        NA        NA
## 406      0     0      0         NA      NA        NA        NA
## 407      2    NA      2         NA      NA        NA        NA
## 408      3     3      6         NA      NA        NA        NA
## 409     NA    NA     NA         NA      NA        NA        NA
## 410     NA    NA     NA         NA      NA        NA        NA
## 411      3     2      2         NA      NA        NA        NA
## 412      3     3      3         NA      NA        NA        NA
## 413      0     0      0         NA      NA        NA        NA
## 414     NA    NA     NA         NA      NA        NA        NA
## 415     NA    NA     NA         NA      NA        NA        NA
## 416     12     6     10         NA      NA        NA        NA
## 417      2     1      3         NA      NA        NA        NA
## 418      6     8     13         NA      NA        NA        NA
## 419     16    16     22         NA      NA        NA        NA
## 420      8     5      8         NA      NA        NA        NA
## 421      1     1      2         NA      NA        NA        NA
## 422      1     1      1         NA      NA        NA        NA
## 423      1     1      2         NA      NA        NA        NA
## 424      3     1      3         NA      NA        NA        NA
## 425     NA    NA     NA         NA      NA        NA        NA
## 426     NA    NA     NA         NA      NA        NA        NA
## 427      1     1      1         NA      NA        NA        NA
## 428     NA    NA      4         NA      NA        NA        NA
## 429      3     3      6         NA      NA        NA        NA
## 430      6     6      8         NA      NA        NA        NA
## 431     NA    NA     NA         NA      NA        NA        NA
## 432     NA    NA     NA         NA      NA        NA        NA
## 433      0    NA     NA         NA      NA        NA        NA
## 434     NA    NA      0         NA      NA        NA        NA
## 435      0    NA     NA         NA      NA        NA        NA
## 436     21    23     25         NA      NA        NA        NA
## 437     NA    NA     NA         NA      NA        NA        NA
## 438     18    18     21         NA      NA        NA        NA
## 439      7     7     10         NA      NA        NA        NA
## 440     13    15     17         NA      NA        NA        NA
## 441     NA    NA     NA         NA      NA        NA        NA
## 442      7     6     14         NA      NA        NA        NA
## 443      6     1      4         NA      NA        NA        NA
## 444     NA     4     NA         NA      NA        NA        NA
## 445     29    26     24         NA      NA        NA        NA
## 446     41    41     35         NA      NA        NA        NA
## 447     17    27     30         NA      NA        NA        NA
## 448      9     9      8         NA      NA        NA        NA
## 449     18     9     17         NA      NA        NA        NA
## 450     NA    NA     NA         NA      NA        NA        NA
## 451     32    28     35         NA      NA        NA        NA
## 452    162   144    159         NA      NA        NA        NA
## 453      5     6      6         NA      NA        NA        NA
## 454     NA    NA     11         NA      NA        NA        NA
## 455     15    15     11         NA      NA        NA        NA
## 456     78    78     76         NA      NA        NA        NA
## 457      3    NA     NA         NA      NA        NA        NA
## 458     NA    NA     NA         NA      NA        NA        NA
## 459      1     1      2         NA      NA        NA        NA
## 460      1     1      1         NA      NA        NA        NA
## 461     NA    NA     NA         NA      NA        NA        NA
## 462      1     1      1         NA      NA        NA        NA
## 463     NA    NA     NA         NA      NA        NA        NA
## 464      0     0      0         NA      NA        NA        NA
## 465     NA    NA     NA         NA      NA        NA        NA
## 466      3     2      6         NA      NA        NA        NA
## 467     NA    NA      0         NA      NA        NA        NA
## 468      1    NA      2         NA      NA        NA        NA
## 469     NA    NA     NA         NA      NA        NA        NA
## 470      1    NA     NA         NA      NA        NA        NA
## 471     NA     1     NA         NA      NA        NA        NA
## 472      0     0      0         NA      NA        NA        NA
## 473      1     1      1         NA      NA        NA        NA
## 474     NA     3      1         NA      NA        NA        NA
## 475     NA    NA     NA         NA      NA        NA        NA
## 476     NA    NA      2         NA      NA        NA        NA
## 477      3     6      6         NA      NA        NA        NA
## 478      1     1      1         NA      NA        NA        NA
## 479      1     1     NA         NA      NA        NA        NA
## 480      2     1      1         NA      NA        NA        NA
## 481      3     4      2         NA      NA        NA        NA
## 482      0    NA      0         NA      NA        NA        NA
## 483     NA     3     NA         NA      NA        NA        NA
## 484      1     0     NA         NA      NA        NA        NA
## 485     NA     1      1         NA      NA        NA        NA
## 486     NA     1      1         NA      NA        NA        NA
## 487      0    NA      0         NA      NA        NA        NA
## 488      8    NA     NA         NA      NA        NA        NA
## 489      1     1     NA         NA      NA        NA        NA
## 490      1    NA      0         NA      NA        NA        NA
## 491     NA     1      1         NA      NA        NA        NA
## 492      1    NA     NA         NA      NA        NA        NA
## 493     NA     2     NA         NA      NA        NA        NA
## 494     NA     3      8         NA      NA        NA        NA
## 495     NA    NA     NA         NA      NA        NA        NA
## 496     NA     1     NA         NA      NA        NA        NA
## 497     NA     1      1         NA      NA        NA        NA
## 498      0    NA      0         NA      NA        NA        NA
## 499      2     2      2         NA      NA        NA        NA
## 500     14    17      8         NA      NA        NA        NA
## 501      1     1      1         NA      NA        NA        NA
## 502      1     1      0         NA      NA        NA        NA
## 503      2     1      1         NA      NA        NA        NA
## 504      3     3      3         NA      NA        NA        NA
## 505     NA    NA      2         NA      NA        NA        NA
## 506      0    NA      0         NA      NA        NA        NA
## 507     NA    NA     NA         NA      NA        NA        NA
## 508      5     3      7         NA      NA        NA        NA
## 509      3    NA     NA         NA      NA        NA        NA
## 510      1     1      1         NA      NA        NA        NA
## 511      2     2      4         NA      NA        NA        NA
## 512      3     3      6         NA      NA        NA        NA
## 513     NA     3     NA         NA      NA        NA        NA
## 514     NA     1      1         NA      NA        NA        NA
## 515     NA     1      1         NA      NA        NA        NA
## 516     NA    NA      1         NA      NA        NA        NA
## 517     NA     1      1         NA      NA        NA        NA
## 518     NA     3      3         NA      NA        NA        NA
## 519     NA     0      0         NA      NA        NA        NA
## 520     19    NA     NA         NA      NA        NA        NA
## 521      0    NA     NA         NA      NA        NA        NA
## 522     NA    NA     NA         NA      NA        NA        NA
## 523     NA     2     11         NA      NA        NA        NA
## 524      2     2      6         NA      NA        NA        NA
## 525      3    NA     NA         NA      NA        NA        NA
## 526     NA    NA     NA         NA      NA        NA        NA
## 527      1    NA     NA         NA      NA        NA        NA
## 528     NA     1      3         NA      NA        NA        NA
## 529     NA     6      8         NA      NA        NA        NA
## 530      8    NA     16         NA      NA        NA        NA
## 531     NA    NA     NA         NA      NA        NA        NA
## 532      3     3      6         NA      NA        NA        NA
## 533     NA     2      7         NA      NA        NA        NA
## 534      3     2      2         NA      NA        NA        NA
## 535     11     7     18         NA      NA        NA        NA
## 536     14     4     39         NA      NA        NA        NA
## 537      1     1      6         NA      NA        NA        NA
## 538      2    NA     NA         NA      NA        NA        NA
## 539      2     2     11         NA      NA        NA        NA
## 540     55    44     42         NA      NA        NA        NA
## 541     NA    NA     NA         NA      NA        NA        NA
## 542      3    NA      1         NA      NA        NA        NA
## 543     NA    NA      1         NA      NA        NA        NA
## 544     NA     1      1         NA      NA        NA        NA
## 545     NA     1      5         NA      NA        NA        NA
## 546     NA     0      0         NA      NA        NA        NA
## 547     NA     0      5         NA      NA        NA        NA
## 548     NA     0      0         NA      NA        NA        NA
## 549      1     1      1         NA      NA        NA        NA
## 550      9     0      3         NA      NA        NA        NA
## 551      1     1      2         NA      NA        NA        NA
## 552     NA    NA      4         NA      NA        NA        NA
## 553     NA    NA     NA         NA      NA        NA        NA
## 554     NA    NA     NA         NA      NA        NA        NA
## 555     NA    NA      1         NA      NA        NA        NA
## 556     NA    NA      1         NA      NA        NA        NA
## 557     NA     1      2         NA      NA        NA        NA
## 558     NA    NA     NA         NA      NA        NA        NA
## 559     53    21      1         NA      NA        NA        NA
## 560     NA    NA     NA         NA      NA        NA        NA
## 561     NA    NA      0         NA      NA        NA        NA
## 562     32    44     22         NA      NA        NA        NA
## 563     NA    NA      1         NA      NA        NA        NA
## 564      2    NA     NA         NA      NA        NA        NA
## 565     NA    NA     NA         NA      NA        NA        NA
## 566     NA     2      4         NA      NA        NA        NA
## 567     NA     3      3         NA      NA        NA        NA
## 568     NA     0      0         NA      NA        NA        NA
## 569     NA    NA      1         NA      NA        NA        NA
## 570     NA     1      1         NA      NA        NA        NA
## 571     NA     1      1         NA      NA        NA        NA
## 572      1     1     NA         NA      NA        NA        NA
## 573     23    19     34         NA      NA        NA        NA
## 574     57    35     67         NA      NA        NA        NA
## 575     NA     5     NA         NA      NA        NA        NA
## 576     NA    NA     NA         NA      NA        NA        NA
## 577     NA    NA     NA         NA      NA        NA        NA
## 578     NA     1      1         NA      NA        NA        NA
## 579     NA    NA     NA         NA      NA        NA        NA
## 580     NA    NA     NA         NA      NA        NA        NA
## 581     14     6      3         NA      NA        NA        NA
## 582     NA     0      0         NA      NA        NA        NA
## 583     13    15     17         NA      NA        NA        NA
## 584     14    11     11         NA      NA        NA        NA
## 585      4     4      4         NA      NA        NA        NA
## 586      6    13      4         NA      NA        NA        NA
## 587     NA    NA     NA         NA      NA        NA        NA
## 588     11    20     37         NA      NA        NA        NA
## 589     NA    NA     NA         NA      NA        NA        NA
## 590      2     6      4         NA      NA        NA        NA
## 591     NA    11     17         NA      NA        NA        NA
## 592     48    40     61         NA      NA        NA        NA
## 593     NA    NA     NA         NA      NA        NA        NA
## 594     22    16     16         NA      NA        NA        NA
## 595     25    35     44         NA      NA        NA        NA
## 596      2     2      3         NA      NA        NA        NA
## 597     60    70     53         NA      NA        NA        NA
## 598    120   137    144         NA      NA        NA        NA
## 599      7    11     10         NA      NA        NA        NA
## 600     NA     4      4         NA      NA        NA        NA
## 601     19    46     30         NA      NA        NA        NA
## 602     89   120    114         NA      NA        NA        NA
## 603      5    NA     NA         NA      NA        NA        NA
## 604      4     2      4         NA      NA        NA        NA
## 605      2     3      3         NA      NA        NA        NA
## 606     NA    NA     NA         NA      NA        NA        NA
## 607     NA    NA     NA         NA      NA        NA        NA
## 608     NA    NA     NA         NA      NA        NA        NA
## 609     11    16     16         NA      NA        NA        NA
## 610      1    NA     NA         NA      NA        NA        NA
## 611     NA     2     NA         NA      NA        NA        NA
## 612     NA     2     NA         NA      NA        NA        NA
## 613     NA     5     NA         NA      NA        NA        NA
## 614     NA     4     NA         NA      NA        NA        NA
## 615     NA    NA     NA         NA      NA        NA        NA
## 616     NA    NA     NA         NA      NA        NA        NA
## 617      1     3      1         NA      NA        NA        NA
## 618      2     4      4         NA      NA        NA        NA
## 619     NA    NA     NA         NA      NA        NA        NA
## 620     NA    NA     NA         NA      NA        NA        NA
## 621     NA    NA     NA         NA      NA        NA        NA
## 622      3    14     17         NA      NA        NA        NA
## 623     NA    NA     NA         NA      NA        NA        NA
## 624     NA    NA     NA         NA      NA        NA        NA
## 625      1     1      2         NA      NA        NA        NA
## 626      3     8      4         NA      NA        NA        NA
## 627      1     1      2         NA      NA        NA        NA
## 628      8    NA     NA         NA      NA        NA        NA
## 629      1     1      2         NA      NA        NA        NA
## 630     NA    NA     NA         NA      NA        NA        NA
## 631      3    14     14         NA      NA        NA        NA
## 632     NA    NA     NA         NA      NA        NA        NA
## 633     NA    NA     NA         NA      NA        NA        NA
## 634      4     5      6         NA      NA        NA        NA
## 635     NA    NA     NA         NA      NA        NA        NA
## 636     11     8     14         NA      NA        NA        NA
## 637     NA    NA     NA         NA      NA        NA        NA
## 638      1     1      2         NA      NA        NA        NA
## 639      6    10      8         NA      NA        NA        NA
## 640     NA    NA     NA         NA      NA        NA        NA
## 641      4     6      8         NA      NA        NA        NA
## 642     NA    NA     NA         NA      NA        NA        NA
## 643      2     2      1         NA      NA        NA        NA
## 644      6     8      8         NA      NA        NA        NA
## 645     10    10     16         NA      NA        NA        NA
## 646     15     5     NA         NA      NA        NA        NA
## 647      1     1      1         NA      NA        NA        NA
## 648      1     1      1         NA      NA        NA        NA
## 649      2     1      1         NA      NA        NA        NA
## 650     NA    NA     NA         NA      NA        NA        NA
## 651     NA    NA     NA         NA      NA        NA        NA
## 652      1     1      1         NA      NA        NA        NA
## 653      1    NA     NA         NA      NA        NA        NA
## 654      3     3      3         NA      NA        NA        NA
## 655     NA     0     NA         NA      NA        NA        NA
## 656     NA     0     NA         NA      NA        NA        NA
## 657     NA     0     NA         NA      NA        NA        NA
## 658     NA    NA      0         NA      NA        NA        NA
## 659     NA    NA     NA         NA      NA        NA        NA
## 660     NA     2      2         NA      NA        NA        NA
## 661      4     2      4         NA      NA        NA        NA
## 662      2     1      1         NA      NA        NA        NA
## 663      3     4      6         NA      NA        NA        NA
## 664      1    NA      1         NA      NA        NA        NA
## 665      1     2      2         NA      NA        NA        NA
## 666      4     4      8         NA      NA        NA        NA
## 667      0    NA     NA         NA      NA        NA        NA
## 668     NA    27     49         NA      NA        NA        NA
## 669     16     8      8         NA      NA        NA        NA
## 670     32    29     35         NA      NA        NA        NA
## 671     12    15     20         NA      NA        NA        NA
## 672      6     5      5         NA      NA        NA        NA
## 673     32    28     21         NA      NA        NA        NA
## 674     92    70     77         NA      NA        NA        NA
## 675      3     3      3         NA      NA        NA        NA
## 676     NA    NA      3         NA      NA        NA        NA
## 677      6     6      6         NA      NA        NA        NA
## 678     11    15     13         NA      NA        NA        NA
## 679     70    44     53         NA      NA        NA        NA
## 680      2     2      0         NA      NA        NA        NA
## 681      2    NA      2         NA      NA        NA        NA
## 682      1     1     NA         NA      NA        NA        NA
## 683      2     2      3         NA      NA        NA        NA
## 684     NA    NA     NA         NA      NA        NA        NA
## 685      1     2      1         NA      NA        NA        NA
## 686      2     2      1         NA      NA        NA        NA
## 687     NA    NA     NA         NA      NA        NA        NA
## 688     NA    NA     NA         NA      NA        NA        NA
## 689      3     1      2         NA      NA        NA        NA
## 690     NA    NA      0         NA      NA        NA        NA
## 691      2     3      2         NA      NA        NA        NA
## 692      0     0      0         NA      NA        NA        NA
## 693     NA    NA     NA         NA      NA        NA        NA
## 694      1     1      2         NA      NA        NA        NA
## 695      0     1      2         NA      NA        NA        NA
## 696      1     1      1         NA      NA        NA        NA
## 697     NA    NA     NA         NA      NA        NA        NA
## 698     NA    NA     NA         NA      NA        NA        NA
## 699      2     2     NA         NA      NA        NA        NA
## 700      3     3     NA         NA      NA        NA        NA
## 701      2     2      1         NA      NA        NA        NA
## 702      0     0      0         NA      NA        NA        NA
## 703      4     2      2         NA      NA        NA        NA
## 704      1     2      1         NA      NA        NA        NA
## 705     NA    NA      1         NA      NA        NA        NA
## 706      2    NA     NA         NA      NA        NA        NA
## 707      2     2      2         NA      NA        NA        NA
## 708     NA     0      1         NA      NA        NA        NA
## 709      2     3      1         NA      NA        NA        NA
## 710     NA     2     NA         NA      NA        NA        NA
## 711      8    NA      6         NA      NA        NA        NA
## 712     NA     4     NA         NA      NA        NA        NA
## 713     NA     0     NA         NA      NA        NA        NA
## 714      8     6      8         NA      NA        NA        NA
## 715     NA     1     NA         NA      NA        NA        NA
## 716      4    NA      2         NA      NA        NA        NA
## 717      6     3      8         NA      NA        NA        NA
## 718      3     2      2         NA      NA        NA        NA
## 719      1     1      1         NA      NA        NA        NA
## 720      2     2      2         NA      NA        NA        NA
## 721      2     2      1         NA      NA        NA        NA
## 722     NA    NA     NA         NA      NA        NA        NA
## 723      1     1      1         NA      NA        NA        NA
## 724      1     1      1         NA      NA        NA        NA
## 725      4     2      4         NA      NA        NA        NA
## 726      6     3      3         NA      NA        NA        NA
## 727      3     3     NA         NA      NA        NA        NA
## 728      1     1      1         NA      NA        NA        NA
## 729      1     1      1         NA      NA        NA        NA
## 730      1     1      0         NA      NA        NA        NA
## 731     NA     1      1         NA      NA        NA        NA
## 732      2    NA     NA         NA      NA        NA        NA
## 733      3     3      3         NA      NA        NA        NA
## 734     NA    NA      0         NA      NA        NA        NA
## 735     NA     2     NA         NA      NA        NA        NA
## 736      0     0      0         NA      NA        NA        NA
## 737     NA    NA     NA         NA      NA        NA        NA
## 738     21    17     21         NA      NA        NA        NA
## 739     NA     2     NA         NA      NA        NA        NA
## 740     14    14     23         NA      NA        NA        NA
## 741     NA    NA     NA         NA      NA        NA        NA
## 742     18    18     18         NA      NA        NA        NA
## 743      3     3      4         NA      NA        NA        NA
## 744      3     3      3         NA      NA        NA        NA
## 745     19    23     23         NA      NA        NA        NA
## 746      3    NA     NA         NA      NA        NA        NA
## 747      2     3      2         NA      NA        NA        NA
## 748     NA    NA     NA         NA      NA        NA        NA
## 749      7    25     25         NA      NA        NA        NA
## 750      1     3      2         NA      NA        NA        NA
## 751      6     8     11         NA      NA        NA        NA
## 752      6     6      6         NA      NA        NA        NA
## 753     NA    15     30         NA      NA        NA        NA
## 754     32    29     29         NA      NA        NA        NA
## 755     NA    NA     NA         NA      NA        NA        NA
## 756      3     3      3         NA      NA        NA        NA
## 757     35    39     52         NA      NA        NA        NA
## 758      5     3      5         NA      NA        NA        NA
## 759     NA     2     NA         NA      NA        NA        NA
## 760     63    60     70         NA      NA        NA        NA
## 761     70    70     88         NA      NA        NA        NA
## 762     11    11     13         NA      NA        NA        NA
## 763     23    23     30         NA      NA        NA        NA
## 764     59    36     59         NA      NA        NA        NA
## 765      3    NA     NA         NA      NA        NA        NA
## 766      3     2      2         NA      NA        NA        NA
## 767      2     2      2         NA      NA        NA        NA
## 768      1     1      1         NA      NA        NA        NA
## 769      1     1      1         NA      NA        NA        NA
## 770      1     1      1         NA      NA        NA        NA
## 771     NA    NA     NA         NA      NA        NA        NA
## 772      0     0      0         NA      NA        NA        NA
## 773      2     0      1         NA      NA        NA        NA
## 774     NA     0     NA         NA      NA        NA        NA
## 775     NA    NA      0         NA      NA        NA        NA
## 776      5     1      5         NA      NA        NA        NA
## 777      4     2      4         NA      NA        NA        NA
## 778     NA     2      3         NA      NA        NA        NA
## 779      1     1      1         NA      NA        NA        NA
## 780      0     0      1         NA      NA        NA        NA
## 781      2     4      4         NA      NA        NA        NA
## 782      2     1      1         NA      NA        NA        NA
## 783      1    NA      1         NA      NA        NA        NA
## 784     NA    NA     NA         NA      NA        NA        NA
## 785     NA    NA     NA         NA      NA        NA        NA
## 786     NA     2     NA         NA      NA        NA        NA
## 787      6     6      8         NA      NA        NA        NA
## 788     NA     1     NA         NA      NA        NA        NA
## 789      2     2     NA         NA      NA        NA        NA
## 790      2     1      2         NA      NA        NA        NA
## 791      0     0      0         NA      NA        NA        NA
## 792     NA    NA      1         NA      NA        NA        NA
## 793      0     0      0         NA      NA        NA        NA
## 794      1    NA      1         NA      NA        NA        NA
## 795     NA    NA     NA         NA      NA        NA        NA
## 796      1     1      1         NA      NA        NA        NA
## 797     11     8     11         NA      NA        NA        NA
## 798      2     2      2         NA      NA        NA        NA
## 799      0     0      0         NA      NA        NA        NA
## 800      2    NA      2         NA      NA        NA        NA
## 801      8     8      6         NA      NA        NA        NA
## 802      2     1      2         NA      NA        NA        NA
## 803     NA    NA     NA         NA      NA        NA        NA
## 804      2     2      2         NA      NA        NA        NA
## 805      2     1      3         NA      NA        NA        NA
## 806      0     0      0         NA      NA        NA        NA
## 807     NA    NA     NA         NA      NA        NA        NA
## 808      7     3      3         NA      NA        NA        NA
## 809      3     5      3         NA      NA        NA        NA
## 810      1    NA      1         NA      NA        NA        NA
## 811      3     3      3         NA      NA        NA        NA
## 812      8     8     25         NA      NA        NA        NA
## 813     22    16     48         NA      NA        NA        NA
## 814     NA     4     28         NA      NA        NA        NA
## 815      5     8      3         NA      NA        NA        NA
## 816      1     1      1         NA      NA        NA        NA
## 817      5     5      6         NA      NA        NA        NA
## 818      1     1      1         NA      NA        NA        NA
## 819      1     1      1         NA      NA        NA        NA
## 820      3     1      2         NA      NA        NA        NA
## 821     NA     1      0         NA      NA        NA        NA
## 822     NA    NA     NA         NA      NA        NA        NA
## 823      2     2      2         NA      NA        NA        NA
## 824      8     3      3         NA      NA        NA        NA
## 825      2     1      2         NA      NA        NA        NA
## 826      1     1      0         NA      NA        NA        NA
## 827      4     0      1         NA      NA        NA        NA
## 828     NA    NA     NA         NA      NA        NA        NA
## 829      1     3      0         NA      NA        NA        NA
## 830     19    13     21         NA      NA        NA        NA
## 831      2     2     NA         NA      NA        NA        NA
## 832      3    NA     NA         NA      NA        NA        NA
## 833     18    21     28         NA      NA        NA        NA
## 834      1     2      3         NA      NA        NA        NA
## 835      8     8      8         NA      NA        NA        NA
## 836      1     0      0         NA      NA        NA        NA
## 837     NA    NA     NA         NA      NA        NA        NA
## 838     11    20     42         NA      NA        NA        NA
## 839     21    21     25         NA      NA        NA        NA
## 840      1     1      2         NA      NA        NA        NA
## 841      6     8      6         NA      NA        NA        NA
## 842     NA     4     NA         NA      NA        NA        NA
## 843     NA    NA     NA         NA      NA        NA        NA
## 844     NA    32     36         NA      NA        NA        NA
## 845     58    48     61         NA      NA        NA        NA
## 846     NA    NA     NA         NA      NA        NA        NA
## 847      6    10     10         NA      NA        NA        NA
## 848     10    15     15         NA      NA        NA        NA
## 849     14    14     12         NA      NA        NA        NA
## 850      3     5      5         NA      NA        NA        NA
## 851      3    NA     NA         NA      NA        NA        NA
## 852     NA    NA     NA         NA      NA        NA        NA
## 853     70    92     81         NA      NA        NA        NA
## 854    106    92    106         NA      NA        NA        NA
## 855      9     8     10         NA      NA        NA        NA
## 856     11     4      8         NA      NA        NA        NA
## 857     27    25     36         NA      NA        NA        NA
## 858    106    72     82         NA      NA        NA        NA
## 859     NA     1     NA         NA      NA        NA        NA
## 860     NA    NA     NA         NA      NA        NA        NA
## 861      5     5      3         NA      NA        NA        NA
## 862      2     4      4         NA      NA        NA        NA
## 863      2     1      2         NA      NA        NA        NA
## 864      4     1      4         NA      NA        NA        NA
## 865     NA    NA     NA         NA      NA        NA        NA
## 866      4     4      2         NA      NA        NA        NA
## 867      2     4      1         NA      NA        NA        NA
## 868      0     0      0         NA      NA        NA        NA
## 869      4     4      4         NA      NA        NA        NA
## 870      3    NA     NA         NA      NA        NA        NA
## 871      2     1      2         NA      NA        NA        NA
## 872      1    NA      0         NA      NA        NA        NA
## 873      3     5      5         NA      NA        NA        NA
## 874      6     4      4         NA      NA        NA        NA
## 875      5     4      5         NA      NA        NA        NA
## 876      1     1      2         NA      NA        NA        NA
## 877      4     5      3         NA      NA        NA        NA
## 878      6     4      6         NA      NA        NA        NA
## 879      3     2      3         NA      NA        NA        NA
## 880      1     3      2         NA      NA        NA        NA
## 881     NA    NA     NA         NA      NA        NA        NA
## 882     NA    NA     NA         NA      NA        NA        NA
## 883      6     2      4         NA      NA        NA        NA
## 884      6     3      6         NA      NA        NA        NA
## 885     NA    NA     NA         NA      NA        NA        NA
## 886      3     1      1         NA      NA        NA        NA
## 887      3     2      1         NA      NA        NA        NA
## 888      0     0      0         NA      NA        NA        NA
## 889      3     3      3         NA      NA        NA        NA
## 890      1     1      1         NA      NA        NA        NA
## 891      1     1     NA         NA      NA        NA        NA
## 892      0     0      0         NA      NA        NA        NA
## 893      8    NA     NA         NA      NA        NA        NA
## 894      4    NA      4         NA      NA        NA        NA
## 895     NA    NA     NA         NA      NA        NA        NA
## 896      1     1      1         NA      NA        NA        NA
## 897      1    NA     NA         NA      NA        NA        NA
## 898      2     3      1         NA      NA        NA        NA
## 899     NA    NA      4         NA      NA        NA        NA
## 900      8     6      6         NA      NA        NA        NA
## 901      4    NA      4         NA      NA        NA        NA
## 902      3     4      1         NA      NA        NA        NA
## 903      0     0      0         NA      NA        NA        NA
## 904      8     2      6         NA      NA        NA        NA
## 905      8     8      6         NA      NA        NA        NA
## 906      3     1      3         NA      NA        NA        NA
## 907      4     3      3         NA      NA        NA        NA
## 908      0     0      0         NA      NA        NA        NA
## 909     NA    NA     NA         NA      NA        NA        NA
## 910     10     8      8         NA      NA        NA        NA
## 911      1     1      1         NA      NA        NA        NA
## 912      3     2      2         NA      NA        NA        NA
## 913      1     1      3         NA      NA        NA        NA
## 914      2    21     17         NA      NA        NA        NA
## 915     38    25     22         NA      NA        NA        NA
## 916      5    NA      5         NA      NA        NA        NA
## 917      1     2      3         NA      NA        NA        NA
## 918      1     1      1         NA      NA        NA        NA
## 919     NA    NA      1         NA      NA        NA        NA
## 920      1     1     NA         NA      NA        NA        NA
## 921      3     3      1         NA      NA        NA        NA
## 922      0     2      1         NA      NA        NA        NA
## 923      1    NA      1         NA      NA        NA        NA
## 924      1     1     NA         NA      NA        NA        NA
## 925     NA    NA      2         NA      NA        NA        NA
## 926      2    NA      2         NA      NA        NA        NA
## 927      6     6      3         NA      NA        NA        NA
## 928      3     1      3         NA      NA        NA        NA
## 929      6    NA      4         NA      NA        NA        NA
## 930      2     1      3         NA      NA        NA        NA
## 931      3     1      1         NA      NA        NA        NA
## 932      1     1      1         NA      NA        NA        NA
## 933     NA    NA     NA         NA      NA        NA        NA
## 934     19    21     17         NA      NA        NA        NA
## 935      5     3      3         NA      NA        NA        NA
## 936     20    20     11         NA      NA        NA        NA
## 937     NA    NA     NA         NA      NA        NA        NA
## 938     11     7     NA         NA      NA        NA        NA
## 939      2     4     NA         NA      NA        NA        NA
## 940     19    21     11         NA      NA        NA        NA
## 941      5    NA     NA         NA      NA        NA        NA
## 942      3    NA     NA         NA      NA        NA        NA
## 943     NA    NA      1         NA      NA        NA        NA
## 944     NA    NA     NA         NA      NA        NA        NA
## 945     23    31     11         NA      NA        NA        NA
## 946     28    32      7         NA      NA        NA        NA
## 947      2     3      3         NA      NA        NA        NA
## 948     15     6      8         NA      NA        NA        NA
## 949      2     4     NA         NA      NA        NA        NA
## 950      2    NA      1         NA      NA        NA        NA
## 951     NA    19     25         NA      NA        NA        NA
## 952     63    61     37         NA      NA        NA        NA
## 953     NA    NA     NA         NA      NA        NA        NA
## 954      6    13      3         NA      NA        NA        NA
## 955     37    39     25         NA      NA        NA        NA
## 956      8     9      8         NA      NA        NA        NA
## 957      3    NA      5         NA      NA        NA        NA
## 958     45    48     34         NA      NA        NA        NA
## 959     NA    NA     NA         NA      NA        NA        NA
## 960     67    42     53         NA      NA        NA        NA
## 961     67    85     67         NA      NA        NA        NA
## 962     11    14      7         NA      NA        NA        NA
## 963     NA     2      4         NA      NA        NA        NA
## 964      4     6      6         NA      NA        NA        NA
## 965     49    46     34         NA      NA        NA        NA
## 966     49    51     42         NA      NA        NA        NA
## 967     NA     1      1         NA      NA        NA        NA
## 968     NA    NA     NA         NA      NA        NA        NA
## 969      5     5     NA         NA      NA        NA        NA
## 970      2    NA     NA         NA      NA        NA        NA
## 971      2     1      2         NA      NA        NA        NA
## 972     10     4      4         NA      NA        NA        NA
## 973      4     4      1         NA      NA        NA        NA
## 974      1     2      1         NA      NA        NA        NA
## 975      2     2      1         NA      NA        NA        NA
## 976      4     2      2         NA      NA        NA        NA
## 977     NA    NA     NA         NA      NA        NA        NA
## 978     17    17      8         NA      NA        NA        NA
## 979     NA     2      2         NA      NA        NA        NA
## 980     NA    NA     NA         NA      NA        NA        NA
## 981     NA    NA     NA         NA      NA        NA        NA
## 982     NA     1     NA         NA      NA        NA        NA
## 983      4     2      2         NA      NA        NA        NA
## 984      1     1      1         NA      NA        NA        NA
## 985      1     3      2         NA      NA        NA        NA
## 986      6     5      3         NA      NA        NA        NA
## 987     12    18     12         NA      NA        NA        NA
## 988      3     5      3         NA      NA        NA        NA
## 989     12     0      3         NA      NA        NA        NA
## 990     NA     4      4         NA      NA        NA        NA
## 991      9     4      7         NA      NA        NA        NA
## 992     10    NA     NA         NA      NA        NA        NA
## 993      8     4      3         NA      NA        NA        NA
## 994      5    NA      2         NA      NA        NA        NA
## 995     NA    NA     NA         NA      NA        NA        NA
## 996      1    NA     NA         NA      NA        NA        NA
## 997      2    NA     NA         NA      NA        NA        NA
## 998     NA     2     NA         NA      NA        NA        NA
## 999      3     6      3         NA      NA        NA        NA
## 1000     1    NA      1         NA      NA        NA        NA
## 1001     1     2      2         NA      NA        NA        NA
## 1002     3     4      3         NA      NA        NA        NA
## 1003     0     0      0         NA      NA        NA        NA
## 1004    NA    NA      1         NA      NA        NA        NA
## 1005     1    NA      2         NA      NA        NA        NA
## 1006     1     1      1         NA      NA        NA        NA
## 1007     0     0      0         NA      NA        NA        NA
## 1008    NA    NA      2         NA      NA        NA        NA
## 1009     4     8      3         NA      NA        NA        NA
## 1010     2    NA     NA         NA      NA        NA        NA
## 1011     1    NA     NA         NA      NA        NA        NA
## 1012     1    NA     NA         NA      NA        NA        NA
## 1013     2     1      1         NA      NA        NA        NA
## 1014     7     6      3         NA      NA        NA        NA
## 1015    11    11      6         NA      NA        NA        NA
## 1016     2     2      2         NA      NA        NA        NA
## 1017    NA     3      1         NA      NA        NA        NA
## 1018     0     0      0         NA      NA        NA        NA
## 1019     2    NA     NA         NA      NA        NA        NA
## 1020    NA    NA     NA         NA      NA        NA        NA
## 1021    11     6      6         NA      NA        NA        NA
## 1022     1    NA      1         NA      NA        NA        NA
## 1023     3     2      2         NA      NA        NA        NA
## 1024     6     5      4         NA      NA        NA        NA
## 1025     0     0      0         NA      NA        NA        NA
## 1026    NA     1     NA         NA      NA        NA        NA
## 1027    NA    NA     NA         NA      NA        NA        NA
## 1028     2     1      3         NA      NA        NA        NA
## 1029     1     1      1         NA      NA        NA        NA
## 1030     4     4      2         NA      NA        NA        NA
## 1031     3     6      3         NA      NA        NA        NA
## 1032    NA     5     NA         NA      NA        NA        NA
## 1033     1     1      1         NA      NA        NA        NA
## 1034     1     1      1         NA      NA        NA        NA
## 1035     1     1      1         NA      NA        NA        NA
## 1036     3     3      3         NA      NA        NA        NA
## 1037    NA     0     NA         NA      NA        NA        NA
## 1038     0    NA     NA         NA      NA        NA        NA
## 1039    NA    NA      0         NA      NA        NA        NA
## 1040     2     2      2         NA      NA        NA        NA
## 1041     2     6      4         NA      NA        NA        NA
## 1042     2    NA     NA         NA      NA        NA        NA
## 1043     1     1     NA         NA      NA        NA        NA
## 1044    NA    NA     NA         NA      NA        NA        NA
## 1045     1     1      1         NA      NA        NA        NA
## 1046    NA    NA     NA         NA      NA        NA        NA
## 1047    NA     6     61         NA      NA        NA        NA
## 1048    60    67     48         NA      NA        NA        NA
## 1049    17    15      5         NA      NA        NA        NA
## 1050    NA     2      2         NA      NA        NA        NA
## 1051    11     7     11         NA      NA        NA        NA
## 1052    77   106     67         NA      NA        NA        NA
## 1053     2     2      1         NA      NA        NA        NA
## 1054    11    13     11         NA      NA        NA        NA
## 1055    61    72     53         NA      NA        NA        NA
## 1056     3    NA     NA         NA      NA        NA        NA
## 1057     2    NA      2         NA      NA        NA        NA
## 1058    NA    NA      2         NA      NA        NA        NA
## 1059     4     3      2         NA      NA        NA        NA
## 1060     1     2      1         NA      NA        NA        NA
## 1061     1    NA     NA         NA      NA        NA        NA
## 1062     1     1      1         NA      NA        NA        NA
## 1063     0     0      0         NA      NA        NA        NA
## 1064    NA    NA     NA         NA      NA        NA        NA
## 1065     2     1      2         NA      NA        NA        NA
## 1066    NA     0      0         NA      NA        NA        NA
## 1067     1     1      1         NA      NA        NA        NA
## 1068    NA    NA     NA         NA      NA        NA        NA
## 1069     0     0      0         NA      NA        NA        NA
## 1070     1     1      1         NA      NA        NA        NA
## 1071    NA    NA     NA         NA      NA        NA        NA
## 1072     6     6      8         NA      NA        NA        NA
## 1073    NA    NA     NA         NA      NA        NA        NA
## 1074     3     4      3         NA      NA        NA        NA
## 1075    NA     1      1         NA      NA        NA        NA
## 1076     0     0     NA         NA      NA        NA        NA
## 1077     4     2      2         NA      NA        NA        NA
## 1078     3    NA     NA         NA      NA        NA        NA
## 1079     3     2      3         NA      NA        NA        NA
## 1080     2    NA      1         NA      NA        NA        NA
## 1081     0     0     NA         NA      NA        NA        NA
## 1082    NA    NA     NA         NA      NA        NA        NA
## 1083     5     2      1         NA      NA        NA        NA
## 1084     1     1      1         NA      NA        NA        NA
## 1085    NA     6      2         NA      NA        NA        NA
## 1086    NA     2      2         NA      NA        NA        NA
## 1087     0     0     NA         NA      NA        NA        NA
## 1088    NA     2     NA         NA      NA        NA        NA
## 1089    NA    NA     NA         NA      NA        NA        NA
## 1090     3     3      3         NA      NA        NA        NA
## 1091    NA    NA     NA         NA      NA        NA        NA
## 1092    NA     0      1         NA      NA        NA        NA
## 1093     3     4      3         NA      NA        NA        NA
## 1094     1     1      1         NA      NA        NA        NA
## 1095     0     0     NA         NA      NA        NA        NA
## 1096     1     1      1         NA      NA        NA        NA
## 1097     1     1      1         NA      NA        NA        NA
## 1098     8     8      2         NA      NA        NA        NA
## 1099     6     6      6         NA      NA        NA        NA
## 1100     3     5     NA         NA      NA        NA        NA
## 1101     1     1      1         NA      NA        NA        NA
## 1102     1     1      1         NA      NA        NA        NA
## 1103    NA     0      0         NA      NA        NA        NA
## 1104    NA    NA     NA         NA      NA        NA        NA
## 1105     1     1      1         NA      NA        NA        NA
## 1106     3     3      3         NA      NA        NA        NA
## 1107    NA     0     NA         NA      NA        NA        NA
## 1108    NA    NA     NA         NA      NA        NA        NA
## 1109     6     4      8         NA      NA        NA        NA
## 1110    NA     1      1         NA      NA        NA        NA
## 1111     6     4      4         NA      NA        NA        NA
## 1112     6     3      4         NA      NA        NA        NA
## 1113    NA    NA     NA         NA      NA        NA        NA
## 1114    16    13     11         NA      NA        NA        NA
## 1115    NA    NA     NA         NA      NA        NA        NA
## 1116    29    25     29         NA      NA        NA        NA
## 1117    15    10      7         NA      NA        NA        NA
## 1118     6     6      5         NA      NA        NA        NA
## 1119    28    18     14         NA      NA        NA        NA
## 1120    63    70     53         NA      NA        NA        NA
## 1121     3     2      2         NA      NA        NA        NA
## 1122     8     8      6         NA      NA        NA        NA
## 1123    15    21     13         NA      NA        NA        NA
## 1124    51    34     42         NA      NA        NA        NA
## 1125    NA    NA     NA         NA      NA        NA        NA
## 1126     2     1      1         NA      NA        NA        NA
## 1127     2     2     NA         NA      NA        NA        NA
## 1128     2     2      1         NA      NA        NA        NA
## 1129     3     2      2         NA      NA        NA        NA
## 1130     1     2      1         NA      NA        NA        NA
## 1131     3     1      1         NA      NA        NA        NA
## 1132     0     0      0         NA      NA        NA        NA
## 1133     4     5      2         NA      NA        NA        NA
## 1134    NA    NA      0         NA      NA        NA        NA
## 1135     1     2      1         NA      NA        NA        NA
## 1136     1    NA      1         NA      NA        NA        NA
## 1137    NA     1     NA         NA      NA        NA        NA
## 1138     0     0      0         NA      NA        NA        NA
## 1139     2     1      3         NA      NA        NA        NA
## 1140    NA     1     NA         NA      NA        NA        NA
## 1141    NA    NA      2         NA      NA        NA        NA
## 1142    NA     3     NA         NA      NA        NA        NA
## 1143     1     1      1         NA      NA        NA        NA
## 1144     6     6      6         NA      NA        NA        NA
## 1145     2     1      2         NA      NA        NA        NA
## 1146     0     0      0         NA      NA        NA        NA
## 1147     1    NA     NA         NA      NA        NA        NA
## 1148     0     0      0         NA      NA        NA        NA
## 1149     1    NA     NA         NA      NA        NA        NA
## 1150    NA    NA     NA         NA      NA        NA        NA
## 1151    NA    NA     NA         NA      NA        NA        NA
## 1152    NA     2     NA         NA      NA        NA        NA
## 1153    NA    NA     NA         NA      NA        NA        NA
## 1154    NA     0     NA         NA      NA        NA        NA
## 1155     8     6      6         NA      NA        NA        NA
## 1156     0     0      0         NA      NA        NA        NA
## 1157     2     2     NA         NA      NA        NA        NA
## 1158    NA    NA      3         NA      NA        NA        NA
## 1159     0     0      1         NA      NA        NA        NA
## 1160     4     4      4         NA      NA        NA        NA
## 1161     2     1      3         NA      NA        NA        NA
## 1162     0     0      0         NA      NA        NA        NA
## 1163     1     1      1         NA      NA        NA        NA
## 1164    NA    NA     NA         NA      NA        NA        NA
## 1165    NA    NA     NA         NA      NA        NA        NA
## 1166    NA    NA     NA         NA      NA        NA        NA
## 1167     1     4      4         NA      NA        NA        NA
## 1168    21     2     11         NA      NA        NA        NA
## 1169    32    16      6         NA      NA        NA        NA
## 1170    NA    NA     11         NA      NA        NA        NA
## 1171     8    NA      3         NA      NA        NA        NA
## 1172     1     1      1         NA      NA        NA        NA
## 1173    NA    NA     NA         NA      NA        NA        NA
## 1174     1     1      1         NA      NA        NA        NA
## 1175     4     3      4         NA      NA        NA        NA
## 1176    NA    NA     NA         NA      NA        NA        NA
## 1177    NA    NA     NA         NA      NA        NA        NA
## 1178    NA     1      1         NA      NA        NA        NA
## 1179     2    NA     NA         NA      NA        NA        NA
## 1180     8     3      3         NA      NA        NA        NA
## 1181     1    NA     NA         NA      NA        NA        NA
## 1182     2    NA      1         NA      NA        NA        NA
## 1183     6    NA     NA         NA      NA        NA        NA
## 1184     4    NA     NA         NA      NA        NA        NA
## 1185     1    NA      1         NA      NA        NA        NA
## 1186     2     1      1         NA      NA        NA        NA
## 1187     0    NA     NA         NA      NA        NA        NA
## 1188    27    17     19         NA      NA        NA        NA
## 1189     2    NA     NA         NA      NA        NA        NA
## 1190    14     6     14         NA      NA        NA        NA
## 1191    NA    NA     NA         NA      NA        NA        NA
## 1192     1     1      3         NA      NA        NA        NA
## 1193     4    11     11         NA      NA        NA        NA
## 1194    NA    NA     NA         NA      NA        NA        NA
## 1195    NA    NA     NA         NA      NA        NA        NA
## 1196    17     8     14         NA      NA        NA        NA
## 1197     1    NA      1         NA      NA        NA        NA
## 1198     4     2      4         NA      NA        NA        NA
## 1199     1    NA     NA         NA      NA        NA        NA
## 1200    NA    21     36         NA      NA        NA        NA
## 1201    NA    NA     NA         NA      NA        NA        NA
## 1202    32    45     40         NA      NA        NA        NA
## 1203    NA    NA     NA         NA      NA        NA        NA
## 1204    13    38     32         NA      NA        NA        NA
## 1205    15    25     27         NA      NA        NA        NA
## 1206    NA    NA      2         NA      NA        NA        NA
## 1207     2    NA     NA         NA      NA        NA        NA
## 1208    NA    NA     NA         NA      NA        NA        NA
## 1209    56    53     53         NA      NA        NA        NA
## 1210    63    74     67         NA      NA        NA        NA
## 1211     6     7     10         NA      NA        NA        NA
## 1212    NA     4      4         NA      NA        NA        NA
## 1213     6    32     27         NA      NA        NA        NA
## 1214    78    66     55         NA      NA        NA        NA
## 1215    13     5     10         NA      NA        NA        NA
## 1216     3     3      6         NA      NA        NA        NA
## 1217     2    NA      4         NA      NA        NA        NA
## 1218     6     4      3         NA      NA        NA        NA
## 1219     1     2      2         NA      NA        NA        NA
## 1220     3     1      1         NA      NA        NA        NA
## 1221     2     0      0         NA      NA        NA        NA
## 1222     5     5      5         NA      NA        NA        NA
## 1223    NA     1     NA         NA      NA        NA        NA
## 1224     1     4      2         NA      NA        NA        NA
## 1225     7    NA      1         NA      NA        NA        NA
## 1226    NA     1      1         NA      NA        NA        NA
## 1227     5    NA      1         NA      NA        NA        NA
## 1228     2    NA      1         NA      NA        NA        NA
## 1229     3     0      0         NA      NA        NA        NA
## 1230     2    NA     NA         NA      NA        NA        NA
## 1231     1     2      1         NA      NA        NA        NA
## 1232    NA     1      2         NA      NA        NA        NA
## 1233    NA    NA     NA         NA      NA        NA        NA
## 1234    NA    NA     NA         NA      NA        NA        NA
## 1235    NA     2     NA         NA      NA        NA        NA
## 1236     3     3      6         NA      NA        NA        NA
## 1237    NA    NA      1         NA      NA        NA        NA
## 1238     0    NA      0         NA      NA        NA        NA
## 1239     2     1      2         NA      NA        NA        NA
## 1240     1     1      3         NA      NA        NA        NA
## 1241    NA    NA     NA         NA      NA        NA        NA
## 1242     0     0      0         NA      NA        NA        NA
## 1243     3     3     NA         NA      NA        NA        NA
## 1244     0    NA      0         NA      NA        NA        NA
## 1245     2     1      4         NA      NA        NA        NA
## 1246    NA     1     NA         NA      NA        NA        NA
## 1247    NA    NA     NA         NA      NA        NA        NA
## 1248     0     0      0         NA      NA        NA        NA
## 1249     1    NA      3         NA      NA        NA        NA
## 1250    NA    NA      1         NA      NA        NA        NA
## 1251     0    NA      0         NA      NA        NA        NA
## 1252     2     1      2         NA      NA        NA        NA
## 1253    NA     1     NA         NA      NA        NA        NA
## 1254    NA    NA     NA         NA      NA        NA        NA
## 1255     4     2      4         NA      NA        NA        NA
## 1256     6     6      3         NA      NA        NA        NA
## 1257    NA    NA     NA         NA      NA        NA        NA
## 1258    NA     1      5         NA      NA        NA        NA
## 1259     0     0      0         NA      NA        NA        NA
## 1260     2    NA      2         NA      NA        NA        NA
## 1261     6     3      3         NA      NA        NA        NA
## 1262    NA    NA      2         NA      NA        NA        NA
## 1263     0    NA      0         NA      NA        NA        NA
## 1264     2     1      2         NA      NA        NA        NA
## 1265     5     3      4         NA      NA        NA        NA
## 1266    NA    NA     NA         NA      NA        NA        NA
## 1267     0     0      0         NA      NA        NA        NA
## 1268    NA    NA     NA         NA      NA        NA        NA
## 1269     4     1      4         NA      NA        NA        NA
## 1270    NA    NA     NA         NA      NA        NA        NA
## 1271     1     3      3         NA      NA        NA        NA
## 1272    23    25     23         NA      NA        NA        NA
## 1273    25    19     22         NA      NA        NA        NA
## 1274    10     8      5         NA      NA        NA        NA
## 1275     1     1      1         NA      NA        NA        NA
## 1276     1     1      1         NA      NA        NA        NA
## 1277    NA    NA     NA         NA      NA        NA        NA
## 1278     1     1      1         NA      NA        NA        NA
## 1279    NA    NA     NA         NA      NA        NA        NA
## 1280     2     2      4         NA      NA        NA        NA
## 1281     2     1      1         NA      NA        NA        NA
## 1282    11    11     11         NA      NA        NA        NA
## 1283     3    NA      3         NA      NA        NA        NA
## 1284    NA    NA     NA         NA      NA        NA        NA
## 1285     2     1      2         NA      NA        NA        NA
## 1286    NA    NA     NA         NA      NA        NA        NA
## 1287     8    11     11         NA      NA        NA        NA
## 1288    NA    NA     NA         NA      NA        NA        NA
## 1289    18    18      4         NA      NA        NA        NA
## 1290     1     2      1         NA      NA        NA        NA
## 1291     6     6      8         NA      NA        NA        NA
## 1292    NA    NA     NA         NA      NA        NA        NA
## 1293     6     8      8         NA      NA        NA        NA
## 1294     1     1      2         NA      NA        NA        NA
## 1295     4     8      8         NA      NA        NA        NA
## 1296    NA     1     NA         NA      NA        NA        NA
## 1297    26    34     37         NA      NA        NA        NA
## 1298    22    13     13         NA      NA        NA        NA
## 1299    27    30     30         NA      NA        NA        NA
## 1300    15    12     18         NA      NA        NA        NA
## 1301    NA    NA     NA         NA      NA        NA        NA
## 1302    35    25     32         NA      NA        NA        NA
## 1303    53    49     60         NA      NA        NA        NA
## 1304     7     7      5         NA      NA        NA        NA
## 1305     6     4      4         NA      NA        NA        NA
## 1306    34    42     44         NA      NA        NA        NA
## 1307    51    46     59         NA      NA        NA        NA
## 1308     2     3      2         NA      NA        NA        NA
## 1309     1     1      1         NA      NA        NA        NA
## 1310     5     4      2         NA      NA        NA        NA
## 1311     1    NA      1         NA      NA        NA        NA
## 1312     3     3      1         NA      NA        NA        NA
## 1313     2     0      1         NA      NA        NA        NA
## 1314     3     3      4         NA      NA        NA        NA
## 1315    NA     1     NA         NA      NA        NA        NA
## 1316     3     1      2         NA      NA        NA        NA
## 1317    NA    NA     NA         NA      NA        NA        NA
## 1318     3     1      1         NA      NA        NA        NA
## 1319    NA    NA     NA         NA      NA        NA        NA
## 1320     2     2      2         NA      NA        NA        NA
## 1321     2     1      3         NA      NA        NA        NA
## 1322     1     2      1         NA      NA        NA        NA
## 1323    NA    NA     NA         NA      NA        NA        NA
## 1324    NA    NA     NA         NA      NA        NA        NA
## 1325     4     2      4         NA      NA        NA        NA
## 1326     2     1      1         NA      NA        NA        NA
## 1327    NA    NA     NA         NA      NA        NA        NA
## 1328     3     2      3         NA      NA        NA        NA
## 1329    NA    NA      3         NA      NA        NA        NA
## 1330     1    NA      0         NA      NA        NA        NA
## 1331    NA    NA     NA         NA      NA        NA        NA
## 1332     3    NA     NA         NA      NA        NA        NA
## 1333    NA    NA     NA         NA      NA        NA        NA
## 1334     1     0      0         NA      NA        NA        NA
## 1335    NA    NA     NA         NA      NA        NA        NA
## 1336    NA    NA     NA         NA      NA        NA        NA
## 1337     4     3      3         NA      NA        NA        NA
## 1338     6     8      3         NA      NA        NA        NA
## 1339     4     4      4         NA      NA        NA        NA
## 1340    NA     1      4         NA      NA        NA        NA
## 1341     6     4      4         NA      NA        NA        NA
## 1342    11     6      8         NA      NA        NA        NA
## 1343     1     1      1         NA      NA        NA        NA
## 1344     2     2      1         NA      NA        NA        NA
## 1345     4     4      2         NA      NA        NA        NA
## 1346     4     4      3         NA      NA        NA        NA
## 1347    NA    NA      1         NA      NA        NA        NA
## 1348    NA    NA     NA         NA      NA        NA        NA
## 1349     6     3      6         NA      NA        NA        NA
## 1350    NA    NA     10         NA      NA        NA        NA
## 1351     1     1      1         NA      NA        NA        NA
## 1352     2     2     NA         NA      NA        NA        NA
## 1353    NA    NA     NA         NA      NA        NA        NA
## 1354     5    NA     NA         NA      NA        NA        NA
## 1355    NA     1      1         NA      NA        NA        NA
## 1356     2    NA      2         NA      NA        NA        NA
## 1357     4     2      2         NA      NA        NA        NA
## 1358     2     1      3         NA      NA        NA        NA
## 1359     8     8     11         NA      NA        NA        NA
## 1360    NA    NA     NA         NA      NA        NA        NA
## 1361    NA    NA     NA         NA      NA        NA        NA
## 1362     0     0      0         NA      NA        NA        NA
## 1363    NA    NA     NA         NA      NA        NA        NA
## 1364    11    15     15         NA      NA        NA        NA
## 1365    NA    NA      3         NA      NA        NA        NA
## 1366     1     2     NA         NA      NA        NA        NA
## 1367     6     8      6         NA      NA        NA        NA
## 1368    NA    NA     NA         NA      NA        NA        NA
## 1369     8     8      8         NA      NA        NA        NA
## 1370    NA    NA     NA         NA      NA        NA        NA
## 1371    NA     1     NA         NA      NA        NA        NA
## 1372    NA    40     66         NA      NA        NA        NA
## 1373    32    26     26         NA      NA        NA        NA
## 1374    NA    NA     NA         NA      NA        NA        NA
## 1375    73    67     63         NA      NA        NA        NA
## 1376    44    44     35         NA      NA        NA        NA
## 1377     8     9      3         NA      NA        NA        NA
## 1378     6     3      6         NA      NA        NA        NA
## 1379    39    32     21         NA      NA        NA        NA
## 1380   166   166    180         NA      NA        NA        NA
## 1381     8     7      8         NA      NA        NA        NA
## 1382    11     8      8         NA      NA        NA        NA
## 1383    27    21     23         NA      NA        NA        NA
## 1384   104   104    104         NA      NA        NA        NA
## 1385     3     2      3         NA      NA        NA        NA
## 1386     2     4      2         NA      NA        NA        NA
## 1387     7     4      8         NA      NA        NA        NA
## 1388     4     4      2         NA      NA        NA        NA
## 1389     3     3      2         NA      NA        NA        NA
## 1390     5     5      4         NA      NA        NA        NA
## 1391    NA     0     NA         NA      NA        NA        NA
## 1392     3     3      4         NA      NA        NA        NA
## 1393     1     1      1         NA      NA        NA        NA
## 1394     3     3      1         NA      NA        NA        NA
## 1395    NA    NA     NA         NA      NA        NA        NA
## 1396    NA    NA     NA         NA      NA        NA        NA
## 1397     6     3      6         NA      NA        NA        NA
## 1398     3     1      2         NA      NA        NA        NA
## 1399     4     4      2         NA      NA        NA        NA
## 1400     1    NA      1         NA      NA        NA        NA
## 1401    NA    NA      6         NA      NA        NA        NA
## 1402     2     2      1         NA      NA        NA        NA
## 1403     2     4      2         NA      NA        NA        NA
## 1404     1    NA     NA         NA      NA        NA        NA
## 1405     1    NA     NA         NA      NA        NA        NA
## 1406     3     1      1         NA      NA        NA        NA
## 1407     2     2      2         NA      NA        NA        NA
## 1408     1    NA     NA         NA      NA        NA        NA
## 1409     1     1     NA         NA      NA        NA        NA
## 1410     6     3      3         NA      NA        NA        NA
## 1411    NA     0      0         NA      NA        NA        NA
## 1412    NA     2     NA         NA      NA        NA        NA
## 1413    NA    NA      1         NA      NA        NA        NA
## 1414     8     8     NA         NA      NA        NA        NA
## 1415     3     3      3         NA      NA        NA        NA
## 1416     4     4      6         NA      NA        NA        NA
## 1417     1    NA      1         NA      NA        NA        NA
## 1418     7     6      3         NA      NA        NA        NA
## 1419    NA     1     NA         NA      NA        NA        NA
## 1420     2     2     NA         NA      NA        NA        NA
## 1421     1     4      1         NA      NA        NA        NA
## 1422     2     4     21         NA      NA        NA        NA
## 1423     6    10     35         NA      NA        NA        NA
## 1424    NA    NA     28         NA      NA        NA        NA
## 1425    10     3      5         NA      NA        NA        NA
## 1426     1     1      1         NA      NA        NA        NA
## 1427    NA    NA     NA         NA      NA        NA        NA
## 1428     1     1      1         NA      NA        NA        NA
## 1429     1    NA     NA         NA      NA        NA        NA
## 1430    NA    NA      1         NA      NA        NA        NA
## 1431     1    NA     NA         NA      NA        NA        NA
## 1432    NA    NA     NA         NA      NA        NA        NA
## 1433     1     1      1         NA      NA        NA        NA
## 1434    NA    NA     NA         NA      NA        NA        NA
## 1435     3     3      3         NA      NA        NA        NA
## 1436     1    NA     NA         NA      NA        NA        NA
## 1437    NA     2      2         NA      NA        NA        NA
## 1438    NA    NA     NA         NA      NA        NA        NA
## 1439     0     0      0         NA      NA        NA        NA
## 1440    NA     3     NA         NA      NA        NA        NA
## 1441     8     8     11         NA      NA        NA        NA
## 1442     3     8      3         NA      NA        NA        NA
## 1443     3     4      4         NA      NA        NA        NA
## 1444    11    13     15         NA      NA        NA        NA
## 1445    NA    NA      2         NA      NA        NA        NA
## 1446    NA    NA     NA         NA      NA        NA        NA
## 1447    NA    NA     NA         NA      NA        NA        NA
## 1448     1     2      4         NA      NA        NA        NA
## 1449    NA    NA     NA         NA      NA        NA        NA
## 1450    NA    23     36         NA      NA        NA        NA
## 1451    NA    NA     NA         NA      NA        NA        NA
## 1452    42    45     53         NA      NA        NA        NA
## 1453    NA    NA     NA         NA      NA        NA        NA
## 1454    57    48     44         NA      NA        NA        NA
## 1455     2     2      2         NA      NA        NA        NA
## 1456     5     6      6         NA      NA        NA        NA
## 1457    NA    NA      2         NA      NA        NA        NA
## 1458    NA    NA     NA         NA      NA        NA        NA
## 1459    25    25     32         NA      NA        NA        NA
## 1460   116   123    169         NA      NA        NA        NA
## 1461     6     7      6         NA      NA        NA        NA
## 1462    NA     2      2         NA      NA        NA        NA
## 1463     4     2     NA         NA      NA        NA        NA
## 1464    38    30     38         NA      NA        NA        NA
## 1465    91    80     85         NA      NA        NA        NA
## 1466     2     2      2         NA      NA        NA        NA
## 1467     8    NA     NA         NA      NA        NA        NA
## 1468     2     2      2         NA      NA        NA        NA
## 1469     2     2      4         NA      NA        NA        NA
## 1470     2    NA      1         NA      NA        NA        NA
## 1471     1     1      2         NA      NA        NA        NA
## 1472     2     1      1         NA      NA        NA        NA
## 1473     0     2      1         NA      NA        NA        NA
## 1474     4     6      3         NA      NA        NA        NA
## 1475    NA    NA      1         NA      NA        NA        NA
## 1476     1     2      1         NA      NA        NA        NA
## 1477     0     0      0         NA      NA        NA        NA
## 1478     3     3      3         NA      NA        NA        NA
## 1479     4     3      5         NA      NA        NA        NA
## 1480     2     2      3         NA      NA        NA        NA
## 1481     2     2      2         NA      NA        NA        NA
## 1482     2     0      1         NA      NA        NA        NA
## 1483     1     1      1         NA      NA        NA        NA
## 1484    NA    NA     NA         NA      NA        NA        NA
## 1485    NA     1     NA         NA      NA        NA        NA
## 1486    NA     2     NA         NA      NA        NA        NA
## 1487     6     6      8         NA      NA        NA        NA
## 1488     1    NA      1         NA      NA        NA        NA
## 1489    NA     0      3         NA      NA        NA        NA
## 1490     2    NA      2         NA      NA        NA        NA
## 1491     3     1     NA         NA      NA        NA        NA
## 1492     0    NA     NA         NA      NA        NA        NA
## 1493     0     0     NA         NA      NA        NA        NA
## 1494    NA    NA     NA         NA      NA        NA        NA
## 1495    NA    NA      3         NA      NA        NA        NA
## 1496    NA    NA     NA         NA      NA        NA        NA
## 1497     0    NA     NA         NA      NA        NA        NA
## 1498     0     0     NA         NA      NA        NA        NA
## 1499     1    NA     NA         NA      NA        NA        NA
## 1500    NA    NA     NA         NA      NA        NA        NA
## 1501    NA    NA     NA         NA      NA        NA        NA
## 1502     0    NA     NA         NA      NA        NA        NA
## 1503    NA    NA      1         NA      NA        NA        NA
## 1504     3    NA      3         NA      NA        NA        NA
## 1505     4     8      8         NA      NA        NA        NA
## 1506     0     0     NA         NA      NA        NA        NA
## 1507     2    NA      2         NA      NA        NA        NA
## 1508     3     6      3         NA      NA        NA        NA
## 1509     1    NA     NA         NA      NA        NA        NA
## 1510    NA     0      2         NA      NA        NA        NA
## 1511     2     2      2         NA      NA        NA        NA
## 1512     3     1      3         NA      NA        NA        NA
## 1513     0    NA     NA         NA      NA        NA        NA
## 1514     0     0     NA         NA      NA        NA        NA
## 1515    NA    NA     NA         NA      NA        NA        NA
## 1516    NA    NA      1         NA      NA        NA        NA
## 1517     5     1      1         NA      NA        NA        NA
## 1518    NA    NA     NA         NA      NA        NA        NA
## 1519     1     3      3         NA      NA        NA        NA
## 1520     6     6      4         NA      NA        NA        NA
## 1521    10     6      3         NA      NA        NA        NA
## 1522     3     3     NA         NA      NA        NA        NA
## 1523     1     1      1         NA      NA        NA        NA
## 1524     1     1      1         NA      NA        NA        NA
## 1525    NA    NA     NA         NA      NA        NA        NA
## 1526     2     1      3         NA      NA        NA        NA
## 1527    NA    NA     NA         NA      NA        NA        NA
## 1528     1     1      1         NA      NA        NA        NA
## 1529    NA    NA     NA         NA      NA        NA        NA
## 1530     3     3      3         NA      NA        NA        NA
## 1531     1    NA     NA         NA      NA        NA        NA
## 1532     0     0      0         NA      NA        NA        NA
## 1533     0    NA     NA         NA      NA        NA        NA
## 1534     8     8      8         NA      NA        NA        NA
## 1535     3     6      8         NA      NA        NA        NA
## 1536    NA    NA     NA         NA      NA        NA        NA
## 1537     7     4      3         NA      NA        NA        NA
## 1538    11    15     13         NA      NA        NA        NA
## 1539     2     2      0         NA      NA        NA        NA
## 1540     4    NA      6         NA      NA        NA        NA
## 1541     3    NA     NA         NA      NA        NA        NA
## 1542     5     1      1         NA      NA        NA        NA
## 1543    11    11     13         NA      NA        NA        NA
## 1544    NA    NA     NA         NA      NA        NA        NA
## 1545    NA    17     23         NA      NA        NA        NA
## 1546    13    18     11         NA      NA        NA        NA
## 1547    NA    NA     NA         NA      NA        NA        NA
## 1548     3    10      3         NA      NA        NA        NA
## 1549    12     7     15         NA      NA        NA        NA
## 1550     6     6      5         NA      NA        NA        NA
## 1551    25    11     21         NA      NA        NA        NA
## 1552     7    11      4         NA      NA        NA        NA
## 1553    15    13     13         NA      NA        NA        NA
## 1554    11     6      6         NA      NA        NA        NA
## 1555    30    49     53         NA      NA        NA        NA
## 1556   101    80     63         NA      NA        NA        NA
## 1557    20     8      8         NA      NA        NA        NA
## 1558     7     4      2         NA      NA        NA        NA
## 1559     4     8      2         NA      NA        NA        NA
## 1560     3     4      2         NA      NA        NA        NA
## 1561     3     1      1         NA      NA        NA        NA
## 1562     2     1      1         NA      NA        NA        NA
## 1563     1     1      2         NA      NA        NA        NA
## 1564     0    NA     NA         NA      NA        NA        NA
## 1565    NA    NA     NA         NA      NA        NA        NA
## 1566     5     3      5         NA      NA        NA        NA
## 1567    NA     0     NA         NA      NA        NA        NA
## 1568     1     2      2         NA      NA        NA        NA
## 1569     1     0      1         NA      NA        NA        NA
## 1570    NA    NA     NA         NA      NA        NA        NA
## 1571     1     1      1         NA      NA        NA        NA
## 1572     1     0      1         NA      NA        NA        NA
## 1573     3     3      3         NA      NA        NA        NA
## 1574     2     1      2         NA      NA        NA        NA
## 1575    NA    NA     NA         NA      NA        NA        NA
## 1576    NA     2     NA         NA      NA        NA        NA
## 1577     3     1      3         NA      NA        NA        NA
## 1578     1    NA      1         NA      NA        NA        NA
## 1579    NA     0     NA         NA      NA        NA        NA
## 1580     4     3      2         NA      NA        NA        NA
## 1581     3     3      3         NA      NA        NA        NA
## 1582     0    NA      0         NA      NA        NA        NA
## 1583    NA     1     NA         NA      NA        NA        NA
## 1584     2     1      2         NA      NA        NA        NA
## 1585     1     1      1         NA      NA        NA        NA
## 1586     0    NA      0         NA      NA        NA        NA
## 1587    NA    NA      2         NA      NA        NA        NA
## 1588     1     1     NA         NA      NA        NA        NA
## 1589    NA     3     NA         NA      NA        NA        NA
## 1590    NA     1     NA         NA      NA        NA        NA
## 1591     2     1      2         NA      NA        NA        NA
## 1592     2     1      1         NA      NA        NA        NA
## 1593     2     2      3         NA      NA        NA        NA
## 1594     3     1      3         NA      NA        NA        NA
## 1595    NA     2     NA         NA      NA        NA        NA
## 1596     0    NA      0         NA      NA        NA        NA
## 1597     2    NA     NA         NA      NA        NA        NA
## 1598    NA     1      3         NA      NA        NA        NA
## 1599     1     1      1         NA      NA        NA        NA
## 1600    NA    NA      0         NA      NA        NA        NA
## 1601     4     3      2         NA      NA        NA        NA
## 1602     4     4      3         NA      NA        NA        NA
## 1603     0    NA      0         NA      NA        NA        NA
## 1604     6     4      3         NA      NA        NA        NA
## 1605    NA    NA     NA         NA      NA        NA        NA
## 1606    NA     1     NA         NA      NA        NA        NA
## 1607     1     1      1         NA      NA        NA        NA
## 1608    NA    NA     NA         NA      NA        NA        NA
## 1609    NA    NA      3         NA      NA        NA        NA
## 1610    NA    NA     NA         NA      NA        NA        NA
## 1611    NA    NA     NA         NA      NA        NA        NA
## 1612    NA    NA     NA         NA      NA        NA        NA
## 1613    NA    NA     NA         NA      NA        NA        NA
## 1614     1     1     NA         NA      NA        NA        NA
## 1615    NA    NA     NA         NA      NA        NA        NA
## 1616     1    NA     NA         NA      NA        NA        NA
## 1617    NA     0      0         NA      NA        NA        NA
## 1618    NA    NA     NA         NA      NA        NA        NA
## 1619     3     3     NA         NA      NA        NA        NA
## 1620    35    32     14         NA      NA        NA        NA
## 1621     2    NA     NA         NA      NA        NA        NA
## 1622    NA     1     NA         NA      NA        NA        NA
## 1623    NA    NA     NA         NA      NA        NA        NA
## 1624     8    11     11         NA      NA        NA        NA
## 1625    NA    NA      1         NA      NA        NA        NA
## 1626     1     1      1         NA      NA        NA        NA
## 1627    NA     1     NA         NA      NA        NA        NA
## 1628     0     0      1         NA      NA        NA        NA
## 1629     3    NA     NA         NA      NA        NA        NA
## 1630     1    NA     NA         NA      NA        NA        NA
## 1631     1    NA     NA         NA      NA        NA        NA
## 1632    NA    NA     NA         NA      NA        NA        NA
## 1633    NA     2     NA         NA      NA        NA        NA
## 1634     1    NA     NA         NA      NA        NA        NA
## 1635    NA    NA      0         NA      NA        NA        NA
## 1636    NA    NA     NA         NA      NA        NA        NA
## 1637     1     1      1         NA      NA        NA        NA
## 1638     8     8      6         NA      NA        NA        NA
## 1639    25    32     10         NA      NA        NA        NA
## 1640    NA     4      7         NA      NA        NA        NA
## 1641     5     5     NA         NA      NA        NA        NA
## 1642     1    NA      1         NA      NA        NA        NA
## 1643     1    NA      1         NA      NA        NA        NA
## 1644    NA    NA     NA         NA      NA        NA        NA
## 1645     1    NA     NA         NA      NA        NA        NA
## 1646     3     3      3         NA      NA        NA        NA
## 1647    NA    NA     NA         NA      NA        NA        NA
## 1648     1    NA      1         NA      NA        NA        NA
## 1649     2     2     NA         NA      NA        NA        NA
## 1650     1    NA      1         NA      NA        NA        NA
## 1651     3    NA      3         NA      NA        NA        NA
## 1652    NA    NA      2         NA      NA        NA        NA
## 1653     1     3      3         NA      NA        NA        NA
## 1654    NA    NA     NA         NA      NA        NA        NA
## 1655     8    15     15         NA      NA        NA        NA
## 1656     2    NA     NA         NA      NA        NA        NA
## 1657    NA    NA     NA         NA      NA        NA        NA
## 1658     1     2      1         NA      NA        NA        NA
## 1659     4     8      6         NA      NA        NA        NA
## 1660     3    NA     NA         NA      NA        NA        NA
## 1661     2     4      2         NA      NA        NA        NA
## 1662     4     6      4         NA      NA        NA        NA
## 1663    NA    15      4         NA      NA        NA        NA
## 1664    16    13     16         NA      NA        NA        NA
## 1665    NA    NA     NA         NA      NA        NA        NA
## 1666    16    16     13         NA      NA        NA        NA
## 1667    10     7      5         NA      NA        NA        NA
## 1668     5     2      2         NA      NA        NA        NA
## 1669     2     2     NA         NA      NA        NA        NA
## 1670    18    25     18         NA      NA        NA        NA
## 1671    32    28     25         NA      NA        NA        NA
## 1672     5     3      5         NA      NA        NA        NA
## 1673    NA     2      2         NA      NA        NA        NA
## 1674     4     2      2         NA      NA        NA        NA
## 1675    23    27     21         NA      NA        NA        NA
## 1676    42    53     51         NA      NA        NA        NA
## 1677    NA     1      1         NA      NA        NA        NA
## 1678    NA     2     NA         NA      NA        NA        NA
## 1679    NA     2     NA         NA      NA        NA        NA
## 1680    NA     1     NA         NA      NA        NA        NA
## 1681     1    NA      1         NA      NA        NA        NA
## 1682     2     1      1         NA      NA        NA        NA
## 1683     0     0      0         NA      NA        NA        NA
## 1684     2     4      3         NA      NA        NA        NA
## 1685    NA     0     NA         NA      NA        NA        NA
## 1686     3     2      7         NA      NA        NA        NA
## 1687     0     1     NA         NA      NA        NA        NA
## 1688    NA    NA     NA         NA      NA        NA        NA
## 1689     1    NA      1         NA      NA        NA        NA
## 1690     2     2      2         NA      NA        NA        NA
## 1691     1     1      1         NA      NA        NA        NA
## 1692     1     1      1         NA      NA        NA        NA
## 1693    NA    NA     NA         NA      NA        NA        NA
## 1694    NA     2     NA         NA      NA        NA        NA
## 1695     3    NA      3         NA      NA        NA        NA
## 1696    NA     4     NA         NA      NA        NA        NA
## 1697     1    NA      1         NA      NA        NA        NA
## 1698     1    NA      0         NA      NA        NA        NA
## 1699     2    NA     NA         NA      NA        NA        NA
## 1700     1     2      1         NA      NA        NA        NA
## 1701    NA    NA      1         NA      NA        NA        NA
## 1702    NA    NA     NA         NA      NA        NA        NA
## 1703     3     3     NA         NA      NA        NA        NA
## 1704    NA    NA     NA         NA      NA        NA        NA
## 1705    NA    NA     NA         NA      NA        NA        NA
## 1706    NA    NA     NA         NA      NA        NA        NA
## 1707    NA     1      1         NA      NA        NA        NA
## 1708     2     1      1         NA      NA        NA        NA
## 1709     3    NA      3         NA      NA        NA        NA
## 1710     0     0      0         NA      NA        NA        NA
## 1711     2     2      2         NA      NA        NA        NA
## 1712     1    NA      3         NA      NA        NA        NA
## 1713    NA     2     NA         NA      NA        NA        NA
## 1714     2    NA      2         NA      NA        NA        NA
## 1715     3    NA      3         NA      NA        NA        NA
## 1716    NA     4     NA         NA      NA        NA        NA
## 1717     1     1     NA         NA      NA        NA        NA
## 1718     1     1     NA         NA      NA        NA        NA
## 1719     2    NA      2         NA      NA        NA        NA
## 1720     1     2      2         NA      NA        NA        NA
## 1721     1     2      1         NA      NA        NA        NA
## 1722     3     1      5         NA      NA        NA        NA
## 1723     2     6      2         NA      NA        NA        NA
## 1724     6    13      3         NA      NA        NA        NA
## 1725     7     7     NA         NA      NA        NA        NA
## 1726    NA     8     NA         NA      NA        NA        NA
## 1727     1     1      1         NA      NA        NA        NA
## 1728     1     1      1         NA      NA        NA        NA
## 1729    NA     1     NA         NA      NA        NA        NA
## 1730    NA     2     NA         NA      NA        NA        NA
## 1731    NA    NA     NA         NA      NA        NA        NA
## 1732     1    NA     NA         NA      NA        NA        NA
## 1733    NA     2      2         NA      NA        NA        NA
## 1734    NA    NA     NA         NA      NA        NA        NA
## 1735     3     3      3         NA      NA        NA        NA
## 1736     0    NA      0         NA      NA        NA        NA
## 1737     1     2     NA         NA      NA        NA        NA
## 1738    NA    NA     NA         NA      NA        NA        NA
## 1739     1     1      1         NA      NA        NA        NA
## 1740     0    NA     NA         NA      NA        NA        NA
## 1741     6     6      4         NA      NA        NA        NA
## 1742     1    NA     NA         NA      NA        NA        NA
## 1743    11     8      8         NA      NA        NA        NA
## 1744    NA    NA     NA         NA      NA        NA        NA
## 1745     1    NA     NA         NA      NA        NA        NA
## 1746    NA    NA     NA         NA      NA        NA        NA
## 1747     3     5      6         NA      NA        NA        NA
## 1748    NA     4     NA         NA      NA        NA        NA
## 1749    24    18     18         NA      NA        NA        NA
## 1750    16     6     10         NA      NA        NA        NA
## 1751    20    22     17         NA      NA        NA        NA
## 1752    14     5      9         NA      NA        NA        NA
## 1753    70    67     46         NA      NA        NA        NA
## 1754    92    95    102         NA      NA        NA        NA
## 1755     6     3      5         NA      NA        NA        NA
## 1756    34    40     40         NA      NA        NA        NA
## 1757    99   104    118         NA      NA        NA        NA
## 1758    13     5     NA         NA      NA        NA        NA
## 1759     2     2     NA         NA      NA        NA        NA
## 1760     2    NA     NA         NA      NA        NA        NA
## 1761     1     1      1         NA      NA        NA        NA
## 1762    NA    NA     NA         NA      NA        NA        NA
## 1763     1     1      1         NA      NA        NA        NA
## 1764     0     0     NA         NA      NA        NA        NA
## 1765    NA    NA     NA         NA      NA        NA        NA
## 1766     3     2      2         NA      NA        NA        NA
## 1767    NA     0      0         NA      NA        NA        NA
## 1768     1     1      2         NA      NA        NA        NA
## 1769     0    NA      0         NA      NA        NA        NA
## 1770     1     1     NA         NA      NA        NA        NA
## 1771    NA    NA     NA         NA      NA        NA        NA
## 1772    NA     1      1         NA      NA        NA        NA
## 1773     0     0      1         NA      NA        NA        NA
## 1774     3     1      1         NA      NA        NA        NA
## 1775     1     1     NA         NA      NA        NA        NA
## 1776    NA    NA     NA         NA      NA        NA        NA
## 1777    NA    NA     NA         NA      NA        NA        NA
## 1778     2    NA     NA         NA      NA        NA        NA
## 1779    NA    NA     NA         NA      NA        NA        NA
## 1780     1     1      1         NA      NA        NA        NA
## 1781    NA    NA     NA         NA      NA        NA        NA
## 1782     3     2      2         NA      NA        NA        NA
## 1783     2     2      2         NA      NA        NA        NA
## 1784    NA     3     NA         NA      NA        NA        NA
## 1785     1     2      2         NA      NA        NA        NA
## 1786    NA     1      2         NA      NA        NA        NA
## 1787    NA    NA      2         NA      NA        NA        NA
## 1788     1    NA      1         NA      NA        NA        NA
## 1789    NA     1     NA         NA      NA        NA        NA
## 1790     1     2      2         NA      NA        NA        NA
## 1791    NA    NA      1         NA      NA        NA        NA
## 1792     2     1      1         NA      NA        NA        NA
## 1793     2     1      3         NA      NA        NA        NA
## 1794    NA     2     NA         NA      NA        NA        NA
## 1795     3    NA      3         NA      NA        NA        NA
## 1796     1     1      1         NA      NA        NA        NA
## 1797     0     0      0         NA      NA        NA        NA
## 1798     1     2      2         NA      NA        NA        NA
## 1799     1     2      3         NA      NA        NA        NA
## 1800    NA    NA     NA         NA      NA        NA        NA
## 1801     3     1      3         NA      NA        NA        NA
## 1802    NA    NA     NA         NA      NA        NA        NA
## 1803     3     3      1         NA      NA        NA        NA
## 1804     2    NA     NA         NA      NA        NA        NA
## 1805    NA    NA     NA         NA      NA        NA        NA
## 1806    NA    NA     NA         NA      NA        NA        NA
## 1807    NA    NA     NA         NA      NA        NA        NA
## 1808     1     1     NA         NA      NA        NA        NA
## 1809     3     4      3         NA      NA        NA        NA
## 1810    NA    NA     NA         NA      NA        NA        NA
## 1811    14    11      8         NA      NA        NA        NA
## 1812    NA    NA     NA         NA      NA        NA        NA
## 1813     6     3     10         NA      NA        NA        NA
## 1814    NA    NA     NA         NA      NA        NA        NA
## 1815     1     0      0         NA      NA        NA        NA
## 1816    NA    NA     NA         NA      NA        NA        NA
## 1817    15    11      8         NA      NA        NA        NA
## 1818    14     6     17         NA      NA        NA        NA
## 1819     2     2      3         NA      NA        NA        NA
## 1820    11    11      8         NA      NA        NA        NA
## 1821    NA    NA     NA         NA      NA        NA        NA
## 1822    23    20     20         NA      NA        NA        NA
## 1823     1    NA      1         NA      NA        NA        NA
## 1824     6     4      8         NA      NA        NA        NA
## 1825    NA    11     15         NA      NA        NA        NA
## 1826    37    34     26         NA      NA        NA        NA
## 1827    32    25     22         NA      NA        NA        NA
## 1828    39    32     35         NA      NA        NA        NA
## 1829     6     5      6         NA      NA        NA        NA
## 1830    81    70     74         NA      NA        NA        NA
## 1831   127   109     92         NA      NA        NA        NA
## 1832     9     4      8         NA      NA        NA        NA
## 1833    15     8     11         NA      NA        NA        NA
## 1834    25    19     25         NA      NA        NA        NA
## 1835    53    55     46         NA      NA        NA        NA
## 1836     3     3      2         NA      NA        NA        NA
## 1837     3     3      3         NA      NA        NA        NA
## 1838    NA    NA     NA         NA      NA        NA        NA
## 1839    NA     2      3         NA      NA        NA        NA
## 1840    NA    NA     NA         NA      NA        NA        NA
## 1841    14     9     14         NA      NA        NA        NA
## 1842     3     2      3         NA      NA        NA        NA
## 1843     0     1      0         NA      NA        NA        NA
## 1844    NA     1      2         NA      NA        NA        NA
## 1845     2     3      5         NA      NA        NA        NA
## 1846     1    NA     NA         NA      NA        NA        NA
## 1847     3     3      3         NA      NA        NA        NA
## 1848    NA    NA     NA         NA      NA        NA        NA
## 1849    NA    NA     NA         NA      NA        NA        NA
## 1850     3     2      3         NA      NA        NA        NA
## 1851     3     4      1         NA      NA        NA        NA
## 1852    NA    NA     NA         NA      NA        NA        NA
## 1853    NA    NA     NA         NA      NA        NA        NA
## 1854     8     8      6         NA      NA        NA        NA
## 1855     1     1     NA         NA      NA        NA        NA
## 1856     2     1      2         NA      NA        NA        NA
## 1857    NA    NA      0         NA      NA        NA        NA
## 1858    NA    NA      1         NA      NA        NA        NA
## 1859    NA    NA      0         NA      NA        NA        NA
## 1860    NA    NA     NA         NA      NA        NA        NA
## 1861     1     1      1         NA      NA        NA        NA
## 1862    NA    NA      0         NA      NA        NA        NA
## 1863    11    11     17         NA      NA        NA        NA
## 1864    NA    NA     NA         NA      NA        NA        NA
## 1865     1     1      2         NA      NA        NA        NA
## 1866     8    14     14         NA      NA        NA        NA
## 1867     1     1      1         NA      NA        NA        NA
## 1868     4     3      4         NA      NA        NA        NA
## 1869    NA    NA      0         NA      NA        NA        NA
## 1870    NA    NA     NA         NA      NA        NA        NA
## 1871    10     8     13         NA      NA        NA        NA
## 1872    NA    NA      1         NA      NA        NA        NA
## 1873     2     2      2         NA      NA        NA        NA
## 1874     1    NA     NA         NA      NA        NA        NA
## 1875    NA    NA     NA         NA      NA        NA        NA
## 1876     2     3     NA         NA      NA        NA        NA
## 1877    21     7     11         NA      NA        NA        NA
## 1878     3     2      2         NA      NA        NA        NA
## 1879    NA     4      2         NA      NA        NA        NA
## 1880     2     8      8         NA      NA        NA        NA
## 1881     1     1     NA         NA      NA        NA        NA
## 1882     2     6     NA         NA      NA        NA        NA
## 1883    10    22     NA         NA      NA        NA        NA
## 1884     8     8     NA         NA      NA        NA        NA
## 1885     1     1     NA         NA      NA        NA        NA
## 1886     1     1     NA         NA      NA        NA        NA
## 1887    NA    NA     NA         NA      NA        NA        NA
## 1888     1     1     NA         NA      NA        NA        NA
## 1889     3     3     NA         NA      NA        NA        NA
## 1890    NA    NA      0         NA      NA        NA        NA
## 1891    NA    NA      1         NA      NA        NA        NA
## 1892    NA    NA      0         NA      NA        NA        NA
## 1893    NA    NA      0         NA      NA        NA        NA
## 1894     1    NA     NA         NA      NA        NA        NA
## 1895     8     8      6         NA      NA        NA        NA
## 1896     8     6      8         NA      NA        NA        NA
## 1897     4     4      4         NA      NA        NA        NA
## 1898     8    15     15         NA      NA        NA        NA
## 1899     3    NA     NA         NA      NA        NA        NA
## 1900    NA    NA     NA         NA      NA        NA        NA
## 1901    NA    NA     NA         NA      NA        NA        NA
## 1902     1     1      2         NA      NA        NA        NA
## 1903    NA    NA     NA         NA      NA        NA        NA
## 1904    18    16     18         NA      NA        NA        NA
## 1905     3     3      3         NA      NA        NA        NA
## 1906     2     2     NA         NA      NA        NA        NA
## 1907     9     6      3         NA      NA        NA        NA
## 1908    NA    NA     NA         NA      NA        NA        NA
## 1909    17    17     17         NA      NA        NA        NA
## 1910     4     4     NA         NA      NA        NA        NA
## 1911    18    11     18         NA      NA        NA        NA
## 1912     4     4      4         NA      NA        NA        NA
## 1913    15    21     21         NA      NA        NA        NA
## 1914    53    44     57         NA      NA        NA        NA
## 1915     8    NA     NA         NA      NA        NA        NA
## 1916    NA    NA     NA         NA      NA        NA        NA
## 1917     1     1     NA         NA      NA        NA        NA
## 1918     1     1     NA         NA      NA        NA        NA
## 1919     0     0     NA         NA      NA        NA        NA
## 1920     2     2      2         NA      NA        NA        NA
## 1921    NA     0     NA         NA      NA        NA        NA
## 1922    NA    NA     NA         NA      NA        NA        NA
## 1923    NA    NA     NA         NA      NA        NA        NA
## 1924     1     1     NA         NA      NA        NA        NA
## 1925    NA     1     NA         NA      NA        NA        NA
## 1926    NA    NA      1         NA      NA        NA        NA
## 1927     0     0      0         NA      NA        NA        NA
## 1928     1     1     NA         NA      NA        NA        NA
## 1929    NA    NA     NA         NA      NA        NA        NA
## 1930    NA    NA     NA         NA      NA        NA        NA
## 1931     2    NA     NA         NA      NA        NA        NA
## 1932    NA    NA     NA         NA      NA        NA        NA
## 1933    NA    NA     NA         NA      NA        NA        NA
## 1934     2     2      3         NA      NA        NA        NA
## 1935     1     1     NA         NA      NA        NA        NA
## 1936     1     1     NA         NA      NA        NA        NA
## 1937    NA    NA      1         NA      NA        NA        NA
## 1938    NA    NA     NA         NA      NA        NA        NA
## 1939     3    NA     NA         NA      NA        NA        NA
## 1940    NA    NA      1         NA      NA        NA        NA
## 1941    NA    NA     NA         NA      NA        NA        NA
## 1942    NA    NA     NA         NA      NA        NA        NA
## 1943    NA     2     NA         NA      NA        NA        NA
## 1944     0     0     NA         NA      NA        NA        NA
## 1945     4     2      1         NA      NA        NA        NA
## 1946     1     1     NA         NA      NA        NA        NA
## 1947     2     3      1         NA      NA        NA        NA
## 1948     1     1      1         NA      NA        NA        NA
## 1949     4     2      4         NA      NA        NA        NA
## 1950     3     3      6         NA      NA        NA        NA
## 1951    NA     3     NA         NA      NA        NA        NA
## 1952     1     1      1         NA      NA        NA        NA
## 1953     1     1      1         NA      NA        NA        NA
## 1954     1     1     NA         NA      NA        NA        NA
## 1955    NA    NA     NA         NA      NA        NA        NA
## 1956    NA    NA     NA         NA      NA        NA        NA
## 1957     1     1      1         NA      NA        NA        NA
## 1958     3     3      8         NA      NA        NA        NA
## 1959    NA     0      0         NA      NA        NA        NA
## 1960    NA     2     NA         NA      NA        NA        NA
## 1961     0    NA     NA         NA      NA        NA        NA
## 1962     0     1      2         NA      NA        NA        NA
## 1963     0    NA     NA         NA      NA        NA        NA
## 1964     8     6     11         NA      NA        NA        NA
## 1965    NA     3      6         NA      NA        NA        NA
## 1966     2     2      1         NA      NA        NA        NA
## 1967     4     6      6         NA      NA        NA        NA
## 1968     3    NA     NA         NA      NA        NA        NA
## 1969    NA    NA      3         NA      NA        NA        NA
## 1970     1     1      2         NA      NA        NA        NA
## 1971    NA    NA      0         NA      NA        NA        NA
## 1972    11    11     13         NA      NA        NA        NA
## 1973     3     3      3         NA      NA        NA        NA
## 1974     2     2      2         NA      NA        NA        NA
## 1975    NA    NA     NA         NA      NA        NA        NA
## 1976    14    11     18         NA      NA        NA        NA
## 1977    63    70     88         NA      NA        NA        NA
## 1978     7     4      7         NA      NA        NA        NA
## 1979    NA     1      2         NA      NA        NA        NA
## 1980     2    NA     NA         NA      NA        NA        NA
## 1981     8    15     13         NA      NA        NA        NA
## 1982    76    42     72         NA      NA        NA        NA
## 1983     5    NA     NA         NA      NA        NA        NA
## 1984     1     1      2         NA      NA        NA        NA
## 1985    NA    NA     NA         NA      NA        NA        NA
## 1986     4     1      1         NA      NA        NA        NA
## 1987    NA    NA     NA         NA      NA        NA        NA
## 1988     1     1      1         NA      NA        NA        NA
## 1989     0     0      0         NA      NA        NA        NA
## 1990     0     2      2         NA      NA        NA        NA
## 1991    NA     0      1         NA      NA        NA        NA
## 1992    NA     1     NA         NA      NA        NA        NA
## 1993     1     3     NA         NA      NA        NA        NA
## 1994    NA    NA     NA         NA      NA        NA        NA
## 1995     1     3      3         NA      NA        NA        NA
## 1996    NA    NA     NA         NA      NA        NA        NA
## 1997     2     1      1         NA      NA        NA        NA
## 1998    NA    NA     NA         NA      NA        NA        NA
## 1999     1     1      1         NA      NA        NA        NA
## 2000    NA    NA     NA         NA      NA        NA        NA
## 2001     2    NA     NA         NA      NA        NA        NA
## 2002     2     1      6         NA      NA        NA        NA
## 2003    NA    NA     NA         NA      NA        NA        NA
## 2004     1     1      1         NA      NA        NA        NA
## 2005     1     3      1         NA      NA        NA        NA
## 2006     0    NA     NA         NA      NA        NA        NA
## 2007     2     1     NA         NA      NA        NA        NA
## 2008     1     1      1         NA      NA        NA        NA
## 2009    NA     1      1         NA      NA        NA        NA
## 2010     0    NA     NA         NA      NA        NA        NA
## 2011     1    NA     NA         NA      NA        NA        NA
## 2012     1     1      1         NA      NA        NA        NA
## 2013     1    NA     NA         NA      NA        NA        NA
## 2014     2     3      2         NA      NA        NA        NA
## 2015    NA     2     NA         NA      NA        NA        NA
## 2016     2     1     NA         NA      NA        NA        NA
## 2017    NA    NA     NA         NA      NA        NA        NA
## 2018     1     1      2         NA      NA        NA        NA
## 2019     0    NA     NA         NA      NA        NA        NA
## 2020    NA     2      2         NA      NA        NA        NA
## 2021     5     4      6         NA      NA        NA        NA
## 2022    NA    NA     NA         NA      NA        NA        NA
## 2023    NA     0      0         NA      NA        NA        NA
## 2024     1     1      1         NA      NA        NA        NA
## 2025     3     3      3         NA      NA        NA        NA
## 2026     0    NA     NA         NA      NA        NA        NA
## 2027    NA    NA     NA         NA      NA        NA        NA
## 2028     2     3      4         NA      NA        NA        NA
## 2029     3     3      3         NA      NA        NA        NA
## 2030     2     2     NA         NA      NA        NA        NA
## 2031     3     6     NA         NA      NA        NA        NA
## 2032    NA    NA     NA         NA      NA        NA        NA
## 2033    NA    NA     NA         NA      NA        NA        NA
## 2034    NA     3     NA         NA      NA        NA        NA
## 2035    NA    NA      1         NA      NA        NA        NA
## 2036    NA    NA      0         NA      NA        NA        NA
## 2037     0     1      0         NA      NA        NA        NA
## 2038    11     6      6         NA      NA        NA        NA
## 2039     6    11     NA         NA      NA        NA        NA
## 2040    NA    11     21         NA      NA        NA        NA
## 2041     1     2     NA         NA      NA        NA        NA
## 2042     6     8      8         NA      NA        NA        NA
## 2043     2     1      2         NA      NA        NA        NA
## 2044     1    NA     NA         NA      NA        NA        NA
## 2045    NA    NA      2         NA      NA        NA        NA
## 2046     4     2      4         NA      NA        NA        NA
## 2047     1     0      1         NA      NA        NA        NA
## 2048    18    16     16         NA      NA        NA        NA
## 2049    NA    NA     NA         NA      NA        NA        NA
## 2050     3    NA     NA         NA      NA        NA        NA
## 2051    20    25     27         NA      NA        NA        NA
## 2052     6     6      6         NA      NA        NA        NA
## 2053    42    49     32         NA      NA        NA        NA
## 2054    35    28     35         NA      NA        NA        NA
## 2055     8     9      9         NA      NA        NA        NA
## 2056    13    27     30         NA      NA        NA        NA
## 2057    25    15     19         NA      NA        NA        NA
## 2058     8    NA     NA         NA      NA        NA        NA
## 2059     4     3      2         NA      NA        NA        NA
## 2060     2     2      2         NA      NA        NA        NA
## 2061    NA    NA     NA         NA      NA        NA        NA
## 2062    NA    NA     NA         NA      NA        NA        NA
## 2063    NA    NA     NA         NA      NA        NA        NA
## 2064     1     2      1         NA      NA        NA        NA
## 2065    NA    NA      2         NA      NA        NA        NA
## 2066     0     0      0         NA      NA        NA        NA
## 2067     1     1      1         NA      NA        NA        NA
## 2068     1     3      2         NA      NA        NA        NA
## 2069    NA    NA     NA         NA      NA        NA        NA
## 2070     1     1      1         NA      NA        NA        NA
## 2071     1     1      2         NA      NA        NA        NA
## 2072    NA    NA     NA         NA      NA        NA        NA
## 2073     1     1      1         NA      NA        NA        NA
## 2074    NA    NA      3         NA      NA        NA        NA
## 2075    NA    NA      1         NA      NA        NA        NA
## 2076     8     3      6         NA      NA        NA        NA
## 2077     1    NA     NA         NA      NA        NA        NA
## 2078     2     3      2         NA      NA        NA        NA
## 2079     4     6      5         NA      NA        NA        NA
## 2080     1     1      1         NA      NA        NA        NA
## 2081     2     6     NA         NA      NA        NA        NA
## 2082     3     6     NA         NA      NA        NA        NA
## 2083    NA     5     NA         NA      NA        NA        NA
## 2084    NA    NA     NA         NA      NA        NA        NA
## 2085    NA    NA      0         NA      NA        NA        NA
## 2086    NA     1      1         NA      NA        NA        NA
## 2087     8    11     11         NA      NA        NA        NA
## 2088     1     2      2         NA      NA        NA        NA
## 2089     8     8      6         NA      NA        NA        NA
## 2090    NA    NA     NA         NA      NA        NA        NA
## 2091     3     3      3         NA      NA        NA        NA
## 2092    NA    NA     NA         NA      NA        NA        NA
## 2093    NA    NA     NA         NA      NA        NA        NA
## 2094    37    32     26         NA      NA        NA        NA
## 2095    NA    NA      2         NA      NA        NA        NA
## 2096    77    42     42         NA      NA        NA        NA
## 2097    NA    NA     NA         NA      NA        NA        NA
## 2098     5     4      1         NA      NA        NA        NA
## 2099    NA     3      3         NA      NA        NA        NA
## 2100    13    19     15         NA      NA        NA        NA
## 2101    42    32     42         NA      NA        NA        NA
## 2102    10    NA     NA         NA      NA        NA        NA
## 2103     1     1      0         NA      NA        NA        NA
## 2104    NA    NA     NA         NA      NA        NA        NA
## 2105    NA    NA     NA         NA      NA        NA        NA
## 2106     3     2      3         NA      NA        NA        NA
## 2107    NA    NA     NA         NA      NA        NA        NA
## 2108     4     5      6         NA      NA        NA        NA
## 2109    NA     3     NA         NA      NA        NA        NA
## 2110    NA     1     NA         NA      NA        NA        NA
## 2111     2     1      2         NA      NA        NA        NA
## 2112    NA    NA      0         NA      NA        NA        NA
## 2113     2     1      1         NA      NA        NA        NA
## 2114    NA    NA     NA         NA      NA        NA        NA
## 2115    NA    NA     NA         NA      NA        NA        NA
## 2116     8     3      6         NA      NA        NA        NA
## 2117     3     4      3         NA      NA        NA        NA
## 2118     8     3      8         NA      NA        NA        NA
## 2119    NA    NA      1         NA      NA        NA        NA
## 2120    NA    NA      2         NA      NA        NA        NA
## 2121    NA    NA     NA         NA      NA        NA        NA
## 2122    NA    NA     NA         NA      NA        NA        NA
## 2123    NA     2     NA         NA      NA        NA        NA
## 2124     6     8     11         NA      NA        NA        NA
## 2125     3    NA      3         NA      NA        NA        NA
## 2126    11     8     11         NA      NA        NA        NA
## 2127     4     7      4         NA      NA        NA        NA
## 2128    NA    NA      1         NA      NA        NA        NA
## 2129    NA    NA     NA         NA      NA        NA        NA
## 2130     1     1     NA         NA      NA        NA        NA
## 2131     2     4      4         NA      NA        NA        NA
## 2132     3    19      3         NA      NA        NA        NA
## 2133    NA     3     NA         NA      NA        NA        NA
## 2134     1     1      1         NA      NA        NA        NA
## 2135     1     1      1         NA      NA        NA        NA
## 2136    NA    NA      1         NA      NA        NA        NA
## 2137    NA    NA      1         NA      NA        NA        NA
## 2138    NA    NA     NA         NA      NA        NA        NA
## 2139     1     1      1         NA      NA        NA        NA
## 2140    11     6      8         NA      NA        NA        NA
## 2141     2    NA      1         NA      NA        NA        NA
## 2142     1     0      0         NA      NA        NA        NA
## 2143    NA     2      1         NA      NA        NA        NA
## 2144    NA     0     NA         NA      NA        NA        NA
## 2145    30    30     36         NA      NA        NA        NA
## 2146    28    31     39         NA      NA        NA        NA
## 2147     6     4      4         NA      NA        NA        NA
## 2148    NA    NA      3         NA      NA        NA        NA
## 2149    15    17     23         NA      NA        NA        NA
## 2150     5    NA     NA         NA      NA        NA        NA
## 2151     3     3      1         NA      NA        NA        NA
## 2152    NA    NA     NA         NA      NA        NA        NA
## 2153     6    11     23         NA      NA        NA        NA
## 2154    NA    NA     NA         NA      NA        NA        NA
## 2155    NA    NA      3         NA      NA        NA        NA
## 2156    15    11     13         NA      NA        NA        NA
## 2157    NA    19     21         NA      NA        NA        NA
## 2158   106    85     71         NA      NA        NA        NA
## 2159     3     3      3         NA      NA        NA        NA
## 2160     2     2      2         NA      NA        NA        NA
## 2161    23    26     15         NA      NA        NA        NA
## 2162    34    31     62         NA      NA        NA        NA
## 2163   134    81     81         NA      NA        NA        NA
## 2164   134   148    120         NA      NA        NA        NA
## 2165    15    11     16         NA      NA        NA        NA
## 2166    NA    NA     NA         NA      NA        NA        NA
## 2167    40    53     51         NA      NA        NA        NA
## 2168    49    53     49         NA      NA        NA        NA
## 2169    20    NA     NA         NA      NA        NA        NA
## 2170     8     5      1         NA      NA        NA        NA
## 2171    NA    NA      2         NA      NA        NA        NA
## 2172     1     1      5         NA      NA        NA        NA
## 2173     1     1      3         NA      NA        NA        NA
## 2174     0     0      0         NA      NA        NA        NA
## 2175    NA    NA     NA         NA      NA        NA        NA
## 2176     4     6      4         NA      NA        NA        NA
## 2177    NA     0      0         NA      NA        NA        NA
## 2178    NA     1     NA         NA      NA        NA        NA
## 2179     1     2     NA         NA      NA        NA        NA
## 2180     2     2      1         NA      NA        NA        NA
## 2181     2     2      1         NA      NA        NA        NA
## 2182     3     4      1         NA      NA        NA        NA
## 2183    NA    NA     NA         NA      NA        NA        NA
## 2184     2     4      3         NA      NA        NA        NA
## 2185     3     1      1         NA      NA        NA        NA
## 2186     6     5      5         NA      NA        NA        NA
## 2187    NA    NA     NA         NA      NA        NA        NA
## 2188     2    NA      2         NA      NA        NA        NA
## 2189     8     1      3         NA      NA        NA        NA
## 2190    NA    NA     NA         NA      NA        NA        NA
## 2191     0     0     NA         NA      NA        NA        NA
## 2192     1     1      1         NA      NA        NA        NA
## 2193     1     1      3         NA      NA        NA        NA
## 2194    NA    NA      0         NA      NA        NA        NA
## 2195     6     1      3         NA      NA        NA        NA
## 2196     1     1      1         NA      NA        NA        NA
## 2197    NA     1      3         NA      NA        NA        NA
## 2198    NA    NA      0         NA      NA        NA        NA
## 2199     1    NA     NA         NA      NA        NA        NA
## 2200     1     1      1         NA      NA        NA        NA
## 2201     1    NA     NA         NA      NA        NA        NA
## 2202    NA    NA      1         NA      NA        NA        NA
## 2203     3     1      3         NA      NA        NA        NA
## 2204    NA     1      1         NA      NA        NA        NA
## 2205    NA    NA      0         NA      NA        NA        NA
## 2206    NA     2     NA         NA      NA        NA        NA
## 2207     8     4      3         NA      NA        NA        NA
## 2208    NA    NA     NA         NA      NA        NA        NA
## 2209     1     1      1         NA      NA        NA        NA
## 2210    14    10      4         NA      NA        NA        NA
## 2211    NA    NA      0         NA      NA        NA        NA
## 2212    NA    NA     NA         NA      NA        NA        NA
## 2213    10    10     11         NA      NA        NA        NA
## 2214    NA     2     NA         NA      NA        NA        NA
## 2215    NA    NA      1         NA      NA        NA        NA
## 2216     6    13      2         NA      NA        NA        NA
## 2217    19    22      3         NA      NA        NA        NA
## 2218    NA    NA     NA         NA      NA        NA        NA
## 2219    10    15     NA         NA      NA        NA        NA
## 2220    NA     1      1         NA      NA        NA        NA
## 2221    NA     1      1         NA      NA        NA        NA
## 2222    NA    NA     NA         NA      NA        NA        NA
## 2223    NA    NA     NA         NA      NA        NA        NA
## 2224    NA    NA     NA         NA      NA        NA        NA
## 2225    NA    NA     NA         NA      NA        NA        NA
## 2226    NA    NA      1         NA      NA        NA        NA
## 2227    NA     2     NA         NA      NA        NA        NA
## 2228    NA    NA     NA         NA      NA        NA        NA
## 2229    NA     3      3         NA      NA        NA        NA
## 2230    NA    NA     NA         NA      NA        NA        NA
## 2231    NA    NA     NA         NA      NA        NA        NA
## 2232    NA    NA      0         NA      NA        NA        NA
## 2233    NA    NA     NA         NA      NA        NA        NA
## 2234    NA    NA     NA         NA      NA        NA        NA
## 2235    NA    NA     NA         NA      NA        NA        NA
## 2236    NA     1      1         NA      NA        NA        NA
## 2237     4     8     11         NA      NA        NA        NA
## 2238    NA    NA     NA         NA      NA        NA        NA
## 2239     8     8     11         NA      NA        NA        NA
## 2240    NA    NA     NA         NA      NA        NA        NA
## 2241    NA    NA     NA         NA      NA        NA        NA
## 2242     2     3      3         NA      NA        NA        NA
## 2243    NA     2     NA         NA      NA        NA        NA
## 2244    13    13     13         NA      NA        NA        NA
## 2245     3    NA     NA         NA      NA        NA        NA
## 2246     2     1      1         NA      NA        NA        NA
## 2247     1     1      1         NA      NA        NA        NA
## 2248    NA    NA     NA         NA      NA        NA        NA
## 2249     6     6      3         NA      NA        NA        NA
## 2250    NA    NA     NA         NA      NA        NA        NA
## 2251     3     1      1         NA      NA        NA        NA
## 2252     6     2      5         NA      NA        NA        NA
## 2253    11    18     21         NA      NA        NA        NA
## 2254    25    25     32         NA      NA        NA        NA
## 2255    10    12     15         NA      NA        NA        NA
## 2256     3     3      3         NA      NA        NA        NA
## 2257    NA    NA      3         NA      NA        NA        NA
## 2258    53    32     39         NA      NA        NA        NA
## 2259    28    39     35         NA      NA        NA        NA
## 2260     6     5      7         NA      NA        NA        NA
## 2261    NA     1     NA         NA      NA        NA        NA
## 2262     2     2      4         NA      NA        NA        NA
## 2263    19    21     36         NA      NA        NA        NA
## 2264    36    44     36         NA      NA        NA        NA
## 2265     5    NA     NA         NA      NA        NA        NA
## 2266     3     2      2         NA      NA        NA        NA
## 2267     2     2      4         NA      NA        NA        NA
## 2268     1     1      2         NA      NA        NA        NA
## 2269    NA     1      1         NA      NA        NA        NA
## 2270    NA     1      1         NA      NA        NA        NA
## 2271    NA    NA     NA         NA      NA        NA        NA
## 2272    NA    NA     NA         NA      NA        NA        NA
## 2273     0     0      0         NA      NA        NA        NA
## 2274    NA    NA     NA         NA      NA        NA        NA
## 2275     1     1      1         NA      NA        NA        NA
## 2276    NA    NA     NA         NA      NA        NA        NA
## 2277    NA    NA      0         NA      NA        NA        NA
## 2278    NA    NA     NA         NA      NA        NA        NA
## 2279    NA     0     NA         NA      NA        NA        NA
## 2280     2     1     NA         NA      NA        NA        NA
## 2281     1     2      2         NA      NA        NA        NA
## 2282    NA    NA     NA         NA      NA        NA        NA
## 2283     1     1      0         NA      NA        NA        NA
## 2284     2    NA      4         NA      NA        NA        NA
## 2285     3     2      3         NA      NA        NA        NA
## 2286     2     3      2         NA      NA        NA        NA
## 2287    NA    NA     NA         NA      NA        NA        NA
## 2288    NA    NA     NA         NA      NA        NA        NA
## 2289    NA    NA     NA         NA      NA        NA        NA
## 2290     3     3      1         NA      NA        NA        NA
## 2291     1    NA     NA         NA      NA        NA        NA
## 2292    NA     0     NA         NA      NA        NA        NA
## 2293     2     2      2         NA      NA        NA        NA
## 2294     3     1      2         NA      NA        NA        NA
## 2295    NA    NA      0         NA      NA        NA        NA
## 2296     3     3      1         NA      NA        NA        NA
## 2297    NA    NA      2         NA      NA        NA        NA
## 2298     1     1      1         NA      NA        NA        NA
## 2299    NA    NA      0         NA      NA        NA        NA
## 2300    NA     2     NA         NA      NA        NA        NA
## 2301    NA     3      1         NA      NA        NA        NA
## 2302     1     1      1         NA      NA        NA        NA
## 2303    NA    NA      2         NA      NA        NA        NA
## 2304     1    NA     NA         NA      NA        NA        NA
## 2305     1     1      1         NA      NA        NA        NA
## 2306     6     6      6         NA      NA        NA        NA
## 2307    NA    NA     NA         NA      NA        NA        NA
## 2308    NA     4     NA         NA      NA        NA        NA
## 2309     3     2      1         NA      NA        NA        NA
## 2310    NA    NA      0         NA      NA        NA        NA
## 2311    NA     2      2         NA      NA        NA        NA
## 2312    23     6      4         NA      NA        NA        NA
## 2313    NA     1      1         NA      NA        NA        NA
## 2314    NA    NA     NA         NA      NA        NA        NA
## 2315     2     4      2         NA      NA        NA        NA
## 2316     4     6      3         NA      NA        NA        NA
## 2317    NA    NA      0         NA      NA        NA        NA
## 2318    NA    NA     NA         NA      NA        NA        NA
## 2319     2     3      1         NA      NA        NA        NA
## 2320    NA    NA     NA         NA      NA        NA        NA
## 2321     1     1      1         NA      NA        NA        NA
## 2322    46    34     32         NA      NA        NA        NA
## 2323    48    57     38         NA      NA        NA        NA
## 2324    13    15     18         NA      NA        NA        NA
## 2325     1     1      1         NA      NA        NA        NA
## 2326     1     1      1         NA      NA        NA        NA
## 2327    NA    NA     NA         NA      NA        NA        NA
## 2328     4     2      4         NA      NA        NA        NA
## 2329     4     5      4         NA      NA        NA        NA
## 2330    NA    NA     NA         NA      NA        NA        NA
## 2331    NA    NA      1         NA      NA        NA        NA
## 2332     2     4      6         NA      NA        NA        NA
## 2333     2     2      3         NA      NA        NA        NA
## 2334     3     3      3         NA      NA        NA        NA
## 2335    NA    NA     NA         NA      NA        NA        NA
## 2336     2    NA     NA         NA      NA        NA        NA
## 2337     1     1      1         NA      NA        NA        NA
## 2338     3     3      3         NA      NA        NA        NA
## 2339     2     2      3         NA      NA        NA        NA
## 2340    NA     0     NA         NA      NA        NA        NA
## 2341    23    19     25         NA      NA        NA        NA
## 2342    25    17     23         NA      NA        NA        NA
## 2343     3     5      4         NA      NA        NA        NA
## 2344    15    17     17         NA      NA        NA        NA
## 2345     3     3      3         NA      NA        NA        NA
## 2346     3     5      3         NA      NA        NA        NA
## 2347     5    NA     NA         NA      NA        NA        NA
## 2348    15    11     19         NA      NA        NA        NA
## 2349    NA    15      8         NA      NA        NA        NA
## 2350    42    48     53         NA      NA        NA        NA
## 2351    NA    NA     NA         NA      NA        NA        NA
## 2352    16    16     16         NA      NA        NA        NA
## 2353     2     2      2         NA      NA        NA        NA
## 2354    20    17     23         NA      NA        NA        NA
## 2355    25    35     32         NA      NA        NA        NA
## 2356    28    35     42         NA      NA        NA        NA
## 2357     8     8      8         NA      NA        NA        NA
## 2358    NA     1      3         NA      NA        NA        NA
## 2359    15     6     13         NA      NA        NA        NA
## 2360    36    38     42         NA      NA        NA        NA
## 2361    89    74     68         NA      NA        NA        NA
## 2362     5    NA     NA         NA      NA        NA        NA
## 2363     6     6      8         NA      NA        NA        NA
## 2364     4     6      4         NA      NA        NA        NA
## 2365     7     5      6         NA      NA        NA        NA
## 2366     7     1      1         NA      NA        NA        NA
## 2367     6     6      5         NA      NA        NA        NA
## 2368    NA    NA     NA         NA      NA        NA        NA
## 2369     2     0     NA         NA      NA        NA        NA
## 2370     7     8      8         NA      NA        NA        NA
## 2371    NA     1     NA         NA      NA        NA        NA
## 2372    NA     1      3         NA      NA        NA        NA
## 2373     2     1      1         NA      NA        NA        NA
## 2374     2    NA      2         NA      NA        NA        NA
## 2375     8     5      7         NA      NA        NA        NA
## 2376    NA    NA      1         NA      NA        NA        NA
## 2377     0     0      1         NA      NA        NA        NA
## 2378     5     4      3         NA      NA        NA        NA
## 2379     3     1      2         NA      NA        NA        NA
## 2380    NA    NA     NA         NA      NA        NA        NA
## 2381    NA    NA     NA         NA      NA        NA        NA
## 2382     3     6      6         NA      NA        NA        NA
## 2383     4     4      3         NA      NA        NA        NA
## 2384     3     3      3         NA      NA        NA        NA
## 2385     0     0      0         NA      NA        NA        NA
## 2386    NA    NA      3         NA      NA        NA        NA
## 2387    NA    NA     NA         NA      NA        NA        NA
## 2388     4     4      3         NA      NA        NA        NA
## 2389     2     1      2         NA      NA        NA        NA
## 2390     0     0      0         NA      NA        NA        NA
## 2391    NA    NA      6         NA      NA        NA        NA
## 2392     3     3      1         NA      NA        NA        NA
## 2393    NA    NA     NA         NA      NA        NA        NA
## 2394    NA    NA     NA         NA      NA        NA        NA
## 2395     4     4      3         NA      NA        NA        NA
## 2396     1     2      1         NA      NA        NA        NA
## 2397     2     1      3         NA      NA        NA        NA
## 2398     6     3      6         NA      NA        NA        NA
## 2399     1     2     NA         NA      NA        NA        NA
## 2400     0     0      0         NA      NA        NA        NA
## 2401     2     2     NA         NA      NA        NA        NA
## 2402     8     6     11         NA      NA        NA        NA
## 2403    NA    NA     NA         NA      NA        NA        NA
## 2404    NA    NA     NA         NA      NA        NA        NA
## 2405     4     4      3         NA      NA        NA        NA
## 2406     4     4      4         NA      NA        NA        NA
## 2407     0     0      0         NA      NA        NA        NA
## 2408    NA    NA     NA         NA      NA        NA        NA
## 2409    NA    NA     NA         NA      NA        NA        NA
## 2410    11    13     15         NA      NA        NA        NA
## 2411    NA    NA     NA         NA      NA        NA        NA
## 2412    NA    NA     NA         NA      NA        NA        NA
## 2413    NA    NA     NA         NA      NA        NA        NA
## 2414    NA    NA     NA         NA      NA        NA        NA
## 2415    NA    NA     NA         NA      NA        NA        NA
## 2416    NA    NA     NA         NA      NA        NA        NA
## 2417    NA    NA     NA         NA      NA        NA        NA
## 2418    NA    NA     NA         NA      NA        NA        NA
## 2419    NA    NA     NA         NA      NA        NA        NA
## 2420    NA    NA     NA         NA      NA        NA        NA
## 2421    NA    NA     NA         NA      NA        NA        NA
## 2422    NA    NA     NA         NA      NA        NA        NA
## 2423    NA    NA     NA         NA      NA        NA        NA
## 2424    NA    NA     NA         NA      NA        NA        NA
## 2425    NA    NA     NA         NA      NA        NA        NA
## 2426    NA    NA     NA         NA      NA        NA        NA
## 2427    NA    NA     NA         NA      NA        NA        NA
## 2428    NA    NA     NA         NA      NA        NA        NA
## 2429    NA    NA     NA         NA      NA        NA        NA
## 2430    NA    NA     NA         NA      NA        NA        NA
## 2431    NA    NA     NA         NA      NA        NA        NA
## 2432    NA    NA     NA         NA      NA        NA        NA
## 2433    NA    NA     NA         NA      NA        NA        NA
## 2434    NA    NA     NA         NA      NA        NA        NA
## 2435    NA    NA     NA         NA      NA        NA        NA
## 2436    NA    NA     NA         NA      NA        NA        NA
## 2437    NA    NA     NA         NA      NA        NA        NA
## 2438    NA    NA     NA         NA      NA        NA        NA
## 2439    NA    NA     NA         NA      NA        NA        NA
## 2440    NA    NA     NA         NA      NA        NA        NA
## 2441    NA    NA     NA         NA      NA        NA        NA
## 2442    NA    NA     NA         NA      NA        NA        NA
## 2443     4    NA     NA         NA      NA        NA        NA
## 2444     1    NA     NA         NA      NA        NA        NA
## 2445    NA    NA     NA         NA      NA        NA        NA
## 2446    NA    NA     NA         NA      NA        NA        NA
## 2447     8    NA     NA         NA      NA        NA        NA
## 2448    NA    NA     NA         NA      NA        NA        NA
## 2449    NA    NA     NA         NA      NA        NA        NA
## 2450    NA    NA     NA         NA      NA        NA        NA
## 2451    NA    NA     NA         NA      NA        NA        NA
## 2452    NA    NA     NA         NA      NA        NA        NA
## 2453    NA    NA     NA         NA      NA        NA        NA
## 2454    NA    NA     NA         NA      NA        NA        NA
## 2455    NA    NA     NA         NA      NA        NA        NA
## 2456    NA    NA     NA         NA      NA        NA        NA
## 2457     1    NA     NA         NA      NA        NA        NA
## 2458    NA    NA     NA         NA      NA        NA        NA
## 2459    NA    NA     NA         NA      NA        NA        NA
## 2460    NA    NA     NA         NA      NA        NA        NA
## 2461    NA    NA     NA         NA      NA        NA        NA
## 2462    NA    NA     NA         NA      NA        NA        NA
## 2463    NA    NA     NA         NA      NA        NA        NA
## 2464    NA    NA     NA         NA      NA        NA        NA
## 2465    NA    NA     NA         NA      NA        NA        NA
## 2466    NA    NA     NA         NA      NA        NA        NA
## 2467    NA    NA     NA         NA      NA        NA        NA
## 2468    NA    NA     NA         NA      NA        NA        NA
## 2469    NA    NA     NA         NA      NA        NA        NA
## 2470    NA    NA     NA         NA      NA        NA        NA
## 2471    NA    NA     NA         NA      NA        NA        NA
## 2472    NA    NA     NA         NA      NA        NA        NA
## 2473    NA    NA     NA         NA      NA        NA        NA
## 2474    NA    NA     NA         NA      NA        NA        NA
## 2475     1     1      1         NA      NA        NA        NA
## 2476     2     2     NA         NA      NA        NA        NA
## 2477     3     6     NA         NA      NA        NA        NA
## 2478     1     0      2         NA      NA        NA        NA
## 2479    NA    NA     NA         NA      NA        NA        NA
## 2480     3    NA      6         NA      NA        NA        NA
## 2481    NA    NA     NA         NA      NA        NA        NA
## 2482     1     1     NA         NA      NA        NA        NA
## 2483     6     6      6         NA      NA        NA        NA
## 2484    11     8      6         NA      NA        NA        NA
## 2485     4    NA     NA         NA      NA        NA        NA
## 2486     1     1      1         NA      NA        NA        NA
## 2487     4     6      6         NA      NA        NA        NA
## 2488    NA    NA     NA         NA      NA        NA        NA
## 2489    NA    NA      3         NA      NA        NA        NA
## 2490     4     4      4         NA      NA        NA        NA
## 2491    26    21     21         NA      NA        NA        NA
## 2492    NA    NA     NA         NA      NA        NA        NA
## 2493    NA     3      3         NA      NA        NA        NA
## 2494    42    39     30         NA      NA        NA        NA
## 2495     6     6      5         NA      NA        NA        NA
## 2496    NA    NA      2         NA      NA        NA        NA
## 2497    35    35     35         NA      NA        NA        NA
## 2498   321   285    285         NA      NA        NA        NA
## 2499     4     4      4         NA      NA        NA        NA
## 2500    NA    NA      4         NA      NA        NA        NA
## 2501    19    23     17         NA      NA        NA        NA
## 2502    91    87     63         NA      NA        NA        NA
## 2503     8     5     NA         NA      NA        NA        NA
## 2504     3     2      2         NA      NA        NA        NA
## 2505     2     3     NA         NA      NA        NA        NA
## 2506    NA    NA     NA         NA      NA        NA        NA
## 2507     4    NA      2         NA      NA        NA        NA
## 2508    NA    NA     NA         NA      NA        NA        NA
## 2509     0    NA      0         NA      NA        NA        NA
## 2510     5     1      3         NA      NA        NA        NA
## 2511    NA    NA     NA         NA      NA        NA        NA
## 2512    NA    NA      1         NA      NA        NA        NA
## 2513     1     1      1         NA      NA        NA        NA
## 2514     5     1      3         NA      NA        NA        NA
## 2515     2     1      1         NA      NA        NA        NA
## 2516     0     0     NA         NA      NA        NA        NA
## 2517    NA    NA     NA         NA      NA        NA        NA
## 2518    NA    NA     NA         NA      NA        NA        NA
## 2519     1     1     NA         NA      NA        NA        NA
## 2520    NA     2     NA         NA      NA        NA        NA
## 2521     6     6      1         NA      NA        NA        NA
## 2522    NA     1     NA         NA      NA        NA        NA
## 2523     2     2      2         NA      NA        NA        NA
## 2524     0     0     NA         NA      NA        NA        NA
## 2525     4     1      1         NA      NA        NA        NA
## 2526    NA     1     NA         NA      NA        NA        NA
## 2527     0     0     NA         NA      NA        NA        NA
## 2528    NA     1     NA         NA      NA        NA        NA
## 2529    NA    NA      1         NA      NA        NA        NA
## 2530     6     6      1         NA      NA        NA        NA
## 2531    NA    NA     NA         NA      NA        NA        NA
## 2532     2     1      1         NA      NA        NA        NA
## 2533     0     0     NA         NA      NA        NA        NA
## 2534     2    NA     NA         NA      NA        NA        NA
## 2535     9     3      1         NA      NA        NA        NA
## 2536    NA     1      2         NA      NA        NA        NA
## 2537     3     2      1         NA      NA        NA        NA
## 2538     0     0     NA         NA      NA        NA        NA
## 2539    NA    NA     NA         NA      NA        NA        NA
## 2540    12     7      5         NA      NA        NA        NA
## 2541    NA    NA     NA         NA      NA        NA        NA
## 2542     1     1      1         NA      NA        NA        NA
## 2543     4     2     NA         NA      NA        NA        NA
## 2544     3     3     NA         NA      NA        NA        NA
## 2545     1     1     NA         NA      NA        NA        NA
## 2546     1     1     NA         NA      NA        NA        NA
## 2547    NA    NA     NA         NA      NA        NA        NA
## 2548    NA    NA     NA         NA      NA        NA        NA
## 2549     1     1     NA         NA      NA        NA        NA
## 2550     3     6      3         NA      NA        NA        NA
## 2551    NA    NA     NA         NA      NA        NA        NA
## 2552     0     0      0         NA      NA        NA        NA
## 2553    NA    NA     NA         NA      NA        NA        NA
## 2554     4    11      4         NA      NA        NA        NA
## 2555    23    14     23         NA      NA        NA        NA
## 2556    NA    NA     NA         NA      NA        NA        NA
## 2557     3     2      2         NA      NA        NA        NA
## 2558     8     4     13         NA      NA        NA        NA
## 2559     3    NA     NA         NA      NA        NA        NA
## 2560    NA    NA     NA         NA      NA        NA        NA
## 2561     1    NA     NA         NA      NA        NA        NA
## 2562    NA    NA     NA         NA      NA        NA        NA
## 2563    NA     3     NA         NA      NA        NA        NA
## 2564    11     7     11         NA      NA        NA        NA
## 2565     1     2     NA         NA      NA        NA        NA
## 2566     6     6      6         NA      NA        NA        NA
## 2567    NA    11      4         NA      NA        NA        NA
## 2568    NA    NA     NA         NA      NA        NA        NA
## 2569    69    53     55         NA      NA        NA        NA
## 2570    NA     3     NA         NA      NA        NA        NA
## 2571    NA     2     NA         NA      NA        NA        NA
## 2572     6     6      8         NA      NA        NA        NA
## 2573    NA    NA     NA         NA      NA        NA        NA
## 2574    77    42     46         NA      NA        NA        NA
## 2575    28    35     46         NA      NA        NA        NA
## 2576     9     8     12         NA      NA        NA        NA
## 2577    NA    NA     NA         NA      NA        NA        NA
## 2578    32    34     36         NA      NA        NA        NA
## 2579    68    66     63         NA      NA        NA        NA
## 2580    20    NA     NA         NA      NA        NA        NA
## 2581     3     2      3         NA      NA        NA        NA
## 2582     2     3      1         NA      NA        NA        NA
## 2583     1     1     NA         NA      NA        NA        NA
## 2584     1     1     NA         NA      NA        NA        NA
## 2585    NA     0     NA         NA      NA        NA        NA
## 2586     0    NA     NA         NA      NA        NA        NA
## 2587    NA    NA     NA         NA      NA        NA        NA
## 2588     4     3      4         NA      NA        NA        NA
## 2589    NA     1     NA         NA      NA        NA        NA
## 2590     2    NA      1         NA      NA        NA        NA
## 2591    NA    NA     NA         NA      NA        NA        NA
## 2592     1     1     NA         NA      NA        NA        NA
## 2593     0     0      1         NA      NA        NA        NA
## 2594    NA     1      1         NA      NA        NA        NA
## 2595     3     1      3         NA      NA        NA        NA
## 2596    NA     2     NA         NA      NA        NA        NA
## 2597    NA     2     NA         NA      NA        NA        NA
## 2598     6     3     NA         NA      NA        NA        NA
## 2599    NA     2     NA         NA      NA        NA        NA
## 2600     4     4      2         NA      NA        NA        NA
## 2601    NA    NA      2         NA      NA        NA        NA
## 2602    NA     3      1         NA      NA        NA        NA
## 2603     2     2      2         NA      NA        NA        NA
## 2604    NA    NA     NA         NA      NA        NA        NA
## 2605    NA     3     NA         NA      NA        NA        NA
## 2606    NA    NA      1         NA      NA        NA        NA
## 2607    NA    NA      2         NA      NA        NA        NA
## 2608     8     3      3         NA      NA        NA        NA
## 2609     5     1      1         NA      NA        NA        NA
## 2610     2     2      4         NA      NA        NA        NA
## 2611     2    NA     NA         NA      NA        NA        NA
## 2612    11     3      8         NA      NA        NA        NA
## 2613     0     0     NA         NA      NA        NA        NA
## 2614    NA     2     NA         NA      NA        NA        NA
## 2615     5     4      5         NA      NA        NA        NA
## 2616     2     1      1         NA      NA        NA        NA
## 2617    NA    NA     NA         NA      NA        NA        NA
## 2618     1     1      1         NA      NA        NA        NA
## 2619     2     2      2         NA      NA        NA        NA
## 2620     3     3      3         NA      NA        NA        NA
## 2621    NA     3     NA         NA      NA        NA        NA
## 2622     1     1      1         NA      NA        NA        NA
## 2623     1     1      1         NA      NA        NA        NA
## 2624     1     1     NA         NA      NA        NA        NA
## 2625     4    NA     NA         NA      NA        NA        NA
## 2626    NA    NA     NA         NA      NA        NA        NA
## 2627     1     1      1         NA      NA        NA        NA
## 2628     3     3      3         NA      NA        NA        NA
## 2629    NA     0     NA         NA      NA        NA        NA
## 2630     1    NA     NA         NA      NA        NA        NA
## 2631    NA    NA     NA         NA      NA        NA        NA
## 2632    NA    NA     NA         NA      NA        NA        NA
## 2633    NA     2     NA         NA      NA        NA        NA
## 2634     6     8      4         NA      NA        NA        NA
## 2635    NA    NA     NA         NA      NA        NA        NA
## 2636     6     2      4         NA      NA        NA        NA
## 2637     4     6      4         NA      NA        NA        NA
## 2638    NA     1     NA         NA      NA        NA        NA
## 2639    NA     1     NA         NA      NA        NA        NA
## 2640     1     1      1         NA      NA        NA        NA
## 2641    NA    13     19         NA      NA        NA        NA
## 2642    NA    NA     NA         NA      NA        NA        NA
## 2643    32    32     18         NA      NA        NA        NA
## 2644    NA    NA     NA         NA      NA        NA        NA
## 2645     3    13      6         NA      NA        NA        NA
## 2646    10    10      7         NA      NA        NA        NA
## 2647     8    12     14         NA      NA        NA        NA
## 2648     3     2      2         NA      NA        NA        NA
## 2649    25    28     21         NA      NA        NA        NA
## 2650   127   113     85         NA      NA        NA        NA
## 2651     8     6      7         NA      NA        NA        NA
## 2652     8    NA      2         NA      NA        NA        NA
## 2653    17    30     25         NA      NA        NA        NA
## 2654    32    49     36         NA      NA        NA        NA
## 2655     5    NA     NA         NA      NA        NA        NA
## 2656     3     2      3         NA      NA        NA        NA
## 2657     2     4      2         NA      NA        NA        NA
## 2658    NA    NA     NA         NA      NA        NA        NA
## 2659    10     5      4         NA      NA        NA        NA
## 2660    NA    NA      1         NA      NA        NA        NA
## 2661     1     1      1         NA      NA        NA        NA
## 2662     6     2      5         NA      NA        NA        NA
## 2663    11    15      5         NA      NA        NA        NA
## 2664    NA     0     NA         NA      NA        NA        NA
## 2665     1     1     NA         NA      NA        NA        NA
## 2666    NA    NA     NA         NA      NA        NA        NA
## 2667     1    NA     NA         NA      NA        NA        NA
## 2668     1     1      1         NA      NA        NA        NA
## 2669     0     3      3         NA      NA        NA        NA
## 2670     1     2      1         NA      NA        NA        NA
## 2671     1     3      4         NA      NA        NA        NA
## 2672    NA    NA     NA         NA      NA        NA        NA
## 2673     2    NA      2         NA      NA        NA        NA
## 2674     2     3      3         NA      NA        NA        NA
## 2675     0    NA     NA         NA      NA        NA        NA
## 2676     1     1      2         NA      NA        NA        NA
## 2677     3     3      2         NA      NA        NA        NA
## 2678     2    NA     NA         NA      NA        NA        NA
## 2679     5    12      2         NA      NA        NA        NA
## 2680    NA    NA     NA         NA      NA        NA        NA
## 2681     1    NA     NA         NA      NA        NA        NA
## 2682     5    24     23         NA      NA        NA        NA
## 2683     1     1     NA         NA      NA        NA        NA
## 2684     1     1      1         NA      NA        NA        NA
## 2685     2     6     NA         NA      NA        NA        NA
## 2686    NA     1      1         NA      NA        NA        NA
## 2687    NA     2     NA         NA      NA        NA        NA
## 2688     5    NA     NA         NA      NA        NA        NA
## 2689    NA    NA     NA         NA      NA        NA        NA
## 2690    NA     0      0         NA      NA        NA        NA
## 2691     3     1      2         NA      NA        NA        NA
## 2692     2     3      3         NA      NA        NA        NA
## 2693     4     3      4         NA      NA        NA        NA
## 2694     1    NA     NA         NA      NA        NA        NA
## 2695    NA    NA      1         NA      NA        NA        NA
## 2696    NA    NA     NA         NA      NA        NA        NA
## 2697    NA    NA     NA         NA      NA        NA        NA
## 2698    NA    NA     NA         NA      NA        NA        NA
## 2699    NA    NA      0         NA      NA        NA        NA
## 2700    NA    NA     NA         NA      NA        NA        NA
## 2701     4     4      6         NA      NA        NA        NA
## 2702    NA    NA     NA         NA      NA        NA        NA
## 2703     8    13     15         NA      NA        NA        NA
## 2704     0    NA     NA         NA      NA        NA        NA
## 2705    NA    NA     NA         NA      NA        NA        NA
## 2706    NA    NA     NA         NA      NA        NA        NA
## 2707    10    10     12         NA      NA        NA        NA
## 2708     5     8      5         NA      NA        NA        NA
## 2709    18    18     18         NA      NA        NA        NA
## 2710     4     4      7         NA      NA        NA        NA
## 2711     2    NA     NA         NA      NA        NA        NA
## 2712    17    23     27         NA      NA        NA        NA
## 2713    38     2      2         NA      NA        NA        NA
## 2714    NA    NA     NA         NA      NA        NA        NA
## 2715    NA    NA      1         NA      NA        NA        NA
## 2716    NA    NA     NA         NA      NA        NA        NA
## 2717     0    NA     NA         NA      NA        NA        NA
## 2718     2     1     NA         NA      NA        NA        NA
## 2719     1     3      2         NA      NA        NA        NA
## 2720     1     3     NA         NA      NA        NA        NA
## 2721    NA    NA     NA         NA      NA        NA        NA
## 2722    NA    NA     NA         NA      NA        NA        NA
## 2723     1    NA     NA         NA      NA        NA        NA
## 2724     3     3      3         NA      NA        NA        NA
## 2725    NA     3     NA         NA      NA        NA        NA
## 2726     3     3      3         NA      NA        NA        NA
## 2727    NA    NA      2         NA      NA        NA        NA
## 2728     1    NA     NA         NA      NA        NA        NA
## 2729     1     2     NA         NA      NA        NA        NA
## 2730     1     1      1         NA      NA        NA        NA
## 2731     2     4     15         NA      NA        NA        NA
## 2732     3     6     10         NA      NA        NA        NA
## 2733    NA    NA      4         NA      NA        NA        NA
## 2734    NA    NA      5         NA      NA        NA        NA
## 2735     1    NA     NA         NA      NA        NA        NA
## 2736     1    NA     NA         NA      NA        NA        NA
## 2737     2     1      1         NA      NA        NA        NA
## 2738     3     3     NA         NA      NA        NA        NA
## 2739    NA    NA     NA         NA      NA        NA        NA
## 2740     1     2      2         NA      NA        NA        NA
## 2741     1     0      1         NA      NA        NA        NA
## 2742     6    11      6         NA      NA        NA        NA
## 2743    17    20     20         NA      NA        NA        NA
## 2744    NA    NA     NA         NA      NA        NA        NA
## 2745     2     3      3         NA      NA        NA        NA
## 2746    NA     3      3         NA      NA        NA        NA
## 2747     4     8      8         NA      NA        NA        NA
## 2748     3     3      3         NA      NA        NA        NA
## 2749     2     4      4         NA      NA        NA        NA
## 2750    NA     4     NA         NA      NA        NA        NA
## 2751    32    32     24         NA      NA        NA        NA
## 2752     2    NA     NA         NA      NA        NA        NA
## 2753     5     3      5         NA      NA        NA        NA
## 2754    35    25     25         NA      NA        NA        NA
## 2755    35    32     35         NA      NA        NA        NA
## 2756     4     4      4         NA      NA        NA        NA
## 2757    NA     1     NA         NA      NA        NA        NA
## 2758     4     4      4         NA      NA        NA        NA
## 2759    13    13     19         NA      NA        NA        NA
## 2760    36    36     36         NA      NA        NA        NA
## 2761     2    NA     NA         NA      NA        NA        NA
## 2762     1     3      2         NA      NA        NA        NA
## 2763     1    NA     NA         NA      NA        NA        NA
## 2764     1     3      2         NA      NA        NA        NA
## 2765     0    NA     NA         NA      NA        NA        NA
## 2766     4     2      6         NA      NA        NA        NA
## 2767    NA    NA     NA         NA      NA        NA        NA
## 2768     1    NA     NA         NA      NA        NA        NA
## 2769    NA    NA     NA         NA      NA        NA        NA
## 2770    NA    NA     NA         NA      NA        NA        NA
## 2771     1     3      3         NA      NA        NA        NA
## 2772     1     1     NA         NA      NA        NA        NA
## 2773    NA    NA     NA         NA      NA        NA        NA
## 2774     3     3      2         NA      NA        NA        NA
## 2775     6     3      6         NA      NA        NA        NA
## 2776     1     1      2         NA      NA        NA        NA
## 2777     1    NA     NA         NA      NA        NA        NA
## 2778     3     2      2         NA      NA        NA        NA
## 2779     0    NA     NA         NA      NA        NA        NA
## 2780    NA     3      3         NA      NA        NA        NA
## 2781     1    NA     NA         NA      NA        NA        NA
## 2782     1     1      2         NA      NA        NA        NA
## 2783     0    NA     NA         NA      NA        NA        NA
## 2784     1    NA     NA         NA      NA        NA        NA
## 2785     2    NA     NA         NA      NA        NA        NA
## 2786     1    NA     NA         NA      NA        NA        NA
## 2787     1     1     NA         NA      NA        NA        NA
## 2788     2     2      3         NA      NA        NA        NA
## 2789     6     8     11         NA      NA        NA        NA
## 2790    NA    NA      2         NA      NA        NA        NA
## 2791    NA    NA      4         NA      NA        NA        NA
## 2792     0    NA     NA         NA      NA        NA        NA
## 2793     8    11     11         NA      NA        NA        NA
## 2794     2     1      1         NA      NA        NA        NA
## 2795     1    NA     NA         NA      NA        NA        NA
## 2796     3     3      3         NA      NA        NA        NA
## 2797     0    NA     NA         NA      NA        NA        NA
## 2798    NA    NA     NA         NA      NA        NA        NA
## 2799     3     4      4         NA      NA        NA        NA
## 2800    NA    NA     NA         NA      NA        NA        NA
## 2801     1     1      1         NA      NA        NA        NA
## 2802     4     6      4         NA      NA        NA        NA
## 2803    13     6     16         NA      NA        NA        NA
## 2804    NA    NA     NA         NA      NA        NA        NA
## 2805     3    NA     NA         NA      NA        NA        NA
## 2806     1     1      1         NA      NA        NA        NA
## 2807     3     2     NA         NA      NA        NA        NA
## 2808     1     1      1         NA      NA        NA        NA
## 2809     3     1      2         NA      NA        NA        NA
## 2810     1     1     NA         NA      NA        NA        NA
## 2811    NA     0      0         NA      NA        NA        NA
## 2812     1     1      1         NA      NA        NA        NA
## 2813    NA     1      2         NA      NA        NA        NA
## 2814     3     3      3         NA      NA        NA        NA
## 2815     1    NA     NA         NA      NA        NA        NA
## 2816     1    NA      1         NA      NA        NA        NA
## 2817    NA    NA      1         NA      NA        NA        NA
## 2818     0    NA      0         NA      NA        NA        NA
## 2819     1    NA      1         NA      NA        NA        NA
## 2820    NA    NA     NA         NA      NA        NA        NA
## 2821     1     0      2         NA      NA        NA        NA
## 2822    NA    NA     NA         NA      NA        NA        NA
## 2823    27    27     36         NA      NA        NA        NA
## 2824     2    NA     NA         NA      NA        NA        NA
## 2825     8    17     11         NA      NA        NA        NA
## 2826    NA    NA     NA         NA      NA        NA        NA
## 2827     2     2      1         NA      NA        NA        NA
## 2828     8     6      6         NA      NA        NA        NA
## 2829     3     3      3         NA      NA        NA        NA
## 2830    NA     2      1         NA      NA        NA        NA
## 2831     2     2      4         NA      NA        NA        NA
## 2832    NA    NA      6         NA      NA        NA        NA
## 2833    14    18     25         NA      NA        NA        NA
## 2834     2     1      1         NA      NA        NA        NA
## 2835     4     6      8         NA      NA        NA        NA
## 2836     2     4      2         NA      NA        NA        NA
## 2837     1     1     NA         NA      NA        NA        NA
## 2838    NA     8      6         NA      NA        NA        NA
## 2839    48    37     42         NA      NA        NA        NA
## 2840     6     3     10         NA      NA        NA        NA
## 2841    17    12     17         NA      NA        NA        NA
## 2842     2     2      3         NA      NA        NA        NA
## 2843     9     6     11         NA      NA        NA        NA
## 2844    17    17     14         NA      NA        NA        NA
## 2845    NA    NA     NA         NA      NA        NA        NA
## 2846    25    35     28         NA      NA        NA        NA
## 2847    74    56     77         NA      NA        NA        NA
## 2848     9     6      6         NA      NA        NA        NA
## 2849     2     2      4         NA      NA        NA        NA
## 2850    27    32     32         NA      NA        NA        NA
## 2851    46    51     55         NA      NA        NA        NA
## 2852     8     5      3         NA      NA        NA        NA
## 2853     3     5      2         NA      NA        NA        NA
## 2854     2     4     NA         NA      NA        NA        NA
## 2855     4     4      2         NA      NA        NA        NA
## 2856     6     3      4         NA      NA        NA        NA
## 2857     3     1      1         NA      NA        NA        NA
## 2858    NA    NA      1         NA      NA        NA        NA
## 2859     0     0     NA         NA      NA        NA        NA
## 2860     3     2      3         NA      NA        NA        NA
## 2861    NA     0     NA         NA      NA        NA        NA
## 2862     3     4      4         NA      NA        NA        NA
## 2863    NA    NA     NA         NA      NA        NA        NA
## 2864     1     1      1         NA      NA        NA        NA
## 2865     1    NA      1         NA      NA        NA        NA
## 2866     2     2      2         NA      NA        NA        NA
## 2867     3     3      2         NA      NA        NA        NA
## 2868     5     0      0         NA      NA        NA        NA
## 2869     4     2     NA         NA      NA        NA        NA
## 2870     2     1      2         NA      NA        NA        NA
## 2871    10     7      8         NA      NA        NA        NA
## 2872    NA    NA     NA         NA      NA        NA        NA
## 2873     1    NA     NA         NA      NA        NA        NA
## 2874     2     2      2         NA      NA        NA        NA
## 2875     1     1      1         NA      NA        NA        NA
## 2876     3     2      3         NA      NA        NA        NA
## 2877     1     1      2         NA      NA        NA        NA
## 2878     0     0     NA         NA      NA        NA        NA
## 2879    NA    NA      3         NA      NA        NA        NA
## 2880     1    NA      1         NA      NA        NA        NA
## 2881     1     1      1         NA      NA        NA        NA
## 2882     0     0     NA         NA      NA        NA        NA
## 2883     1    NA     NA         NA      NA        NA        NA
## 2884     1     1     NA         NA      NA        NA        NA
## 2885     1    NA      1         NA      NA        NA        NA
## 2886     1    NA     NA         NA      NA        NA        NA
## 2887     3     2      5         NA      NA        NA        NA
## 2888     3    NA      3         NA      NA        NA        NA
## 2889    NA     2     NA         NA      NA        NA        NA
## 2890     1     3      3         NA      NA        NA        NA
## 2891     0     0     NA         NA      NA        NA        NA
## 2892    NA    NA     NA         NA      NA        NA        NA
## 2893    NA     3      6         NA      NA        NA        NA
## 2894     1     1      1         NA      NA        NA        NA
## 2895    NA    NA      0         NA      NA        NA        NA
## 2896     1     4      3         NA      NA        NA        NA
## 2897     3     3      3         NA      NA        NA        NA
## 2898     0     0     NA         NA      NA        NA        NA
## 2899    NA    NA      2         NA      NA        NA        NA
## 2900     4     4      2         NA      NA        NA        NA
## 2901     1     1      1         NA      NA        NA        NA
## 2902     2     2     NA         NA      NA        NA        NA
## 2903     3     3     NA         NA      NA        NA        NA
## 2904    NA    NA      1         NA      NA        NA        NA
## 2905     1    NA     NA         NA      NA        NA        NA
## 2906    NA    NA      1         NA      NA        NA        NA
## 2907    NA    NA      1         NA      NA        NA        NA
## 2908    NA    NA     NA         NA      NA        NA        NA
## 2909     1    NA     NA         NA      NA        NA        NA
## 2910    NA     0      0         NA      NA        NA        NA
## 2911    NA    NA     NA         NA      NA        NA        NA
## 2912     2     4      4         NA      NA        NA        NA
## 2913    NA    NA      1         NA      NA        NA        NA
## 2914     1     1     NA         NA      NA        NA        NA
## 2915    13     8      8         NA      NA        NA        NA
## 2916    10     6      6         NA      NA        NA        NA
## 2917    NA    NA     NA         NA      NA        NA        NA
## 2918     8     6      6         NA      NA        NA        NA
## 2919    11    14     11         NA      NA        NA        NA
## 2920    56    56     46         NA      NA        NA        NA
## 2921     1     1     NA         NA      NA        NA        NA
## 2922     8    11      8         NA      NA        NA        NA
## 2923    30    30     30         NA      NA        NA        NA
## 2924    NA    NA      4         NA      NA        NA        NA
## 2925     1    NA     NA         NA      NA        NA        NA
## 2926    NA     2      1         NA      NA        NA        NA
## 2927     1     1      1         NA      NA        NA        NA
## 2928    NA    NA     NA         NA      NA        NA        NA
## 2929    NA    NA     NA         NA      NA        NA        NA
## 2930    NA    NA     NA         NA      NA        NA        NA
## 2931     1    NA      1         NA      NA        NA        NA
## 2932     1     1      1         NA      NA        NA        NA
## 2933     2     2     NA         NA      NA        NA        NA
## 2934     3     3     NA         NA      NA        NA        NA
## 2935     3     3     NA         NA      NA        NA        NA
## 2936    NA    NA      0         NA      NA        NA        NA
## 2937    NA     6      3         NA      NA        NA        NA
## 2938    NA    NA      0         NA      NA        NA        NA
## 2939    NA    NA     NA         NA      NA        NA        NA
## 2940     2    NA     NA         NA      NA        NA        NA
## 2941     3     3      3         NA      NA        NA        NA
## 2942    NA    NA     NA         NA      NA        NA        NA
## 2943    NA    NA     NA         NA      NA        NA        NA
## 2944    NA     2      1         NA      NA        NA        NA
## 2945     5     5      3         NA      NA        NA        NA
## 2946     6    11      6         NA      NA        NA        NA
## 2947    NA    NA     NA         NA      NA        NA        NA
## 2948     3     8     NA         NA      NA        NA        NA
## 2949     5     6      4         NA      NA        NA        NA
## 2950     6     3      6         NA      NA        NA        NA
## 2951    NA     4      4         NA      NA        NA        NA
## 2952    26    21     18         NA      NA        NA        NA
## 2953    16    16     22         NA      NA        NA        NA
## 2954     2     2     NA         NA      NA        NA        NA
## 2955     5     6     NA         NA      NA        NA        NA
## 2956    11     6      8         NA      NA        NA        NA
## 2957    25    25     32         NA      NA        NA        NA
## 2958   116   120    127         NA      NA        NA        NA
## 2959     7     5      6         NA      NA        NA        NA
## 2960    11    13     17         NA      NA        NA        NA
## 2961    44    40     46         NA      NA        NA        NA
## 2962     2     2      2         NA      NA        NA        NA
## 2963    NA    NA     NA         NA      NA        NA        NA
## 2964     3    NA      2         NA      NA        NA        NA
## 2965     4     2      2         NA      NA        NA        NA
## 2966     1     2      1         NA      NA        NA        NA
## 2967     1     3     NA         NA      NA        NA        NA
## 2968    NA    NA      1         NA      NA        NA        NA
## 2969    NA    NA     NA         NA      NA        NA        NA
## 2970     3     1      1         NA      NA        NA        NA
## 2971    NA    NA     NA         NA      NA        NA        NA
## 2972    NA    NA     NA         NA      NA        NA        NA
## 2973    NA    NA     NA         NA      NA        NA        NA
## 2974     1    NA     NA         NA      NA        NA        NA
## 2975     4     3      3         NA      NA        NA        NA
## 2976    NA    NA     NA         NA      NA        NA        NA
## 2977     2     3     NA         NA      NA        NA        NA
## 2978     5     4      4         NA      NA        NA        NA
## 2979     2    19      8         NA      NA        NA        NA
## 2980     3    29      6         NA      NA        NA        NA
## 2981     3    20      3         NA      NA        NA        NA
## 2982     1     1      1         NA      NA        NA        NA
## 2983     1     1      1         NA      NA        NA        NA
## 2984     1    NA     NA         NA      NA        NA        NA
## 2985    NA     1      1         NA      NA        NA        NA
## 2986    NA    NA     NA         NA      NA        NA        NA
## 2987    NA    NA     NA         NA      NA        NA        NA
## 2988    NA     1      1         NA      NA        NA        NA
## 2989     2    NA     NA         NA      NA        NA        NA
## 2990     8     3      3         NA      NA        NA        NA
## 2991    NA    NA     NA         NA      NA        NA        NA
## 2992    NA    NA      1         NA      NA        NA        NA
## 2993    NA    NA     NA         NA      NA        NA        NA
## 2994     1     0      1         NA      NA        NA        NA
## 2995     1    NA     NA         NA      NA        NA        NA
## 2996    17    11      8         NA      NA        NA        NA
## 2997    NA    NA     NA         NA      NA        NA        NA
## 2998    20    17     20         NA      NA        NA        NA
## 2999    NA    NA     NA         NA      NA        NA        NA
## 3000     3     3      3         NA      NA        NA        NA
## 3001     2    NA      2         NA      NA        NA        NA
## 3002    15    15     19         NA      NA        NA        NA
## 3003     2    NA     NA         NA      NA        NA        NA
## 3004     6     8     20         NA      NA        NA        NA
## 3005     4     4      4         NA      NA        NA        NA
## 3006    NA    NA     NA         NA      NA        NA        NA
## 3007    NA    15     17         NA      NA        NA        NA
## 3008    34    34     40         NA      NA        NA        NA
## 3009    NA    NA     NA         NA      NA        NA        NA
## 3010    13    16     13         NA      NA        NA        NA
## 3011     5     5      7         NA      NA        NA        NA
## 3012     5     6      8         NA      NA        NA        NA
## 3013    63    35     53         NA      NA        NA        NA
## 3014   109   106    106         NA      NA        NA        NA
## 3015     6     7      8         NA      NA        NA        NA
## 3016    NA    NA     NA         NA      NA        NA        NA
## 3017    23    40     25         NA      NA        NA        NA
## 3018    72    78     57         NA      NA        NA        NA
## 3019    NA    NA     NA         NA      NA        NA        NA
## 3020     5     3      8         NA      NA        NA        NA
## 3021     4     2      6         NA      NA        NA        NA
## 3022     2     2      2         NA      NA        NA        NA
## 3023     1     1      1         NA      NA        NA        NA
## 3024     3     1      1         NA      NA        NA        NA
## 3025    NA    NA     NA         NA      NA        NA        NA
## 3026     1     0      0         NA      NA        NA        NA
## 3027     2     2      2         NA      NA        NA        NA
## 3028    NA     0     NA         NA      NA        NA        NA
## 3029    NA    NA     NA         NA      NA        NA        NA
## 3030    NA    NA     NA         NA      NA        NA        NA
## 3031     5     4      5         NA      NA        NA        NA
## 3032     2     2      3         NA      NA        NA        NA
## 3033     2     2     NA         NA      NA        NA        NA
## 3034     4     5      4         NA      NA        NA        NA
## 3035     3     0      0         NA      NA        NA        NA
## 3036     6     2      6         NA      NA        NA        NA
## 3037     1     3      2         NA      NA        NA        NA
## 3038     2     1      4         NA      NA        NA        NA
## 3039    NA    NA     NA         NA      NA        NA        NA
## 3040    NA    NA     NA         NA      NA        NA        NA
## 3041     4     4      4         NA      NA        NA        NA
## 3042    NA     3     NA         NA      NA        NA        NA
## 3043     1     1      1         NA      NA        NA        NA
## 3044     2     3      2         NA      NA        NA        NA
## 3045     2     1      3         NA      NA        NA        NA
## 3046     0     0      0         NA      NA        NA        NA
## 3047    NA     2     NA         NA      NA        NA        NA
## 3048     6    NA      3         NA      NA        NA        NA
## 3049     2     3     NA         NA      NA        NA        NA
## 3050     1    NA      1         NA      NA        NA        NA
## 3051     0     0      0         NA      NA        NA        NA
## 3052    NA    NA      6         NA      NA        NA        NA
## 3053     3     1     NA         NA      NA        NA        NA
## 3054    NA     2     NA         NA      NA        NA        NA
## 3055     1     1      1         NA      NA        NA        NA
## 3056     2     3     NA         NA      NA        NA        NA
## 3057     1     1     NA         NA      NA        NA        NA
## 3058     3     1      1         NA      NA        NA        NA
## 3059    NA     2      2         NA      NA        NA        NA
## 3060     6    NA     NA         NA      NA        NA        NA
## 3061    NA    NA     NA         NA      NA        NA        NA
## 3062    NA     1      1         NA      NA        NA        NA
## 3063     0     0      0         NA      NA        NA        NA
## 3064     4     4      4         NA      NA        NA        NA
## 3065    NA    NA      3         NA      NA        NA        NA
## 3066     1     1      1         NA      NA        NA        NA
## 3067    NA    NA     NA         NA      NA        NA        NA
## 3068     2     3      2         NA      NA        NA        NA
## 3069     2     1      4         NA      NA        NA        NA
## 3070     0     0      0         NA      NA        NA        NA
## 3071    NA    NA     NA         NA      NA        NA        NA
## 3072    NA    NA     NA         NA      NA        NA        NA
## 3073     3     1      1         NA      NA        NA        NA
## 3074    NA     1      1         NA      NA        NA        NA
## 3075     2     8     NA         NA      NA        NA        NA
## 3076    16    16     NA         NA      NA        NA        NA
## 3077    NA    10     NA         NA      NA        NA        NA
## 3078    NA     1     NA         NA      NA        NA        NA
## 3079    NA     1     NA         NA      NA        NA        NA
## 3080    NA    NA      1         NA      NA        NA        NA
## 3081     1     1     NA         NA      NA        NA        NA
## 3082    NA    NA     NA         NA      NA        NA        NA
## 3083     1     1      2         NA      NA        NA        NA
## 3084    NA    NA      1         NA      NA        NA        NA
## 3085    NA    NA      0         NA      NA        NA        NA
## 3086    NA    NA     NA         NA      NA        NA        NA
## 3087     4    NA      4         NA      NA        NA        NA
## 3088     1    NA     NA         NA      NA        NA        NA
## 3089     4     6      2         NA      NA        NA        NA
## 3090     1     1      1         NA      NA        NA        NA
## 3091    NA    NA     NA         NA      NA        NA        NA
## 3092     5     3      3         NA      NA        NA        NA
## 3093     6     3      3         NA      NA        NA        NA
## 3094    NA    NA     NA         NA      NA        NA        NA
## 3095    25    14     28         NA      NA        NA        NA
## 3096    39    35     28         NA      NA        NA        NA
## 3097     2     2      1         NA      NA        NA        NA
## 3098    15    13     13         NA      NA        NA        NA
## 3099    49    36     38         NA      NA        NA        NA
## 3100     5    NA     NA         NA      NA        NA        NA
## 3101    NA    NA     NA         NA      NA        NA        NA
## 3102     1    NA     NA         NA      NA        NA        NA
## 3103    NA    NA     NA         NA      NA        NA        NA
## 3104     1     2      3         NA      NA        NA        NA
## 3105     1     0     NA         NA      NA        NA        NA
## 3106    NA    NA     NA         NA      NA        NA        NA
## 3107     4     2      2         NA      NA        NA        NA
## 3108     2     3      3         NA      NA        NA        NA
## 3109    NA    NA      1         NA      NA        NA        NA
## 3110    NA    NA     NA         NA      NA        NA        NA
## 3111    NA     1     NA         NA      NA        NA        NA
## 3112     1    NA     NA         NA      NA        NA        NA
## 3113     1     1      1         NA      NA        NA        NA
## 3114    NA    NA     NA         NA      NA        NA        NA
## 3115     1    NA     NA         NA      NA        NA        NA
## 3116     1     1      1         NA      NA        NA        NA
## 3117     1    NA     NA         NA      NA        NA        NA
## 3118     1    NA     NA         NA      NA        NA        NA
## 3119    NA    NA     NA         NA      NA        NA        NA
## 3120     1     1      1         NA      NA        NA        NA
## 3121     1    NA     NA         NA      NA        NA        NA
## 3122     1     1      1         NA      NA        NA        NA
## 3123    NA    NA     NA         NA      NA        NA        NA
## 3124    NA     2     NA         NA      NA        NA        NA
## 3125     1     1      1         NA      NA        NA        NA
## 3126     6     4      2         NA      NA        NA        NA
## 3127     3    16      3         NA      NA        NA        NA
## 3128     5     5     NA         NA      NA        NA        NA
## 3129     1     1     NA         NA      NA        NA        NA
## 3130    NA     1     NA         NA      NA        NA        NA
## 3131    NA    NA     NA         NA      NA        NA        NA
## 3132    NA    NA     NA         NA      NA        NA        NA
## 3133    NA    NA      1         NA      NA        NA        NA
## 3134     0    NA      0         NA      NA        NA        NA
## 3135     1    NA     NA         NA      NA        NA        NA
## 3136    NA    NA      0         NA      NA        NA        NA
## 3137    NA     0     NA         NA      NA        NA        NA
## 3138     2     2      2         NA      NA        NA        NA
## 3139     2     2      3         NA      NA        NA        NA
## 3140    NA     3      3         NA      NA        NA        NA
## 3141    NA    NA     NA         NA      NA        NA        NA
## 3142    NA    NA      1         NA      NA        NA        NA
## 3143     2     2      6         NA      NA        NA        NA
## 3144     3    NA     NA         NA      NA        NA        NA
## 3145    NA    NA     NA         NA      NA        NA        NA
## 3146     8    11      6         NA      NA        NA        NA
## 3147    NA    NA     NA         NA      NA        NA        NA
## 3148    NA     2     NA         NA      NA        NA        NA
## 3149     1    NA      3         NA      NA        NA        NA
## 3150    NA     6     19         NA      NA        NA        NA
## 3151    11    11      8         NA      NA        NA        NA
## 3152     3     3     NA         NA      NA        NA        NA
## 3153     7     7      7         NA      NA        NA        NA
## 3154     5     3      3         NA      NA        NA        NA
## 3155     6     3      3         NA      NA        NA        NA
## 3156     7     4      7         NA      NA        NA        NA
## 3157    77    63     67         NA      NA        NA        NA
## 3158     1     3     NA         NA      NA        NA        NA
## 3159    NA     2     NA         NA      NA        NA        NA
## 3160     2     6      4         NA      NA        NA        NA
## 3161    15    21     19         NA      NA        NA        NA
## 3162    NA    NA     NA         NA      NA        NA        NA
## 3163    NA     0      0         NA      NA        NA        NA
## 3164    NA     1      1         NA      NA        NA        NA
## 3165     1    NA     NA         NA      NA        NA        NA
## 3166    NA     1     NA         NA      NA        NA        NA
## 3167     0     1      1         NA      NA        NA        NA
## 3168     0     0     NA         NA      NA        NA        NA
## 3169    NA    NA     NA         NA      NA        NA        NA
## 3170     3     1      1         NA      NA        NA        NA
## 3171    NA    NA     NA         NA      NA        NA        NA
## 3172     0    NA     NA         NA      NA        NA        NA
## 3173     1     1      3         NA      NA        NA        NA
## 3174    NA    NA      4         NA      NA        NA        NA
## 3175     2     1      2         NA      NA        NA        NA
## 3176    NA     4     NA         NA      NA        NA        NA
## 3177     1     1      1         NA      NA        NA        NA
## 3178     1     1     NA         NA      NA        NA        NA
## 3179    NA    NA     NA         NA      NA        NA        NA
## 3180    NA     3     NA         NA      NA        NA        NA
## 3181     0     1     NA         NA      NA        NA        NA
## 3182    NA    NA     NA         NA      NA        NA        NA
## 3183    NA     2     NA         NA      NA        NA        NA
## 3184    NA    NA     NA         NA      NA        NA        NA
## 3185     1    NA     NA         NA      NA        NA        NA
## 3186     0    NA     NA         NA      NA        NA        NA
## 3187    NA    NA     NA         NA      NA        NA        NA
## 3188     1    NA      1         NA      NA        NA        NA
## 3189     3     3      3         NA      NA        NA        NA
## 3190    NA     0      0         NA      NA        NA        NA
## 3191    NA    NA      2         NA      NA        NA        NA
## 3192    NA     1     NA         NA      NA        NA        NA
## 3193     3    NA      3         NA      NA        NA        NA
## 3194     1     0     NA         NA      NA        NA        NA
## 3195    NA    NA     NA         NA      NA        NA        NA
## 3196    NA     1      1         NA      NA        NA        NA
## 3197     2    NA      2         NA      NA        NA        NA
## 3198    NA    NA     NA         NA      NA        NA        NA
## 3199     3     1      1         NA      NA        NA        NA
## 3200     6     2      2         NA      NA        NA        NA
## 3201     6     3      6         NA      NA        NA        NA
## 3202    NA     3     NA         NA      NA        NA        NA
## 3203    NA    NA     NA         NA      NA        NA        NA
## 3204    NA    NA     NA         NA      NA        NA        NA
## 3205     4     5      1         NA      NA        NA        NA
## 3206     1     1     NA         NA      NA        NA        NA
## 3207    NA    NA     NA         NA      NA        NA        NA
## 3208    NA    NA     NA         NA      NA        NA        NA
## 3209     3     8     11         NA      NA        NA        NA
## 3210    NA    NA      0         NA      NA        NA        NA
## 3211    NA    NA      0         NA      NA        NA        NA
## 3212     0    NA      1         NA      NA        NA        NA
## 3213    30    19     30         NA      NA        NA        NA
## 3214    14    23     20         NA      NA        NA        NA
## 3215    NA    NA     NA         NA      NA        NA        NA
## 3216     4     6      4         NA      NA        NA        NA
## 3217    17    11     13         NA      NA        NA        NA
## 3218    NA    NA      2         NA      NA        NA        NA
## 3219    NA    NA      2         NA      NA        NA        NA
## 3220    NA    NA     NA         NA      NA        NA        NA
## 3221    18    14     14         NA      NA        NA        NA
## 3222     4     6      6         NA      NA        NA        NA
## 3223    NA    NA     NA         NA      NA        NA        NA
## 3224    NA     6     NA         NA      NA        NA        NA
## 3225    55    55     61         NA      NA        NA        NA
## 3226    NA    NA     NA         NA      NA        NA        NA
## 3227     3    NA     NA         NA      NA        NA        NA
## 3228    79    64     84         NA      NA        NA        NA
## 3229     5     8      8         NA      NA        NA        NA
## 3230     3    NA     NA         NA      NA        NA        NA
## 3231    56    39     46         NA      NA        NA        NA
## 3232   215   155    162         NA      NA        NA        NA
## 3233     9    10     11         NA      NA        NA        NA
## 3234    25    40     36         NA      NA        NA        NA
## 3235    44    51     42         NA      NA        NA        NA
## 3236     8    NA     NA         NA      NA        NA        NA
## 3237     2     2      2         NA      NA        NA        NA
## 3238     6     6      4         NA      NA        NA        NA
## 3239     2     2      2         NA      NA        NA        NA
## 3240     3     1      1         NA      NA        NA        NA
## 3241     1     1      1         NA      NA        NA        NA
## 3242    NA    NA     NA         NA      NA        NA        NA
## 3243     1    NA     NA         NA      NA        NA        NA
## 3244    NA    NA     NA         NA      NA        NA        NA
## 3245     9    11      8         NA      NA        NA        NA
## 3246    NA     0     NA         NA      NA        NA        NA
## 3247     1     3      4         NA      NA        NA        NA
## 3248     0     0      0         NA      NA        NA        NA
## 3249    NA    NA     NA         NA      NA        NA        NA
## 3250    NA    NA      1         NA      NA        NA        NA
## 3251     2     0      1         NA      NA        NA        NA
## 3252    11     6     10         NA      NA        NA        NA
## 3253     6     4      4         NA      NA        NA        NA
## 3254    NA    NA     NA         NA      NA        NA        NA
## 3255    NA    NA     NA         NA      NA        NA        NA
## 3256    17     8     14         NA      NA        NA        NA
## 3257     2    NA      2         NA      NA        NA        NA
## 3258     3     6      5         NA      NA        NA        NA
## 3259    NA    NA     NA         NA      NA        NA        NA
## 3260    NA     2     NA         NA      NA        NA        NA
## 3261    NA     1     NA         NA      NA        NA        NA
## 3262     5     5      5         NA      NA        NA        NA
## 3263    14    17     14         NA      NA        NA        NA
## 3264     2    NA      2         NA      NA        NA        NA
## 3265     4     5      3         NA      NA        NA        NA
## 3266    17    20     20         NA      NA        NA        NA
## 3267    NA    NA     NA         NA      NA        NA        NA
## 3268    NA    NA     NA         NA      NA        NA        NA
## 3269     2    NA      2         NA      NA        NA        NA
## 3270     5     8      8         NA      NA        NA        NA
## 3271    NA    NA     NA         NA      NA        NA        NA
## 3272     6     4      5         NA      NA        NA        NA
## 3273    NA    NA     NA         NA      NA        NA        NA
## 3274     5     8      9         NA      NA        NA        NA
## 3275     2     2     21         NA      NA        NA        NA
## 3276     3     6     41         NA      NA        NA        NA
## 3277    NA    NA     NA         NA      NA        NA        NA
## 3278    NA    NA     28         NA      NA        NA        NA
## 3279     8    NA     NA         NA      NA        NA        NA
## 3280     1     1      1         NA      NA        NA        NA
## 3281     2    NA     NA         NA      NA        NA        NA
## 3282     1     1      1         NA      NA        NA        NA
## 3283    NA    NA     NA         NA      NA        NA        NA
## 3284     1     1      1         NA      NA        NA        NA
## 3285     1     2      1         NA      NA        NA        NA
## 3286     1     1      1         NA      NA        NA        NA
## 3287    NA    NA     NA         NA      NA        NA        NA
## 3288     1     1      1         NA      NA        NA        NA
## 3289    NA    NA     NA         NA      NA        NA        NA
## 3290     3     3      3         NA      NA        NA        NA
## 3291     1    NA      1         NA      NA        NA        NA
## 3292    NA     1      4         NA      NA        NA        NA
## 3293    NA     2      1         NA      NA        NA        NA
## 3294     1     2      1         NA      NA        NA        NA
## 3295     0     1      0         NA      NA        NA        NA
## 3296     1    NA     NA         NA      NA        NA        NA
## 3297     8     8      2         NA      NA        NA        NA
## 3298     8    14     14         NA      NA        NA        NA
## 3299    NA    NA     NA         NA      NA        NA        NA
## 3300    25     4     11         NA      NA        NA        NA
## 3301     3     3      6         NA      NA        NA        NA
## 3302    NA     2      3         NA      NA        NA        NA
## 3303     6    11      8         NA      NA        NA        NA
## 3304    NA    NA      2         NA      NA        NA        NA
## 3305    NA    NA     NA         NA      NA        NA        NA
## 3306     6     6     17         NA      NA        NA        NA
## 3307     1    NA      2         NA      NA        NA        NA
## 3308     2     4      2         NA      NA        NA        NA
## 3309     6    NA      6         NA      NA        NA        NA
## 3310    16    24     26         NA      NA        NA        NA
## 3311    NA    NA     NA         NA      NA        NA        NA
## 3312    16    13     16         NA      NA        NA        NA
## 3313    12    22     22         NA      NA        NA        NA
## 3314     6     8      6         NA      NA        NA        NA
## 3315    11    11      8         NA      NA        NA        NA
## 3316    NA    NA     NA         NA      NA        NA        NA
## 3317     4     4     14         NA      NA        NA        NA
## 3318    63   102     77         NA      NA        NA        NA
## 3319     4     6     10         NA      NA        NA        NA
## 3320    NA     1      2         NA      NA        NA        NA
## 3321    19    34     27         NA      NA        NA        NA
## 3322    51    93     87         NA      NA        NA        NA
## 3323     3    NA     NA         NA      NA        NA        NA
## 3324     2    NA      2         NA      NA        NA        NA
## 3325     2    NA      2         NA      NA        NA        NA
## 3326    NA     1      1         NA      NA        NA        NA
## 3327     1     3      1         NA      NA        NA        NA
## 3328     2     1      1         NA      NA        NA        NA
## 3329     1     3      1         NA      NA        NA        NA
## 3330     1     1      2         NA      NA        NA        NA
## 3331     3     8      5         NA      NA        NA        NA
## 3332     2     7      5         NA      NA        NA        NA
## 3333    NA    NA     NA         NA      NA        NA        NA
## 3334     1     1      1         NA      NA        NA        NA
## 3335    NA     0     NA         NA      NA        NA        NA
## 3336    NA     1     NA         NA      NA        NA        NA
## 3337    NA     1      1         NA      NA        NA        NA
## 3338     0     0      1         NA      NA        NA        NA
## 3339     2     2      1         NA      NA        NA        NA
## 3340    NA    NA      1         NA      NA        NA        NA
## 3341     2     1      1         NA      NA        NA        NA
## 3342     1     1      1         NA      NA        NA        NA
## 3343     3     0      1         NA      NA        NA        NA
## 3344     3     3      1         NA      NA        NA        NA
## 3345     1     2      2         NA      NA        NA        NA
## 3346     1    NA     NA         NA      NA        NA        NA
## 3347    NA     2     NA         NA      NA        NA        NA
## 3348     6     8      8         NA      NA        NA        NA
## 3349     1     1      1         NA      NA        NA        NA
## 3350    NA    NA      0         NA      NA        NA        NA
## 3351     2     2      4         NA      NA        NA        NA
## 3352     3     2      3         NA      NA        NA        NA
## 3353     0     0     NA         NA      NA        NA        NA
## 3354    NA     3      8         NA      NA        NA        NA
## 3355    NA    NA     NA         NA      NA        NA        NA
## 3356     2     4      3         NA      NA        NA        NA
## 3357     0     0     NA         NA      NA        NA        NA
## 3358     4    NA      4         NA      NA        NA        NA
## 3359     1    NA     NA         NA      NA        NA        NA
## 3360     1     1      1         NA      NA        NA        NA
## 3361    NA    NA     NA         NA      NA        NA        NA
## 3362     1     1     NA         NA      NA        NA        NA
## 3363     1     1      1         NA      NA        NA        NA
## 3364     8     8     14         NA      NA        NA        NA
## 3365     2     4      8         NA      NA        NA        NA
## 3366    NA     1      3         NA      NA        NA        NA
## 3367     0     0     NA         NA      NA        NA        NA
## 3368     2     2      2         NA      NA        NA        NA
## 3369     2    NA     NA         NA      NA        NA        NA
## 3370     6     3      6         NA      NA        NA        NA
## 3371     1     1      1         NA      NA        NA        NA
## 3372    NA    NA     NA         NA      NA        NA        NA
## 3373     4     8      6         NA      NA        NA        NA
## 3374     3     3      3         NA      NA        NA        NA
## 3375     0     0     NA         NA      NA        NA        NA
## 3376    NA    NA     NA         NA      NA        NA        NA
## 3377    NA    NA     NA         NA      NA        NA        NA
## 3378     3     3      4         NA      NA        NA        NA
## 3379     1     1      1         NA      NA        NA        NA
## 3380     2     4     NA         NA      NA        NA        NA
## 3381     3     6     NA         NA      NA        NA        NA
## 3382    NA    NA     NA         NA      NA        NA        NA
## 3383    NA    NA     NA         NA      NA        NA        NA
## 3384    NA     0      0         NA      NA        NA        NA
## 3385     2     2      2         NA      NA        NA        NA
## 3386    NA    NA      0         NA      NA        NA        NA
## 3387    NA    NA      0         NA      NA        NA        NA
## 3388    NA    NA     NA         NA      NA        NA        NA
## 3389     3     3      8         NA      NA        NA        NA
## 3390    NA    NA     NA         NA      NA        NA        NA
## 3391     1     1      1         NA      NA        NA        NA
## 3392     4     8      8         NA      NA        NA        NA
## 3393    NA    NA     NA         NA      NA        NA        NA
## 3394    NA    NA     NA         NA      NA        NA        NA
## 3395    NA    NA     NA         NA      NA        NA        NA
## 3396    NA    NA     NA         NA      NA        NA        NA
## 3397    NA     6      6         NA      NA        NA        NA
## 3398    12     5     10         NA      NA        NA        NA
## 3399    NA    NA      2         NA      NA        NA        NA
## 3400    11    NA     NA         NA      NA        NA        NA
## 3401    18    NA     11         NA      NA        NA        NA
## 3402    35    21     28         NA      NA        NA        NA
## 3403     3     3      2         NA      NA        NA        NA
## 3404    13    15     17         NA      NA        NA        NA
## 3405    19    15     19         NA      NA        NA        NA
## 3406    NA    NA     NA         NA      NA        NA        NA
## 3407    NA     1      0         NA      NA        NA        NA
## 3408    NA    NA     NA         NA      NA        NA        NA
## 3409    NA    NA     NA         NA      NA        NA        NA
## 3410     5     3      4         NA      NA        NA        NA
## 3411    NA    NA     NA         NA      NA        NA        NA
## 3412    NA    NA     NA         NA      NA        NA        NA
## 3413    NA     1     NA         NA      NA        NA        NA
## 3414     1     3      2         NA      NA        NA        NA
## 3415     1    NA      1         NA      NA        NA        NA
## 3416     2     2      4         NA      NA        NA        NA
## 3417    NA     0      0         NA      NA        NA        NA
## 3418    NA    NA     NA         NA      NA        NA        NA
## 3419    NA    NA     NA         NA      NA        NA        NA
## 3420     6    NA     NA         NA      NA        NA        NA
## 3421     1    NA     NA         NA      NA        NA        NA
## 3422     2     1      2         NA      NA        NA        NA
## 3423    NA    NA     NA         NA      NA        NA        NA
## 3424     1    NA     NA         NA      NA        NA        NA
## 3425    NA    NA     NA         NA      NA        NA        NA
## 3426     3    NA     NA         NA      NA        NA        NA
## 3427     1    NA     NA         NA      NA        NA        NA
## 3428    NA    NA     NA         NA      NA        NA        NA
## 3429     6    NA     NA         NA      NA        NA        NA
## 3430     1    NA     NA         NA      NA        NA        NA
## 3431     6    NA      3         NA      NA        NA        NA
## 3432     1    NA     NA         NA      NA        NA        NA
## 3433     1     1      2         NA      NA        NA        NA
## 3434     4     3      2         NA      NA        NA        NA
## 3435    NA    NA      3         NA      NA        NA        NA
## 3436     2     1      5         NA      NA        NA        NA
## 3437     2     2      2         NA      NA        NA        NA
## 3438     3    10      3         NA      NA        NA        NA
## 3439    NA     3      3         NA      NA        NA        NA
## 3440    NA    NA     NA         NA      NA        NA        NA
## 3441    NA    NA     NA         NA      NA        NA        NA
## 3442     1    NA     NA         NA      NA        NA        NA
## 3443     1    NA      1         NA      NA        NA        NA
## 3444    NA     2     NA         NA      NA        NA        NA
## 3445    NA     3     NA         NA      NA        NA        NA
## 3446    NA    NA      1         NA      NA        NA        NA
## 3447    NA    NA      0         NA      NA        NA        NA
## 3448     0    NA     NA         NA      NA        NA        NA
## 3449     4     2      2         NA      NA        NA        NA
## 3450    NA    NA      4         NA      NA        NA        NA
## 3451    NA    NA      1         NA      NA        NA        NA
## 3452    NA     2     NA         NA      NA        NA        NA
## 3453     4     4      2         NA      NA        NA        NA
## 3454    NA    NA     NA         NA      NA        NA        NA
## 3455    NA    NA      3         NA      NA        NA        NA
## 3456    NA    NA      2         NA      NA        NA        NA
## 3457     5     3      3         NA      NA        NA        NA
## 3458    11    13     16         NA      NA        NA        NA
## 3459    13    13     25         NA      NA        NA        NA
## 3460     7     5     15         NA      NA        NA        NA
## 3461     3     6      6         NA      NA        NA        NA
## 3462     7    18     28         NA      NA        NA        NA
## 3463    32    49     95         NA      NA        NA        NA
## 3464     4     4      6         NA      NA        NA        NA
## 3465    NA    NA      4         NA      NA        NA        NA
## 3466     6     6     15         NA      NA        NA        NA
## 3467    25    36     49         NA      NA        NA        NA
## 3468    NA    NA     NA         NA      NA        NA        NA
## 3469    NA    NA     NA         NA      NA        NA        NA
## 3470     5     6      4         NA      NA        NA        NA
## 3471     3     3      3         NA      NA        NA        NA
## 3472    NA    NA      1         NA      NA        NA        NA
## 3473    NA    NA     NA         NA      NA        NA        NA
## 3474     2     1      3         NA      NA        NA        NA
## 3475    NA     0     NA         NA      NA        NA        NA
## 3476    NA     1     NA         NA      NA        NA        NA
## 3477    NA    NA      2         NA      NA        NA        NA
## 3478    NA    NA      0         NA      NA        NA        NA
## 3479    NA    NA     NA         NA      NA        NA        NA
## 3480     2     4      3         NA      NA        NA        NA
## 3481     1    NA      2         NA      NA        NA        NA
## 3482    NA    NA      1         NA      NA        NA        NA
## 3483     2     4     NA         NA      NA        NA        NA
## 3484    NA    NA      1         NA      NA        NA        NA
## 3485    NA    NA      1         NA      NA        NA        NA
## 3486    NA    NA     NA         NA      NA        NA        NA
## 3487    NA    NA      6         NA      NA        NA        NA
## 3488     4     4      2         NA      NA        NA        NA
## 3489    NA    NA     NA         NA      NA        NA        NA
## 3490    NA    NA      2         NA      NA        NA        NA
## 3491     1    NA      2         NA      NA        NA        NA
## 3492    NA    NA      3         NA      NA        NA        NA
## 3493    NA    NA      2         NA      NA        NA        NA
## 3494    NA    NA      1         NA      NA        NA        NA
## 3495     1    NA     NA         NA      NA        NA        NA
## 3496    NA    NA      2         NA      NA        NA        NA
## 3497    NA    NA      1         NA      NA        NA        NA
## 3498    NA    NA     NA         NA      NA        NA        NA
## 3499    NA     2     NA         NA      NA        NA        NA
## 3500     6     6      6         NA      NA        NA        NA
## 3501    NA    NA      2         NA      NA        NA        NA
## 3502    NA    NA      1         NA      NA        NA        NA
## 3503    NA     3      6         NA      NA        NA        NA
## 3504     4    NA      2         NA      NA        NA        NA
## 3505    NA    NA     NA         NA      NA        NA        NA
## 3506    NA    NA      2         NA      NA        NA        NA
## 3507    NA    NA      2         NA      NA        NA        NA
## 3508     1     1      6         NA      NA        NA        NA
## 3509     1     1      1         NA      NA        NA        NA
## 3510    13    13      8         NA      NA        NA        NA
## 3511    19    19     13         NA      NA        NA        NA
## 3512     6    10      5         NA      NA        NA        NA
## 3513     1     2      1         NA      NA        NA        NA
## 3514     1     1      1         NA      NA        NA        NA
## 3515     2     1      3         NA      NA        NA        NA
## 3516     0     0      1         NA      NA        NA        NA
## 3517     2     3      1         NA      NA        NA        NA
## 3518     2     2      3         NA      NA        NA        NA
## 3519     0     1      1         NA      NA        NA        NA
## 3520     1     1      1         NA      NA        NA        NA
## 3521     1    NA     NA         NA      NA        NA        NA
## 3522     3     6      3         NA      NA        NA        NA
## 3523    NA     0     NA         NA      NA        NA        NA
## 3524     8    11      8         NA      NA        NA        NA
## 3525    NA    NA     NA         NA      NA        NA        NA
## 3526     6     8      4         NA      NA        NA        NA
## 3527    NA    NA     NA         NA      NA        NA        NA
## 3528     1     1     NA         NA      NA        NA        NA
## 3529     2     2      2         NA      NA        NA        NA
## 3530     6     5      3         NA      NA        NA        NA
## 3531    NA    NA     NA         NA      NA        NA        NA
## 3532    NA    NA     NA         NA      NA        NA        NA
## 3533    NA     8      8         NA      NA        NA        NA
## 3534    24    29     26         NA      NA        NA        NA
## 3535    22    13     13         NA      NA        NA        NA
## 3536     2     5      2         NA      NA        NA        NA
## 3537     6     3      3         NA      NA        NA        NA
## 3538     4     4     11         NA      NA        NA        NA
## 3539   109    99     88         NA      NA        NA        NA
## 3540     5     3      3         NA      NA        NA        NA
## 3541    19    25     21         NA      NA        NA        NA
## 3542    87    74     66         NA      NA        NA        NA
## 3543    NA    NA     NA         NA      NA        NA        NA
## 3544     4     4      2         NA      NA        NA        NA
## 3545     3     3      2         NA      NA        NA        NA
## 3546     1     1      1         NA      NA        NA        NA
## 3547     1     1      1         NA      NA        NA        NA
## 3548     1     1      1         NA      NA        NA        NA
## 3549     3     3      2         NA      NA        NA        NA
## 3550    NA     0      0         NA      NA        NA        NA
## 3551     3     2      1         NA      NA        NA        NA
## 3552     0     1      0         NA      NA        NA        NA
## 3553     1     2     NA         NA      NA        NA        NA
## 3554    NA    NA      1         NA      NA        NA        NA
## 3555    NA    NA     NA         NA      NA        NA        NA
## 3556     0     1      2         NA      NA        NA        NA
## 3557     4     4      2         NA      NA        NA        NA
## 3558     2     2      1         NA      NA        NA        NA
## 3559     1     1      1         NA      NA        NA        NA
## 3560    NA    NA     NA         NA      NA        NA        NA
## 3561     2     2      2         NA      NA        NA        NA
## 3562     3    NA     NA         NA      NA        NA        NA
## 3563    NA    NA     NA         NA      NA        NA        NA
## 3564     1     2     NA         NA      NA        NA        NA
## 3565     1     2     NA         NA      NA        NA        NA
## 3566     1     1      1         NA      NA        NA        NA
## 3567    NA     1      1         NA      NA        NA        NA
## 3568     1    NA     NA         NA      NA        NA        NA
## 3569     1    NA     NA         NA      NA        NA        NA
## 3570     1    NA     NA         NA      NA        NA        NA
## 3571     1    NA     NA         NA      NA        NA        NA
## 3572     1    NA     NA         NA      NA        NA        NA
## 3573    NA    NA     NA         NA      NA        NA        NA
## 3574    NA     2      0         NA      NA        NA        NA
## 3575    NA    NA      2         NA      NA        NA        NA
## 3576    NA     1     NA         NA      NA        NA        NA
## 3577     2     2     NA         NA      NA        NA        NA
## 3578    NA    NA     NA         NA      NA        NA        NA
## 3579     2     2      0         NA      NA        NA        NA
## 3580     1     2      2         NA      NA        NA        NA
## 3581     1     1      1         NA      NA        NA        NA
## 3582    NA    NA     NA         NA      NA        NA        NA
## 3583    NA    NA     NA         NA      NA        NA        NA
## 3584     1     3      4         NA      NA        NA        NA
## 3585     2    NA     NA         NA      NA        NA        NA
## 3586     1     1     NA         NA      NA        NA        NA
## 3587     2     8      4         NA      NA        NA        NA
## 3588     3    13      6         NA      NA        NA        NA
## 3589    NA    NA     NA         NA      NA        NA        NA
## 3590     3    10     NA         NA      NA        NA        NA
## 3591     2     1      1         NA      NA        NA        NA
## 3592     1     1      1         NA      NA        NA        NA
## 3593    NA    NA      1         NA      NA        NA        NA
## 3594    NA     1      1         NA      NA        NA        NA
## 3595     1     1      1         NA      NA        NA        NA
## 3596    NA    NA     NA         NA      NA        NA        NA
## 3597    NA    NA      2         NA      NA        NA        NA
## 3598     3     3      3         NA      NA        NA        NA
## 3599     0     0     NA         NA      NA        NA        NA
## 3600     0    10      0         NA      NA        NA        NA
## 3601    NA    NA      1         NA      NA        NA        NA
## 3602    NA    NA      1         NA      NA        NA        NA
## 3603     0     1      1         NA      NA        NA        NA
## 3604    NA    NA     NA         NA      NA        NA        NA
## 3605     2     4      4         NA      NA        NA        NA
## 3606     3    NA     NA         NA      NA        NA        NA
## 3607     7     4     11         NA      NA        NA        NA
## 3608     1     2      1         NA      NA        NA        NA
## 3609     6     8      8         NA      NA        NA        NA
## 3610     3    NA     NA         NA      NA        NA        NA
## 3611    NA    NA      1         NA      NA        NA        NA
## 3612    NA    NA     NA         NA      NA        NA        NA
## 3613    11    14      6         NA      NA        NA        NA
## 3614     2     1      2         NA      NA        NA        NA
## 3615     3     4      4         NA      NA        NA        NA
## 3616     4     4      2         NA      NA        NA        NA
## 3617    NA    NA     NA         NA      NA        NA        NA
## 3618    NA    NA     NA         NA      NA        NA        NA
## 3619    NA    19     11         NA      NA        NA        NA
## 3620    13     8     13         NA      NA        NA        NA
## 3621    NA    NA     NA         NA      NA        NA        NA
## 3622     6     3      3         NA      NA        NA        NA
## 3623     5    10      7         NA      NA        NA        NA
## 3624     6     8      6         NA      NA        NA        NA
## 3625    32    21     18         NA      NA        NA        NA
## 3626    21    25     25         NA      NA        NA        NA
## 3627     3     7      7         NA      NA        NA        NA
## 3628    NA    NA      2         NA      NA        NA        NA
## 3629    15    19     19         NA      NA        NA        NA
## 3630    36    34     42         NA      NA        NA        NA
## 3631    NA    NA      1         NA      NA        NA        NA
## 3632     8    NA     NA         NA      NA        NA        NA
## 3633     1     2      1         NA      NA        NA        NA
## 3634     2     2      2         NA      NA        NA        NA
## 3635     1     1      1         NA      NA        NA        NA
## 3636     2     1      1         NA      NA        NA        NA
## 3637     1     1      1         NA      NA        NA        NA
## 3638     1    NA      0         NA      NA        NA        NA
## 3639     1     4      3         NA      NA        NA        NA
## 3640     2     2      2         NA      NA        NA        NA
## 3641    NA     0     NA         NA      NA        NA        NA
## 3642     2     1      2         NA      NA        NA        NA
## 3643     0     0      0         NA      NA        NA        NA
## 3644     2     1      2         NA      NA        NA        NA
## 3645    NA     1      2         NA      NA        NA        NA
## 3646    NA     1     NA         NA      NA        NA        NA
## 3647     2    26      1         NA      NA        NA        NA
## 3648    NA    NA     NA         NA      NA        NA        NA
## 3649     1     1      1         NA      NA        NA        NA
## 3650     1     1      1         NA      NA        NA        NA
## 3651    NA    NA     NA         NA      NA        NA        NA
## 3652    NA    NA     NA         NA      NA        NA        NA
## 3653     2    NA     NA         NA      NA        NA        NA
## 3654    NA     3     NA         NA      NA        NA        NA
## 3655    NA     1      1         NA      NA        NA        NA
## 3656    NA    NA      1         NA      NA        NA        NA
## 3657     2     2      1         NA      NA        NA        NA
## 3658     1     3      2         NA      NA        NA        NA
## 3659    NA     3     NA         NA      NA        NA        NA
## 3660     2     2      1         NA      NA        NA        NA
## 3661     1     1      1         NA      NA        NA        NA
## 3662     1    NA      1         NA      NA        NA        NA
## 3663    NA    NA     NA         NA      NA        NA        NA
## 3664    NA    NA     NA         NA      NA        NA        NA
## 3665     2     2      3         NA      NA        NA        NA
## 3666     1    NA     NA         NA      NA        NA        NA
## 3667     1     2      1         NA      NA        NA        NA
## 3668    NA     3      3         NA      NA        NA        NA
## 3669    NA    NA     NA         NA      NA        NA        NA
## 3670     1     1      1         NA      NA        NA        NA
## 3671    NA     2      2         NA      NA        NA        NA
## 3672     2    NA     NA         NA      NA        NA        NA
## 3673     3     6     NA         NA      NA        NA        NA
## 3674     1     1      1         NA      NA        NA        NA
## 3675     1     1      1         NA      NA        NA        NA
## 3676     2     2      3         NA      NA        NA        NA
## 3677     5     5      4         NA      NA        NA        NA
## 3678    NA    NA     NA         NA      NA        NA        NA
## 3679     5     4      4         NA      NA        NA        NA
## 3680    NA    NA     NA         NA      NA        NA        NA
## 3681    NA    NA     NA         NA      NA        NA        NA
## 3682     1     1      1         NA      NA        NA        NA
## 3683     8     4      6         NA      NA        NA        NA
## 3684    16     6     16         NA      NA        NA        NA
## 3685     5     3      3         NA      NA        NA        NA
## 3686     1     1      1         NA      NA        NA        NA
## 3687     1     1      1         NA      NA        NA        NA
## 3688    NA    NA     NA         NA      NA        NA        NA
## 3689     1     1      1         NA      NA        NA        NA
## 3690    NA    NA     NA         NA      NA        NA        NA
## 3691     2     2      4         NA      NA        NA        NA
## 3692     3     3      3         NA      NA        NA        NA
## 3693     0     0      1         NA      NA        NA        NA
## 3694    NA    NA     NA         NA      NA        NA        NA
## 3695     6     2      6         NA      NA        NA        NA
## 3696     3     5      5         NA      NA        NA        NA
## 3697    NA     4      7         NA      NA        NA        NA
## 3698     3     1      3         NA      NA        NA        NA
## 3699     2     4      2         NA      NA        NA        NA
## 3700    NA     2     NA         NA      NA        NA        NA
## 3701     3    NA     NA         NA      NA        NA        NA
## 3702    NA    NA     NA         NA      NA        NA        NA
## 3703     1    NA     NA         NA      NA        NA        NA
## 3704     2     2      2         NA      NA        NA        NA
## 3705    NA    15     19         NA      NA        NA        NA
## 3706     3     3     NA         NA      NA        NA        NA
## 3707    NA    NA     NA         NA      NA        NA        NA
## 3708     6    10      6         NA      NA        NA        NA
## 3709    35    30     30         NA      NA        NA        NA
## 3710     5     3      3         NA      NA        NA        NA
## 3711    NA     2      2         NA      NA        NA        NA
## 3712    18    11     14         NA      NA        NA        NA
## 3713    95    77     77         NA      NA        NA        NA
## 3714     5     3      5         NA      NA        NA        NA
## 3715    11     4      4         NA      NA        NA        NA
## 3716    13    19     25         NA      NA        NA        NA
## 3717    63    44     42         NA      NA        NA        NA
## 3718     1     2      2         NA      NA        NA        NA
## 3719    NA    NA     NA         NA      NA        NA        NA
## 3720    NA     2      2         NA      NA        NA        NA
## 3721     1     1      1         NA      NA        NA        NA
## 3722     1     1      1         NA      NA        NA        NA
## 3723    NA     2     NA         NA      NA        NA        NA
## 3724     0     0      0         NA      NA        NA        NA
## 3725    NA    NA     NA         NA      NA        NA        NA
## 3726     7     6      7         NA      NA        NA        NA
## 3727     3    NA      1         NA      NA        NA        NA
## 3728    NA     2     NA         NA      NA        NA        NA
## 3729    NA     1      1         NA      NA        NA        NA
## 3730    NA    NA     NA         NA      NA        NA        NA
## 3731     3     2      1         NA      NA        NA        NA
## 3732    NA    NA     NA         NA      NA        NA        NA
## 3733     2     0      1         NA      NA        NA        NA
## 3734     1     1      2         NA      NA        NA        NA
## 3735     1     1      1         NA      NA        NA        NA
## 3736    NA    NA     NA         NA      NA        NA        NA
## 3737    NA     2     NA         NA      NA        NA        NA
## 3738    NA     1     NA         NA      NA        NA        NA
## 3739    NA    NA     NA         NA      NA        NA        NA
## 3740     1     1      1         NA      NA        NA        NA
## 3741     2    NA      2         NA      NA        NA        NA
## 3742     3     1      3         NA      NA        NA        NA
## 3743     0     0      0         NA      NA        NA        NA
## 3744    NA     1     NA         NA      NA        NA        NA
## 3745     0     0      0         NA      NA        NA        NA
## 3746     1    NA     NA         NA      NA        NA        NA
## 3747    NA    NA     NA         NA      NA        NA        NA
## 3748    NA    NA     NA         NA      NA        NA        NA
## 3749     1    NA     NA         NA      NA        NA        NA
## 3750    NA     1      1         NA      NA        NA        NA
## 3751     1     1      1         NA      NA        NA        NA
## 3752    NA     1     NA         NA      NA        NA        NA
## 3753    NA    NA     NA         NA      NA        NA        NA
## 3754    NA     2      2         NA      NA        NA        NA
## 3755     1    NA      3         NA      NA        NA        NA
## 3756     0     0      0         NA      NA        NA        NA
## 3757     8     2      4         NA      NA        NA        NA
## 3758     3     1      3         NA      NA        NA        NA
## 3759     4     4     NA         NA      NA        NA        NA
## 3760    NA     1      1         NA      NA        NA        NA
## 3761    NA    NA     NA         NA      NA        NA        NA
## 3762     2     2      4         NA      NA        NA        NA
## 3763     4     4      6         NA      NA        NA        NA
## 3764     0     0      0         NA      NA        NA        NA
## 3765     1     1      1         NA      NA        NA        NA
## 3766    NA    NA     NA         NA      NA        NA        NA
## 3767     2     1      4         NA      NA        NA        NA
## 3768     2     4      4         NA      NA        NA        NA
## 3769    10     6     13         NA      NA        NA        NA
## 3770     5    NA     NA         NA      NA        NA        NA
## 3771    NA     1     NA         NA      NA        NA        NA
## 3772    NA    NA     NA         NA      NA        NA        NA
## 3773    NA     0     NA         NA      NA        NA        NA
## 3774    NA    NA     NA         NA      NA        NA        NA
## 3775    NA    NA     NA         NA      NA        NA        NA
## 3776    NA     0     NA         NA      NA        NA        NA
## 3777     2     4      2         NA      NA        NA        NA
## 3778    NA    NA      3         NA      NA        NA        NA
## 3779     4    11      7         NA      NA        NA        NA
## 3780    NA     1      1         NA      NA        NA        NA
## 3781     2     4      4         NA      NA        NA        NA
## 3782    NA    NA     NA         NA      NA        NA        NA
## 3783    NA     3     NA         NA      NA        NA        NA
## 3784     3     2      2         NA      NA        NA        NA
## 3785    NA    NA     NA         NA      NA        NA        NA
## 3786    11    11      8         NA      NA        NA        NA
## 3787    16    10     13         NA      NA        NA        NA
## 3788    NA    NA     NA         NA      NA        NA        NA
## 3789     3     5      5         NA      NA        NA        NA
## 3790    11    25     11         NA      NA        NA        NA
## 3791    28    37     32         NA      NA        NA        NA
## 3792     3     5      6         NA      NA        NA        NA
## 3793     8    13     13         NA      NA        NA        NA
## 3794    61    51     38         NA      NA        NA        NA
## 3795     5    NA     NA         NA      NA        NA        NA
## 3796     5     4      3         NA      NA        NA        NA
## 3797    NA    NA     NA         NA      NA        NA        NA
## 3798     1     1     NA         NA      NA        NA        NA
## 3799    NA    NA     NA         NA      NA        NA        NA
## 3800    NA    NA     NA         NA      NA        NA        NA
## 3801     1     2      2         NA      NA        NA        NA
## 3802    NA    NA     NA         NA      NA        NA        NA
## 3803     1     2      1         NA      NA        NA        NA
## 3804    NA    NA     NA         NA      NA        NA        NA
## 3805    NA    NA     NA         NA      NA        NA        NA
## 3806    NA    NA     NA         NA      NA        NA        NA
## 3807     4     1      1         NA      NA        NA        NA
## 3808     0     0      0         NA      NA        NA        NA
## 3809     1     1      1         NA      NA        NA        NA
## 3810     1     1      1         NA      NA        NA        NA
## 3811     1     1      1         NA      NA        NA        NA
## 3812     1     1      1         NA      NA        NA        NA
## 3813    NA     1     NA         NA      NA        NA        NA
## 3814     1    NA     NA         NA      NA        NA        NA
## 3815    NA    NA     NA         NA      NA        NA        NA
## 3816    NA    NA     NA         NA      NA        NA        NA
## 3817     1     1      1         NA      NA        NA        NA
## 3818     1    NA     NA         NA      NA        NA        NA
## 3819    NA     1      1         NA      NA        NA        NA
## 3820     1     1      1         NA      NA        NA        NA
## 3821    NA    NA     NA         NA      NA        NA        NA
## 3822     1     1      1         NA      NA        NA        NA
## 3823     4     1      4         NA      NA        NA        NA
## 3824    NA    NA     NA         NA      NA        NA        NA
## 3825     0     0      0         NA      NA        NA        NA
## 3826     1     1      1         NA      NA        NA        NA
## 3827     1     1      1         NA      NA        NA        NA
## 3828     1     1      1         NA      NA        NA        NA
## 3829     1     1     NA         NA      NA        NA        NA
## 3830     2     2     NA         NA      NA        NA        NA
## 3831     3     3     NA         NA      NA        NA        NA
## 3832    NA     3     NA         NA      NA        NA        NA
## 3833    NA    NA     NA         NA      NA        NA        NA
## 3834    NA    NA     NA         NA      NA        NA        NA
## 3835    NA    NA     NA         NA      NA        NA        NA
## 3836    NA    NA     NA         NA      NA        NA        NA
## 3837    NA    NA     NA         NA      NA        NA        NA
## 3838    NA    NA     NA         NA      NA        NA        NA
## 3839    NA    NA     NA         NA      NA        NA        NA
## 3840     2    NA     NA         NA      NA        NA        NA
## 3841    NA    NA     NA         NA      NA        NA        NA
## 3842    NA    NA     NA         NA      NA        NA        NA
## 3843    NA    NA     NA         NA      NA        NA        NA
## 3844    NA    NA     NA         NA      NA        NA        NA
## 3845    NA    NA     NA         NA      NA        NA        NA
## 3846    NA     1     NA         NA      NA        NA        NA
## 3847     1    NA     NA         NA      NA        NA        NA
## 3848    NA    NA     NA         NA      NA        NA        NA
## 3849     3    NA     NA         NA      NA        NA        NA
## 3850    NA    NA     NA         NA      NA        NA        NA
## 3851    NA    NA     NA         NA      NA        NA        NA
## 3852     2    NA     NA         NA      NA        NA        NA
## 3853    NA    NA     NA         NA      NA        NA        NA
## 3854    NA    NA     NA         NA      NA        NA        NA
## 3855     1     1     NA         NA      NA        NA        NA
## 3856    NA    NA     NA         NA      NA        NA        NA
## 3857     8    NA     NA         NA      NA        NA        NA
## 3858    NA    NA     NA         NA      NA        NA        NA
## 3859    NA    NA     NA         NA      NA        NA        NA
## 3860    NA    NA     NA         NA      NA        NA        NA
## 3861    NA    NA     NA         NA      NA        NA        NA
## 3862    NA    NA     NA         NA      NA        NA        NA
## 3863    NA    NA     NA         NA      NA        NA        NA
## 3864    NA    NA     NA         NA      NA        NA        NA
## 3865    NA    NA     NA         NA      NA        NA        NA
## 3866    NA    NA     NA         NA      NA        NA        NA
## 3867    NA    NA     NA         NA      NA        NA        NA
## 3868    NA    NA     NA         NA      NA        NA        NA
## 3869    NA    NA     NA         NA      NA        NA        NA
## 3870    NA    NA     NA         NA      NA        NA        NA
## 3871     2    NA     NA         NA      NA        NA        NA
## 3872    NA    NA     NA         NA      NA        NA        NA
## 3873    NA    NA     NA         NA      NA        NA        NA
## 3874    NA    NA     NA         NA      NA        NA        NA
## 3875    NA    NA     NA         NA      NA        NA        NA
## 3876    NA    NA     NA         NA      NA        NA        NA
## 3877     1    NA     NA         NA      NA        NA        NA
## 3878    NA    NA     NA         NA      NA        NA        NA
## 3879     1    NA     NA         NA      NA        NA        NA
## 3880    NA    NA     NA         NA      NA        NA        NA
## 3881    NA    NA     NA         NA      NA        NA        NA
## 3882    NA    NA     NA         NA      NA        NA        NA
## 3883    NA    NA     NA         NA      NA        NA        NA
## 3884     1     1     NA         NA      NA        NA        NA
## 3885    NA    NA     NA         NA      NA        NA        NA
## 3886    NA    NA     NA         NA      NA        NA        NA
## 3887     1    NA     NA         NA      NA        NA        NA
## 3888    NA    NA     NA         NA      NA        NA        NA
## 3889    NA    NA     NA         NA      NA        NA        NA
## 3890    NA    NA     NA         NA      NA        NA        NA
## 3891    NA    NA     NA         NA      NA        NA        NA
## 3892    NA    NA     NA         NA      NA        NA        NA
## 3893    NA    NA     NA         NA      NA        NA        NA
## 3894    NA    NA     NA         NA      NA        NA        NA
## 3895    NA    NA     NA         NA      NA        NA        NA
## 3896    NA    NA     NA         NA      NA        NA        NA
## 3897    NA    NA     NA         NA      NA        NA        NA
## 3898    NA    NA     NA         NA      NA        NA        NA
## 3899    NA    NA     NA         NA      NA        NA        NA
## 3900    NA    NA     NA         NA      NA        NA        NA
## 3901    NA     4     NA         NA      NA        NA        NA
## 3902    NA     6     NA         NA      NA        NA        NA
## 3903    NA     5     NA         NA      NA        NA        NA
## 3904    NA    NA     NA         NA      NA        NA        NA
## 3905    NA    NA     NA         NA      NA        NA        NA
## 3906    NA    NA     NA         NA      NA        NA        NA
## 3907    NA    NA      2         NA      NA        NA        NA
## 3908     6     5      5         NA      NA        NA        NA
## 3909     1     3      2         NA      NA        NA        NA
## 3910     2     2      2         NA      NA        NA        NA
## 3911    NA    NA     NA         NA      NA        NA        NA
## 3912    NA    NA     NA         NA      NA        NA        NA
## 3913     2    NA      1         NA      NA        NA        NA
## 3914     3     5      3         NA      NA        NA        NA
## 3915    NA    NA     NA         NA      NA        NA        NA
## 3916    NA    NA      2         NA      NA        NA        NA
## 3917     6     5      3         NA      NA        NA        NA
## 3918     4     4      4         NA      NA        NA        NA
## 3919    11    14     11         NA      NA        NA        NA
## 3920     4     4      4         NA      NA        NA        NA
## 3921     8     6     11         NA      NA        NA        NA
## 3922    34    30     44         NA      NA        NA        NA
## 3923    NA    NA     NA         NA      NA        NA        NA
## 3924     2    NA      2         NA      NA        NA        NA
## 3925     0    NA     NA         NA      NA        NA        NA
## 3926    NA    NA      0         NA      NA        NA        NA
## 3927    NA     1     NA         NA      NA        NA        NA
## 3928     0     0      0         NA      NA        NA        NA
## 3929    NA    NA     NA         NA      NA        NA        NA
## 3930    NA    NA     NA         NA      NA        NA        NA
## 3931    NA    NA     NA         NA      NA        NA        NA
## 3932     0     4      1         NA      NA        NA        NA
## 3933    NA    NA     NA         NA      NA        NA        NA
## 3934    NA    NA     NA         NA      NA        NA        NA
## 3935    NA    NA     NA         NA      NA        NA        NA
## 3936    NA    NA      2         NA      NA        NA        NA
## 3937    NA    NA      2         NA      NA        NA        NA
## 3938    NA    NA     NA         NA      NA        NA        NA
## 3939    NA     2     NA         NA      NA        NA        NA
## 3940    NA    NA     NA         NA      NA        NA        NA
## 3941     2     2     NA         NA      NA        NA        NA
## 3942     2     6     NA         NA      NA        NA        NA
## 3943     3    10     NA         NA      NA        NA        NA
## 3944    NA    NA     NA         NA      NA        NA        NA
## 3945    NA     8     NA         NA      NA        NA        NA
## 3946     4     2     NA         NA      NA        NA        NA
## 3947    NA    NA     NA         NA      NA        NA        NA
## 3948    NA    NA      1         NA      NA        NA        NA
## 3949     1     1     NA         NA      NA        NA        NA
## 3950    NA    NA     NA         NA      NA        NA        NA
## 3951     2     1     NA         NA      NA        NA        NA
## 3952     1     1     NA         NA      NA        NA        NA
## 3953    NA    NA     NA         NA      NA        NA        NA
## 3954    NA     0      0         NA      NA        NA        NA
## 3955    NA    NA      0         NA      NA        NA        NA
## 3956     4     4     NA         NA      NA        NA        NA
## 3957    NA    NA      2         NA      NA        NA        NA
## 3958     4     2     NA         NA      NA        NA        NA
## 3959    NA    NA     NA         NA      NA        NA        NA
## 3960    NA     1     NA         NA      NA        NA        NA
## 3961     1    NA     NA         NA      NA        NA        NA
## 3962    NA     6      4         NA      NA        NA        NA
## 3963     8     5     NA         NA      NA        NA        NA
## 3964    10     6     NA         NA      NA        NA        NA
## 3965     2     2     NA         NA      NA        NA        NA
## 3966     3     5      2         NA      NA        NA        NA
## 3967    11     7     NA         NA      NA        NA        NA
## 3968    77    49     NA         NA      NA        NA        NA
## 3969     4     1      1         NA      NA        NA        NA
## 3970     4     6     NA         NA      NA        NA        NA
## 3971    34    23      6         NA      NA        NA        NA
## 3972    NA    NA     NA         NA      NA        NA        NA
## 3973    NA     1     NA         NA      NA        NA        NA
## 3974     1     1     NA         NA      NA        NA        NA
## 3975     1     1     NA         NA      NA        NA        NA
## 3976     2     3      0         NA      NA        NA        NA
## 3977     2     2     NA         NA      NA        NA        NA
## 3978    NA     0     NA         NA      NA        NA        NA
## 3979    NA    NA     NA         NA      NA        NA        NA
## 3980     1    NA      2         NA      NA        NA        NA
## 3981     1    NA      3         NA      NA        NA        NA
## 3982     0     0     NA         NA      NA        NA        NA
## 3983     1     1     NA         NA      NA        NA        NA
## 3984     1     1     NA         NA      NA        NA        NA
## 3985    NA    NA      2         NA      NA        NA        NA
## 3986     6     6     NA         NA      NA        NA        NA
## 3987    NA    NA     NA         NA      NA        NA        NA
## 3988    NA    NA     NA         NA      NA        NA        NA
## 3989     1     1     NA         NA      NA        NA        NA
## 3990     2     1     NA         NA      NA        NA        NA
## 3991    NA    NA     NA         NA      NA        NA        NA
## 3992     1     1     NA         NA      NA        NA        NA
## 3993    NA    NA     NA         NA      NA        NA        NA
## 3994    NA    NA     NA         NA      NA        NA        NA
## 3995    NA    NA     NA         NA      NA        NA        NA
## 3996     1     1     NA         NA      NA        NA        NA
## 3997     1     1     NA         NA      NA        NA        NA
## 3998    NA     2     NA         NA      NA        NA        NA
## 3999    NA     2      2         NA      NA        NA        NA
##  [ reached 'max' / getOption("max.print") -- omitted 37334 rows ]

Ventas primer semestre

base_de_datos_2 <- base_de_datos

Eliminar renglón repetido

base_de_datos_4 <- filter(base_de_datos_2, Territorio != "Territorio")

Llenar base de datos con ceros

base_de_datos_5 <- base_de_datos_4
base_de_datos_5[is.na(base_de_datos_5)]<-0
summary(base_de_datos_5)
##        ID              Año        Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466508      Length:466508     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233256   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##      CEDI              Cliente         Nombre          Tamaño.Cte.Industria
##  Length:466508      Min.   :    3   Length:466508      Length:466508       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##  Segmento.Det          Marca           Presentacion          Tamaño         
##  Length:466508      Length:466508      Length:466508      Length:466508     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR          Enero           Febrero            Marzo        
##  Length:466508      Min.   :-19.00   Min.   :-11.000   Min.   :-32.000  
##  Class :character   1st Qu.:  0.00   1st Qu.:  0.000   1st Qu.:  0.000  
##  Mode  :character   Median :  0.00   Median :  0.000   Median :  0.000  
##                     Mean   :  4.69   Mean   :  4.581   Mean   :  5.401  
##                     3rd Qu.:  2.00   3rd Qu.:  2.000   3rd Qu.:  3.000  
##                     Max.   :999.00   Max.   :986.000   Max.   :986.000  
##      Abril              Mayo              Junio            Julio        
##  Min.   :-70.000   Min.   :-106.000   Min.   :-211.0   Min.   :-60.000  
##  1st Qu.:  0.000   1st Qu.:   0.000   1st Qu.:   0.0   1st Qu.:  0.000  
##  Median :  0.000   Median :   0.000   Median :   0.0   Median :  0.000  
##  Mean   :  5.519   Mean   :   6.117   Mean   :   5.9   Mean   :  5.583  
##  3rd Qu.:  3.000   3rd Qu.:   3.000   3rd Qu.:   3.0   3rd Qu.:  3.000  
##  Max.   :993.000   Max.   : 991.000   Max.   : 998.0   Max.   :993.000  
##      Agosto           Septiembre          Octubre          Noviembre      
##  Min.   :-211.000   Min.   :-527.000   Min.   :-38.000   Min.   :-25.000  
##  1st Qu.:   0.000   1st Qu.:   0.000   1st Qu.:  0.000   1st Qu.:  0.000  
##  Median :   0.000   Median :   0.000   Median :  0.000   Median :  0.000  
##  Mean   :   5.777   Mean   :   3.311   Mean   :  3.327   Mean   :  3.248  
##  3rd Qu.:   3.000   3rd Qu.:   1.000   3rd Qu.:  1.000   3rd Qu.:  1.000  
##  Max.   : 999.000   Max.   : 993.000   Max.   :998.000   Max.   :991.000  
##    Diciembre      
##  Min.   :-28.000  
##  1st Qu.:  0.000  
##  Median :  0.000  
##  Mean   :  3.477  
##  3rd Qu.:  0.000  
##  Max.   :997.000

Poner los negativos en absoluto

base_de_datos_6 <- base_de_datos_5
base_de_datos_6$Enero <- abs(base_de_datos_6$Enero)
base_de_datos_6$Febrero <- abs(base_de_datos_6$Febrero)
base_de_datos_6$Marzo <- abs(base_de_datos_6$Marzo)
base_de_datos_6$Abril <- abs(base_de_datos_6$Abril)
base_de_datos_6$Mayo <- abs(base_de_datos_6$Mayo)
base_de_datos_6$Junio <- abs(base_de_datos_6$Junio)
base_de_datos_6$Julio <- abs(base_de_datos_6$Julio)
base_de_datos_6$Agosto <- abs(base_de_datos_6$Agosto)
base_de_datos_6$Septiembre <- abs(base_de_datos_6$Septiembre)
base_de_datos_6$Octubre <- abs(base_de_datos_6$Octubre)
base_de_datos_6$Noviembre <- abs(base_de_datos_6$Noviembre)
base_de_datos_6$Diciembre <- abs(base_de_datos_6$Diciembre)
summary(base_de_datos_6)
##        ID              Año        Territorio        Sub.Territorio    
##  Min.   :     1   Min.   :2016   Length:466508      Length:466508     
##  1st Qu.:116628   1st Qu.:2017   Class :character   Class :character  
##  Median :233256   Median :2018   Mode  :character   Mode  :character  
##  Mean   :233255   Mean   :2018                                        
##  3rd Qu.:349882   3rd Qu.:2019                                        
##  Max.   :466509   Max.   :2019                                        
##      CEDI              Cliente         Nombre          Tamaño.Cte.Industria
##  Length:466508      Min.   :    3   Length:466508      Length:466508       
##  Class :character   1st Qu.: 2509   Class :character   Class :character    
##  Mode  :character   Median : 5488   Mode  :character   Mode  :character    
##                     Mean   :16768                                          
##                     3rd Qu.: 9267                                          
##                     Max.   :99998                                          
##  Segmento.Det          Marca           Presentacion          Tamaño         
##  Length:466508      Length:466508      Length:466508      Length:466508     
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##  Retornable_NR          Enero            Febrero            Marzo        
##  Length:466508      Min.   :  0.000   Min.   :  0.000   Min.   :  0.000  
##  Class :character   1st Qu.:  0.000   1st Qu.:  0.000   1st Qu.:  0.000  
##  Mode  :character   Median :  0.000   Median :  0.000   Median :  0.000  
##                     Mean   :  4.691   Mean   :  4.582   Mean   :  5.402  
##                     3rd Qu.:  2.000   3rd Qu.:  2.000   3rd Qu.:  3.000  
##                     Max.   :999.000   Max.   :986.000   Max.   :986.000  
##      Abril              Mayo             Junio             Julio        
##  Min.   :  0.000   Min.   :  0.000   Min.   :  0.000   Min.   :  0.000  
##  1st Qu.:  0.000   1st Qu.:  0.000   1st Qu.:  0.000   1st Qu.:  0.000  
##  Median :  0.000   Median :  0.000   Median :  0.000   Median :  0.000  
##  Mean   :  5.521   Mean   :  6.122   Mean   :  5.908   Mean   :  5.585  
##  3rd Qu.:  3.000   3rd Qu.:  3.000   3rd Qu.:  3.000   3rd Qu.:  3.000  
##  Max.   :993.000   Max.   :991.000   Max.   :998.000   Max.   :993.000  
##      Agosto          Septiembre         Octubre         Noviembre     
##  Min.   :  0.000   Min.   :  0.000   Min.   :  0.00   Min.   :  0.00  
##  1st Qu.:  0.000   1st Qu.:  0.000   1st Qu.:  0.00   1st Qu.:  0.00  
##  Median :  0.000   Median :  0.000   Median :  0.00   Median :  0.00  
##  Mean   :  5.781   Mean   :  3.316   Mean   :  3.33   Mean   :  3.25  
##  3rd Qu.:  3.000   3rd Qu.:  1.000   3rd Qu.:  1.00   3rd Qu.:  1.00  
##  Max.   :999.000   Max.   :993.000   Max.   :998.00   Max.   :991.00  
##    Diciembre      
##  Min.   :  0.000  
##  1st Qu.:  0.000  
##  Median :  0.000  
##  Mean   :  3.479  
##  3rd Qu.:  0.000  
##  Max.   :997.000

Sumar ventas primer semestre

base_de_datos_7 <- base_de_datos_6
base_de_datos_7$Primer_Semestre <- rowSums(base_de_datos_7[, c(14:19)])

Sumar ventas del año

base_de_datos_8 <- base_de_datos_7
base_de_datos_8$Anual <- rowSums(base_de_datos_8[, c(14:25)])

Exportar csv

# write.csv(base_de_datos_8, file="bd_arca_limpia.csv", row.names = FALSE)

Conclusiones

Para Arca Continental es vital que las tienditas de la esquina sigan existiendo ya que los mayores márgenes de ganancia en la venta de sus productos los obtiene a través de este canal.
Esto, por los altos márgenes de ganancias y políticas restrictivas que imponen las grandes cadenas de supermercados y las tiendas de conveniencia para aceptar poner a la venta en sus establecimientos los productos de cualquier empresa.
Así pues, como deben ser todos los negocios socialmente responsables, en el Proyecto Siglo XXI de Arca hay un “ganar ganar” tanto para los tenderos como para la empresa Arca Continental.